/* products-detail */
.products-detail {
  padding: 30px 0;
}

.products-detail .lt-nav {
  margin-bottom: 20px;
}

.products-detail .swiper-gallery .swiper-container {
  border-radius: 10px;
}

.products-detail .swiper-gallery .swiper-slide {
  text-align: center;
}

.products-detail .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 760 / 580;
}

.products-detail .swiper-thumbs {
  display: none;
}

.products-detail .title {
  text-align: left;
  margin-bottom: 7px;
}

.products-detail .sub-info {
  max-height: 180px;
  color: #666666;
  line-height: 30px;
  margin-bottom: 13px;
}

.products-detail .btn-wrap {
  padding-top: 20px;
  border-top: 1px solid #E6E6E6;
}

.products-detail .btn {
  width: 210px;
  color: #fff;
  padding: 7px 15px;
  border-radius: 6px;
  background: var(--style-color);
}

@media (min-width: 768px) {
  .products-detail .lt-nav {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .products-detail .swiper-pagination {
    display: none;
  }

  .products-detail .swiper-thumbs {
    margin-top: 30px;
    max-width: 620px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 41px;
    padding-right: 41px;
    position: relative;
  }

  .products-detail .swiper-thumbs .swiper-slide {
    overflow: hidden;
    cursor: pointer;
  }

  .products-detail .swiper-thumbs .swiper-slide::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%) scale(.5);
    border: 3px solid var(--style-color);
    opacity: 0;
  }

  .products-detail .swiper-thumbs .swiper-slide-thumb-active::after {
    opacity: 1;
  }

  .products-detail .prev-btn, .products-detail .next-btn {
    width: 24px;
    height: 50px;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    background: var(--style-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .products-detail .swiper-button-disabled {
    background: #E2E2E2;
  }
}

@media (min-width: 1200px) {
  .products-detail {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .products-detail .container {
    display: flex;
    align-items: flex-end;
  }

  .products-detail .lt-nav {
    width: 600px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .products-detail .rt-content {
    flex: 0 0 calc(100% - 600px);
    max-width: calc(100% - 600px);
    padding-left: 30px;
    display: flex;
    flex-direction: column-reverse;
  }

  .products-detail .sub-info {
    margin-bottom: 23px;
  }

  .products-detail .swiper-thumbs {
    width: 100%;
    max-width: 100%;
  }

  .products-detail .btn-wrap {
    padding-top: 30px;
  }

  .products-detail .btn {
    width: 315px;
    padding: 11px 20px;
  }
}

@media (min-width: 1440px) {
  .products-detail {
    padding-bottom: 80px;
  }

  .products-detail .lt-nav {
    width: 760px;
  }

  .products-detail .rt-content {
    flex: 0 0 calc(100% - 760px);
    max-width: calc(100% - 760px);
    padding-left: 60px;
  }

  .products-detail .swiper-thumbs {
    margin-top: 60px;
  }

  .products-detail .sub-info {
    margin-bottom: 33px;
  }

  .products-detail .btn-wrap {
    padding-top: 40px;
  }

  .products-detail .btn {
    font-size: 24px;
  }
}

@media (min-width: 1640px) {
  .products-detail .swiper-thumbs {
    margin-top: 83px;
  }
}


/* anchor-wrap */
.anchor-wrap {
  width: 100%;
  padding: 0 15px;
  overflow-x: auto;
  max-width: 100vw;
  background: var(--style-color);
  transition: all .3s;
  position: relative;
}

.anchor-wrap.active {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  box-shadow: 0px 3px 6px 1px rgba(255, 255, 255, .1);
}

.anchor-wrap::-webkit-scrollbar {
  width: auto;
  height: 4px;
}

.anchor-wrap::-webkit-scrollbar-track {
  background: #fff;
}

.anchor-wrap::-webkit-scrollbar-thumb {
  background: #1057C5;
}

.anchor-wrap .anchor-nav {
  display: flex;
}

.anchor-wrap .anchor-nav li {
  flex: 1 1;
  color: #fff;
  font-size: 16px;
  padding: 10px 30px;
  white-space: nowrap;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  position: relative;
  cursor: pointer;
}

.anchor-wrap .anchor-nav li:hover {
  background: #1057C5;
}

.anchor-wrap .anchor-nav li:not(:Last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  display: block;
  background-color: #fff;
}

@media (min-width: 1200px) {
  .anchor-wrap .anchor-nav {
    margin: 0 auto;
    max-width: 1440px;
  }

  .anchor-wrap .anchor-nav li {
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

@media (min-width: 1440px) {
  .anchor-wrap .anchor-nav li {
    font-size: 20px;
  }
}


/* features */
@font-face {
  font-family: 'BOXING';
  src: url('../public/Themes/fonts/BOXING.TTF');
}

.features {
  margin-top: 2px;
  padding: 30px 0 36px;
  background: #F4F7FC;
}

.features .title {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 11px;
  border-bottom: 1px solid #D8D8D8;
}

.features .swiper-slide {
  height: unset;
  border-radius: 0px 60px 0px 0px;
  border: 1px solid rgba(21, 73, 154, 0.6);
  overflow: hidden;
}

.features .swiper-slide:hover {
  color: #fff;
}

.features .info-wrap {
  height: 100%;
  padding: 29px 23px 22px;
  background: #fff;
}

.features .swiper-slide:hover .info-wrap {
  background: rgba(21, 73, 154, .9);
}

.features .title-wrap {
  padding-bottom: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--style-color);
}

.features .swiper-slide:hover .title-wrap {
  border-color: rgba(255, 255, 255, .75);
}

.features .num {
  font-size: 50px;
  line-height: 1;
  margin-right: 15px;
  color: transparent;
  font-family: 'BOXING';
  letter-spacing: 10px;
  -webkit-text-stroke: 2px #7291C2;
  text-stroke: 2px #7291C2;
  position: relative;
  top: 4px;
}

.features .swiper-slide:hover .num {
  -webkit-text-stroke-color: #fff;
  text-stroke-color: #fff;
}

.features .info {
  height: 150px;
  color: #666666;
  line-height: 30px;
}

.features .swiper-slide:hover .info {
  color: #FFFFFF;
  opacity: .9;
}

.features .swiper-pagination {
  display: block;
}

@media (min-width: 1200px) {
  .features {
    padding-top: 60px;
  }

  .features .title {
    margin-bottom: 40px;
  }

  .features .title-wrap {
    padding-bottom: 29px;
    margin-bottom: 24px;
  }

  .features .num {
    font-size: 60px;
    margin-right: 28px;
  }

  .features .swiper-pagination {
    margin-top: 36px;
  }
}

@media (min-width: 1440px) {
  .features {
    padding-top: 72px;
  }

  .features .title-wrap {
    padding-right: 44px;
  }
}


/* specifications */
.specifications {
  padding: 30px 0;
}

.specifications .title {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 11px;
  border-bottom: 1px solid #D8D8D8;
}

.specifications .tab-list li {
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 6px;
  color: var(--style-color);
  border: 1px solid var(--style-color);
  cursor: pointer;
}

.specifications .tab-list li.active {
  color: #fff;
  background: var(--style-color);
}

.specifications .tab-content {
  margin-top: 20px;
}

.specifications .sub-info tr:first-child, .specifications .bottom-info tr:first-child {
  color: #fff;
  font-weight: bold;
  background: #1057C5;
}

.specifications .sub-info th, .specifications .sub-info td, .specifications .bottom-info th, .specifications .bottom-info td {
  border-color: #C4D5EA;
}

.specifications .info {
  color: #1057C5;
  margin-top: 15px;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .specifications .tab-list {
    margin-left: -15px;
    margin-right: -15px;
  }

  .specifications .tab-list li {
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 1200px) {
  .specifications {
    padding: 60px 0;
  }

  .specifications .title {
    margin-bottom: 40px;
  }

  .specifications .tab-list li {
    padding: 11px 20px;
  }

  .specifications .tab-content {
    margin-top: 40px;
  }

  .specifications .sub-info tr {
    font-size: 18px;
  }

  .specifications .sub-info th, .specifications .sub-info td, .specifications .bottom-info th, .specifications .bottom-info td {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .specifications .info {
    margin-bottom: 67px;
  }
}

@media (min-width: 1440px) {
  .specifications {
    padding-bottom: 75px;
  }
}


/* why-choose-us */
@font-face {
  font-family: 'DIN-Bold';
  src: url('../public/Themes/fonts/DIN-Bold.ttf');
}

.why-choose-us {
  padding: 30px 0;
  background: #F4F7FC;
}

.why-choose-us .title {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 11px;
  border-bottom: 1px solid #D8D8D8;
}

.why-choose-us .top-img, .why-choose-us .bottom-img {
  display: none;
}

.why-choose-us .lt {
  position: relative;
  margin-bottom: 30px;
}

.why-choose-us .lt .scrollbar-y {
  max-height: 410px;
}

.why-choose-us .item {
  display: flex;
  align-items: center;
}

.why-choose-us .item:not(:last-child) {
  margin-bottom: 30px;
}

.why-choose-us .num-info {
  width: 80px;
  height: 80px;
  font-size: 26px;
  border-radius: 50%;
  border: 2px solid var(--style-color);
}

.why-choose-us .num {
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 50%;
  font-family: 'DIN-Bold';
  border: 3px solid #fff;
  background: var(--style-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-us .icon {
  display: none;
}

.why-choose-us .info-group {
  flex: 1;
  padding-left: 30px;
}

.why-choose-us .info {
  margin-top: 5px;
  color: #999999;
}

.why-choose-us .rt {
  text-align: center;
}

.why-choose-us .rt img {
  width: 100%;
  max-width: 619px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .why-choose-us .lt {
    position: relative;
  }

  .why-choose-us .lt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 225px;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    border: 1px dashed #555555;
  }

  .why-choose-us .item {
    position: relative;
    z-index: 1;
  }

  .why-choose-us .num-wrap {
    width: 180px;
    flex-shrink: 0;
    position: relative;
  }

  .why-choose-us .num-wrap::before {
    content: '';
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    height: 2px;
    background: var(--style-color);
  }

  .why-choose-us .num-info {
    position: relative;
    z-index: 1;
  }

  .why-choose-us .icon {
    width: auto;
    height: 30px;
    display: block;
    margin-left: 30px;
    margin-right: 30px;
    flex-shrink: 0;
  }

  .why-choose-us .info-group {
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .why-choose-us {
    padding: 60px 0;
    position: relative;
  }

  .why-choose-us .top-img {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(180deg);
    width: calc((320 / 1920) * 100%);
    display: block;
  }

  .why-choose-us .bottom-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc((320 / 1920) * 100%);
    display: block;
  }

  .why-choose-us .container {
    position: relative;
    z-index: 1;
  }

  .why-choose-us .title {
    margin-bottom: 40px;
  }

  .why-choose-us .item-wrap {
    display: flex;
    align-items: center;
  }

  .why-choose-us .lt {
    flex: 1;
    padding-right: 45px;
    margin-bottom: 0;
  }

  .why-choose-us .rt {
    flex: 0 0 calc((619 / 1440) * 100%);
    max-width: calc((619 / 1440) * 100%);
  }

  .why-choose-us .lt .scrollbar-y {
    max-height: 450px;
  }

  .why-choose-us .num-info {
    width: 90px;
    height: 90px;
    font-size: 34px;
  }
}

@media (min-width: 1440px) {
  .why-choose-us {
    padding-top: 74px;
    padding-bottom: 80px;
  }

  .why-choose-us .lt {
    padding-right: 80px;
  }

  .why-choose-us .lt::before {
    left: 245px;
  }

  .why-choose-us .lt .scrollbar-y {
    max-height: 518px;
  }

  .why-choose-us .item:not(:last-child) {
    margin-bottom: 50px;
  }

  .why-choose-us .num-wrap {
    width: 200px;
  }

  .why-choose-us .info {
    margin-top: 11px;
  }
}


/* applications */
.applications {
  padding: 30px 0;
}

.applications .title {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 11px;
  border-bottom: 1px solid #D8D8D8;
}

.applications .row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}

.applications .row>div {
  padding: 0 10px;
  margin-bottom: 20px;
}

.applications .block {
  width: 100%;
  min-height: 150px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 10px;
  aspect-ratio: 710 / 260;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.applications .block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.2;
}

.applications .tit {
  color: #fff;
  text-align: center;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .applications {
    padding: 64px 0 60px;
  }

  .applications .title {
    margin-bottom: 40px;
  }
}

@media (min-width: 1440px) {
  .applications {
    padding-bottom: 80px;
  }
}


/* video */
.video {
  padding: 30px 0;
  background: #F4F7FC;
}

.video .top-img, .video .bottom-img {
  display: none;
}

.video .title {
  color: var(--style-color);
  margin-bottom: 20px;
}

.video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 730;
  border-radius: 10px;
  display: block;
  background: #eee;
}

@media (min-width: 1200px) {
  .video {
    padding: 60px 0;
    position: relative;
  }

  .video .top-img {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(180deg);
    width: calc((320 / 1920) * 100%);
    display: block;
  }

  .video .bottom-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc((320 / 1920) * 100%);
    display: block;
  }

  .video .title {
    margin-bottom: 44px;
  }
}

@media (min-width: 1200px) {
  .video {
    padding-top: 74px;
    padding-bottom: 80px;
  }
}


/* our-cases */
.our-cases {
  background: #F4F7FC;
}

.our-cases .cases-wrap {
  padding: 30px 0;
  background-size: 100% 400px;
  background-position: top center;
  background-repeat: no-repeat;
}

.our-cases .title {
  color: #fff;
  margin-bottom: 4px;
}

.our-cases .sub-info {
  color: #fff;
  line-height: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.our-cases .swiper-container {
  margin-top: -10px;
  margin-bottom: -10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.our-cases .swiper-slide {
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.our-cases .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.our-cases .tit {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.8);
}

@media (min-width: 1200px) {
  .our-cases .cases-wrap {
    padding: 60px 0;
  }

  .our-cases .swiper-container {
    margin: -10px 0;
    padding: 10px 0;
  }

  .our-cases .swiper-slide {
    width: 581px;
  }

  .our-cases .swiper-slide:not(.swiper-slide-active) {
    box-shadow: none;
  }

  .our-cases .tit {
    bottom: 25px;
    font-size: 24px;
  }
}

@media (min-width: 1440px) {
  .our-cases .cases-wrap {
    padding-top: 74px;
    padding-bottom: 80px;
  }

  .our-cases .sub-info {
    margin-bottom: 43px;
  }

  .our-cases .swiper-slide {
    width: 675px;
  }

  .our-cases .tit {
    bottom: 34px;
    font-size: 26px;
  }
}

@media (min-width: 1640px) {
  .our-cases .swiper-slide {
    width: 700px;
  }
}


/* faq */
.faq {
  padding: 30px 0;
}

.faq .lt {
  margin-bottom: 20px;
}

.faq .lt img {
  border-radius: 10px;
}

.faq .title {
  max-width: 450px;
  text-align: left;
  margin-bottom: 15px;
}

.faq .title span {
  color: var(--style-color);
}

.faq .item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E6E6E6;
}

.faq .item-title {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq .item-title.active {
  color: var(--style-color);
}

.faq .item-title i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 15px;
  margin-right: 20px;
  position: relative;
}

.faq .item-title i::before,
.faq .item-title i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
}

.faq .item-title.active i::before,
.faq .item-title.active i::after {
  background: var(--style-color);
}

.faq .item-title i::before {
  width: 2px;
  height: 100%;
  transition: height .3s;
}

.faq .item-title.active i::before {
  height: 0;
}

.faq .item-title i::after {
  width: 100%;
  height: 2px;
}

.faq .item-info {
  line-height: 30px;
  margin-top: 2px;
  margin-bottom: -3px;
  display: none;
}

@media (min-width: 992px) {
  .faq .container {
    display: flex;
  }

  .faq .lt {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0;
  }

  .faq .rt {
    flex: 1;
    padding-top: 15px;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .faq {
    padding: 60px 0;
  }

  .faq .rt {
    padding-top: 27px;
    padding-left: 60px;
  }

  .faq .title {
    margin-bottom: 26px;
  }

  .faq .item-title i {
    margin-right: 36px;
  }
}

@media (min-width: 1440px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}