@charset "UTF-8";
@font-face {
  font-family: OPPOSans;
  src: url(../fonts/OPPOSans-Regular.ttf);
}
@font-face {
  font-family: OPPOSans-B;
  src: url(../fonts/OPPOSans-Bold.ttf);
}
@font-face {
  font-family: OPPOSans-M;
  src: url(../fonts/OPPOSans-Medium.ttf);
}
@keyframes autoplayScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
* {
  font-family: OPPOSans;
}

.button {
  transition: background 0.3s, border 0.3s, color 0.3s;
  min-width: 180px;
  margin-right: 12px;
  padding: 0 25px;
  border-radius: 16px;
  text-align: center;
  font-family: OPPOSans;
  font-size: 18px;
  line-height: 44px;
  color: #fff;
}
.button.red {
  border: 2px solid #d80031;
  background: #d80031;
}
.button.white {
  border: 2px solid #fff;
  background: none;
}
.button.black {
  background: none;
  border: 2px solid #142637;
  color: #142637;
}

.w1680 {
  width: 90%;
  max-width: 1680px;
  margin: 0 auto;
}

.w1480 {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
}

.headerInfo {
  position: relative;
  overflow: hidden;
  background: #162d43;
}
.headerInfo .w1600 {
  display: flex;
  align-items: center;
  position: relative;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}
.headerInfo .w1600 .swiper-button-prev,
.headerInfo .w1600 .swiper-button-next {
  position: initial;
  width: auto;
  margin-top: 0;
}
.headerInfo .w1600 .swiper-button-prev::after,
.headerInfo .w1600 .swiper-button-next::after {
  display: none;
}
.headerInfo .w1600 .headerSwiper {
  width: calc(100% - 70px);
  padding: 5px 0;
}
.headerInfo .w1600 .headerSwiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
}
.headerInfo .w1600 .headerSwiper .swiper-wrapper .swiper-slide .img {
  overflow: hidden;
  width: 120px;
  aspect-ratio: 12/8;
  border-radius: 10px;
  font-size: 0;
}
.headerInfo .w1600 .headerSwiper .swiper-wrapper .swiper-slide .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 260px);
  margin-left: 20px;
  font-size: 20px;
  color: #fff;
}
.headerInfo .w1600 .headerSwiper .swiper-wrapper .swiper-slide .link {
  width: 100px;
  margin-left: 20px;
  font-size: 18px;
  color: #d80031;
}
.headerInfo .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 25px;
  right: 28px;
  width: 40px;
  height: 40px;
  font-size: 0;
  cursor: pointer;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  width: 90%;
  max-width: 1680px;
  height: 80px;
  padding: 16px 32px;
}
.header .left {
  display: flex;
  align-items: center;
}
.header .left .logo {
  width: 116px;
  aspect-ratio: 116/44;
}
.header .left .logo h1 {
  display: block;
  font-size: 0;
}
.header .left .nav {
  display: flex;
  height: 80px;
  margin-left: 60px;
}
.header .left .nav li {
  margin-right: 40px;
}
.header .left .nav li > a {
  display: flex;
  align-items: center;
  transition: color 0.3s;
  font-size: 17px;
  line-height: 80px;
  color: #142637;
}
.header .left .nav li > a span {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
}
.header .left .nav li > a span::before {
  display: block;
  content: "";
  position: absolute;
  top: 30%; /* 上移调整 */
  left: 0;
  width: 7px;
  height: 2px;
  background: #142637;
  transform-origin: 0% 50%;
  transform: rotate(45deg);
  transition: transform 0.3s, background 0.3s;
}
.header .left .nav li > a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 30%; /* 上移调整 */
  left: 3px; /* 右移调整 */
  width: 7px;
  height: 2px;
  background: #142637;
  transform-origin: 100% 50%;
  transform: rotate(-45deg);
  transition: transform 0.3s, background 0.3s;
}
.header .left .nav li:last-child {
  margin-right: 0;
}
.header .left .nav li .level {
  display: none;
  align-items: flex-start;
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: 100%;
  padding: 42px 5.9523809524% 65px;
}
.header .left .nav li .level .left {
  display: flex;
  align-items: flex-start;
  width: calc(100% - 300px);
  z-index: 12;
}
.header .left .nav li .level .left .title {
  margin-right: 60px;
  font-size: 24px;
  line-height: 50px;
  color: #142637;
}
.header .left .nav li .level .left .content {
  width: 300px;
  position: relative;
}
.header .left .nav li .level .left .content .list {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 38, 55, 0.1);
}
.header .left .nav li .level .left .content .list .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: margin 0.3s;
  width: 65px;
  margin-left: -65px;
  font-size: 0;
}
.header .left .nav li .level .left .content .list > a {
  width: calc(100% - 30px);
  padding: 16px 0;
  font-size: 14px;
  line-height: 18px;
  color: #142637;
}
.header .left .nav li .level .left .content .list .last {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: margin 0.3s;
  width: 30px;
  height: 30px;
  margin-right: 0;
  font-size: 0;
}
.header .left .nav li .level .left .content .list .level2 {
  display: none;
  position: absolute;
  left: 330px;
  top: 0;
  width: 320px;
}
.header .left .nav li .level .left .content .list .level2 a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(20, 38, 55, 0.1);
  font-size: 14px;
  line-height: 18px;
  color: #142637;
}
.header .left .nav li .level .right {
  flex-direction: column;
  width: 300px;
  z-index: 12;
}
.header .left .nav li .level .right .img {
  overflow: hidden;
  width: 300px;
  aspect-ratio: 300/172;
  border-radius: 16px;
  font-size: 0;
}
.header .left .nav li .level .right .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.header .left .nav li .level .right .title {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding-right: 50px;
  background: url(../images/headerRight.png) no-repeat center right 20px;
  font-size: 14px;
  line-height: 18px;
  color: #142637;
}
.header .left .nav li .level::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1);
  z-index: 11;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  /*-webkit-backdrop-filter: blur(20px);*/
  /*        backdrop-filter: blur(20px);*/
  border-radius: 0 0 12px 12px;
}
.header .left .nav li.on a {
  color: #d80031;
}
.header .left .nav li.on a span::after, .header .left .nav li.on a span::before {
  background: #d80031;
}
.header .right {
  display: flex;
  align-items: center;
}
.header .right .lang {
  position: relative;
}
.header .right .lang .click {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 0;
  cursor: pointer;
}
.header .right .lang .list {
  display: none;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  width: 100px;
  padding: 15px 0;
}
.header .right .lang .list a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 2;
  color: #333;
}
.header .right .search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  font-size: 0;
}
.header .right .search .serachHeader {
  display: none;
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  padding: 30px 5%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.header .right .search .serachHeader .center {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  font-size: 0;
}
.header .right .search .serachHeader .center input {
  width: 100%;
  height: 52px;
  padding: 0 60px 0 20px;
  border: 1px solid #142637;
  border-radius: 16px;
}
.header .right .search .serachHeader .center .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  aspect-ratio: 1/1;
}
.header .right .contact {
  width: 130px;
  margin-left: 30px;
  background-color: #d80031;
  border-radius: 16px;
  text-align: center;
  line-height: 48px;
  color: #fff;
}
.header .right .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 32px;
  font-size: 0;
}
.header::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1);
  transition: border 0.3s;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  /*-webkit-backdrop-filter: blur(20px);*/
  /*        backdrop-filter: blur(20px);*/
  border-radius: 12px;
}
.header.radius::after {
  border-radius: 12px 12px 0 0 ;
}

