.wraps {
  padding: 0 120px;
}
.bold {
  font-weight: 500;
}
.s-titles {
  position: relative;
}
.s-titles .top {
  display: flex;
  align-items: center;
}
.s-titles .top h2 {
  margin-right: 60px;
}
.s-titles h2 {
  color: #595959;
}
.s-titles p {
  color: #595959;
}

.indexHeader .header{
    background: rgba(255,255,255,0.8);
}
.indexHeader .header:hover{background: rgba(255,255,255,1.0);}

.banner {
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide {
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide .tu {
  position: relative;
  width: 100%;
  height: calc(100vh - 0px);
  z-index: 1;
  overflow: hidden;
}
.banner .swiper-slide .tu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 4s linear;
  transform: scale(1.1, 1.1);
}
.banner .swiper-slide .tu video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-slide .text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30%;
  color: #fff;
  z-index: 2;
}
.banner .swiper-slide .text h2 {
  font-size: 72px;
  line-height: 1.2;
  position: relative;
  transform: translateY(60px);
  opacity: 0;
}
.banner .swiper-slide .text p {
  position: relative;
  transform: translateY(60px);
  opacity: 0;
  margin: 20px 0 30px;
}
.banner .swiper-slide .text .back {
  position: relative;
  transform: translateY(60px);
  opacity: 0;
}
.banner .swiper-slide .text .back .btn_primary {
  border: 1px solid #fff;
  background: none;
  color: #fff;
}
.banner .swiper-slide .text .back .btn_primary .btn_icon:before {
  background-color: #fff;
}
.banner .swiper-slide .text .back .btn_primary .btn_icon path {
  fill: var(--main-color);
}
.banner .swiper-slide .text .back .btn_primary:hover {
  color: var(--main-color);
}
.banner .swiper-slide.swiper-slide-active .tu img {
  transform: scale(1, 1);
}
.banner .swiper-slide.swiper-slide-active .text h2 {
  transform: translateY(0);
  opacity: 1;
  transition: all 1s ease 0.3s;
  -webkit-transition: all 1s ease 0.3s;
  -moz-transition: all 1s ease 0.3s;
  -ms-transition: all 1s ease 0.3s;
}
.banner .swiper-slide.swiper-slide-active .text p {
  transform: translateY(0);
  opacity: 1;
  transition: all 1s ease 0.4s;
  -webkit-transition: all 1s ease 0.4s;
  -moz-transition: all 1s ease 0.4s;
  -ms-transition: all 1s ease 0.4s;
}
.banner .swiper-slide.swiper-slide-active .text .back {
  transform: translateY(0);
  opacity: 1;
  transition: all 1s ease 0.5s;
  -webkit-transition: all 1s ease 0.5s;
  -moz-transition: all 1s ease 0.5s;
  -ms-transition: all 1s ease 0.5s;
}
.banner .swiper-pagination {
  bottom: 30px;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #fff;
  -webkit-transform: skewX(-40deg);
  -ms-transform: skewX(-40deg);
  transform: skewX(-40deg);
  background: none;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-color);
  border: 1px solid var(--main-color);
  top: -4px;
  left: 3px;
}
.ctn1 {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
.ctn1 .t-titles {
  text-align: center;
}
.ctn1 .t-titles .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
}
.ctn1 .t-titles .txt .sign {
  width: 14px;
  height: 26px;
  background: var(--main-color);
  -webkit-transform: skewX(-35deg);
  -ms-transform: skewX(-35deg);
  transform: skewX(-35deg);
  margin: 0 40px;
}
.ctn1 .t-titles .txt h2 {
  letter-spacing: 4px;
}
.ctn1 .t-titles p {
  width: 1100px;
  max-width: 90%;
  margin: 30px auto 0;
  color: #595959;
}
.ctn1 .ctn-list {
  position: relative;
  margin-top: 100px;
}
.ctn1 .ctn-list .left {
  position: absolute;
  width: 33%;
  left: 120px;
  top: 40%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 4;
}
.ctn1 .ctn-list .left .top{
    width:87%;
}
.ctn1 .ctn-list .left .top .swiper-wrapper{padding-bottom:5px;}
.ctn1 .ctn-list .left .top .swiper-slide h2 {
  color: #595959;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}
.ctn1 .ctn-list .left .top .swiper-slide p {
  color: #595959;
  line-height: 1.8;
  margin: 40px 0;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}
.ctn1 .ctn-list .left .top .swiper-slide .back {
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}
.ctn1 .ctn-list .left .top .swiper-slide-active h2 {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1 .ctn-list .left .top .swiper-slide-active p {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease 0.1s;
  -webkit-transition: all 0.5s ease 0.1s;
  -moz-transition: all 0.5s ease 0.1s;
  -ms-transition: all 0.5s ease 0.1s;
}
.ctn1 .ctn-list .left .top .swiper-slide-active .back {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease 0.2s;
  -webkit-transition: all 0.5s ease 0.2s;
  -moz-transition: all 0.5s ease 0.2s;
  -ms-transition: all 0.5s ease 0.2s;
}
.ctn1 .ctn-list .left ul {
  margin-top: 80px;
}
.ctn1 .ctn-list .left ul li {
  width: 254px;
  height: 44px;
  border-radius: 44px;
  border: 1px solid #595959;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1 .ctn-list .left ul li .icons {
  width: 35px;
  position: relative;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctn1 .ctn-list .left ul li .icons img {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  width:100%;
}
.ctn1 .ctn-list .left ul li .icons svg {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  width:100%;
}
.ctn1 .ctn-list .left ul li:nth-of-type(2) .icons .st0{fill:none;stroke:#333333;stroke-width:4;stroke-miterlimit:10;}
.ctn1 .ctn-list .left ul li .icons path {
  fill:#595959;
  stroke: #000000;
  stroke-width: 0px;
}
.ctn1 .ctn-list .left ul li .icons polygon {
  fill:#595959;
}
.ctn1 .ctn-list .left ul li .icons img.white {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 0;
  opacity: 0;
}
.ctn1 .ctn-list .left ul li h2 {
  color: #595959;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  line-height: 1;
}
.ctn1 .ctn-list .left ul li:hover {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}
.ctn1 .ctn-list .left ul li:hover .icons path {
  fill:#fff;
  stroke:#fff;
}
.ctn1 .ctn-list .left ul li:hover .icons polygon {
  fill:#fff;
  stroke:#fff;
}
.ctn1 .ctn-list .left ul li:nth-of-type(2):hover .icons .st0{
    stroke:#fff;
}
.ctn1 .ctn-list .left ul li:hover h2 {
  color: #fff;
}
.ctn1 .ctn-list .left ul li.active {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.ctn1 .ctn-list .left ul li.active .icons path {
  fill:#fff;
}
.ctn1 .ctn-list .left ul li.active .icons polygon {
  fill:#fff;
}
.ctn1 .ctn-list .left ul li:nth-of-type(2).active .icons .st0{
    stroke:#fff;
}
.ctn1 .ctn-list .left ul li.active h2 {
  color: #fff;
}
.ctn1 .ctn-list .ctn-box {
  position: relative;
}
.ctn1 .ctn-list .ctn-box .swiper-box {
  position: relative;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list {
  position: relative;
  z-index: 1;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide {
  position: relative;
  overflow: hidden;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide:before {
  content: '';
  display: block;
  padding-top: calc(1000 / 1920 * 100%);
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide .di {
  z-index: 1;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide .product {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  opacity: 0;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide .product.is-show {
  opacity: 1;
  transition: opacity 1.2s ease;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide .xian {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide .xian img {
  width: 100%;
}
.ctn1 .ctn-list .ctn-box .swiper-box .tu-list .swiper-slide .xian.is-show {
  opacity: 1;
  transition: opacity 1.5s ease;
}

.swiper-slide .dian span{
    display:block;position:absolute;right:10%;top:8%;width:110px;height:110px;border-radius: 100%;
    background: rgba(230,0,20,0.8);z-index: 6;
    animation: ripple-effect 2s ease-out infinite;display: none;opacity: 0;
}
.swiper-slide .dian.is-show span{display:block;}
.swiper-slide .dian span:nth-of-type(1){
    width:60px;height:60px;
    animation-delay: 0.3s;
}
.swiper-slide .dian span:nth-of-type(2){
    width:80px;height:80px;
    animation-delay: 1s;
}
.swiper-slide .dian span:nth-of-type(3){
    width:40px;height:40px;
    animation-delay: 0.5s;
}
.swiper-slide .dian span:nth-of-type(4){
    width:110px;height:110px;
}
.dian01 .swiper-slide.span1 .dian span:nth-of-type(1){top:15%;right:15%;}
.dian01 .swiper-slide.span1 .dian span:nth-of-type(2){top:13%;right:12%;}
.dian01 .swiper-slide.span1 .dian span:nth-of-type(3){top:18%;right:13%;}
.dian01 .swiper-slide.span1 .dian span:nth-of-type(4){top:13%;right:10%;}

.dian01 .swiper-slide.span2 .dian span{right:19%;top:10%;}

.dian01 .swiper-slide.span3 .dian span{top:12%;}
.dian01 .swiper-slide.span3 .dian span:nth-of-type(1){right:9%;width:50px;height:50px;}
.dian01 .swiper-slide.span3 .dian span:nth-of-type(2){right:11%;width:30px;height:30px;}
.dian01 .swiper-slide.span3 .dian span:nth-of-type(3){right:13%;width:50px;height:50px;}
.dian01 .swiper-slide.span3 .dian span:nth-of-type(4){right:15%;top:13%;width:30px;height:30px;}

.dian01 .swiper-slide.span4 .dian span{right:12%;top:14%;}
.dian01 .swiper-slide.span4 .dian span:nth-of-type(1){right:19%;top:10%;}
.dian01 .swiper-slide.span4 .dian span:nth-of-type(2){right:9%;top:15%;}
.dian01 .swiper-slide.span4 .dian span:nth-of-type(3){right:18%;top:12%;}
.dian01 .swiper-slide.span4 .dian span:nth-of-type(4){right:7%;top:12%;}

.dian01 .swiper-slide.span5 .dian span{right:16%;}
.dian01 .swiper-slide.span5 .dian span:nth-of-type(1){right:19%;top:12%;width:40px;height:40px;}

.dian01 .swiper-slide.span5 .dian span:nth-of-type(4){right:17%;top:11%;width:60px;height:60px;}

.dian01 .swiper-slide.span6 .dian span{right:13%;top:13%;}


.dian02 .swiper-slide.span1 .dian span:nth-of-type(2){right:13%;top:6.5%;}
.dian02 .swiper-slide.span1 .dian span:nth-of-type(3){  top: 14%;right: 10%;width: 65px;height: 65px;}


.dian02 .swiper-slide.span2 .dian span{top:12%;}
.dian02 .swiper-slide.span2 .dian span:nth-of-type(3){right:14%;}
.dian02 .swiper-slide.span2 .dian span:nth-of-type(1){right:13%;top:17%;}

.dian03 .swiper-slide.span1 .dian span{right:17%;}
.dian03 .swiper-slide.span1 .dian span:nth-of-type(1){right:18%;top:10%;}
.dian03 .swiper-slide.span1 .dian span:nth-of-type(4){right:10%;top:12%;}



@keyframes ripple-effect {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    10% {
      opacity: 0.2;
      transform: scale(0);
    }
    70% {
      opacity: 0.9;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(1.2);
    }
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 0;
  background: rgba(229, 229, 229, 0.7);
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top {
  padding: 0 120px;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul {
  display: flex;
  justify-content: center;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul li {
  width: 180px;
  height: 44px;
  line-height: 44px;
  border-radius: 22px;
  border: 1px solid #595959;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul li:hover {
    color: var(--main-color);
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul li:not(:last-child) {
  margin-right: 70px;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul li.active {
  border: 1px solid var(--main-color);
  color: #fff;
  background: var(--main-color);
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom {
  margin-top: 40px;
  padding: 0 120px;
  display:none!important;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li {
  display: none;
  overflow: hidden;
  white-space: nowrap;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track {
  width: auto !important;
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  flex-shrink: 0;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic {
  min-width: 90px;
  height: 90px;
  display: inline-flex;
  margin-right: 70px;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic img {
  height: 90px;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic:first-child {
  margin-left: 70px;
}
.ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li.active {
  display: block;
}
.ctn1.is-small-screen .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li {
  overflow-x: auto;
  overflow-y: hidden;
}
.ctn1.is-small-screen .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li::-webkit-scrollbar {
  height: 4px;
}
.ctn1.is-small-screen .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.ctn2 {
  padding: 270px 0;
  position: relative;
}
.ctn2 .content {
  width: calc(100% - 80px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.ctn2 .content .left {
  width: 39%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}
.ctn2 .content .left .center {
  width: 80%;
}
.ctn2 .content .left .center h2 {
  color: #595959;
}
.ctn2 .content .left .center p {
  color: #595959;
  line-height: 1.6;
  margin-top: 40px;
}
.ctn2 .content .left .center .box {
  margin-top: 80px;
}
.ctn2 .content .left .center .box ul li {
  margin-top: 20px;
  width: 180px;
  height: 44px;
  border-radius: 22px;
  background: #fff;
  padding-left: 26px;
  display: flex;
  align-items: center;
}
.ctn2 .content .left .center .box ul li .icons {
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctn2 .content .left .center .box ul li .icons img {
  max-width: 100%;
  max-height: 100%;
}
.ctn2 .content .left .center .box ul li .icons svg {
  max-width: 100%;
  max-height: 100%;
}
.ctn2 .content .left .center .box ul li h2 {
  margin-left: 14px;
  line-height: 1;
}
.ctn2 .content .left .center .box ul li:nth-child(2) {
  width: 220px;
}
.ctn2 .content .left .center .box ul li:nth-child(3) {
  width: 260px;
}
.ctn2 .content .left .center .box ul li:nth-child(4) {
  width: 300px;
}
.ctn2 .content .left .center .btns {
  margin-top: 70px;
}
.ctn2 .content .left .center .btns ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ctn2 .content .left .center .btns ul li {
  width: 46%;
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--main-color);
}
.ctn2 .content .left .center .btns ul li .icons {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctn2 .content .left .center .btns ul li .icons img {
  max-width: 60%;
  max-height: 60%;
}
.ctn2 .content .left .center .btns ul li .icons svg {
  max-width: 60%;
  max-height: 60%;
}
.ctn2 .content .left .center .btns ul li .icons path{
    fill:#fff;
}
.ctn2 .content .left .center .btns ul li .icons polygon{
    fill:#fff;
}
.ctn2 .content .right .center .top .titles .icons svg{
    max-width: 60%;
  max-height: 60%;
}
.ctn2 .content .right .center .top .titles .icons path{
    fill:#fff;
}
.ctn2 .content .right .center .top .titles .icons polygon{
    fill:#fff;
}
.ctn2 .content .left .center .btns ul li h2 {
  color: var(--main-color);
  margin-left: 30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn2 .content .right {
  width: 61%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 100px 80px 100px 160px;
  overflow: hidden;
}
.ctn2 .content .right .center {
  width: 100%;
  overflow: hidden;
}
.ctn2 .content .right .center .top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ctn2 .content .right .center .top .titles {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ctn2 .content .right .center .top .titles .icons {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctn2 .content .right .center .top .titles .icons img {
  max-width: 60%;
  max-height: 60%;
}
.ctn2 .content .right .center .top .titles h2 {
  color: var(--main-color);
  margin-left: 10px;
}
.ctn2 .content .right .center .top ul {
  display: flex;
  margin-left: 30px;
  padding-left: 30px;
  position: relative;
}
.ctn2 .content .right .center .top ul:before {
  content: '';
  width: 1px;
  height: 20px;
  background: #e60012;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.ctn2 .content .right .center .top ul li {
  color: #595959;
  padding: 0 8px;
  position: relative;
}
.ctn2 .content .right .center .top ul li:after {
  content: '';
  width: 1px;
  height: 16px;
  background: #595959;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.ctn2 .content .right .center .top ul li:last-child {
  padding-right: 0;
}
.ctn2 .content .right .center .top ul li:last-child:after {
  display: none;
}
.ctn2 .content .right .center .top ul li:first-child {
  padding-left: 0;
}
.ctn2 .content .right .center .ctn-list {
  margin-top: 50px;
}
.ctn2 .content .right .center .ctn-list .swiper-slide .tu {
  position: relative;
  overflow: hidden;
}
.ctn2 .content .right .center .ctn-list .swiper-slide .tu:before {
  content: '';
  display: block;
  padding-top: calc(496 / 280 * 100%);
}
.ctn2 .content .right .center .ctn-list .swiper-slide .tu img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn2 .content .right .center .ctn-list .swiper-slide .line {
  width: 50px;
  height: 8px;
  background: var(--main-color);
  margin-left: auto;
}
.ctn2 .content .right .center .ctn-list .swiper-slide h2 {
  color: #595959;
  margin-top: 20px;
}
.ctn2 .content .right .center .ctn-list .swiper-slide:hover .tu img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.ctn2 .content .right .center .ctn-list .swiper-pagination {
  display: none;
}
.ctn2 .bg {
  position: absolute;
  width: calc(39% + 120px);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.ctn2 .bg img {
  width: 100%;
}
.ctn3 .ctn-list {
  padding: 0 40px;
  overflow: hidden;
}
.ctn3 .ctn-list .swiper {
  overflow: initial;
  padding: 20px 0;
}
.ctn3 .ctn-list .swiper-slide {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.ctn3 .ctn-list .swiper-slide .tu {
  position: relative;
  overflow: hidden;
}
.ctn3 .ctn-list .swiper-slide .tu:before {
  content: '';
  display: block;
  padding-top: calc(250 / 430 * 100%);
}
.ctn3 .ctn-list .swiper-slide .tu img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn3 .ctn-list .swiper-slide .text .top {
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid var(--main-color);
}
.ctn3 .ctn-list .swiper-slide .text .top .icons img {
  width: 24px;
}
.ctn3 .ctn-list .swiper-slide .text .top .icons svg {
  width: 24px;height:24px;display: flex;
}
.ctn3 .ctn-list .swiper-slide .text .top h2 {
  color: #fff;
  background: var(--main-color);
  padding: 9px 14px 9px 20px;
  line-height: 1;
  margin-left: 14px;
  position: relative;
}
.ctn3 .ctn-list .swiper-slide .text .top h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid #fff;
  /* ҳ�汳��ɫ */
  border-right: 14px solid transparent;
}
.ctn3 .ctn-list .swiper-slide .text .txt {
  height: 136px;
  padding: 30px 20px 0;
  color: #595959;
}
.ctn3 .ctn-list .swiper-slide:hover .tu img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.ctn4 {
  padding-top: 150px;
  overflow: hidden;
  position: relative;
}
.ctn4 .ctn-list {
  padding: 0 40px;
  position: relative;
}
.ctn4 .ctn-list .center {
  width: 100%;
  background: #e5e5e5;
  border-radius: 30px;
  padding: 40px;
}
.ctn4 .ctn-list .center .swiper-slide {
  overflow: hidden;
}
.ctn4 .ctn-list .center .swiper-slide .tu {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ctn4 .ctn-list .center .swiper-slide .tu:before {
  content: '';
  display: block;
  padding-top: calc(570 / 570 * 100%);
}
.ctn4 .ctn-list .center .swiper-slide .tu img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn4 .ctn-list .center .swiper-slide .text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
  padding: 20px;
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn4 .ctn-list .center .swiper-slide .text h2 {
  color: #595959;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 1.5em;
}
.ctn4 .ctn-list .center .swiper-slide .text h3 {
  color: #595959;
  margin-top: 10px;
}
.ctn4 .ctn-list .center .swiper-slide .masks {
  position: absolute;
  width: calc(100% + 4px);
  left: -2px;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn4 .ctn-list .center .swiper-slide .masks h2 {
  color: #595959;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn4 .ctn-list .center .swiper-slide .masks h3 {
  color: #595959;
  margin-top: 10px;
}
.ctn4 .ctn-list .center .swiper-slide .masks p {
  color: #595959;
  margin-top: 30px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 4.5em;
  line-height: 1.8;
  height: 5.4em;
}
.ctn4 .ctn-list .center .swiper-slide:hover .tu img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.ctn4 .ctn-list .center .swiper-slide:hover .text {
  opacity: 0;
}
.ctn4 .ctn-list .center .swiper-slide:hover .masks {
  bottom: 0;
  opacity: 1;
}
.ctn4 .ctn-list .center .swiper-slide:hover .masks h2 {
  color: var(--main-color);
}
.ctn4 .swiper-btns {
  position: absolute;
  width: 140px;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
.ctn4 .swiper-btns .swiper-button-prev {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e5e5e5;
  margin-top: 0;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ctn4 .swiper-btns .swiper-button-prev:after {
  font-size: 14px;
  color: #333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ctn4 .swiper-btns .swiper-button-prev:hover {
  background-color: var(--main-color);
}
.ctn4 .swiper-btns .swiper-button-prev:hover:after {
  color: #fff;
}
.ctn4 .swiper-btns .swiper-button-next {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e5e5e5;
  margin-top: 0;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ctn4 .swiper-btns .swiper-button-next:after {
  font-size: 14px;
  color: #333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ctn4 .swiper-btns .swiper-button-next:hover {
  background-color: var(--main-color);
}
.ctn4 .swiper-btns .swiper-button-next:hover:after {
  color: #fff;
}
.ctn4 .swiper-pagination {
  display: none;
}
@media (min-width: 1500px) and (max-width: 1920px) {
.ctn1 .ctn-list .ctn-box{height:100vh;}

.ctn1 .ctn-list .ctn-box .swiper{height:100%;}
}

.ctn1 .line .wrap1680{
width:70%;
}
.ctn1 .wrap1680 .txt-l .list{
    display: flex;flex-wrap:wrap;
  align-items: center;
}
.ctn1 .wrap1680 .txt-l .list li {
  flex:1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ctn1 .wrap1680 .txt-l .list li .ic{margin-bottom:10px;}
.ctn1 .wrap1680 .txt-l .list li .num-t {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.ctn1 .wrap1680 .txt-l .list li .num-t .num {
  line-height: 1;
  color: #e60012;
  margin: 0 5px;
  font-size:50px;
}
.ctn1 .wrap1680 .txt-l .list li .num-t .unit {
  line-height: 1;
  color: #e60012;
}
.ctn1 .wrap1680 .txt-l .list li .txt {
  color: #595959;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 1680px) {
  .wraps {
    padding: 0 100px;
  }
  .s-titles .top h2 {
    margin-right: 3vw;
  }
  .banner .swiper-slide .text h2 {
    font-size: 3.6vw;
  }
  .ctn1 {
    padding-top: 7.5vw;
  }
  .ctn1 .t-titles p {
    margin: 1.5vw auto 0;
  }
  .ctn1 .ctn-list {
    margin-top: 5vw;
  }
  .ctn1 .ctn-list .left .top{width:85%;}
  .ctn1 .ctn-list .left {
    width: 35%;
    top: 35%;
    left: 100px;
  }
  .ctn1 .ctn-list .left .top .swiper-slide p {
    margin: 2vw 0;
  }
  .ctn1 .ctn-list .left ul {
    margin-top: 4vw;
  }
  .ctn1 .ctn-list .left ul li {
    margin-top: 1vw;
  }
  .ctn1 .ctn-list .ctn-box .swiper-slide .bottom {
    padding: 2vw 0;
  }
  .ctn1 .ctn-list .ctn-box .swiper-slide .bottom .b-top {
    padding: 0 6vw;
  }
  .ctn1 .ctn-list .ctn-box .swiper-slide .bottom .b-top ul li:not(:last-child) {
    margin-right: 3.5vw;
  }
  .ctn1 .ctn-list .ctn-box .swiper-slide .bottom .b-bottom {
    margin-top: 2vw;
    padding: 0 6vw;
  }
  .ctn1 .ctn-list .ctn-box .swiper-slide .bottom .b-bottom ul li .track .pic {
    min-width: 80px;
    height: 80px;
    margin-right: 50px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-slide .bottom .b-bottom ul li .track .pic img {
    height: 80px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-slide .bottom .b-bottom ul li .track .pic:first-child {
    margin-left: 50px;
  }
  .ctn2 {
    padding: 14vw 0;
  }
  .ctn2 .content .left {
    padding: 5vw 0;
  }
  .ctn2 .content .left .center p {
    margin-top: 2vw;
  }
  .ctn2 .content .left .center .box {
    margin-top: 4vw;
  }
  .ctn2 .content .left .center .btns {
    margin-top: 3.5vw;
  }
  .ctn2 .content .left .center .btns ul li {
    padding: 18px 0;
  }
  .ctn2 .content .right {
    padding: 5vw 4vw 5vw 8vw;
  }
  .ctn2 .content .right .center .ctn-list {
    margin-top: 2.5vw;
  }
  .ctn2 .content .right .center .ctn-list .swiper-slide h2 {
    margin-top: 1vw;
  }
  .ctn2 .bg {
    width: calc(39% + 90px);
  }
  .ctn3 .ctn-list .swiper-slide .text .top {
    padding-top: 3vw;
  }
  .ctn3 .ctn-list .swiper-slide .text .txt {
    height: 120px;
    padding: 1.5vw 1vw 0;
  }
  .ctn4 {
    padding-top: 7.5vw;
  }
  .ctn4 .swiper-btns {
    right: 100px;
  }
}
@media screen and (max-width: 1500px) {
  .wraps {
    padding: 0 80px;
  }
  .ctn1 .t-titles p{width:900px;}
  .ctn1 .ctn-list .left {
    left: 80px;
  }
  .ctn1 .ctn-list .left .top{width:85%;}
  .ctn1 .ctn-list .left ul li {
    width: 220px;
    padding-left: 16px;
  }
  .ctn1 .ctn-list .left ul li .icons {
    margin-right: 12px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul li {
    width: 160px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic {
    min-width: 70px;
    height: 70px;
    margin-right: 40px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic img {
    height: 70px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic:first-child {
    margin-left: 40px;
  }
  .ctn2 .content {
    width: calc(100% - 60px);
  }
  .ctn2 .content .left .center .box ul li {
    width: 150px;
    height: 40px;
    padding-left: 20px;
    margin-top: 14px;
  }
  .ctn2 .content .left .center .box ul li .icons {
    width: 20px;
  }
  .ctn2 .content .left .center .box ul li h2 {
    margin-left: 10px;
  }
  .ctn2 .content .left .center .box ul li:nth-child(2) {
    width: 180px;
  }
  .ctn2 .content .left .center .box ul li:nth-child(3) {
    width: 210px;
  }
  .ctn2 .content .left .center .box ul li:nth-child(4) {
    width: 230px;
  }
  .ctn2 .content .left .center .btns ul li {
    padding: 10px 0;
  }
  .ctn2 .content .left .center .btns ul li .icons {
    width: 34px;
    height: 34px;
  }
  .ctn2 .content .left .center .btns ul li h2 {
    margin-left: 1.5vw;
  }
  .ctn2 .content .right .center .top .titles .icons {
    width: 34px;
    height: 34px;
  }
  .ctn2 .content .right .center .top ul {
    margin-left: 1.5vw;
    padding-left: 1.5vw;
  }
  .ctn2 .content .right .center .ctn-list .swiper-slide .line {
    width: 40px;
    height: 6px;
  }
  .ctn3 .ctn-list {
    padding: 0 30px;
  }
  .ctn4 .ctn-list {
    padding: 0 30px;
  }
  .ctn4 .ctn-list .center {
    padding: 30px;
  }
  .ctn4 .ctn-list .center .swiper-slide .text h3 {
    margin-top: 4px;
  }
  .ctn4 .ctn-list .center .swiper-slide .masks h3 {
    margin-top: 4px;
  }
  .ctn4 .ctn-list .center .swiper-slide .masks p {
    margin-top: 1.5vw;
  }
  .ctn4 .swiper-btns {
    width: 100px;
    right: 80px;
  }
  .ctn4 .swiper-btns .swiper-button-prev {
    width: 44px;
    height: 44px;
  }
  .ctn4 .swiper-btns .swiper-button-next {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 1300px) {
    .ctn1 .ctn-list .left{
        top:0px;transform:translateY(0);
    }
}
@media screen and (max-width: 1200px) {
  .s-titles p {
    margin-top: 2vw;
  }
  .wraps {
    padding: 0 60px;
  }
  .banner {
    margin-top: 60px;
  }
  .banner .swiper-slide .tu {
    height: calc(100vh - 60px);
  }
  .ctn1 .t-titles .txt h2 {
    letter-spacing: 0;
  }
  .ctn1 .t-titles .txt .sign {
    width: 10px;
    height: 20px;
    margin: 0 24px;
  }
  .ctn1 .t-titles p {
    line-height: 1.6;
  }
  .ctn1 .ctn-list .left {
    left: 60px;
  }
  .ctn1 .ctn-list .left .top .swiper-slide p {
    line-height: 1.6;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic {
    min-width: 60px;
    height: 60px;
    margin-right: 30px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic img {
    height: 60px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic:first-child {
    margin-left: 30px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom{
      position:relative;bottom:0px;
  }
  .ctn2 {
    padding: 12vw 0;
  }
  .ctn2 .content {
    width: calc(100% - 40px);
  }
  .ctn2 .content .left {
    padding: 4vw 0;
  }
  .ctn2 .content .left .center {
    width: 90%;
  }
  .ctn2 .content .right {
    padding: 0 4vw 0 8vw;
  }
  .ctn2 .content .right .center .top ul {
    margin-left: 14px;
    padding-left: 14px;
  }
  .ctn2 .content .right .center .top ul:before {
    height: 16px;
  }
  .ctn2 .content .right .center .top ul li {
    padding: 0 6px;
  }
  .ctn2 .content .right .center .top ul li:after {
    height: 14px;
  }
  .ctn2 .bg {
    width: calc(39% + 60px);
  }
  .ctn3 .ctn-list {
    padding: 0 20px;
    margin-top: 4vw;
  }
  .ctn3 .ctn-list .swiper-slide .text .top .icons img {
    width: 22px;
  }
  .ctn3 .ctn-list .swiper-slide .text .top h2 {
    margin-left: 10px;
  }
  .ctn3 .ctn-list .swiper-slide .text .txt {
    height: 100px;
  }
  .ctn4 .ctn-list {
    padding: 0 20px;
    margin-top: 4vw;
  }
  .ctn4 .ctn-list .center {
    padding: 20px;
    border-radius: 20px;
  }
  .ctn4 .swiper-btns {
    right: 60px;
  }
}
@media screen and (max-width: 1024px) {
    .ctn1 .ctn-list{margin-top:10vw;}
  .ctn1 .ctn-list .left {
    top: 0%;
  }
  .ctn2 {
    padding: 8vw 0;
  }
  .ctn1 .line .wrap1680{
width:90%;
}
.ctn1 .ctn-list .left{
    width:90%;margin-left:auto;margin-right: auto;
}
.ctn1 .ctn-list .ctn-box{
    padding-top:70px;
}
}
@media screen and (max-width: 768px) {
    .ctn1 .ctn-list .ctn-box{
    padding-top:0px;
}
.banner .swiper-slide .tu {
    height: 340px;
  }
  .wraps {
    padding: 0 20px;
  }
  .s-titles .top h2 {
    margin-right: 20px;
  }
  .s-titles p {
    margin-top: 14px;
  }
  .banner .swiper-slide .text h2 {
    font-size: 30px;
  }
  .banner .swiper-slide .text p {
    font-size: 18px;
    margin: 14px 0 30px;
  }
  .banner .swiper-pagination {
    bottom: 20px;
  }
  .banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 16px;
  }
  .ctn1 .t-titles p {
    margin: 10px auto 0;
  }
  .ctn1 .wrap1680 .txt-l .list li .num-t .num{font-size:9vw;}
  .ctn1 .wrap1680 .txt-l .list li{flex:0 0 50%;margin-top:2vw;margin-bottom:5vw;}
  .ctn1 .ctn-list {
    margin-top: 9vw;
  }
  
  .ctn1 .ctn-list .left {
    position: relative;
    width: 100%;
    left: 0;
    padding: 0 20px;
    top: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
  }
  .ctn1 .ctn-list .left .top .swiper-slide p {
    margin: 10px 0 20px;
  }
  .ctn1 .ctn-list .left ul {
    margin-top: 30px;
  }
  .ctn1 .ctn-list .left ul li {
    margin-top: 10px;
  }
  .ctn1 .ctn-list .ctn-box {
    margin-top: 30px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom {
    position: relative;
    padding: 30px 0;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top {
    padding: 0 20px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul {
    flex-wrap: wrap;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul li {
    width: 31%;
    margin: 0 1%!important;
    padding: 0 0px;
    text-align: center;
    font-size: 12px;
    height:32px;line-height: 32px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul li:not(:last-child) {
    margin-right: 0;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-top ul li:nth-child(n+4) {
    margin-top: 8px!important;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom {
    margin-top: 30px;
    padding: 0 20px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic {
    min-width: 50px;
    height: 50px;
    margin-right: 20px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic img {
    height: 50px;
  }
  .ctn1 .ctn-list .ctn-box .swiper-box .bottom .b-bottom ul li .track .pic:first-child {
    margin-left: 20px;
  }
  .ctn2 {
    padding: 40px 0;
  }
  .ctn2 .content {
    display: block;
  }
  .ctn2 .content .left {
    width: 100%;
    padding: 30px 20px;
  }
  .ctn2 .content .left .center {
    width: 100%;
  }
  .ctn2 .content .left .center p {
    margin-top: 14px;
  }
  .ctn2 .content .left .center .box {
    margin-top: 20px;
  }
  .ctn2 .content .left .center .box ul li {
    background: #f5f5f5;
  }
  .ctn2 .content .left .center .btns {
    margin-top: 20px;
  }
  .ctn2 .content .left .center .btns ul li h2 {
    margin-left: 14px;
  }
  .ctn2 .content .right {
    width: 100%;
    padding: 30px 20px;
    margin-top: 20px;
  }
  .ctn2 .content .right .center .top ul {
    display: none;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
  }
  .ctn2 .content .right .center .top ul:before {
    display: none;
  }
  .ctn2 .content .right .center .ctn-list {
    margin-top: 20px;
  }
  .ctn2 .content .right .center .ctn-list .swiper-slide h2 {
    margin-top: 10px;
  }
  .ctn2 .content .right .center .ctn-list .swiper-pagination {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 30px;
    bottom: 0;
  }
  .ctn2 .content .right .center .ctn-list .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .ctn2 .content .right .center .ctn-list .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
  }
  .ctn2 .bg {
    display: none;
  }
  .ctn3 .ctn-list {
    margin-top: 10px;
  }
  .ctn3 .ctn-list .swiper-slide .text .top {
    padding-top: 20px;
  }
  .ctn3 .ctn-list .swiper-slide .text .txt {
    padding: 20px 20px 0;
  }
  .ctn3 .ctn-list .swiper-pagination {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 20px;
    bottom: 0;
  }
  .ctn3 .ctn-list .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .ctn3 .ctn-list .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
  }
  .ctn4 {
    padding-top: 30px;
  }
  .ctn4 .s-titles .top{
        justify-content: space-between;
  }
  .ctn4 .ctn-list {
    margin-top: 30px;
  }
  .ctn4 .ctn-list .center {
    padding: 20px 20px 30px;
    border-radius: 14px;
  }
  .ctn4 .ctn-list .center .swiper-slide .text {
    padding: 14px;
  }
  .ctn4 .ctn-list .center .swiper-slide .masks {
    padding: 14px;
  }
  .ctn4 .ctn-list .center .swiper-slide .masks p {
    margin-top: 10px;
    line-height: 1.6;
    height: 4.8em;
  }
  .ctn4 .swiper-btns {
    display: none;
  }
  .ctn4 .swiper-pagination {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 20px;
    bottom: 0;
  }
  .ctn4 .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .ctn4 .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
  }
  
  .dian01 .swiper-slide.span1 .dian span:nth-of-type(1){top:13%!important;right:12%!important;}
.dian01 .swiper-slide.span1 .dian span:nth-of-type(3){top:18%!important;right:13%!important;}

  .dian01 .swiper-slide.span2 .dian span:nth-of-type(1){right:12%!important;}
.dian01 .swiper-slide.span2 .dian span:nth-of-type(4){right:13%!important;top:20%!important;}

.dian01 .swiper-slide.span3 .dian span:nth-of-type(1){right:9%!important;top:20%!important;}

.dian01 .swiper-slide.span4 .dian span:nth-of-type(1){right:13%!important;}
.dian01 .swiper-slide.span4 .dian span:nth-of-type(2){right:13%!important;}
.dian01 .swiper-slide.span4 .dian span:nth-of-type(3){right:13%!important;}

.dian02 .swiper-slide.span1 .dian span:nth-of-type(1){width:30px!important;height:30px!important;top:12%!important;right:12%!important;}
.dian02 .swiper-slide.span1 .dian span:nth-of-type(2){width:30px!important;height:30px!important;top:20%!important;right:9%!important;}

.dian03 .swiper-slide.span1 .dian span:nth-of-type(1){width:30px!important;height:30px!important;top:20%!important;right:8%!important;}

.dian04 .swiper-slide.span1 .dian span:nth-of-type(1){width:30px!important;height:30px!important;top:20%!important;right:15%!important;}
.dian04 .swiper-slide.span1 .dian span:nth-of-type(2){width:20px!important;height:20px!important;top:22%!important;right:9%!important;}
.dian04 .swiper-slide.span2 .dian span:nth-of-type(1){width:30px!important;height:30px!important;top:20%!important;right:15%!important;}
.dian04 .swiper-slide.span2 .dian span:nth-of-type(2){width:20px!important;height:20px!important;top:22%!important;right:9%!important;}

.dian05 .swiper-slide.span1 .dian span:nth-of-type(1){display:none;}
.dian05 .swiper-slide.span1 .dian span:nth-of-type(4){display:none;}
.dian05 .swiper-slide.span1 .dian span:nth-of-type(5){display:none;}
.dian05 .swiper-slide.span1 .dian span:nth-of-type(2){top:17%!important;right:15%!important;}
.dian05 .swiper-slide.span1 .dian span:nth-of-type(3){top:20%!important;right:9%!important;}

}
