.common-banner {
  position: relative;
}
.common-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.common-banner .text {
  position: absolute;
  left: 50%;
  top: 42.09302326%;
  transform: translateX(-50%);
  z-index: 2;
}
.common-banner .text .zh {
  line-height: 1;
  font-weight: bold;
  font-size: var(--font60);
  color: #ffffff;
  text-align: center;
  margin-bottom: max(0.17rem, 10px);
}
.common-banner .text .en {
  font-weight: bold;
  font-size: var(--font30);
  line-height: 1.33333333;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.common-page-info {
  background: #f9f9f9;
  padding-top: 20px;
  padding-bottom: 20px;
}
.common-page-info .info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.common-page-info .info-wrap .common-bread-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.common-page-info .info-wrap .common-bread-crumb .bread-item {
  font-weight: 400;
  font-size: var(--font18);
  color: #999999;
  display: flex;
  align-items: center;
}
.common-page-info .info-wrap .common-bread-crumb .bread-item:last-child {
  color: #5e5e5e;
}
.common-page-info .info-wrap .common-bread-crumb .bread-item:not(:last-child)::after {
  content: ">";
  margin-left: 5px;
  margin-right: 5px;
}
.common-page-info .info-wrap .common-tab-list {
  display: flex;
  align-items: center;
  column-gap: max(15px, 1rem);
}
.common-page-info .info-wrap .common-tab-list .tab-item {
  white-space: nowrap;
  font-weight: 400;
  font-size: var(--font18);
  line-height: 2;
  color: #999999;
  position: relative;
  transition: var(--duration);
}
.common-page-info .info-wrap .common-tab-list .tab-item::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0px;
  width: 8px;
  height: 8px;
  background: #e71c2b;
  border-radius: 50%;
  opacity: 0;
  transition: var(--duration);
}
.common-page-info .info-wrap .common-tab-list .tab-item.active,
.common-page-info .info-wrap .common-tab-list .tab-item:hover {
  color: #e71c2b;
}
.common-page-info .info-wrap .common-tab-list .tab-item.active::before,
.common-page-info .info-wrap .common-tab-list .tab-item:hover::before {
  opacity: 1;
}
.product-center-page .product-center-main {
  padding-top: max(0.95rem, var(--space));
  padding-bottom: max(0.9rem, var(--space));
}
.product-center-page .product-center-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: max(0.4rem, 20px);
  row-gap: 30px;
}
.product-center-page .product-center-list .product-item {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(0.6rem, 20px);
  padding-bottom: max(0.6rem, 20px);
  padding-left: max(0.5rem, 15px);
  padding-right: max(0.5rem, 15px);
  display: flex;
  flex-direction: column;
}
.product-center-page .product-center-list .product-item:hover .pic img {
  transform: scale(1.05);
}
.product-center-page .product-center-list .product-item .text .text-title {
  font-weight: bold;
  font-size: var(--font34);
  color: #333333;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: 20px;
}
.product-center-page .product-center-list .product-item .text .link {
  width: 130px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font18);
  color: #000000;
  transition: var(--duration);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.product-center-page .product-center-list .product-item .text .link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--theme);
  z-index: -1;
  transition: var(--duration);
}
.product-center-page .product-center-list .product-item .text .link:hover {
  color: #ffffff;
  border-color: transparent;
}
.product-center-page .product-center-list .product-item .text .link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.product-center-page .product-center-list .product-item .pic {
  margin-top: max(0.5rem, 20px);
  margin-left: auto;
  margin-right: auto;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-center-page .product-center-list .product-item .pic img {
  display: block;
  width: auto;
  max-width: 86%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  transition: var(--duration);
}
.product-list-page .product-list-main {
  padding-top: max(0.95rem, var(--space));
  padding-bottom: max(1.35rem, var(--space));
}
.product-list-page .product-list-main .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: max(0.3rem, 20px);
  row-gap: 30px;
}
.product-list-page .product-list-main .list .item {
  overflow: hidden;
  background-color: #fafafa;
  padding-left: max(0.8rem, 20px);
  padding-right: max(0.8rem, 20px);
  padding-top: max(0.6rem, 20px);
  padding-bottom: max(0.4rem, 20px);
}
.product-list-page .product-list-main .list .item:hover .pic img {
  transform: translateX(-50%) scale(1.05);
}
.product-list-page .product-list-main .list .item:hover .text {
  color: var(--theme);
}
.product-list-page .product-list-main .list .item .pic {
  display: block;
  position: relative;
  overflow: hidden;
}
.product-list-page .product-list-main .list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 54.51977401%;
}
.product-list-page .product-list-main .list .item .pic img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--duration);
}
.product-list-page .product-list-main .list .item .text {
  font-weight: 400;
  font-size: var(--font24);
  color: #717171;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: max(0.4rem, 20px);
  transition: var(--duration);
}
.product-detail-page .product-detail-section1 {
  padding-top: max(1.23rem, var(--space));
  /* padding-bottom: max(2.5rem, var(--space)); */
  padding-bottom: max(1rem, 35px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.product-detail-page .attribute-title {
  font-weight: bold;
  font-size: var(--font50);
  color: #010101;
  text-align: center;
  margin-bottom: max(0.84rem, 30px);
}
.product-detail-page .product-detail-section1 .detail-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.product-detail-page .product-detail-section1 .detail-wrap .left {
  padding-top: 0.6rem;
  width: 38.125%;
  flex-shrink: 0;
}
.product-detail-page .product-detail-section1 .detail-wrap .left .pic {
  display: block;
  width: 100%;
}
.product-detail-page .product-detail-section1 .detail-wrap .left .pic img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.product-detail-page .product-detail-section1 .detail-wrap .right {
  width: 45.625%;
  flex-shrink: 0;
}
.product-detail-page .product-detail-section1 .detail-wrap .right .pro-title {
  font-weight: bold;
  font-size: var(--font60);
  color: #000000;
  overflow-wrap: break-word;
  margin-bottom: max(0.7rem, 20px);
}
.product-detail-page .product-detail-section1 .detail-wrap .right .pro-desc {
  font-weight: 300;
  font-size: var(--font20);
  color: #333333;
  line-height: 1.6;
  margin-bottom: max(0.5rem, 20px);
}
.product-detail-page .product-detail-section1 .detail-wrap .right .pro-desc p:not(:last-child) {
  margin-bottom: max(0.36rem, 20px);
}
.product-detail-page .product-detail-section1 .detail-wrap .right .download-btn {
  width: max(2.88rem, 160px);
  height: max(0.66rem, 45px);
  background: #e71c2b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
}
.product-detail-page .product-detail-section1 .detail-wrap .right .download-btn img {
  flex-shrink: 0;
  width: max(0.31rem, 20px);
  margin-right: 14px;
}
.product-detail-page .pro-feature {
  /* padding-top: max(1.18rem, var(--space)); */
  padding-top: max(1rem, 35px);
  padding-bottom: max(1.45rem, var(--space));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f9f9f9;
}
.product-detail-page .pro-feature .feature-wrap {
  max-width: 1390px;
}
.product-detail-page .pro-feature .feature-wrap .feature-title {
  font-weight: bold;
  font-size: var(--font50);
  color: #010101;
  text-align: center;
  margin-bottom: max(0.84rem, 30px);
}
.product-detail-page .pro-feature .feature-wrap .feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: max(0.4rem, 20px);
  row-gap: 20px;
}
.product-detail-page .pro-feature .feature-wrap .feature-list .item {
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: max(0.46rem, 15px);
  padding-right: max(0.46rem, 15px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0px max(0.27rem, 20px) 76px 33px rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  padding-top: max(0.4rem, 20px);
  padding-bottom: max(0.4rem, 20px);
  position: relative;
  z-index: 2;
}
.product-detail-page .pro-feature .feature-wrap .feature-list .item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: var(--theme);
  transition: var(--duration);
}
.product-detail-page .pro-feature .feature-wrap .feature-list .item:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
}
.product-detail-page .pro-feature .feature-wrap .feature-list .item:hover .icon img {
  filter: brightness(0) invert(1);
}
.product-detail-page .pro-feature .feature-wrap .feature-list .item:hover .text {
  color: #ffffff;
}
.product-detail-page .pro-feature .feature-wrap .feature-list .item .icon {
  width: max(0.36rem, 26px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: max(0.15rem, 10px);
}
.product-detail-page .pro-feature .feature-wrap .feature-list .item .icon img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: var(--duration);
}
.product-detail-page .pro-feature .feature-wrap .feature-list .item .text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  font-weight: 400;
  font-size: var(--font22);
  color: #333333;
  transition: var(--duration);
}
.product-detail-page .pro-application {
  padding-top: max(1rem, var(--space));
  padding-bottom: max(1.78rem, var(--space));
  background-color: #fbfbfb;
}
.product-detail-page .pro-application .title-area {
  margin-bottom: max(0.9rem, 30px);
}
.product-detail-page .pro-application .title-area .title {
  font-weight: bold;
  font-size: var(--font50);
  color: #000000;
  margin-bottom: max(0.3rem, 20px);
  text-align: center;
}
.product-detail-page .pro-application .title-area .desc {
  font-weight: 300;
  font-size: var(--font20);
  color: #666666;
  text-align: center;
}
.product-detail-page .pro-application .application-swiper .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.product-detail-page .pro-application .application-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.product-detail-page .pro-application .application-swiper .swiper-slide .pic {
  display: block;
  padding-bottom: 78.43137255%;
}
.product-detail-page .pro-application .application-swiper .swiper-slide .pic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(33, 116, 187, 0.3), transparent);
  z-index: 1;
}
.product-detail-page .pro-application .application-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.product-detail-page .pro-application .application-swiper .swiper-slide .text {
  position: absolute;
  left: 50%;
  bottom: max(0.45rem, 10px);
  transform: translateX(-50%);
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  z-index: 2;
  font-weight: bold;
  font-size: var(--font30);
  color: #ffffff;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.product-detail-page .pro-application .application-swiper .swiper-pagination {
  position: static;
  margin-top: max(0.95rem, 30px);
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  height: 5px;
  background: #ededed;
  border-radius: 3px;
  overflow: hidden;
}
.product-detail-page .pro-application .application-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #2174bb;
  border-radius: 3px;
}
.common-title {
  font-weight: bold;
  font-size: var(--font50);
  color: #000000;
  text-align: center;
}
.question-list-page .question-list-main {
  padding-top: max(0.96rem, var(--space));
  padding-bottom: max(1.42rem, var(--space));
}
.question-list-page .question-list-main .question-wrap {
  max-width: 1380px;
}
.question-list-page .question-list {
  padding-top: max(1.04rem, 30px);
  padding-bottom: max(1.03rem, 30px);
}
.question-list-page .question-list .item {
  --left: max(0.8rem, 20px);
  --right: max(0.45rem, 20px);
  --unit: 66px;
  --min: 54px;
  user-select: none;
  cursor: pointer;
  background: #fafafa;
  border-radius: 10px;
}
.question-list-page .question-list .item:not(:last-child) {
  margin-bottom: 20px;
}
.question-list-page .question-list .item.active .item-top .right .state {
  transform: rotate(180deg);
}
.question-list-page .question-list .item .item-top {
  display: flex;
  align-items: flex-start;
  padding-top: max(0.35rem, 20px);
  padding-bottom: max(0.35rem, 15px);
  user-select: none;
  cursor: pointer;
  padding-left: var(--left);
  padding-right: var(--right);
  transition: var(--duration);
}
.question-list-page .question-list .item .item-top .left {
  position: relative;
  padding-right: max(0.37rem, 15px);
}
.question-list-page .question-list .item .item-top .left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 0.26rem);
  background-color: #e9e9e9;
}
.question-list-page .question-list .item .item-top .icon {
  width: var(--unit);
  height: var(--unit);
  border-radius: 50%;
  border: 1px dashed #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.question-list-page .question-list .item .item-top .icon .inner {
  width: var(--min);
  height: var(--min);
  border-radius: 50%;
  border: 1px dashed #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: bold;
  font-size: var(--font28);
  color: #b6b6b6;
  line-height: 1;
}
.question-list-page .question-list .item .item-top .right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: start;
  align-self: center;
  font-size: var(--font24);
  line-height: 1.25;
}
.question-list-page .question-list .item .item-top .right .text {
  flex: 1;
  min-width: 0;
  padding-left: max(0.56rem, 20px);
  overflow-wrap: break-word;
  font-weight: 400;
  color: #000000;
  padding-right: 20px;
}
.question-list-page .question-list .item .item-top .right .state {
  width: 22px;
  flex-shrink: 0;
  padding-top: 0.4em;
  transition: var(--duration);
}
.question-list-page .question-list .item .item-top .right .state img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.question-list-page .question-list .item .item-info {
  display: none;
}
.question-list-page .question-list .item .main {
  display: flex;
  align-items: flex-start;
  padding-bottom: max(0.47rem, 20px);
  padding-left: var(--left);
  padding-right: var(--right);
}
.question-list-page .question-list .item .main .icon {
  width: var(--unit);
  height: var(--unit);
  border-radius: 50%;
  border: 1px dashed #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: max(0.37rem, 15px);
}
.question-list-page .question-list .item .main .icon .inner {
  width: var(--min);
  height: var(--min);
  border-radius: 50%;
  border: 1px dashed #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: bold;
  font-size: var(--font28);
  color: #096abe;
  line-height: 1;
}
.question-list-page .question-list .item .main .text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  align-self: center;
  padding-left: max(0.57rem, 20px);
  font-weight: 400;
  font-size: var(--font20);
  color: #2174bb;
  line-height: 1.5;
}
.common-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
}
.common-pagination .item {
  width: 35px;
  height: 35px;
  background: #f4f4f4;
  border-radius: 50%;
  transition: var(--duration);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  flex-shrink: 0;
  font-weight: 300;
  font-size: var(--font16);
  color: #777777;
}
.common-pagination .item img {
  display: block;
  width: 7px;
  transition: var(--duration);
}
.common-pagination .item:hover,
.common-pagination .item.active {
  background-color: #e61f18;
  color: #ffffff;
}
.common-pagination .item:hover img,
.common-pagination .item.active img {
  filter: brightness(0) invert(1);
}
.common-pagination .modify {
  font-weight: 300;
  font-size: var(--font16);
  color: #777777;
  flex-shrink: 0;
  align-self: center;
}
.service-page .service-main {
  padding-top: max(0.95rem, var(--space));
  padding-bottom: max(1.5rem, var(--space));
}
.service-page .service-main .service-wrap {
  max-width: 1340px;
}
.service-page .service-main .title-area .common-title {
  text-align: left;
}
.service-page .service-main .title-area .desc {
  font-weight: 300;
  font-size: var(--font20);
  color: #666666;
}
.service-page .service-main .intro-list {
  margin-top: max(0.85rem, 30px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: max(0.4rem, 20px);
  row-gap: max(0.4rem, 30px);
  margin-bottom: max(0.92rem, 30px);
}
.service-page .service-main .intro-list .intro-item {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding-left: max(0.42rem, 20px);
  padding-right: max(0.27rem, 20px);
  padding-top: max(0.4rem, 20px);
  padding-bottom: max(0.35rem, 20px);
  display: flex;
  align-items: center;
}
.service-page .service-main .intro-list .intro-item .icon {
  width: max(1.1rem, 40px);
  height: max(1.1rem, 40px);
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px dashed #999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-page .service-main .intro-list .intro-item .icon .inner {
  width: 81.81818182%;
  height: 81.81818182%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px dashed #999999;
}
.service-page .service-main .intro-list .intro-item .icon .inner img {
  display: block;
  max-width: 52.22222222%;
  height: auto;
}
.service-page .service-main .intro-list .intro-item .text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  padding-left: max(0.34rem, 20px);
}
.service-page .service-main .intro-list .intro-item .text .text-title {
  font-weight: 500;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.41666667;
  overflow-wrap: break-word;
}
.service-page .service-main .intro-list .intro-item .text .text-title::after {
  content: "";
  display: block;
  margin-top: max(0.17rem, 10px);
  width: 2em;
  height: 2px;
  background: #e71c2b;
  margin-bottom: max(0.2rem, 10px);
}
.service-page .service-main .intro-list .intro-item .text .text-phone {
  font-weight: bold;
  font-size: var(--font20);
  color: #e71c2b;
  line-height: 1.5;
}
.service-page .service-main .intro-list .intro-item .text .text-desc {
  font-weight: 300;
  font-size: var(--font20);
  color: #666666;
  line-height: 1.5;
  overflow-wrap: break-word;
}
.service-page .service-main .article-area .common-title {
  text-align: left;
  margin-bottom: max(0.45rem, 20px);
}
.service-page .service-main .article-area .desc {
  font-weight: 300;
  color: #666666;
  font-size: var(--font20);
  line-height: 1.5;
  overflow-wrap: break-word;
}
.service-page .service-main .article-area .desc p:not(:last-child) {
  margin-bottom: max(0.35rem, 15px);
}
.service-page .service-main .article-area .desc img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.download-page .download-main {
  padding-top: max(1.15rem, var(--space));
  padding-bottom: max(1.13rem, var(--space));
}
.download-page .download-main .download-wrap {
  max-width: 1360px;
}
.download-page .download-main .download-list {
  margin-top: max(0.85rem, 30px);
  margin-bottom: max(1.09rem, 30px);
}
.download-page .download-main .download-list .download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  padding-left: max(0.26rem, 20px);
  padding-right: max(0.4rem, 20px);
  padding-top: max(0.25rem, 20px);
  padding-bottom: max(0.25rem, 20px);
  background: #fafafa;
  border-radius: 10px;
  transition: var(--duration);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.download-page .download-main .download-list .download-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #e71c2b;
  transition: var(--duration);
  z-index: -1;
  pointer-events: none;
}
.download-page .download-main .download-list .download-item:not(:last-child) {
  margin-bottom: 20px;
}
.download-page .download-main .download-list .download-item:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
}
.download-page .download-main .download-list .download-item:hover .icon-prev img {
  filter: brightness(0) invert(1);
}
.download-page .download-main .download-list .download-item:hover .text {
  color: #ffffff;
}
.download-page .download-main .download-list .download-item:hover .icon-next img {
  filter: brightness(0) invert(1);
}
.download-page .download-main .download-list .download-item .icon-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #e9e9e9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-page .download-main .download-list .download-item .icon-prev img {
  display: block;
  width: 66.66666667%;
  height: auto;
  transition: var(--duration);
}
.download-page .download-main .download-list .download-item .text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 400;
  font-size: var(--font22);
  color: #333333;
}
.download-page .download-main .download-list .download-item .icon-next {
  flex-shrink: 0;
  width: 31px;
}
.download-page .download-main .download-list .download-item .icon-next img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: var(--duration);
}
.about-page .about-section1 {
  padding-top: max(1.55rem, var(--space));
  padding-bottom: max(2.18rem, var(--space));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.about-page .about-section1 .about-text .common-title {
  text-align: left;
}
.about-page .about-section1 .about-text .text-desc {
  font-weight: 400;
  font-size: var(--font22);
  color: #000000;
  line-height: 1.5;
  margin-top: max(0.6rem, 20px);
  overflow-wrap: break-word;
}
.about-page .about-section1 .about-text .text-desc p:not(:last-child) {
  margin-bottom: max(0.2rem, 10px);
}
.about-page .about-section1 .about-btn {
  margin-top: max(0.5rem, 20px);
  width: 170px;
  height: 50px;
  border: 2px solid #000000;
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-weight: 400;
  font-size: var(--font18);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
}
.about-page .about-section1 .about-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--theme);
  transition: var(--duration);
}
.about-page .about-section1 .about-btn:hover {
  color: #ffffff;
  border-color: var(--theme);
}
.about-page .about-section1 .about-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.about-page .about-section1 .about-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: max(0.7rem, 35px);
}
.about-page .about-section1 .about-intro .left {
  width: 50%;
  flex-shrink: 0;
}
.about-page .about-section1 .about-intro .left .intro-list .line {
  display: flex;
  justify-content: center;
}
.about-page .about-section1 .about-intro .left .intro-list .line:not(:last-child) .item {
  margin-bottom: 30px;
}
.about-page .about-section1 .about-intro .left .intro-list .line.line1 {
  column-gap: 2.7rem;
}
.about-page .about-section1 .about-intro .left .intro-list .line.line2 {
  column-gap: max(0.4rem, 20px);
}
.about-page .about-section1 .about-intro .left .intro-list .line.line3 {
  column-gap: max(0.3rem, 20px);
}
.about-page .about-section1 .about-intro .left .intro-list .line .item {
  position: relative;
  z-index: 2;
}
.about-page .about-section1 .about-intro .left .intro-list .line .item .main {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  background-image: linear-gradient(-90deg, #d3e8f2 0%, #ffffff 43%);
  border-radius: 40px;
  min-width: 245px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}
.about-page .about-section1 .about-intro .left .intro-list .line .item .main .item-top {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: var(--font42);
  color: #46afe4;
  line-height: 1;
}
.about-page .about-section1 .about-intro .left .intro-list .line .item .main .item-top span:nth-child(2) {
  margin-left: 10px;
}
.about-page .about-section1 .about-intro .left .intro-list .line .item .main .item-bottom {
  line-height: 1;
  font-weight: 900;
  font-size: var(--font16);
  color: #000000;
  text-align: center;
  margin-top: 7px;
}
.about-page .about-section1 .about-intro .left .intro-list .line .item .shadow {
  position: absolute;
  left: 7%;
  top: 60%;
  width: 100%;
  height: auto;
  z-index: -1;
  pointer-events: none;
}
.about-page .about-section1 .about-intro .left .intro-list .line .item .shadow img {
  display: block;
  width: 100%;
  height: auto;
}
.about-page .about-section1 .about-intro .right {
  width: 45.3125%;
  flex-shrink: 0;
}
.about-page .about-section1 .about-intro .right .pic-list {
  display: flex;
  align-items: flex-start;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left 180%;
}
.about-page .about-section1 .about-intro .right .pic-list .item {
  flex-shrink: 0;
  position: relative;
}
.about-page .about-section1 .about-intro .right .pic-list .item .pic {
  display: block;
  width: 100%;
  border: max(0.05rem, 2px) solid rgba(99, 184, 228, 0.75);
}
.about-page .about-section1 .about-intro .right .pic-list .item img {
  display: block;
  width: 100%;
  height: auto;
}
.about-page .about-section1 .about-intro .right .pic-list .item .text {
  font-weight: 500;
  font-size: var(--font21);
  color: #000000;
  line-height: 1.42857143;
  margin-bottom: max(0.17rem, 10px);
  line-height: 1;
}
.about-page .about-section1 .about-intro .right .pic-list .item:nth-child(1) {
  width: 38.20689655%;
  padding-top: 0.84rem;
  left: max(0.05rem, 2px);
}
.about-page .about-section1 .about-intro .right .pic-list .item:nth-child(1) .text {
  padding-left: 1.73rem;
}
.about-page .about-section1 .about-intro .right .pic-list .item:nth-child(2) {
  width: 24.82758621%;
  z-index: 2;
}
.about-page .about-section1 .about-intro .right .pic-list .item:nth-child(2) .text {
  text-align: center;
}
.about-page .about-section1 .about-intro .right .pic-list .item:nth-child(3) {
  width: 38.20689655%;
  padding-top: 0.84rem;
  left: calc(-1 * max(0.05rem, 2px));
}
.about-page .about-section1 .about-intro .right .pic-list .item:nth-child(3) .text {
  padding-left: 0.86rem;
}
.about-page .about-section2 .about-video {
  position: relative;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}
.about-page .about-section2 .about-video::after {
  content: "";
  display: block;
  padding-bottom: 42.5%;
}
.about-page .about-section2 .about-video .poster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.about-page .about-section2 .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 30, 49, 0.75);
  user-select: none;
  cursor: pointer;
}
.about-page .about-section2 .mask .btn-area {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-page .about-section2 .mask .btn-area img {
  display: block;
  width: max(0.75rem, 45px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: max(0.4rem, 20px);
}
.about-page .about-section2 .mask .btn-area .text {
  font-weight: 400;
  font-size: var(--font22);
  color: #ffffff;
  text-align: center;
}
.about-page .about-section3 {
  background-color: #f5f5f5;
  padding-top: 5.1rem;
  padding-bottom: max(1.68rem, var(--space));
  margin-top: -3.4rem;
  overflow: hidden;
}
.about-page .about-section3 .common-title {
  text-align: left;
  margin-bottom: max(0.67rem, 30px);
}
.about-page .about-section3 .development-swiper1 {
  position: relative;
}
.about-page .about-section3 .development-swiper1 .swiper-slide {
  display: flex;
  align-items: flex-start;
}
.about-page .about-section3 .development-swiper1 .swiper-slide .pic {
  width: 32.875%;
  flex-shrink: 0;
}
.about-page .about-section3 .development-swiper1 .swiper-slide .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.about-page .about-section3 .development-swiper1 .swiper-slide .text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  padding-top: max(0.45rem, 20px);
  padding-left: max(0.8rem, 20px);
  padding-right: max(0.8rem, 20px);
}
.about-page .about-section3 .development-swiper1 .swiper-slide .text .text-year {
  font-weight: 400;
  font-size: var(--font56);
  color: #000000;
  line-height: 1;
}
.about-page .about-section3 .development-swiper1 .swiper-slide .text .text-desc {
  font-weight: 400;
  font-size: var(--font22);
  color: #777777;
  line-height: 1.81818182;
  overflow-wrap: break-word;
  margin-top: 20px;
}
.about-page .about-section3 .development-swiper1-btn {
  position: absolute;
  left: calc(32.875% + max(0.8rem, 20px));
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.about-page .about-section3 .development-swiper1-btn .development-swiper-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #aaaaaa;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: var(--duration);
}
.about-page .about-section3 .development-swiper1-btn .development-swiper-icon img {
  display: block;
  width: 10px;
  height: auto;
}
.about-page .about-section3 .development-swiper1-btn .development-swiper-icon .hover {
  display: none;
}
.about-page .about-section3 .development-swiper1-btn .development-swiper-icon:not(.swiper-button-disabled):hover {
  border-color: var(--theme);
  cursor: pointer;
}
.about-page .about-section3 .development-swiper1-btn .development-swiper-icon:not(.swiper-button-disabled):hover .default {
  display: none;
}
.about-page .about-section3 .development-swiper1-btn .development-swiper-icon:not(.swiper-button-disabled):hover .hover {
  display: block;
}
.about-page .about-section3 .development-swiper2 {
  margin-top: max(0.66rem, 30px);
  --unit: max(0.4rem, 20px);
}
.about-page .about-section3 .development-swiper2 .swiper-slide {
  user-select: none;
  cursor: pointer;
  position: relative;
}
.about-page .about-section3 .development-swiper2 .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--unit) / 2 - 1.5px);
  z-index: -1;
  width: 100%;
  height: 3px;
  background: #e4e4e4;
  user-select: none;
}
.about-page .about-section3 .development-swiper2 .swiper-slide .icon {
  position: relative;
  width: var(--unit);
  height: var(--unit);
  margin-left: auto;
  margin-right: auto;
  background: #e2dede;
  border-radius: 50%;
  transition: var(--duration);
  margin-bottom: 10px;
}
.about-page .about-section3 .development-swiper2 .swiper-slide .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background-color: #c7c7c7;
}
.about-page .about-section3 .development-swiper2 .swiper-slide .year {
  text-align: center;
  font-weight: 400;
  font-size: var(--font22);
  color: #c7c7c7;
  transition: var(--duration);
}
.about-page .about-section3 .development-swiper2 .swiper-slide.swiper-slide-thumb-active .icon {
  background-color: #ffbaba;
}
.about-page .about-section3 .development-swiper2 .swiper-slide.swiper-slide-thumb-active .icon::after {
  background-color: #ff0000;
}
.about-page .about-section3 .development-swiper2 .swiper-slide.swiper-slide-thumb-active .year {
  color: #ff0000;
}
.about-page .about-section3 .development-area {
  position: relative;
  z-index: 10;
}
.about-page .about-section3 .development-area .trademark {
  position: absolute;
  left: 0;
  top: 0;
  width: 131px;
  height: 131px;
  background: rgba(231, 28, 43, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.about-page .about-section3 .development-area .trademark .inner {
  width: 76.33587786%;
  height: 76.33587786%;
  background-color: #e71c2b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: var(--font34);
  color: #ffffff;
}
.about-page .about-section3 .development-area .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: max(2.87rem, 180px);
  padding-top: 48px;
  padding-right: max(1.56rem, 60px);
  position: relative;
}
.about-page .about-section3 .development-area .list::before {
  content: "";
  position: absolute;
  left: 131px;
  top: calc(0.155rem + 48px);
  width: max(2.87rem, 180px);
  height: 15px;
  background-color: #e8e8e8;
  pointer-events: none;
}
.about-page .about-section3 .development-area .list .item {
  min-width: 0;
  overflow-wrap: break-word;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: max(0.76rem, 35px);
}
.about-page .about-section3 .development-area .list .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15.5px;
  width: 100%;
  height: 15px;
  background-color: #e8e8e8;
}
.about-page .about-section3 .development-area .list .item .point {
  width: 45px;
  height: 45px;
  background: rgba(247, 50, 50, 0.3);
  border-radius: 50%;
  position: relative;
}
.about-page .about-section3 .development-area .list .item .point::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55.55555556%;
  height: 55.55555556%;
  border-radius: 50%;
  background-color: #f73232;
}
.about-page .about-section3 .development-area .list .item .year {
  font-weight: bold;
  font-size: var(--font30);
  color: #000000;
  line-height: 1.5;
  margin-top: max(0.15rem, 10px);
}
.about-page .about-section3 .development-area .list .item .desc {
  margin-top: 10px;
}
.about-page .about-section3 .development-area .list .item .desc .text {
  font-weight: 400;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.83333333;
  overflow-wrap: break-word;
  display: flex;
  align-items: flex-start;
}
.about-page .about-section3 .development-area .list .item .desc .text::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #e71c2b;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 5px;
  margin-top: 0.7em;
}
.about-page .about-section3 .development-area .list .item:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 4.45%;
  width: 100%;
  height: 95%;
  border-radius: 50%;
  border: 15px solid #e8e8e8;
  clip-path: inset(0 0 0 50%);
  pointer-events: none;
}
.about-page .about-section3 .development-area .list .item:nth-child(4)::after {
  content: "";
  position: absolute;
  right: 45%;
  top: 5%;
  width: 100%;
  height: 95%;
  border-radius: 50%;
  border: 15px solid #e8e8e8;
  clip-path: inset(0 50% 0 0);
  pointer-events: none;
}
.about-page .about-section3 .development-area .icon {
  position: absolute;
  right: 3%;
  bottom: 27.5%;
}
.about-page .about-section3 .development-area .icon img {
  display: block;
  width: 145px;
  height: auto;
}
.about-page .about-section4 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(1rem, var(--space));
  padding-bottom: max(1.62rem, var(--space));
}
.about-page .about-section4 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 100%;
}
.about-page .about-section4 .list .item {
  position: relative;
  overflow: hidden;
  transition: var(--duration);
}
@media (hover: hover) {
  .about-page .about-section4 .list .item:hover {
    background: rgba(45, 75, 119, 0.94);
    border-color: transparent !important;
  }
  .about-page .about-section4 .list .item:hover .inner {
    top: 50% !important;
    transform: translate(-50%, -50%);
  }
  .about-page .about-section4 .list .item:hover .inner .index .index-num {
    display: none;
  }
  .about-page .about-section4 .list .item:hover .inner .index .border {
    display: block;
  }
  .about-page .about-section4 .list .item:hover .inner .desc {
    display: block;
  }
}
.about-page .about-section4 .list .item:not(:last-child) {
  border-right: 2px solid rgba(255, 255, 255, 0.25);
}
.about-page .about-section4 .list .item .inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: max(2.6042vw, 20px);
  width: 90%;
  transition: var(--duration);
}
.about-page .about-section4 .list .item .icon {
  height: 50px;
  margin-bottom: max(0.3rem, 20px);
}
.about-page .about-section4 .list .item .icon img {
  display: block;
  max-height: 100%;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-section4 .list .item .text .zh {
  font-weight: 400;
  font-size: var(--font30);
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}
.about-page .about-section4 .list .item .text .en {
  font-weight: 400;
  font-size: var(--font16);
  color: rgba(187, 177, 177, 0.75);
  margin-bottom: max(0.3rem, 20px);
  text-align: center;
}
.about-page .about-section4 .list .item .text .index .index-num {
  font-weight: 600;
  font-size: var(--font25);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
  text-align: center;
  display: block;
}
.about-page .about-section4 .list .item .text .index .border {
  width: 40px;
  height: 2px;
  background: #ffffff;
  display: none;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-section4 .list .item .text .desc {
  display: none;
  text-align: center;
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-top: max(0.5rem, 20px);
}
.about-page .about-section4 .common-title {
  text-align: center;
  margin-bottom: max(0.77rem, 25px);
  color: #145791;
  font-weight: bold;
}
.about-page .about-section4 .group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: max(0.3rem, 20px);
  row-gap: 20px;
}
.about-page .about-section4 .group .item {
  overflow: hidden;
  overflow-wrap: break-word;
  padding-left: 20px;
  padding-right: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(0.56rem, 20px);
  padding-bottom: max(0.74rem, 20px);
  padding-left: max(0.32rem, 20px);
  padding-right: max(0.32rem, 20px);
  border-radius: 150px;
}
.about-page .about-section4 .group .item .icon {
  width: max(1rem, 60px);
  height: max(1rem, 60px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f73232;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-section4 .group .item .icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 50%;
}
.about-page .about-section4 .group .item .text {
  margin-top: max(0.65rem, 20px);
}
.about-page .about-section4 .group .item .text .text-title {
  font-weight: bold;
  font-size: var(--font30);
  color: #ffffff;
  text-align: center;
}
.about-page .about-section4 .group .item .text .text-desc {
  font-weight: 400;
  font-size: var(--font18);
  line-height: 1.55555556;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: max(0.26rem, 20px);
}
.about-page .about-section5 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(1.48rem, var(--space));
  padding-bottom: max(1.9rem, var(--space));
}
.about-page .about-section5 .title-area {
  margin-bottom: max(1.78rem, 30px);
}
.about-page .about-section5 .title-area .desc {
  font-weight: 300;
  font-size: var(--font22);
  color: #777777;
  text-align: center;
  margin-top: max(0.3rem, 20px);
}
.about-page .about-section5 .about-honor-swiper .swiper-slide {
  width: max(2.97rem, 200px);
  flex-shrink: 0;
}
.about-page .about-section5 .about-honor-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  position: relative;
}
.about-page .about-section5 .about-honor-swiper .swiper-slide .pic::after {
  content: "";
  display: block;
  padding-bottom: 129.62962963%;
}
.about-page .about-section5 .about-honor-swiper .swiper-slide .pic img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  transition: var(--duration);
  mix-blend-mode: multiply;
  border: 20px solid transparent;
  border-image: url(../images/about-honor-border.png) 20 round;
}
.about-page .about-section6 {
  padding-top: max(1.28rem, var(--space));
  padding-bottom: max(1.87rem, var(--space));
}
.about-page .about-section6 .title-area {
  margin-bottom: max(1.07rem, 30px);
}
.about-page .about-section6 .title-area .common-title {
  text-align: center;
}
.about-page .about-section6 .title-area .desc {
  font-weight: 300;
  font-size: var(--font22);
  color: #777777;
  text-align: center;
}
.about-page .about-section6 .service-list {
  display: flex;
  justify-content: space-between;
  column-gap: max(0.3rem, 20px);
}
.about-page .about-section6 .service-list .item {
  width: 23.5625%;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.about-page .about-section6 .service-list .item:hover .pic img {
  transform: scale(1.05);
}
.about-page .about-section6 .service-list .item .pic {
  position: relative;
}
.about-page .about-section6 .service-list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 125.46419098%;
}
.about-page .about-section6 .service-list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.about-page .about-section6 .service-list .item .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  padding-bottom: max(0.26rem, 20px);
  width: 100%;
  padding-left: max(0.26rem, 15px);
  padding-right: max(0.26rem, 15px);
}
.about-page .about-section6 .service-list .item .text .text-title {
  font-weight: 500;
  font-size: var(--font30);
  color: #ffffff;
  line-height: 1.33333333;
}
.about-page .about-section6 .service-list .item .text .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(254, 254, 254, 0.55);
  line-height: 1.6;
}