.headerMobList {
  display: none;
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  width: 100%;
  height: calc(100% - 120px);
  background: #fff;
  border-top: 1px solid rgba(20, 38, 55, 0.1);
}
.headerMobList ul {
  overflow: auto;
  overflow-x: hidden;
  max-height: calc(100% - 100px);
  padding: 0;
  border-top: 1px solid rgba(20, 38, 55, 0.1);
}
.headerMobList ul li {
  border-bottom: 1px solid rgba(20, 38, 55, 0.1);
}
.headerMobList ul li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 5%;
  font-size: 16px;
  line-height: 3;
  color: #333;
}
.headerMobList ul li > a i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  width: 48px;
  height: 48px;
}
.headerMobList ul li > a i img {
  position: absolute;
  transform: rotate(90deg);
  transition: transform 0.5s;
}
.headerMobList ul li > a.on i img {
  transform: rotate(-90deg);
}
.headerMobList ul li .level {
  overflow: hidden;
  height: 0;
}
.headerMobList ul li .level .center .list > a {
  display: block;
  position: relative;
  padding: 0 5% 0 8%;
  border-top: 1px solid rgba(20, 38, 55, 0.1);
  font-size: 16px;
  line-height: 3;
  color: #666;
}
.headerMobList ul li .level .center .list > a span {
  position: absolute;
  right: 0;
  width: 48px;
  height: 48px;
}
.headerMobList ul li .level .center .list > a span em {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: #142637;
}
.headerMobList ul li .level .center .list > a span em + em {
  width: 2px;
  height: 20px;
  background: #142637;
}
.headerMobList ul li .level .center .list .level2 {
  overflow: hidden;
  height: 0;
}
.headerMobList ul li .level .center .list .level2 .center2 a {
  display: block;
  padding: 0 5% 0 12%;
  border-top: 1px solid rgba(20, 38, 55, 0.1);
  font-size: 16px;
  line-height: 3;
  color: #666;
}
.headerMobList .langMob {
  padding: 15px 5%;
}
.headerMobList .langMob p {
  font-size: 16px;
  line-height: 28px;
  color: #333;
}
.headerMobList .langMob .content {
  display: flex;
  flex-wrap: wrap;
}
.headerMobList .langMob .content a {
  margin-right: 20px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}

