/* 瀹氫箟鍏ㄥ眬scroll-bar */
html::-webkit-scrollbar-track-piece {
  background-color: #f8f8f8;
}

html::-webkit-scrollbar {
  width: 0;
  height: 5px;
}

html::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}


.full-screen {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.banner-wrap .logo-animation-wrap {
  width: 100%;
  height: 100%;
  background: #000;
}
.banner-wrap .logo-animation-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/assets/banner-mask-2.png) no-repeat center;
  background-size: cover;
  z-index: 1;
  animation: LogoAnimation 6s ease-in-out infinite;
  pointer-events: none;
}
.banner-wrap .logo-animation-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/assets/banner-mask-4.png) no-repeat center center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}
@keyframes LogoAnimation {
  0% {
    transform: scale(1.5) rotate(0deg);
  }
  50% {
    transform:  scale(1.5) rotate(180deg);
  }
  100% {
    transform:  scale(1.5) rotate(0deg);
  }
}
.banner-wrap .logo-animation-wrap canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.banner-wrap .logo-animation-wrap img {
  width: 500px;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 17%;
  left: 20%;
}
.banner-wrap .swiper-slide.home-first .hover {
  text-align: right;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 1600px) {
  .banner-wrap .logo-animation-wrap img {
    width: 440px;
    top: 20%;
    left: 14%;
  }
}
@media screen and (max-width: 1280px) {
  .banner-wrap .logo-animation-wrap img {
    left: 8%;
  }
}
@media screen and (max-width: 640px) {
  .banner-wrap .logo-animation-wrap img {
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .banner-wrap .swiper-slide.home-first .hover {
    text-align: center;
  }
  .banner-wrap .logo-animation-wrap::before {
    display: none;
  }
}

.banner-wrap .swiper-slide > video {
  width: 100%;
  filter: brightness(.4);
  height: 100%;
  object-fit: cover;
}
.banner-wrap .swiper-slide > img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.banner-wrap .swiper-pagination {
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-wrap .swiper-pagination span {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
  border: 2px solid transparent;
  transition: all .4s ease;
}
.banner-wrap .swiper-pagination span.swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  border: 2px solid var(--main-color);
  background: transparent;
}
.banner-wrap .pagination {
  bottom: 4.3229vw;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: hidden;
}
.banner-wrap .pagination::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .3);
}
.banner-wrap .pagination ul {
  display: flex;
  align-items: center;
  max-width: 62.1875vw;
  margin: 0 auto;
}
.banner-wrap .pagination li {
  position: relative;
  width: 10px;
  height: 10px;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
}
.banner-wrap .pagination li + li {
  margin-left: 6.25vw;
}
.banner-wrap .pagination li svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.banner-wrap .pagination li span {
  display: none;
}
.banner-wrap .pagination li.active {
  width: 95px;
  height: 40px;
  background: unset;
}
.banner-wrap .pagination li.active span {
  display: block;
}
.banner-wrap .hover {
  position: absolute;
  top: 50%;
  left: -300px;
  transform: translateY(-50%);
  width: 1194px;
  opacity: 0;
  transition: left 1s ease;
}
.banner-wrap .swiper-slide-active .hover {
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.banner-wrap .hover small {
  font-size: 20px;
  /*font-weight: bold;*/
  color: #FFFFFF;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 30px;
}
.banner-wrap .hover h2 {
  font-size: 42px;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0 0 15px;
  letter-spacing: 3px;
}
.banner-wrap .hover img {
  width: 120px;
  object-fit: contain;
}


.desc-wrap {
  background: #ECECEC;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.desc-wrap > img {
  display: block;
}
.desc-wrap > img:nth-child(1) {
  width: 82.7604vw;
  height: 980px;
  float: right;
  display: block;
}
.desc-wrap > img:nth-child(2) {
  width: 78.125vw;
  height: 800px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}
.desc-wrap .hover {
  max-width: 43.3333vw;
  padding-top: 10vw;
  position: absolute;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.desc-wrap .hover h2 {
  font-size: 5.1042vw;
  line-height: 1;
  color: #efefef;
  margin: unset;
}
.desc-wrap .hover h3 {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin: 0 0 2.3958vw;
}
.desc-wrap .hover h3 img {
  transform: translateY(-3px);
  margin-right: 10px;
  height: 40px;
}
.desc-wrap .hover .row {
  margin-bottom: 2.0833vw;
}
.desc-wrap .hover .col .top {
  display: flex;
  align-items: baseline;
  color: #333333;
}
.desc-wrap .hover .col .number {
  font-size: 2.3438vw;
  font-weight: 700;
  color: #009EA1;
}
.desc-wrap .hover .col p {
  font-size: 0.8333vw;
  font-weight: 400;
  color: #333333;
  margin: 5px 0 0;
}
.desc-wrap .hover .rich-text p {
  font-size: 16px;
  font-weight: 400;
  color: #5E5E5E;
  line-height: 1.6;
}
.desc-wrap .hover .bto {
  display: flex;
  align-items: center;
  font-size: 0.8333vw;
  color: #333;
  line-height: 1;
  margin-top: 4.1667vw;
}
.desc-wrap .hover .bto i {
  font-size: 0.7292vw;
  color: #333;
}
.desc-wrap .hover .bto img {
  margin-right: 0.7813vw;
}


.product-wrap {
  position: relative;
  background: #010118;
}
.product-wrap .swiper-slide {
  overflow: hidden;
}
.product-wrap .swiper-slide > img:nth-child(1) {
  width: 67.9167vw;
  position: absolute;
  left: 0;
  bottom: 0;
  object-fit: contain;
}
.product-wrap .swiper-slide > img:nth-child(2) {
  position: absolute;
  top: 50%;
  right: 0;
  width: 51.6146vw;
  object-fit: contain;
  transform: translateY(-50%);
}
.product-wrap .hover {
  position: absolute;
  top: 50%;
  left: 18.8542vw;
  width: 34.5833vw;
  transform: translateY(-50%);
}
.product-wrap .hover small {
  font-size: 1.3542vw;
  font-weight: 400;
  color: #FFFFFF;
  display: none;
}
.product-wrap .hover h2 {
  font-size: 34px;
  font-weight: bold;
  color: #FFFFFF;
  margin: 1.1458vw 0;
}
.product-wrap .hover p {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.8;
}
.product-wrap .hover a {
  display: flex;
  align-items: center;
  line-height: 1;
  color: #fff;
  font-size: 16px;
  margin-top: 3.4896vw;
}
.product-wrap .hover a img {
  height: 1.25vw;
  object-fit: contain;
  margin-right: 0.5208vw;
}
.product-wrap .hover .rw {
  display: flex;
  justify-content: space-between;
  margin-top: 2.6042vw;
}
.product-wrap .hover .col {
  text-align: center;
}
.product-wrap .hover .col p {
  font-size: 16px;
  color: #fff;
}
.product-wrap .hover .icon {
  width: 6.25vw;
  height: 6.25vw;
  border-radius: 0.625vw;
  border: 2px solid #fff;
  margin-bottom: 0.2604vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease;
}
.product-wrap .hover .icon:hover {
  background: rgba(255, 255, 255, .3);
}
.product-wrap .hover .icon img {
  width: 60%;
}
.product-wrap .swiper-pagination {
  font-size: 1.3542vw;
  font-weight: 300;
  color: #FFFFFF;
  bottom: 4.1667vw;
}
.product-wrap .swiper-controller {
  position: absolute;
  left: 50%;
  bottom: 4.4271vw;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: 9.375vw;
}
.product-wrap .swiper-controller .prev,
.product-wrap .swiper-controller .next {
  cursor: pointer;
  transition: all .3s ease;
}
.product-wrap .swiper-controller .prev:hover,
.product-wrap .swiper-controller .next:hover {
  transform: scale(1.1);
}


.salve-wrap {
  overflow: hidden;
  display: flex;
}
.salve-wrap .col {
  width: 25%;
  position: relative;
}
.salve-wrap .c {
  position: relative;
}
.salve-wrap .col > img,
.salve-wrap .c > img {
  display: block;
  object-fit: contain;
}
.salve-wrap .col .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 60%;
}
.salve-wrap .icon {
  width: 5.7292vw;
  height: 5.7292vw;
  border: 1px solid #CBCBCB;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.salve-wrap .icon img {
  width: 50%;
  height: 50%;
}
.salve-wrap h3 {
  margin: 1.0938vw auto 0.8854vw;
  font-size: 1.2vw;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  white-space: nowrap;
  transition: all .3s ease;
}
.salve-wrap .col:hover > .hover > h3,
.salve-wrap .c:hover > .hover > h3 {
  border-top: 1px solid #fff;
  border-bottom:  1px solid #fff;
  padding: 0.7813vw 0;
}
.salve-wrap .col small {
  font-size: 12px;
  color: #fff;
  display: none;
}
.salve-wrap .col:hover > .hover > .rich-text,
.salve-wrap .c:hover > .hover > .rich-text {
  height: 7.8125vw;
}
.salve-wrap .col .rich-text {
  font-size: 0.8333vw;
  color: #fff;
  overflow: hidden;
  height: 0;
  transition: all .3s ease;
  letter-spacing: 2px;
}
.salve-wrap .col .rich-text p {
  margin: 0;
}
.salve-wrap .col .rich-text p + p {
  margin-top: 10px;
}



.news-wrap {
  background: url(/assets/images/bg/index-bg-5.png) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-wrap .container {
  width: 100%;
  max-width: 78.125vw;
  /*margin-top: 11.5625vw;*/
}
.news-wrap .container header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5625vw;
}
.news-wrap .container header h3 {
  font-size: 30px;
  font-weight: 700;
  color: #555;
  margin: unset;
}
.news-wrap .container header ul {
  display: flex;
}
.news-wrap .container header ul li {
  position: relative;
  cursor: pointer;
}
.news-wrap .container header ul li {
  color: #666;
}
.news-wrap .container header ul li + li {
  margin-left: 2.0833vw;
}
.news-wrap .container header ul li + li::after {
  content: "/";
  position: absolute;
  left: -23px;
  color: #010C1B;
}
.news-wrap .container .row img {
  width: 100%;
  height: 14.0625vw;
  object-fit: cover;
}
.news-wrap .container .row h3 {
  font-size: 18px;
  font-weight: 400;
  color: #444;
  margin: 10px 0 8px;
  transition: color .3s ease;
}
.news-wrap .container .row p {
  font-size: 14px;
  font-weight: 400;
  color: #7D7D7D;
  line-height: 1.6;
  height: 40px;
  margin: 0;
}
.news-wrap .container .row .col:hover h3 {
  color: #009EA1;
}
.news-wrap .container .row .button {
  width: 7.9167vw;
  height: 2.0833vw;
  line-height: 2.0833vw;
  border-radius: 30px;
  border: 1px solid #009EA1;
  color: #009EA1;
  text-align: center;
  margin-top: 1.5625vw;
  transition: background .3s ease, color .3s ease;
}
.news-wrap .container .row .button:hover {
  background: #009EA1;
  color: #fff;
}
.news-wrap .more {
  display: none;
  text-align: center;
  margin: 3.125vw 0 0;
  color: #009EA1;
  letter-spacing: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.news-wrap .more:hover {
  border-bottom-color: #009EA1;
}



.case-wrap {
  background: url("/assets/images/bg/index-bg-6.png") no-repeat center;
  background-size: cover;
}
.case-wrap .container {
  width: unset;
  max-width: 1503px;
}
.case-wrap h2 {
  font-size: 26px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 163px 0 38px;
}
.case-wrap .container .row.tab .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 69px;
  cursor: pointer;
  transition: background .3s ease;
}
.case-wrap .container .row.tab .col img {
  height: 31px;
}
.case-wrap .container .row.tab .col img:nth-child(2) {
  display: none;
}
.case-wrap .container .row.tab .col.active img:nth-child(1),
.case-wrap .container .row.tab .col:hover img:nth-child(1) {
  display: none;
}
.case-wrap .container .row.tab .col.active img:nth-child(2),
.case-wrap .container .row.tab .col:hover img:nth-child(2) {
  display: block;
}
.case-wrap .container .row.tab .col.active .wrap,
.case-wrap .container .row.tab .col:hover .wrap {
  background: #009EA1;
}
.case-wrap .container .row.tab .col.active span,
.case-wrap .container .row.tab .col:hover span {
  color: #fff;
}
.case-wrap .container .row.tab .col span {
  margin-left: 5px;
  font-size: 20px;
  color: #646464;
}
.case-wrap .container .content {
  display: none;
}
.case-wrap .container .content.active {
  display: flex;
}
.case-wrap .container .content.case {
  height: 418px;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.case-wrap .container .content.case .left {
  flex: 1;
  padding: 0 24px;
  box-sizing: border-box;
}
.case-wrap .container .content.case .left .cts {
  display: none;
  width: 840px;
}
.case-wrap .container .content.case .left .cts h3 {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  margin: unset;
  padding: 32px 0 30px;
}
.case-wrap .container .content.case .rw {
  display: flex;
}
.case-wrap .container .content.case .rw .cover {
  max-width: 40%;
  margin-right: 15px;
}
.case-wrap .container .content.case .rw .rich-text {
  flex: 1;
  width: 0%;
}
.case-wrap .container .content.case .left .cts img {
  display: block;
  width: 100%;

  object-fit: contain;
}
.case-wrap .container .content.case .left .cts.active {
  display: block;
}
.case-wrap .container .content.case .left .cts .rich-text {
  font-size: 16px;
  font-weight: 400;
  color: #646464;
  /*margin-top: 20px;*/
  /*height: 120px;*/
  overflow: hidden;
  line-height: 1.8;
}
.case-wrap .container .content.case .left .cts .rich-text p {
  margin: unset;
}
.case-wrap .container .content.case .left .cts .rich-text p + p {
  margin-top: 10px;
}
.case-wrap .container .content.case .left .cts span {
  display: block;
  width: 150px;
  height: 45px;
  line-height: 45px;
  background: #009EA1;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  transition: all .3s ease;
  margin-top: 18px;
}
.case-wrap .container .content.case .left .cts span:hover {
  background: #008486;
}
.case-wrap .container .content.case .right {
  width: 608px;
  height: 100%;
  background: #fff;
  margin: 0;
  padding: 30px;
}
.case-wrap .container .content.case .right .col {
  padding: 10px;
}
.case-wrap .container .content.case .right .col .wrap {
  height: 100px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: all .3s ease;
  font-size: 14px;
  color: #666;
}
.case-wrap .container .content.case .right .col.active .wrap {
  transform: translateY(-5px);
}
.case-wrap .container .content.case .right .col.active .wrap {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
}
.case-wrap .container .content.case .right .col.active .wrap img {
  /*filter: grayscale(0);*/
}
.case-wrap .container .content.case .right .col .wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: grayscale(100%);*/
  transition: filter .3s ease;
  border-radius: 10px;
  overflow: hidden;
}


.case-wrap .container .content.client {
  height: 418px;
  background: #fff;
  margin-bottom: 40px;
}
.case-wrap .container .content.client .row {
  width: 100%;
  margin: unset;
  padding: 30px;
  box-sizing: border-box;
}
.case-wrap .container .content.client .col {
  padding: 10px;
  transform: translateY(0);
  transition: all .3s ease;
}
.case-wrap .container .content.client .col .wrap {
  height: 100px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.case-wrap .container .content.client .col:hover {
  transform: translateY(-5px);
}
.case-wrap .container .content.client .col:hover .wrap {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
}
.case-wrap .container .content.client .col:hover .wrap img {
  filter: grayscale(0);
}
.case-wrap .container .content.client .col .wrap img {
  width: 80%;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  /*transition: filter .3s ease;*/
}



.swiper-slide.footer {
  /*height: 641px;*/
  /*height: 297px;*/
  height: 585px;
}



@media screen and (max-width: 750px) {
  .full-screen {
    height: unset;
  }
  .full-screen > .swiper-wrapper {
    height: unset;
    display: block;
  }
  .banner-wrap {
    height: 92vh;
  }
  .banner-wrap .swiper-slide-active .hover {
    width: 90%;
  }
  .banner-wrap .swiper-slide > img {
    height: 100%;
  }
  .banner-wrap .hover img {
    width: 90px;
  }
  .banner-wrap .hover small {
    font-size: 14px;
  }
  .banner-wrap .hover h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  .banner-wrap .pagination ul {
    max-width: unset;
    width: 90vw;
  }
  .desc-wrap {
    height: unset;
  }

  .desc-wrap > img:nth-child(1) {
    width: 90vw;
    height: 800px;
    object-fit: cover;
  }
  .desc-wrap > img:nth-child(2) {
    width: 92vw;
    height: 770px;
    object-fit: cover;
  }
  .desc-wrap .hover {
    max-width: unset;
    width: 80%;
    padding-top: 90px;
  }
  .desc-wrap .hover h2 {
    font-size: 40px;
  }
  .desc-wrap .hover h3 {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .desc-wrap .hover .col {
    margin-bottom: 15px;
  }
  .desc-wrap .hover .col .number {
    font-size: 24px;
  }
  .desc-wrap .hover .col p {
    font-size: 13px;
  }
  .desc-wrap .hover .rich-text {
    padding-right: 10px;
  }
  .desc-wrap .hover .rich-text p {
    font-size: 14px;
    line-height: 1.4;
  }
  .desc-wrap .hover .bto {
    font-size: 14px;
  }
  .desc-wrap .hover .bto img {
    margin-right: 10px;
  }

  .product-wrap {
    height: 600px;
  }
  .product-wrap .swiper-slide > img:nth-child(2) {
    display: none;
  }
  .product-wrap .hover {
    position: relative;
    top: unset;
    left: unset;
    width: 80%;
    margin: 0 auto;
    transform: translate(0);
    padding-top: 80px;
  }
  .product-wrap .hover small {
    font-size: 14px;
  }
  .product-wrap .hover h2 {
    font-size: 22px;
    margin: 15px 0;
  }
  .product-wrap .hover p {
    font-size: 12px;
    opacity: .9;
    line-height: 2.5;
  }
  .product-wrap .hover .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
  }
  .product-wrap .hover .rw {
    margin: 30px 0 20px;
  }
  .product-wrap .hover .col p {
    font-size: 12px;
  }
  .product-wrap .hover a {
    line-height: 1;
  }
  .product-wrap .hover a img {
    height: 15px;
    margin-right: 10px;
  }
  .product-wrap .hover a {
    font-size: 12px;
  }
  .product-wrap .swiper-pagination {
    font-size: 14px;
  }
  .product-wrap .swiper-pagination {
    bottom: 40px;
  }
  .product-wrap .swiper-controller {
    width: 130px;
    bottom: 38px;
  }

  .salve-wrap {
    height: unset;
    flex-wrap: wrap;
  }
  .salve-wrap .col {
    width: 50%;
  }
  .salve-wrap .icon {
    width: 60px;
    height: 60px;
  }
  .salve-wrap h3 {
    font-size: 14px;
    margin: 15px 0 5px;
    white-space: wrap;
  }
  .salve-wrap .col > img,
  .salve-wrap .col .c > img {
    width: 100%;
  }
  .salve-wrap .col .rich-text {
    font-size: 12px;
    display: none;
  }

  .news-wrap {
    height: unset;
    background: unset;
    padding-bottom: 60px;
  }
  .news-wrap .container {
    max-width: unset;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  .news-wrap .container header {
    padding: 12px 0;
  }
  .news-wrap .container .row {
    margin: unset;
  }
  .news-wrap .container .row img {
    height: 200px;
  }
  .news-wrap .container header h3 {
    font-size: 20px;
  }
  .news-wrap .container .row .col {
    display: block;
    padding: 0 0 30px;
  }
  .news-wrap .container header ul li {
    color: #666;
  }
  .news-wrap .container header ul li + li {
    margin-left: 20px;
  }
  .news-wrap .container header ul li + li::after {
    left: -15px;
  }
  .news-wrap .container .row p {
    margin: 0 0 15px;
  }
  .news-wrap .container .row .button {
    width: unset;
    height: unset;
    line-height: 40px;
  }

  .case-wrap {
    height: unset;
    padding: 60px 0;
  }
  .case-wrap h2 {
    margin: 0 0 30px;
  }
  .case-wrap .row {
    display: flex;
    margin: 0 -5px;
  }
  .case-wrap .container .row.tab .col {
    flex: 1;
    padding: 0 5px;
  }
  .case-wrap .container .row.tab .wrap {
    height: 50px;
    border-radius: 5px;
  }
  .case-wrap .container .row.tab .col span {
    font-size: 14px;
  }
  .case-wrap .container .content.case {
    height: unset;
    padding-bottom: 30px;
    margin-bottom: 15px;
  }
  .case-wrap .container .content.case .left .cts {
    width: unset;
  }
  .case-wrap .container .content.case .right {
    display: none;
  }
  .case-wrap .container .content.case .left .swiper {
    width: 99%;
  }
  .case-wrap .container .content.client .row {
    display: block;
  }
  .case-wrap .container .content.client .col:nth-child(n+10) {
    display: none;
  }
  .case-wrap .container .content.case .rw {
    display: block;
  }
  .case-wrap .container .content.case .rw .cover {
    width: 100%;
    max-width: unset;
    margin: unset;
  }
  .case-wrap .container .content.case .left .cts .rich-text {
    font-size: 14px;
    width: unset;
    margin-top: 10px;
  }

  .swiper-slide.footer {
    height: unset;
  }
}
