* {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* 按钮缩放动画 */
@keyframes scaleAnimation {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 1920px) {
  /* 表单 */
  .popbox-shadow {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .popbox-shadow input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .popbox-shadow .scrollbar {
    /* chrom */
    /* 修改滚动条轨道样式 */
    /* 修改滚动条滑块样式 */
    /* 修改滚动条滑块悬停时的样式 */
    /* 修改滚动条轨道两端按钮样式 */
    /* fireFox */
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
    /* IE 和 Edge 浏览器 */
    -ms-overflow-style: none;
    /* 隐藏默认滚动条 */
  }
  .popbox-shadow .scrollbar::-webkit-scrollbar {
    width: 5px;
  }
  .popbox-shadow .scrollbar::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
  }
  .popbox-shadow .scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #f1f1f1;
  }
  .popbox-shadow .scrollbar::-webkit-scrollbar-button {
    display: none;
  }
  .popbox-shadow .scrollbar::-moz-scrollbar-thumb {
    background-color: #f1f1f1;
    border-radius: 5px;
  }
  .popbox-shadow .scrollbar::-moz-scrollbar-thumb:hover {
    background-color: #f1f1f1;
  }
  .popbox-shadow .scrollbar::-moz-scrollbar-track {
    background-color: #f1f1f1;
  }
  .popbox-shadow .scrollbar::-ms-scrollbar {
    width: 10px;
  }
  .popbox-shadow .scrollbar::-ms-thumb {
    background-color: #f1f1f1;
    border-radius: 5px;
  }
  .popbox-shadow .scrollbar::-ms-thumb:hover {
    background-color: #ccc;
  }
  .popbox-shadow .scrollbar::-ms-track {
    background-color: #f1f1f1;
  }
  .popbox-shadow .popbox-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 960px;
    height: 600px;
    border: 1px solid #ccc;
    box-shadow: 0 0 2px 0px #fff;
    background-color: #fff;
    border-radius: 5px;
  }
  .popbox-shadow .popbox-box .container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
  }
  .popbox-shadow .popbox-box .container .title {
    width: 100%;
    height: 70px;
  }
  .popbox-shadow .popbox-box .container .title .desc {
    height: 70px;
    font-size: 36px;
    line-height: 70px;
    text-align: center;
  }
  .popbox-shadow .popbox-box .container .title .close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 26px;
    transform: rotateZ(45deg);
    cursor: pointer;
  }
  .popbox-shadow .popbox-box .container .content {
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-grow: 1;
    width: 100%;
    max-height: 450px;
    overflow: auto;
    /* chrom */
    /* 修改滚动条轨道样式 */
    /* 修改滚动条滑块样式 */
    /* 修改滚动条滑块悬停时的样式 */
    /* 修改滚动条轨道两端按钮样式 */
    /* fireFox */
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
    /* IE 和 Edge 浏览器 */
    -ms-overflow-style: none;
    /* 隐藏默认滚动条 */
  }
  .popbox-shadow .popbox-box .container .content::-webkit-scrollbar {
    width: 5px;
  }
  .popbox-shadow .popbox-box .container .content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
  }
  .popbox-shadow .popbox-box .container .content::-webkit-scrollbar-thumb:hover {
    background-color: #f1f1f1;
  }
  .popbox-shadow .popbox-box .container .content::-webkit-scrollbar-button {
    display: none;
  }
  .popbox-shadow .popbox-box .container .content::-moz-scrollbar-thumb {
    background-color: #f1f1f1;
    border-radius: 5px;
  }
  .popbox-shadow .popbox-box .container .content::-moz-scrollbar-thumb:hover {
    background-color: #f1f1f1;
  }
  .popbox-shadow .popbox-box .container .content::-moz-scrollbar-track {
    background-color: #f1f1f1;
  }
  .popbox-shadow .popbox-box .container .content::-ms-scrollbar {
    width: 10px;
  }
  .popbox-shadow .popbox-box .container .content::-ms-thumb {
    background-color: #f1f1f1;
    border-radius: 5px;
  }
  .popbox-shadow .popbox-box .container .content::-ms-thumb:hover {
    background-color: #ccc;
  }
  .popbox-shadow .popbox-box .container .content::-ms-track {
    background-color: #f1f1f1;
  }
  .popbox-shadow .popbox-box .container .content .content-box {
    padding: 10px;
    box-sizing: border-box;
    width: 50%;
    height: auto;
    font-size: 28px;
  }
  .popbox-shadow .popbox-box .container .content .content-box .tab {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 18px;
  }
  .popbox-shadow .popbox-box .container .content .content-box .tab span.select {
    margin-bottom: 10px;
    display: inline-block;
    width: 49%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background-color: #f5f5f5;
    user-select: none;
    cursor: pointer;
    transition: all 0.5s;
  }
  .popbox-shadow .popbox-box .container .content .content-box .tab span.select:hover {
    background-color: #f2f7ff;
    color: #105dc9;
  }
  .popbox-shadow .popbox-box .container .content .content-box .tab span.select.active {
    background-color: #105dc9;
    color: #fff;
  }
  .popbox-shadow .popbox-box .container .content .content-box:nth-child(4) .wrap {
    width: 100%;
    height: 60px;
    line-height: 60px;
    margin-top: 0px;
  }
  .popbox-shadow .popbox-box .container .content .content-box:nth-child(4) .wrap select {
    width: 223px;
    height: 25px;
  }
  .popbox-shadow .popbox-box .container .content .content-box:nth-child(4) .wrap:nth-child(1) {
    margin-top: 0px;
  }
  .popbox-shadow .popbox-box .container .foot {
    position: relative;
    top: 0;
    left: 0;
    height: 60px;
  }
  .popbox-shadow .popbox-box .container .foot span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    width: 260px;
    height: 60px;
    font-size: 26px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    background-color: #105dc9;
    user-select: none;
    cursor: pointer;
  }
  .popbox-shadow.active {
    display: block;
  }
  /* 功能按钮列表 */
  .popbox-btnlist {
    position: fixed;
    right: 20px;
    bottom: 190px;
    width: 60px;
    height: 180px;
    box-shadow: 0 0 3px 1px #ccc;
    background-color: #fff;
    z-index: 9999;
  }
  .popbox-btnlist ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .popbox-btnlist ul li {
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.5s;
    cursor: pointer;
    overflow: hidden;
  }
  .popbox-btnlist ul li .btnbox {
    height: 60px;
    transition: all 0.5s;
  }
  .popbox-btnlist ul li .active {
    background-color: #105dc9;
    color: #fff;
  }
  .popbox-btnlist ul li .iconfont {
    font-size: 34px;
  }
  .popbox-btnlist ul li .detail {
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 11px;
  }
  .popbox-btnlist ul li:nth-child(3) {
    transform: rotateZ(90deg);
    text-align: center;
    line-height: 60px;
  }
  .popbox-btnlist ul li:hover .btnbox {
    margin-top: -100%;
  }
  .popbox-btnlist .qrcode-dialog {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 250px;
    height: 300px;
    border: 1px solid #ccc;
    top: -120px;
    left: -270px;
    border-radius: 10px;
    box-shadow: 0 0 2px 0px #ccc;
    transition: all 0.5s;
    background-color: #fff;
  }
  .popbox-btnlist .qrcode-dialog .desc,
  .popbox-btnlist .qrcode-dialog .detail {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
    color: #f10;
  }
  .popbox-btnlist .qrcode-dialog .detail {
    font-size: 14px;
    margin-top: 5px;
  }
  .popbox-btnlist .qrcode-dialog img {
    width: 220px;
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  .popbox-btnlist .qrcode-dialog::before {
    content: "";
    display: block;
    position: absolute;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 10px solid #ccc;
    border-color: transparent transparent transparent #ccc;
  }
  .popbox-btnlist .qrcode-dialog.active {
    visibility: visible;
    opacity: 1;
  }
  /* Banner导航菜单列表 */
  .main-zixunLt-item ul li.red-style a {
    color: #f10000 !important;
  }
  /* Banner导航下广告图 */
  .home-mainMod .banner-advert {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 960px;
    height: 80px;
    background-color: #ccc;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 2px 2px #ccc;
  }
  .home-mainMod .banner-advert img {
    width: 100%;
    height: 100%;
  }
  /* 左侧广告弹窗 */
  .advert-dialog-left {
    position: fixed;
    right: 0;
    top: 100px;
    width: 140px;
    height: 530px;
    background-image: linear-gradient(to top, #105dc9, #434ccf);
    border-radius: 0 0 20px 20px;
    z-index: 9999;
  }
  .advert-dialog-left ul li {
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(20, 136, 245, 0.7);
    user-select: none;
    cursor: pointer;
  }
  .advert-dialog-left ul li .img {
    margin: 0 10px;
    width: 120px;
    height: 120px;
    background: #fff;
  }
  .advert-dialog-left ul li .img img {
    width: 100%;
    height: 100%;
  }
  .advert-dialog-left ul li .btn {
    background: #fffc00;
    margin-left: 20px;
    margin-top: 10px;
    padding: 3px 10px;
    box-sizing: border-box;
    width: 100px;
    height: 28px;
    color: #115dc9;
    line-height: 20px;
    border-radius: 10px;
    animation: scaleAnimation 2s linear infinite;
  }
  .advert-dialog-left ul li .btn .icon-left {
    display: inline-block;
    transform: rotateZ(180deg);
    height: 20px;
    line-height: 20px;
    text-align: center;
  }
  .advert-dialog-left ul li.imgbox {
    height: 230px;
  }
  .advert-dialog-left ul li.imgbox .detail {
    display: inline-block;
    padding: 0 10px;
    margin-top: 10px;
    box-sizing: border-box;
    line-height: 22px;
  }
  .advert-dialog-left ul li:nth-child(5),
  .advert-dialog-left ul li:nth-child(1) {
    cursor: default;
  }
  .advert-dialog-left ul li:last-child {
    border-bottom: unset;
  }
  /* 顶部广告位图片 */
  .advert-banner {
    margin-top: 15px;
  }
  .advert-banner img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1366px) {
  .popbox-btnlist {
    right: 10px;
  }
  .home-mainMod .banner-advert {
    width: 800px;
  }
}