.listBanner {
  position: relative;
}
.listBanner .img {
  font-size: 0;
}
.listBanner .img img {
  width: 100%;
}
.listBanner .w1680 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.listBanner .w1680 .title {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fff;
}
.listBanner .w1680 .bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 81px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.listBanner .w1680 .bottom .left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.listBanner .w1680 .bottom .left a, .listBanner .w1680 .bottom .left span {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.listBanner .w1680 .bottom .left span {
  margin: 0 8px;
}
.listBanner .w1680 .bottom .text {
  position: absolute;
  right: 0;
  bottom: 106px;
  font-size: 0;
}

.listBanner2 {
  padding: 211px 0 70px;
  border-radius: 0 0 100px 100px;
  background: #F3F6FA;
}
.listBanner2 .w1680 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.listBanner2 .w1680 .left {
  width: 50.5952380952%;
}
.listBanner2 .w1680 .left h2 {
  font-size: 18px;
  line-height: 24px;
  color: #d80031;
}
.listBanner2 .w1680 .left .title {
  margin-top: 9px;
  font-size: 60px;
  line-height: 66px;
  color: #142637;
}
.listBanner2 .w1680 .left .tips {
  margin-top: 29px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #142637;
}
.listBanner2 .w1680 .left .menu {
  display: flex;
  margin-top: 44px;
}
.listBanner2 .w1680 .left .menu a {
  margin-right: 12px;
  border-radius: 20px;
  line-height: 54px;
}
.listBanner2 .w1680 .right {
  overflow: hidden;
  width: 47.619047619%;
  border-radius: 30px;
  font-size: 0;
}
.listBanner2 .w1680 .bottom {
  display: flex;
  width: 100%;
  margin-top: 80px;
  padding: 31px 0;
}
.listBanner2 .w1680 .bottom .content {
  display: flex;
  animation: autoplayScroll 25s linear infinite;
  width: auto;
}
.listBanner2 .w1680 .bottom .content .list {
  width: 210px;
  font-size: 0;
}

.blockTitle {
  text-align: center;
}
.blockTitle h3 {
  font-size: 60px;
  line-height: 66px;
  color: #142637;
}
.blockTitle .tips {
  margin-top: 25px;
  font-size: 18px;
  line-height: 24px;
  color: #142637;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination li {
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  border-radius: 8px;
}
.pagination li span, .pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #fff;
  font-size: 16px;
  color: #717880;
}
.pagination li.active span {
  background: #d80031;
  color: #fff;
}

