.banner-wrap img {
  height: unset;
  object-fit: contain;
}

.flag {
  position: absolute;
  top: 0;
  left: 0;
}
.flag#p1 {
  top: -200px;
}
.flag#p2 {
  top: -300px;
}
.flag#p3 {
  top: -150px;
}
.flag#p4 {
  top: -200px;
}

.brand-page-wrap .rw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-page-wrap .dps li {
  font-size: 16px;
  color: #666666;
}
.brand-page-wrap .dps li.active {
  font-weight: 700;
  color: var(--main-color);
}
.brand-page-wrap .dps li::after {
  display: none;
}
.brand-page-wrap .dps li + li {
  margin-left: 80px;
}


.module-wrap h2 {
  font-size: 30px;
  color: #333;
  margin: unset;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-bottom: 40px;
}
.module-wrap h2::before {
  content: "";
  display: block;
  width: 3px;
  height: 28px;
  background: RGBA(253, 100, 59, 1);
  margin-right: 20px;
  transform: translateY(1px);
}


.product-wrap {
  padding-bottom: 100px;
  position: relative;
}
.product-wrap .rw {
  display: flex;
}
.product-wrap .rw .cover {
  /*margin-left: -170px;*/
  max-width: 640px;
  flex: 1;
}
.product-wrap .rw .cover img {
  width: 100%;
  object-fit: contain;
}
.product-wrap .rw .desc {
  flex: 1;
}
.product-wrap h2 {
  display: flex;
  align-items: end;
  line-height: 1;
  margin: unset;
}
.product-wrap h2 small {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1;
  margin-left: 30px;
}
.product-wrap header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.product-wrap header a {
  font-size: 16px;
  font-weight: 400;
  color: #133686;
}
.product-wrap h2 span {
  font-size: 34px;
  color: #333333;
  margin: unset;
}

@media screen and (max-width: 1100px) {
  .product-wrap h2 small {
    font-size: 12px;
  }
}

.product-wrap .rw {
  margin-top: 100px;
}
.product-wrap h3 {
  font-size: 30px;
  color: #333;
  display: flex;
  align-items: center;
  line-height: 1;
  margin: 0 0 40px;
}
.product-wrap h3::before {
  content: "";
  display: block;
  width: 3px;
  height: 28px;
  background: RGBA(253, 100, 59, 1);
  margin-right: 20px;
  transform: translateY(1px);
}
.product-wrap h4 {
  margin: unset;
  line-height: 60px;
}
.product-wrap .table {
  background: #F7F8FC;
  padding: 20px 40px 20px;
  text-align: center;
  font-size: 24px;
  color: var(--main-color);
  overflow: hidden;
}
.product-wrap .table table {
  width: 100%;
  border-collapse: collapse;
}
.product-wrap .table tr:nth-child(odd) {
  background: #fff;
}
.product-wrap .table td {
  height: 60px;
  padding-left: 60px;
}
.product-wrap .table td:first-child {
  font-size: 16px;
  color: #666666;
}
.product-wrap .table td:last-child {
  font-size: 16px;
  color: #333333;
}


.customer-wrap {
  padding-bottom: 100px;
  position: relative;
}
.customer-wrap .row {
  margin: -10px;
}
.customer-wrap .col {
  padding: 10px;
}
.customer-wrap .wrap {
  height: 100px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(19, 53, 134, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  text-align: center;
  line-height: 1.6;
  font-size: 18px;
  color: #333;
  transition: background .3s ease, color .3s ease;
  cursor: default;
}
.customer-wrap .wrap:hover {
  background: var(--main-color);
  color: #fff;
}


.video-wrap {
  text-align: center;
  padding-bottom: 100px;
  position: relative;
}
.video-wrap .row {
  margin: -10px -10px;
}
.video-wrap .col {
  padding: 10px;
}
.video-wrap .wrap {
  position: relative;
  border-radius: 6px 6px 6px 6px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #efefef;
}
.video-wrap .wrap:hover::after {
  transform: scale(1);
  opacity: 1;
}
.video-wrap .wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(19, 53, 134, 0.2), rgba(19, 53, 134, 0.8));
  transform: scale(3);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.video-wrap .wrap > img {
  display: block;
  width: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.video-wrap .wrap:hover p {
  color: #fff;
}
.video-wrap p {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  font-size: 18px;
  color: #333;
  z-index: 1;
  margin: 0;
}
.video-wrap .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
}
.video-wrap .wrap:hover .play {
  opacity: 1;
}

.setup-wrap {
  padding-bottom: 100px;
  position: relative;
}
.setup-wrap .rich-text {
  font-size: 18px;
  color: #333;
}
.setup-wrap .rich-text img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}


.case-wrap {
  margin-bottom: 80px;
  position: relative;
}
.case-wrap a {
  display: block;
}
.case-wrap img {
  display: block;
  width: 100%;
  object-fit: contain;
  border-radius: 6px 6px 0 0;
}
.case-wrap p {
  line-height: 90px;
  margin: unset;
  padding: 0 40px;
  background: #f7f8fc;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  transition: color .3s ease;
  border-radius: 0 0 6px 6px;
}
.case-wrap .row {
  margin: -10px;
}
.case-wrap .row .col {
  padding: 10px;
}
.case-wrap .row .col:hover a p {
  color: var(--main-color);
}


@media screen and (max-width: 640px) {
  .product-wrap {
    padding-bottom: 50px;
  }
  .product-wrap header {
    display: block;
  }
  .product-wrap h2 small {
    margin: unset;
    font-size: 12px;
  }
  .brand-page-wrap .dps {
    display: none;
  }
  .product-wrap .rw {
    display: block;
    margin-top: 30px;
  }
  .product-wrap .rw .cover {
    margin-left: unset;
  }
  .product-wrap .rw .cover img {
    max-width: 100%;
  }
  .product-wrap small {
    font-size: 16px;
    line-height: 1.8;
  }
  .product-wrap h3 {
    font-size: 24px;
    line-height: 1;
    margin: 50px 0 20px;
  }
  .product-wrap h3::before {
    height: 24px;
  }
  .product-wrap .table {
    margin: 20px 0 0;
    padding: 0 20px 20px;
  }
  .product-wrap .table h4 {
    /*padding: 20px 0;*/
    font-size: 18px;
  }
  .product-wrap .table thead tr {
    font-size: 14px;
  }
  .product-wrap .table td {
    height: 40px;
    font-size: 12px;
    padding-left: unset;
  }
  .product-wrap .table td {
    font-size: 12px !important;
  }


  .module-wrap h2 {
    font-size: 24px;
    line-height: 1;
    padding-bottom: 20px;
  }
  .product-wrap h2 {
    display: block;
  }
  .product-wrap h2::before {
    height: 24px;
  }
  .product-wrap h2 span {
    font-size: 24px;
    display: block;
    margin: 20px 0 5px;
  }
  .product-wrap a {
    display: block;
    font-size: 14px;
    margin-top: 20px;
  }
  .product-wrap small {
    font-size: 14px;
  }

  .customer-wrap {
    padding-bottom: 50px;
  }
  .customer-wrap .wrap {
    font-size: 14px;
    padding:  0 20px;
  }

  .case-wrap {
    margin-bottom: 50px;
  }
  .case-wrap p {
    padding: 0 20px;
    line-height: 60px;
    font-size: 16px;
  }
}