.about-page .about-section6 .service-list .item .text .text-desc .theme-text {
  color: var(--theme);
}
.about-page .about-section7 {
  padding-top: max(1.28rem, var(--space));
  padding-bottom: max(1.7rem, var(--space));
  background-color: #f5f5f5;
}
.about-page .about-section7 .title-area {
  margin-bottom: max(0.75rem, 30px);
}
.about-page .about-section7 .title-area .desc {
  font-weight: 400;
  font-size: var(--font22);
  color: #777777;
  text-align: center;
  margin-top: max(0.26rem, 20px);
}
.about-page .about-section7 .partner-list .line {
  display: flex;
  justify-content: center;
  --w: min(90%, 1340px);
  --unit: 9;
  width: var(--w);
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-section7 .partner-list .line:nth-child(n + 2) {
  margin-top: calc((var(--w) / var(--unit)) / -6);
}
.about-page .about-section7 .partner-list .line .item-wrap {
  flex-shrink: 0;
  width: calc(var(--w) / var(--unit));
  filter: drop-shadow(0px 0px 46px rgba(4, 0, 0, 0.07));
}
.about-page .about-section7 .partner-list .line .item {
  display: block;
  position: relative;
  background-color: #fff;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.about-page .about-section7 .partner-list .line .item:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}
.about-page .about-section7 .partner-list .line .item::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.about-page .about-section7 .partner-list .line .item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  /* max-width: 50%; */
  /* max-height: 50%; */
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  transition: var(--duration);
  mix-blend-mode: multiply;
}
/* å…±ç”¨è§†é¢‘è’™å±‚ */
.common-video-mask {
  position: fixed;
  z-index: 677;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  padding-top: 7vh;
  cursor: zoom-out;
  display: none;
}
.common-video-mask .mask-wrap .close {
  text-align: right;
  cursor: pointer;
  user-select: none;
  width: fit-content;
  margin-left: auto;
}
.common-video-mask .mask-wrap .close .hover {
  display: none;
}
.common-video-mask .mask-wrap .close:hover .default {
  display: none;
}
.common-video-mask .mask-wrap .close:hover .hover {
  display: inline-block;
}
.common-video-mask .mask-wrap .video {
  display: flex;
  justify-content: center;
  margin-top: max(0.65rem, 35px);
  cursor: pointer;
}
.common-video-mask .mask-wrap .video video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1600px, 86%);
  max-height: 70vh;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  object-position: center;
}
.news-list-page .news-list-main {
  padding-top: max(1.22rem, var(--space));
  padding-bottom: max(1.46rem, var(--space));
}
.news-list-page .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: max(0.4rem, 20px);
  column-gap: max(0.34rem, 20px);
  margin-top: max(0.81rem, 30px);
  margin-bottom: max(1.26rem, 30px);
}
.news-list-page .news-list .news-item {
  overflow: hidden;
}
.news-list-page .news-list .news-item:hover .pic img {
  transform: scale(1.05);
}
.news-list-page .news-list .news-item:hover .text .title {
  color: var(--theme);
}
.news-list-page .news-list .news-item .pic {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 56.8627451%;
  overflow: hidden;
}
.news-list-page .news-list .news-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.news-list-page .news-list .news-item .text {
  padding-top: 20px;
  padding-bottom: max(0.3rem, 20px);
  padding-left: max(0.2rem, 15px);
  padding-right: max(0.2rem, 15px);
  background-color: #f7f7f7;
}
.news-list-page .news-list .news-item .text .title {
  font-weight: 400;
  font-size: var(--font28);
  color: #222222;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.news-list-page .news-list .news-item .text .desc {
  font-weight: 400;
  font-size: var(--font20);
  color: #888888;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: max(0.18rem, 10px);
  min-height: calc(var(--font20) * 1.7 * 2);
}
.news-list-page .news-list .news-item .text .info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-top: max(0.3rem, 20px);
}
.news-list-page .news-list .news-item .text .info-line .more {
  width: 140px;
  height: 40px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font18);
  color: #000000;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--duration);
}
.news-list-page .news-list .news-item .text .info-line .more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--theme);
  transition: var(--duration);
  z-index: -1;
}
.news-list-page .news-list .news-item .text .info-line .more:hover {
  color: #fff;
  border-color: transparent;
}
.news-list-page .news-list .news-item .text .info-line .more:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.news-list-page .news-list .news-item .text .info-line .time {
  font-weight: 400;
  font-size: var(--font18);
  color: #888888;
}
.news-detail-page .news-detail-main {
  padding-top: max(0.9rem, 35px);
  padding-bottom: max(0.82rem, 35px);
}
.news-detail-page .article-wrap {
  max-width: 1300px;
}
.news-detail-page .article-wrap .article-title {
  font-weight: bold;
  font-size: var(--font36);
  color: #000000;
  line-height: 1.33333333;
  text-align: center;
  overflow-wrap: break-word;
  margin-bottom: max(0.4rem, 20px);
}
.news-detail-page .article-wrap .article-info {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  font-weight: 300;
  font-size: var(--font20);
  color: #888888;
  column-gap: 2.7rem;
  padding-bottom: max(0.2rem, 10px);
  border-bottom: 1px solid #e9e9e9;
}
.news-detail-page .article-wrap .article {
  font-weight: 300;
  font-size: var(--font20);
  color: #666666;
  line-height: 1.8;
  overflow-wrap: break-word;
  padding-top: max(0.52rem, 30px);
  padding-bottom: max(0.56rem, 30px);
}
.news-detail-page .article-wrap .article img,
.news-detail-page .article-wrap .article video {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.news-detail-page .article-wrap .article .table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.news-detail-page .article-wrap .article li {
  list-style-type: initial;
  list-style-position: inside;
}
.news-detail-page .article-wrap .recommend-area {
  display: flex;
  column-gap: max(1.8rem, 20px);
  justify-content: space-between;
  align-items: center;
  padding-top: max(0.56rem, 20px);
  border-top: 1px solid #e9e9e9;
}
.news-detail-page .article-wrap .recommend-area .left {
  flex: 1;
  min-width: 0;
}
.news-detail-page .article-wrap .recommend-area .left .item {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: var(--font20);
  line-height: 1.8;
}
.news-detail-page .article-wrap .recommend-area .left .item span {
  color: #111111;
  white-space: nowrap;
}
.news-detail-page .article-wrap .recommend-area .left .item a {
  color: #888888;
  transition: var(--duration);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.news-detail-page .article-wrap .recommend-area .left .item a:hover {
  color: var(--theme);
}
.news-detail-page .article-wrap .recommend-area .right .return-btn {
  display: flex;
  align-items: center;
}
.news-detail-page .article-wrap .recommend-area .right .return-btn img {
  display: block;
  width: 26px;
  flex-shrink: 0;
  margin-right: max(0.18rem, 10px);
}
.news-detail-page .article-wrap .recommend-area .right .return-btn span {
  white-space: nowrap;
  font-weight: 400;
  font-size: var(--font18);
  color: #0a57a6;
}
.solution-list-page :target {
  scroll-margin-top: var(--header-height);
}
.solution-list-page .solution-list-main {
  padding-top: max(0.91rem, var(--space));
  padding-bottom: max(1.24rem, var(--space));
}
.solution-list-page .solution-list-main .solution-wrap {
  max-width: 1230px;
}
.solution-list-page .solution-list-main .solution-wrap .solution-list .item:not(:last-child) {
  margin-bottom: max(0.5rem, 30px);
}
.solution-list-page .solution-list-main .solution-wrap .solution-list .item:nth-child(even) .pic {
  order: 1;
}
.solution-list-page .solution-list-main .solution-wrap .item {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  outline: none !important;
  border: none !important;
}
.solution-list-page .solution-list-main .solution-wrap .item .cas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
}
.solution-list-page .solution-list-main .solution-wrap .item .pic {
  display: block;
  position: relative;
  overflow: hidden;
  width: 50%;
  flex-shrink: 0;
}
.solution-list-page .solution-list-main .solution-wrap .item .pic:hover img {
  transform: scale(1.05);
}
.solution-list-page .solution-list-main .solution-wrap .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 73.17073171%;
}
.solution-list-page .solution-list-main .solution-wrap .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.solution-list-page .solution-list-main .solution-wrap .item .text {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: max(0.65rem, 20px);
  padding-right: max(0.65rem, 20px);
}
.solution-list-page .solution-list-main .solution-wrap .item .text .title {
  font-weight: bold;
  font-size: var(--font36);
  color: #000000;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.solution-list-page .solution-list-main .solution-wrap .item .text .title::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 4px;
  background: #e71c2b;
  margin-top: max(0.17rem, 10px);
}
.solution-list-page .solution-list-main .solution-wrap .item .text .desc {
  font-weight: 300;
  font-size: var(--font20);
  color: #666666;
  line-height: 1.6;
  margin-top: max(0.3rem, 20px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.solution-list-page .solution-list-main .solution-wrap .item .text .more {
  margin-top: max(0.5rem, 20px);
  width: 130px;
  height: 40px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font18);
  color: #000000;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--duration);
}
.solution-list-page .solution-list-main .solution-wrap .item .text .more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--theme);
  transition: var(--duration);
  z-index: -1;
}
.solution-list-page .solution-list-main .solution-wrap .item .text .more:hover {
  color: #fff;
  border-color: var(--theme);
}
.solution-list-page .solution-list-main .solution-wrap .item .text .more:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.solution-detail-page .solution-detail-main {
  /* padding-top: max(1.12rem, var(--space)); */
  padding-top: 0;
}
.solution-detail-page .solution-detail-main .solution-title {
  font-weight: bold;
  font-size: var(--font50);
  color: #000000;
  text-align: center;
  margin-bottom: max(0.7rem, 20px);
}
.solution-detail-page .solution-detail-main .solution-article {
  font-weight: 300;
  font-size: var(--font22);
  color: #666666;
  line-height: 1.63636364;
  overflow-wrap: break-word;
  padding-bottom: max(1.97rem, var(--space));
}
.solution-detail-page .solution-detail-main .solution-article img,
.solution-detail-page .solution-detail-main .solution-article video {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.solution-detail-page .solution-detail-main .solution-article .table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
.solution-detail-page .solution-recommend {
  padding-top: max(0.8rem, 35px);
  padding-bottom: max(1.35rem, 35px);
  background-color: #fafafa;
}
.solution-detail-page .solution-recommend .common-title {
  text-align: left;
  margin-bottom: max(0.9rem, 30px);
}
.solution-detail-page .solution-recommend .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: max(0.3rem, 20px);
  row-gap: 30px;
}
.solution-detail-page .solution-recommend .list .item {
  overflow: hidden;
  padding-top: max(0.64rem, 20px);
  padding-bottom: max(0.4rem, 20px);
  background: #fafafa;
  box-shadow: 0px 0px max(1.2rem, 30px) 0px rgba(0, 0, 0, 0.1);
}
.solution-detail-page .solution-recommend .list .item:hover .pic img {
  transform: translateX(-50%) scale(1.05);
}
.solution-detail-page .solution-recommend .list .item:hover .text {
  color: var(--theme);
}
.solution-detail-page .solution-recommend .list .item .pic {
  padding-bottom: 39.21568627%;
  position: relative;
  overflow: hidden;
}
.solution-detail-page .solution-recommend .list .item .pic img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--duration);
}
.solution-detail-page .solution-recommend .list .item .text {
  font-weight: 400;
  font-size: var(--font24);
  color: #717171;
  line-height: 1.25;
  text-align: center;
  transition: var(--duration);
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: max(0.3rem, 20px);
  padding-left: 15px;
  padding-right: 15px;
}
.contact-page {
  padding-bottom: max(1.54rem, var(--space));
}
.contact-page .contact-info {
  --leftUnit: 1.6rem;
  display: flex;
  align-items: flex-start;
  max-width: 1760px;
  margin-left: var(--leftUnit);
  width: 91.66666667%;
}
@media (max-width: 768px) {
  .contact-page .contact-info {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-page .contact-info .left {
  width: 45.45454545%;
  flex-shrink: 0;
  padding-right: 0.93rem;
  padding-top: max(1.22rem, 35px);
}
.contact-page .contact-info .left .common-title {
  text-align: left;
  margin-bottom: max(0.75rem, 30px);
}
.contact-page .contact-info .left .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: max(0.47rem, 20px);
  row-gap: max(0.56rem, 30px);
}
.contact-page .contact-info .left .list .item {
  overflow: hidden;
  overflow-wrap: break-word;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: max(0.4rem, 20px);
}
.contact-page .contact-info .left .list .item .icon {
  --unit: max(0.65rem, 45px);
  flex-shrink: 0;
  width: var(--unit);
  height: var(--unit);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #999999;
  margin-right: max(0.16rem, 10px);
}
.contact-page .contact-info .left .list .item .icon .inner {
  width: calc(53 / 65 * 100%);
  height: calc(53 / 65 * 100%);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #999999;
}
.contact-page .contact-info .left .list .item .icon .inner img {
  display: block;
  width: 49.05660377%;
  height: auto;
}
.contact-page .contact-info .left .list .item .text {
  flex: 1;
  min-width: 0;
}
.contact-page .contact-info .left .list .item .text .text-title {
  font-weight: bold;
  font-size: var(--font24);
  color: #000000;
  margin-bottom: 10px;
}
.contact-page .contact-info .left .list .item .text .text-info {
  font-weight: 300;
  font-size: var(--font20);
  color: #888888;
  line-height: 1.6;
  overflow-wrap: break-word;
}
.contact-page .contact-info .right {
  width: 54.54545455%;
  flex-shrink: 0;
}
.contact-page .contact-info .right img {
  display: block;
  max-width: 100%;
  height: auto;
}
.contact-page .contact-message {
  padding-top: max(1.12rem, var(--space));
  padding-bottom: max(0.76rem, 20px);
}
.contact-page .contact-message .common-title {
  margin-bottom: max(0.8rem, 30px);
}
.contact-page .contact-message .message-form {
  padding-top: max(0.86rem, 30px);
  padding-bottom: max(1.05rem, 30px);
  background: #fcfcfc;
  border-radius: 10px;
}
.contact-page .contact-message .message-form .placeholder-text {
  font-weight: bold;
  font-size: var(--font24);
  color: #000000;
  display: flex;
  align-items: flex-start;
  margin-bottom: max(0.25rem, 20px);
}
.contact-page .contact-message .message-form .placeholder-text .required {
  color: #ff0000;
}
.contact-page .contact-message .message-form .line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.3rem;
}
.contact-page .contact-message .message-form .line .input-item {
  margin-bottom: max(0.36rem, 20px);
  min-width: 0;
}
.contact-page .contact-message .message-form .line .input-item input {
  display: block;
  width: 100%;
  padding-bottom: max(0.16rem, 10px);
  font-weight: 300;
  font-size: var(--font20);
  color: #000000;
  border: none;
  border-bottom: 1px solid #e9e9e9;
  transition: var(--duration);
}
.contact-page .contact-message .message-form .line .input-item input::placeholder {
  color: #aaaaaa;
}
.contact-page .contact-message .message-form .line .input-item input:focus {
  border-bottom-color: var(--theme);
}
.contact-page .contact-message .message-form .line .select-item input {
  padding-bottom: 0;
  height: 45px;
  color: #000;
}
.contact-page .contact-message .message-form .line .select-item input::placeholder {
  color: #aaaaaa;
}
.contact-page .contact-message .message-form .line .select-item .layui-form-select dl dd.layui-this {
  background-color: var(--theme);
}
.contact-page .contact-message .message-form .line .select-item .layui-form-select dl {
  top: 100%;
}
.contact-page .contact-message .message-form .textarea-line {
  position: relative;
}
.contact-page .contact-message .message-form .textarea-line textarea {
  display: block;
  width: 100%;
  height: 100px;
  resize: none;
  color: #000;
  font-weight: 300;
  font-size: var(--font20);
  border: none;
  border-bottom: 1px solid #e9e9e9;
  transition: var(--duration);
}
.contact-page .contact-message .message-form .textarea-line textarea:focus {
  border-bottom-color: var(--theme);
}
.contact-page .contact-message .message-form .textarea-line textarea::placeholder {
  color: #aaaaaa;
}
.contact-page .contact-message .message-form .textarea-line .count {
  font-weight: 300;
  font-size: var(--font18);
  color: #aaaaaa;
  position: absolute;
  right: 0;
  bottom: max(0.16rem, 10px);
  display: flex;
  align-items: center;
}
.contact-page .contact-message .message-form .textarea-line .count.full {
  color: #f40;
}
.contact-page .contact-message .message-form .submit-btn {
  margin-top: max(0.72rem, 30px);
  margin-left: auto;
  margin-right: auto;
  width: max(2.02rem, 150px);
  height: max(0.53rem, 45px);
  background: #e71c2b;
  border-radius: 10px;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.contact-page .contact-job {
  padding-top: max(0.76rem, 20px);
  background-repeat: no-repeat;
  background-size: 61.66666667% auto;
  background-position: 50% 0%;
}
.contact-page .contact-job .job-wrap {
  max-width: 1460px;
}
.contact-page .contact-job .title-area {
  margin-bottom: max(0.8rem, 30px);
}
.contact-page .contact-job .title-area .desc-text {
  margin-top: max(0.38rem, 20px);
  font-weight: 300;
  font-size: var(--font20);
  color: #0a0a0a;
  text-align: center;
  overflow-wrap: break-word;
}
.contact-page .contact-job .work-list .item.active .item-head {
  background-color: #2174bb;
}
.contact-page .contact-job .work-list .item.active .item-head .name,
.contact-page .contact-job .work-list .item.active .item-head .count,
.contact-page .contact-job .work-list .item.active .item-head .eduation,
.contact-page .contact-job .work-list .item.active .item-head .site,
.contact-page .contact-job .work-list .item.active .item-head .salary {
  color: #fff;
}
.contact-page .contact-job .work-list .item.active .item-head .state {
  background-color: #fcfcfc;
}
.contact-page .contact-job .work-list .item.active .item-head .state::after {
  transform: rotate(90deg);
  opacity: 0;
}
.contact-page .contact-job .work-list .item.active .item-head .state::before {
  background-color: #2174bb;
}
.contact-page .contact-job .work-list .item:not(:last-child) {
  margin-bottom: 20px;
}
.contact-page .contact-job .work-list .item .item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: max(0.55rem, 15px);
  padding-right: max(0.2rem, 15px);
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: var(--font22);
  color: #888888;
  transition: var(--duration);
  border-radius: 10px;
  background-color: #f1f1f1;
  user-select: none;
  cursor: pointer;
}
.contact-page .contact-job .work-list .item .item-head .name {
  color: #000000;
  overflow-wrap: break-word;
}
.contact-page .contact-job .work-list .item .item-head .count,
.contact-page .contact-job .work-list .item .item-head .eduation,
.contact-page .contact-job .work-list .item .item-head .site,
.contact-page .contact-job .work-list .item .item-head .salary {
  overflow-wrap: break-word;
}
.contact-page .contact-job .work-list .item .item-head span {
  padding-left: 10px;
  padding-right: 10px;
}
.contact-page .contact-job .work-list .item .item-head .name {
  width: 20.2166065%;
}
.contact-page .contact-job .work-list .item .item-head .count {
  width: 12.99638989%;
}
.contact-page .contact-job .work-list .item .item-head .eduation {
  width: 18.05054152%;
}
.contact-page .contact-job .work-list .item .item-head .site {
  width: 18.05054152%;
}
.contact-page .contact-job .work-list .item .item-head .salary {
  width: 15.88447653%;
}
.contact-page .contact-job .work-list .item .item-head .state {
  width: 39px;
  height: 39px;
  background: #d6d6d6;
  border-radius: 50%;
  position: relative;
  margin-left: auto;
}
.contact-page .contact-job .work-list .item .item-head .state::before,
.contact-page .contact-job .work-list .item .item-head .state::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fcfcfc;
  transition: var(--duration);
}
.contact-page .contact-job .work-list .item .item-head .state::before {
  width: 53.84615385%;
  height: 3px;
}
.contact-page .contact-job .work-list .item .item-head .state::after {
  width: 3px;
  height: 53.84615385%;
}
.contact-page .contact-job .work-list .item .item-main {
  display: none;
  font-weight: 300;
  font-size: var(--font20);
  color: #333333;
  line-height: 1.5;
  overflow-wrap: break-word;
  padding-top: max(0.4rem, 20px);
  padding-bottom: max(0.7rem, 20px);
  background: rgba(241, 241, 241, 0.68);
  border-radius: 0 0 10px 10px;
  padding-left: max(0.6rem, 20px);
  padding-right: max(0.6rem, 20px);
}
.research-page .research-main {
  padding-top: max(0.84rem, var(--space));
  padding-bottom: max(1.52rem, var(--space));
}
.research-page .research-main .research-swiper {
  margin-top: max(0.9rem, 30px);
}
.research-page .research-main .research-swiper .swiper-slide {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border: none;
  outline: none;
}
.research-page .research-main .research-swiper .swiper-slide .col {
  width: 32.5%;
  flex-shrink: 0;
}
.research-page .research-main .research-swiper .swiper-slide .col .item {
  display: block;
  width: 100%;
  position: relative;
}
.research-page .research-main .research-swiper .swiper-slide .col .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(to right top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.06));
}
.research-page .research-main .research-swiper .swiper-slide .col .item .pic {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.research-page .research-main .research-swiper .swiper-slide .col .item .pic:hover img {
  transform: scale(1.05);
}
.research-page .research-main .research-swiper .swiper-slide .col .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.research-page .research-main .research-swiper .swiper-slide .col .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding-left: max(0.3rem, 15px);
  padding-right: max(0.3rem, 15px);
  padding-bottom: 20px;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 2;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.research-page .research-main .research-swiper .swiper-slide .col1 .item .pic {
  padding-bottom: 121.15384615%;
}
.research-page .research-main .research-swiper .swiper-slide .col2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.research-page .research-main .research-swiper .swiper-slide .col2 .item:nth-child(1) .pic {
  padding-bottom: 50%;
}
.research-page .research-main .research-swiper .swiper-slide .col2 .item:nth-child(2) .pic {
  padding-bottom: 67.30769231%;
}
.research-page .research-main .research-swiper .swiper-slide .col3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.research-page .research-main .research-swiper .swiper-slide .col3 .item:nth-child(1) .pic {
  padding-bottom: 67.30769231%;
}
.research-page .research-main .research-swiper .swiper-slide .col3 .item:nth-child(2) .pic {
  padding-bottom: 50%;
}
.research-page .research-main .research-swiper .research-pagination {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: max(0.73rem, 20px);
  column-gap: max(0.2rem, 10px);
  row-gap: 10px;
}
.research-page .research-main .research-swiper .research-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin-left: 0;
  margin-right: 0;
  width: max(0.18rem, 10px);
  height: max(0.18rem, 10px);
  border-radius: 50%;
  border: 1px solid #f65d4d;
  background-color: transparent;
}
.research-page .research-main .research-swiper .research-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: transparent;
  background-color: #f65d4d;
}
/* about */
@media (max-width: 1450px) {
  .about-page .about-section1 .about-intro .left .intro-list .line .item .main {
    min-width: 200px;
  }
}
@media (max-width: 1200px) {
  .about-page .about-section5 .about-honor-swiper .swiper-slide .pic img {
    border: 10px solid transparent;
    border-image: url(../images/about-honor-border.png) 10 round;
  }
}
@media (max-width: 992px) {
  .common-banner {
    margin-top: var(--header-height);
  }
  .common-page-info .info-wrap .common-tab-list {
    column-gap: 25px;
    overflow-x: auto;
  }
  .about-page .about-section3 .development-swiper1 .swiper-slide .text {
    padding-top: 0;
  }
  .about-page .about-section3 .development-swiper1 .development-swiper1-btn .development-swiper-icon {
    width: 35px;
    height: 35px;
  }
  .about-page .about-section3 .development-swiper1 .development-swiper1-btn .development-swiper-icon img {
    width: 7px;
  }
  .about-page .about-section4 .list .item .icon {
    height: 40px;
  }
  .about-page .about-section6 .service-list .item .text .text-title {
    font-size: 18px;
  }
  .about-page .about-section6 .service-list .item .text .text-desc {
    font-size: 14px;
  }
  .about-page .about-section1 .about-intro .left .intro-list .line.line1,
  .about-page .about-section1 .about-intro .left .intro-list .line.line2,
  .about-page .about-section1 .about-intro .left .intro-list .line.line3 {
    column-gap: 20px;
  }
}
@media (max-width: 768px) {
  .common-bread-crumb {
    display: none !important;
  }
  .about-page .about-section1 .about-intro {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .about-page .about-section1 .about-intro .left {
    width: 100%;
    order: 1;
  }
  .about-page .about-section1 .about-intro .right {
    width: 100%;
  }
  .about-page .about-section1 .about-intro .right .pic-list {
    background-image: none !important;
  }
  .about-page .about-section3 .development-swiper1-btn {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .about-page .about-section4 {
    height: auto;
    padding-top: var(--space);
    padding-bottom: var(--space);
  }
  .about-page .about-section4 .list {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    row-gap: 20px;
    column-gap: 20px;
  }
  .about-page .about-section4 .list .item {
    height: auto;
  }
  .about-page .about-section4 .list .item .text .desc {
    display: block;
  }
  .about-page .about-section4 .list .item .inner {
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }
  .about-page .about-section6 .service-list {
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 30px;
    justify-content: space-between;
  }
  .about-page .about-section6 .service-list .item {
    width: 47.5%;
    flex-shrink: 0;
  }
  .about-page .about-section7 .partner-list .line {
    --w: 96%;
  }
}
@media (max-width: 576px) {
  .common-banner .text {
    top: 30%;
  }
  .common-banner .text .zh {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .common-banner .text .en {
    font-size: 16px;
  }
  .common-title {
    font-size: var(--phone-title);
  }
  .about-page .about-section1 .about-intro .right .pic-list {
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: space-between;
  }
  .about-page .about-section1 .about-intro .right .pic-list .item:nth-child(1),
  .about-page .about-section1 .about-intro .right .pic-list .item:nth-child(2),
  .about-page .about-section1 .about-intro .right .pic-list .item:nth-child(3) {
    width: 47.5%;
    padding-top: 0;
  }
  .about-page .about-section1 .about-intro .right .pic-list .item:nth-child(1) .text,
  .about-page .about-section1 .about-intro .right .pic-list .item:nth-child(2) .text,
  .about-page .about-section1 .about-intro .right .pic-list .item:nth-child(3) .text {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
  .about-page .about-section1 .about-intro .right .pic-list .item:nth-child(2) {
    order: 1;
  }
  .about-page .about-section1 .about-intro .left .intro-list .line {
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 0 !important;
    row-gap: 30px;
  }
  .about-page .about-section1 .about-intro .left .intro-list .line .item {
    width: 48.5%;
  }
  .about-page .about-section1 .about-intro .left .intro-list .line .item .main {
    min-width: auto;
    width: 100%;
  }
  .about-page .about-section1 .about-intro .left .intro-list .line .item .main .item-top {
    font-size: 18px;
  }
  .about-page .about-section1 .about-intro .left .intro-list .line .item .main .item-bottom {
    font-size: 14px;
  }
  .about-page .about-section2 .mask .btn-area img {
    width: 30px;
    margin-bottom: 20px;
  }
  .about-page .about-section3 .development-swiper1 .swiper-slide {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .about-page .about-section3 .development-swiper1 .swiper-slide .pic {
    width: 100%;
  }
  .about-page .about-section3 .development-swiper1 .swiper-slide .text {
    padding-left: 0;
    padding-right: 0;
    flex: none;
    width: 100%;
  }
  .about-page .about-section3 .development-swiper1 .swiper-slide .text .text-year {
    font-size: 20px;
  }
  .about-page .about-section3 .development-swiper1 .swiper-slide .text .text-desc {
    font-size: 16px;
  }
  .about-page .about-section4 .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-page .about-section4 .list .item:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  }
  .about-page .about-section6 .service-list .item {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .contact-page .contact-info {
    flex-wrap: wrap;
    row-gap: 30px;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-page .contact-info .left {
    width: 100%;
    padding-right: 0;
  }
  .contact-page .contact-info .right {
    width: 100%;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .contact-page .contact-info {
    width: 92%;
  }
}
@media (max-width: 576px) {
  .contact-page .contact-info .left .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-page .contact-message .message-form .line {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-page .contact-message .message-form .placeholder-text {
    margin-bottom: 10px;
  }
  .contact-page .contact-message .message-form .placeholder-text {
    display: none;
  }
  .contact-page .contact-job .title-area .desc-text {
    text-align: left;
  }
  .contact-page .contact-job .title-area .desc-text br {
    display: none;
  }
  .contact-page .contact-job .work-list .item .item-head {
    flex-wrap: wrap;
    padding-right: 50px;
  }
  .contact-page .contact-job .work-list .item .item-head .name,
  .contact-page .contact-job .work-list .item .item-head .count,
  .contact-page .contact-job .work-list .item .item-head .eduation,
  .contact-page .contact-job .work-list .item .item-head .site,
  .contact-page .contact-job .work-list .item .item-head .salary {
    width: 100%;
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .contact-page .contact-job .work-list .item .item-head .state {
    align-self: flex-start;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 20px;
  }
}
/* download  */
@media (max-width: 576px) {
  .download-page .download-main .download-list .download-item .icon-prev {
    width: 35px;
    height: 35px;
  }
  .download-page .download-main .download-list .download-item .icon-next {
    width: 25px;
  }
  .download-page .download-main .download-list .download-item .text {
    font-size: 14px;
  }
}
/* news-detail */
@media (max-width: 576px) {
  .news-detail-page .article-wrap .article-title {
    font-size: 20px;
  }
  .news-detail-page .article-wrap .recommend-area {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .news-detail-page .article-wrap .recommend-area .left {
    flex: none;
    width: 100%;
  }
}
/* news-list */
@media (max-width: 992px) {
  .news-list-page .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-list-page .news-list .news-item .text .info-line .more {
    display: none;
  }
}
@media (max-width: 576px) {
  .news-list-page .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-list-page .news-list .news-item .text .desc {
    font-size: 14px;
    min-height: calc(14px * 1.7 * 2);
  }
  .news-list-page .news-list .news-item .text .info-line .time {
    font-size: 14px;
  }
}
/* product-center */
@media (max-width: 576px) {
  .product-center-page .product-center-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-center-page .product-center-list .product-item .text .text-title {
    font-size: 18px;
  }
  .product-center-page .product-center-list .product-item .text .link {
    font-size: 14px;
  }
}
/* product-detail */
@media (max-width: 768px) {
  .product-detail-page .attribute-title {
    font-size: var(--phone-title);
  }
  .product-detail-page .product-detail-section1 .detail-wrap {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .product-detail-page .product-detail-section1 .detail-wrap .left {
    width: 100%;
  }
  .product-detail-page .product-detail-section1 .detail-wrap .right {
    width: 100%;
  }
  .product-detail-page .product-detail-section1 .detail-wrap .right .pro-title {
    font-size: 22px;
  }
  .product-detail-page .pro-feature .feature-wrap .feature-title {
    font-size: var(--phone-title);
  }
  .product-detail-page .pro-feature .feature-wrap .feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-detail-page .pro-application .title-area .title {
    font-size: var(--phone-title);
  }
}
/* product-list */
@media (max-width: 768px) {
  .product-list-page .product-list-main .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-list-page .product-list-main .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* question */
@media (max-width: 576px) {
  .question-list-page .question-list .item {
    --unit: 45px;
    --min: 36px;
  }
  .question-list-page .question-list .item .item-top .icon .inner {
    font-size: 16px;
  }
  .question-list-page .question-list .item .item-top .right .state {
    width: 18px;
  }
  .question-list-page .question-list .item .item-top .right .text {
    font-size: 14px;
  }
  .question-list-page .question-list .item .main .text {
    font-size: 14px;
  }
}
/* research */
@media (max-width: 768px) {
  .research-page .research-main .research-swiper .swiper-slide .col .item .text {
    padding-bottom: 10px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .research-page .research-main .research-swiper .swiper-slide {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .research-page .research-main .research-swiper .swiper-slide .col {
    width: 100%;
    row-gap: 10px;
  }
  .research-page .research-main .research-swiper .swiper-slide .col1 .item .pic,
  .research-page .research-main .research-swiper .swiper-slide .col2 .item:nth-child(1) .pic,
  .research-page .research-main .research-swiper .swiper-slide .col2 .item:nth-child(2) .pic,
  .research-page .research-main .research-swiper .swiper-slide .col3 .item:nth-child(1) .pic,
  .research-page .research-main .research-swiper .swiper-slide .col3 .item:nth-child(2) .pic {
    padding-bottom: 35%;
  }
}
/* service */
@media (max-width: 576px) {
  .common-page-info .info-wrap .common-tab-list .tab-item::before {
    display: none;
  }
  .service-page .service-main .intro-list {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .service-page .service-main .intro-list .intro-item .text .text-desc {
    font-size: 14px;
  }
}
/* solution-detail */
@media (max-width: 768px) {
  .solution-detail-page .solution-recommend .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .solution-detail-page .solution-detail-main .solution-title {
    font-size: var(--phone-title);
  }
  .solution-detail-page .solution-recommend .common-title {
    font-size: var(--phone-title);
  }
  .solution-detail-page .solution-recommend .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .solution-detail-page .solution-recommend .list .item .text {
    font-size: 14px;
  }
}
/* solution-list */
@media (max-width: 576px) {
  .solution-list-page .solution-list-main .solution-wrap .item {
    flex-wrap: wrap;
  }
  .solution-list-page .solution-list-main .solution-wrap .item .pic {
    width: 100%;
  }
  .solution-list-page .solution-list-main .solution-wrap .item .text {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .solution-list-page .solution-list-main .solution-wrap .item .text .title {
    font-size: 20px;
  }
  .solution-list-page .solution-list-main .solution-wrap .item .text .desc {
    font-size: 14px;
  }
  .solution-list-page .solution-list-main .solution-wrap .item .text .more {
    font-size: 14px;
  }
  .solution-list-page .solution-list-main .solution-wrap .solution-list .item:nth-child(even) .pic {
    order: -1;
  }
}
.product-table-page .product-table-main {
  padding-top: max(1.25rem, var(--space));
  padding-bottom: max(1.25rem, var(--space));
}
.table-attribute-wrap {
  overflow-x: auto;
}
.table-attribute-wrap table {
  min-width: 600px;
  width: 100% !important;
  border-collapse: collapse;
  table-layout: fixed;
}
.table-attribute-wrap thead {
  width: 100%;
}
.table-attribute-wrap thead tr {
  width: 100%;
}
.table-attribute-wrap thead th {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 20px 15px;
  text-align: center;
  background-color: #5b9bd5;
  border: 1px solid #fff;
}
.table-attribute-wrap tbody tr:nth-child(odd) {
  background-color: #d2deef;
}
.table-attribute-wrap tbody tr:nth-child(even) {
  background-color: #eaeff7;
}
.table-attribute-wrap tbody td {
  font-size: 18px;
  color: #000;
  padding: 20px 10px;
  text-align: center;
  overflow-wrap: break-word;
  border: 1px solid #fff;
}
@media (max-width: 1500px) {
  .about-page .about-section3 .development-area .list .item:nth-child(3)::after {
    top: 5.76%;
  }
  .about-page .about-section3 .development-area .list .item:nth-child(4)::after {
    top: 5.5%;
  }
  .about-page .about-section3 .development-area .icon {
    bottom: 25.5%;
  }
}
@media (max-width: 1300px) {
  .about-page .about-section3 .development-area .list .item:nth-child(3)::after {
    left: 44%;
    top: 5.45%;
  }
  .about-page .about-section3 .development-area .list .item:nth-child(4)::after {
    top: 5.6%;
    right: 44%;
  }
  .about-page .about-section3 .development-area .icon {
    bottom: 26.5%;
  }
}
@media (max-width: 992px) {
  .about-page .about-section3 .development-area .trademark {
    display: none;
  }
  .about-page .about-section3 .development-area .list .item:nth-child(3)::after {
    display: none;
  }
  .about-page .about-section3 .development-area .list .item:nth-child(4)::after {
    display: none;
  }
  .about-page .about-section3 .development-area .list::before {
    display: none;
  }
  .about-page .about-section3 .development-area .list {
    padding-left: 0;
    padding-right: 0;
  }
  .about-page .about-section3 .development-area .icon {
    display: none;
  }
}
@media (max-width: 768px) {
  .about-page .about-section3 .development-area .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-page .about-section3 .development-area .list .item {
    padding-left: 45px;
  }
  .about-page .about-section3 .development-area .list .item::before {
    left: 7.5px;
    top: 0;
    width: 5px;
    height: 100%;
    z-index: 1;
  }
  .about-page .about-section3 .development-area .list .item .point {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 7;
  }
  .about-page .about-section3 .development-area .list .item .year {
    margin-top: 0;
  }
  .about-page .about-section3 .development-area .list .item .year {
    font-size: 18px;
  }
  .about-page .about-section3 .development-area .list .item .desc .text {
    font-size: 14px;
  }
  .about-page .about-section4 .group {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .about-section4 .group .item {
    border-radius: 60px;
  }
}
@media (max-width: 576px) {
  .about-page .about-section3 .development-area .list {
    padding-top: 30px;
  }
  .about-page .about-section4 .group {
    grid-template-columns: repeat(1, 1fr);
  }
}

.search-list-page .search-list-main {
  padding-top: max(1rem, var(--space));
  padding-bottom: max(1.25rem, var(--space));
}

.search-list-page .search-list {
  margin-bottom: max(0.65rem, 30px);
}
.search-list-page .search-list .item {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  transition: var(--duration);
  position: relative;
}

.search-list-page .search-list .item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: var(--theme);
  transition: var(--duration);
}

.search-list-page .search-list .item:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.search-list-page .search-list .item:hover .title {
  color: var(--theme);
}

.search-list-page .search-list .item:not(:last-child) {
  margin-bottom: max(0.3rem, 20px);
}

.search-list-page .search-list .item .cate {
  font-size: var(--font18);
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
}

.search-list-page .search-list .item .title {
  font-size: var(--font26);
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: max(0.2rem, 10px);
  transition: var(--duration);
}

.search-list-page .search-list .item .desc {
  font-size: var(--font14);
  color: rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}

@media (max-width: 576px) {
  .search-list-page .search-list .item .cate {
    font-size: 14px;
  }
  .search-list-page .search-list .item .title {
    font-size: 16px;
  }
  .search-list-page .search-list .item .desc {
    font-size: 14px;
  }
}

.product-type-page {
  padding-bottom: max(1.24rem, 35px);
}

.product-type-list {
  padding-top: max(0.7rem, 35px);
  padding-bottom: max(0.7rem, 30px);
}

.product-type-list .common-title {
  margin-bottom: 30px;
}

.product-type-list .item {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeff7;
}

.product-type-list .item:hover .pic img {
  transform: translate(-50%, -50%) scale(1.05);
}

.product-type-list .item:hover .text .text-title {
  color: var(--theme);
}
.product-type-list .item .pic {
  width: 35%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.product-type-list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.product-type-list .item .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: var(--duration);
}
.product-type-list .item .text {
  flex: 1;
  min-width: 0;
  margin-left: max(0.6rem, 30px);
  overflow-wrap: break-word;
}
.product-type-list .item .text .text-title {
  font-size: var(--font24);
  color: #000;
  font-weight: bold;
  width: 100%;
  overflow-wrap: break-word;
  transition: var(--duration);
}

.product-type-list .item .text .text-desc {
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.5;
  margin-top: 20px;
  overflow-wrap: break-word;
}
.product-type-list .item .text .text-btn {
  font-size: 16px;
  color: #fff;
  width: 140px;
  height: 40px;
  background-color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .product-type-list .item {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .product-type-list .item .pic {
    width: 100%;
  }

  .product-type-list .item .pic::after {
    padding-bottom: 45%;
  }

  .product-type-list .item .text {
    flex: none;
    width: 100%;
    margin-left: 0;
  }
}