.footer {
  position: relative;
  z-index: 1;
  padding-top: 86px;
  background: #142637 url(../images/footerBg.jpg) no-repeat bottom center/cover;
  border-radius: 60px 60px 0 0;
}
.footer > .w1680 .top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer > .w1680 .top .indexTitle {
  width: 780px;
  text-align: center;
  font-family: OPPOSans-B;
  font-size: 120px;
  background-image: linear-gradient(to right, #f8d0c9, #eb3661); /* 渐变背景 */
  -webkit-background-clip: text; /* 使背景剪裁到文本 */
  color: transparent; /* 使文本透明，以显示背景渐变 */
}
.footer > .w1680 .top .button {
  margin-top: 90px;
  margin-right: 0;
  background: #fff;
  font-family: OPPOSans-B;
  font-size: 18px;
  line-height: 58px;
  color: #142637;
}
.footer > .w1680 .bottom {
  display: flex;
  padding-bottom: 210px;
  margin-top: 108px;
}
.footer > .w1680 .bottom .left {
  width: 34.2261904762%;
}
.footer > .w1680 .bottom .left .logo {
  display: block;
  width: 116px;
  height: 76px;
  padding: 16px 0;
  font-size: 0;
}
.footer > .w1680 .bottom .left .logo img {
  width: 116px;
  aspect-ratio: 116/44;
  filter: contrast(1) brightness(20);
}
.footer > .w1680 .bottom .left .line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.footer > .w1680 .bottom .left .address, .footer > .w1680 .bottom .left .mail, .footer > .w1680 .bottom .left .tel {
  display: flex;
  max-width: 324px;
  margin-top: 10px;
}
.footer > .w1680 .bottom .left .address span, .footer > .w1680 .bottom .left .mail span, .footer > .w1680 .bottom .left .tel span {
  display: flex;
  align-items: center;
  width: 24px;
  height: 17px;
  font-size: 0;
}
.footer > .w1680 .bottom .left .address a, .footer > .w1680 .bottom .left .mail a, .footer > .w1680 .bottom .left .tel a {
  width: calc(100% - 24px);
  font-size: 15px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.8);
}
.footer > .w1680 .bottom .left .address {
  margin-top: 42px;
}
.footer > .w1680 .bottom .left .follow {
  margin-top: 42px;
}
.footer > .w1680 .bottom .left .follow p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer > .w1680 .bottom .left .follow ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer > .w1680 .bottom .left .follow ul li {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  font-size: 0;
}
.footer > .w1680 .bottom .left .follow ul li .level {
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  width: 110px;
  height: 110px;
  padding: 5px;
  background: #fff;
}
.footer > .w1680 .bottom .left .follow ul li a {
  display: block;
  font-size: 0;
}
.footer > .w1680 .bottom .right {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 65.7738095238%;
}
.footer > .w1680 .bottom .right::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 76px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.footer > .w1680 .bottom .right ul {
  margin-left: 48px;
}
.footer > .w1680 .bottom .right ul p {
  display: flex;
  align-items: center;
  height: 76px;
  margin-bottom: 24px;
  white-space: nowrap;
  font-size: 18px;
  color: #fff;
}
.footer > .w1680 .bottom .right ul li a {
  font-size: 15px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
}
.footer .beian {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.1);
}
.footer .beian .w1680 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.footer .beian .w1680 .left {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .beian .w1680 .left a {
  color: rgba(255, 255, 255, 0.5);
}
.footer .beian .w1680 .right a {
  margin-left: 45px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .beian .w1680 .right a:first-child {
  margin-left: 0;
}

.footerMob {
  display: none;
  padding-top: 30px;
  background: #142637 url(../images/footerBg.jpg) no-repeat bottom center/cover;
  border-radius: 30px 30px 0 0;
}
.footerMob .top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footerMob .top .indexTitle {
  text-align: center;
  font-size: 32px;
  color: #fff;
  background-image: linear-gradient(to right, #f8d0c9, #eb3661); /* 渐变背景 */
  -webkit-background-clip: text; /* 使背景剪裁到文本 */
  color: transparent; /* 使文本透明，以显示背景渐变 */
}
.footerMob .top .button {
  display: block;
  min-width: auto;
  width: 160px;
  margin: 0 auto;
  margin-top: 30px;
}
.footerMob ul.topNav {
  padding: 0;
  margin-top: 30px;
}
.footerMob ul.topNav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footerMob ul.topNav li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 5%;
  font-size: 16px;
  line-height: 3;
  color: #fff;
}
.footerMob ul.topNav li > a i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  width: 48px;
  height: 48px;
}
.footerMob ul.topNav li > a i img {
  position: absolute;
  transform: rotate(90deg);
  transition: transform 0.5s;
  filter: contrast(0) brightness(10);
}
.footerMob ul.topNav li > a.on i img {
  transform: rotate(-90deg);
}
.footerMob ul.topNav li .level {
  overflow: hidden;
  height: 0;
}
.footerMob ul.topNav li .level .center a {
  display: block;
  padding: 0 5% 0 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  line-height: 3;
  color: rgba(255, 255, 255, 0.8);
}
.footerMob > .center {
  padding: 15px 5%;
}
.footerMob > .center .title {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 2;
  color: #fff;
}
.footerMob > .center > a {
  display: block;
  font-size: 14px;
  line-height: 2.4;
  color: #fff;
}
.footerMob > .center .list {
  display: flex;
  margin: 10px 0;
}
.footerMob > .center .list a {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  font-size: 0;
}
.footerMob > .center .list a .img {
  display: none;
  position: absolute;
  bottom: 50px;
  width: 110px;
  height: 110px;
  padding: 5px;
  background: #fff;
}
.footerMob .beian {
  padding: 10px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
.footerMob .beian a {
  color: #fff;
}

@media (any-hover: hover) {
  .button:hover.red {
    background: #fff;
    color: #d80031;
  }
  .button:hover.white {
    border-color: #d80031;
    background: #fff;
    color: #d80031;
  }
  .button:hover.black {
    border-color: #d80031;
    background: #d80031;
    color: #fff;
  }
  .header .left .nav li .level .left .content .list:hover .ico {
    margin-left: 0;
  }
  .header .left .nav li .level .left .content .list:hover > a {
    color: #d80031;
  }
  .header .left .nav li .level .left .content .list:hover .last {
    margin-right: -30px;
  }
  .footer > .w1680 .top .button:hover {
    background: #d80031;
    color: #fff;
  }
}
@media (max-width: 1600px) {
  .header .left .nav {
    margin-left: 20px;
  }
  .header .left .nav li {
    margin-right: 20px;
  }
  .footer > .w1680 .top .indexTitle {
    font-size: 60px;
  }
}
@media (max-width: 1440px) {
  .header {
    padding: 16px 15px;
  }
  .header .left .nav li a {
    font-size: 14px;
  }
  .header .right .contact {
    margin-left: 20px;
  }
  .header .right .menu {
    margin-left: 20px;
  }
  .listBanner2 .w1680 .left .title {
    font-size: 36px;
    line-height: 1.5;
  }
}
@media (max-width: 1280px) {
  /*.headerInfo {*/
  /*  display: none;*/
  /*}*/
  .header {
    top: 0 !important;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  /*.header .left .nav {*/
  /*  display: none;*/
  /*}*/
  /*.header .right .lang,*/
  /*.header .right .contact {*/
  /*  display: none;*/
  /*}*/
  .header::after {
    border-radius: 0;
  }
  .footer > .w1680 .bottom .left {
    width: 30%;
  }
  .footer > .w1680 .bottom .right {
    width: 70%;
  }
  .footer > .w1680 .bottom .right ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {

  .headerInfo {
    display: none;
  }
  .header {
    top: 0 !important;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .header .left .nav {
    display: none;
  }
  .header .right .lang,
  .header .right .contact {
    display: none;
  }
  .header::after {
    border-radius: 0;
  }
  .footer > .w1680 .bottom .left {
    width: 30%;
  }
  .footer > .w1680 .bottom .right {
    width: 70%;
  }
  .footer > .w1680 .bottom .right ul li a {
    font-size: 14px;
  }



  .headerMobList {
    top: 80px;
    height: calc(100% - 80px);
  }
  .button {
    padding: 0 10px;
    min-width: 160px !important;
    font-size: 16px !important;
    line-height: 44px !important;
    border-radius: 10px !important;
  }
  .listBanner .header{
    margin-top: 80px;
  }
  .listBanner .img {
    height: 450px;
  }
  .listBanner .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .listBanner .w1680 .bottom .text {
    display: none;
  }
  .listBanner2 {
    padding-top: 120px;
    padding-bottom: 0;
    border-radius: 0;
  }
  .listBanner2 .w1680 {
    flex-wrap: wrap;
  }
  .listBanner2 .w1680 .left {
    width: 100%;
  }
  .listBanner2 .w1680 .left h2 {
    font-size: 16px;
    line-height: 1.5;
  }
  .listBanner2 .w1680 .left .title {
    font-size: 32px;
    line-height: 1.5;
  }
  .listBanner2 .w1680 .left .tips {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }
  .listBanner2 .w1680 .left .menu {
    margin-top: 30px;
  }
  .listBanner2 .w1680 .right {
    width: 100%;
    margin-top: 30px;
  }
  .listBanner2 .w1680 .right img {
    width: 100%;
  }
  .listBanner2 .w1680 .bottom {
    margin-top: 0;
  }
  .pagination li {
    width: 44px;
    height: 44px;
  }
  .pagination li span, .pagination li a {
    font-size: 14px;
  }
  .blockTitle h3 {
    font-size: 32px;
    line-height: 1.5;
  }
  .blockTitle .tips {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  .footer {
    display: none;
  }
  .footerMob {
    display: block;
  }
}
@media (max-width: 500px) {
  .listBanner2 .w1680 .left .title {
    font-size: 24px;
    line-height: 1.5;
  }
  .listBanner2 .w1680 .left .tips {
    font-size: 14px;
  }
  .blockTitle h3 {
    font-size: 24px;
    line-height: 1.5;
  }
}/*# sourceMappingURL=currency.css.map */