.hover-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hover-btn .more-text {
  transition: var(--duration);
}
.hover-btn .more-icon {
  transition: var(--duration);
}
.hover-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
  pointer-events: none;
  width: 0;
  height: 400%;
  background-color: var(--theme);
  transition: var(--duration);
}
.hover-btn:hover {
  border-color: transparent !important;
}
.hover-btn:hover .more-text {
  color: #fff !important;
}
.hover-btn:hover .more-icon {
  filter: brightness(0) invert(1) !important;
}
.hover-btn:hover::after {
  width: 130%;
}
/* 共用banner系列 */
.common-banner {
  position: relative;
  z-index: 2;
  margin-top: var(--header-height);
}
.common-banner .pic {
  width: 100%;
}
.common-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.common-banner .text {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 0;
}
.common-banner .text .banner-title {
  font-size: var(--font48);
  color: #ffffff;
  line-height: 1;
  margin-bottom: max(0.37rem, 15px);
  white-space: nowrap;
}
.common-banner .text .banner-desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1.77777778;
  padding-bottom: max(1.5rem, 30px);
}
.common-banner .text .breadcrumb {
  display: flex;
  align-items: center;
  padding-bottom: max(0.21rem, 15px);
}
.common-banner .text .breadcrumb .icon {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.common-banner .text .breadcrumb .list {
  display: flex;
  align-items: center;
}
.common-banner .text .breadcrumb .list .item {
  font-size: var(--font14);
  font-weight: 500;
  color: #fff;
}
.common-banner .text .breadcrumb .list .item::after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.common-banner .text .breadcrumb .list .item:last-child::after {
  display: none;
}
.common-banner .text .breadcrumb .list .item .link {
  color: #fff;
  transition: var(--duration);
}
.common-banner .text .breadcrumb .list .item .link:hover {
  color: var(--theme);
}
.common-tab-area {
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
}
.common-tab-area .tab-list {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  max-width: 86%;
  padding-bottom: 2px;
}
@media (max-width: 768px) {
  .common-tab-area .tab-list {
    max-width: 92%;
  }
}
.common-tab-area .tab-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #ccc;
  border-radius: 10px;
}
.common-tab-area .tab-list::-webkit-scrollbar-thumb {
  background-color: #f71f26;
  border-radius: 10px;
}
.common-tab-area .tab-list .tab-item {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font18);
  color: #666666;
  line-height: 1;
  white-space: nowrap;
  padding-top: max(0.25rem, 15px);
  padding-bottom: max(0.25rem, 15px);
  padding-left: max(15px, 0.42rem);
  padding-right: max(15px, 0.42rem);
  border-right: 1px solid rgba(204, 204, 204, 0.3);
  transition: var(--duration);
  user-select: none;
  cursor: pointer;
}
.common-tab-area .tab-list .tab-item.active {
  background-color: #f71f26;
  color: #fff;
  border-right-color: transparent;
}
.common-tab-area .tab-list .tab-item:not(.active):hover {
  color: #f71f26;
}
/* 新闻列表页面 */
.news-list-page {
  padding-bottom: max(1.18rem, var(--space));
  overflow: hidden;
}
.news-panel-swiper {
  margin-top: max(0.62rem, 35px);
}
.news-panel-swiper .news-swiper .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.news-panel-swiper .news-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.news-panel-swiper .news-swiper .swiper-slide:hover .slide-text .slide-title {
  color: var(--theme);
}
.news-panel-swiper .news-swiper .pic img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.news-panel-swiper .news-swiper .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/uploads/image/shimages/news-list-liner.png) no-repeat left bottom / cover;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.news-panel-swiper .news-swiper .slide-text {
  position: absolute;
  left: max(0.3rem, 20px);
  bottom: max(0.3rem, 20px);
  z-index: 2;
  width: 86%;
}
.news-panel-swiper .news-swiper .slide-text .time-line {
  display: flex;
  align-items: center;
  margin-bottom: max(0.21rem, 10px);
}
.news-panel-swiper .news-swiper .slide-text .time-line .time-icon {
  width: 15px;
  margin-right: 6px;
  filter: brightness(0) invert(1);
}
.news-panel-swiper .news-swiper .slide-text .time-line .time-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font14);
  color: #ffffff;
}
.news-panel-swiper .news-swiper .slide-text .tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.news-panel-swiper .news-swiper .slide-text .tag-list .tag-item {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font14);
  color: #ffffff;
  line-height: 1;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-right: 10px;
  margin-bottom: 10px;
}
.news-panel-swiper .news-swiper .slide-text .tag-list .tag-item:last-child {
  margin-right: 0;
}
.news-panel-swiper .news-swiper .slide-text .slide-title {
  font-weight: 400;
  font-size: var(--font26);
  color: #ffffff;
  line-height: 1.23076923;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: max(0.15rem, 10px);
  transition: var(--duration);
}
.news-panel-swiper .news-swiper .slide-text .slide-desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.625;
  margin-bottom: max(0.14rem, 10px);
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.news-panel-swiper .news-swiper .slide-text .slide-more {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 16px;
}
.news-panel-swiper .news-swiper .slide-text .slide-more:hover .more-text {
  margin-right: 6px;
}
.news-panel-swiper .news-swiper .slide-text .slide-more .more-text {
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  margin-right: 11px;
  transition: var(--duration);
}
.news-panel-swiper .news-swiper .slide-text .slide-more .more-icon {
  height: 10px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--duration);
}
.news-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: max(0.6rem, 30px);
  padding-bottom: max(0.6rem, 30px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.news-section .section-left {
  width: 52.08333333%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border-radius: 6px;
  overflow: hidden;
}
.news-section .section-left:hover .pic img {
  transform: scale(1.05);
}
.news-section .section-left:hover .text .text-title {
  color: var(--theme);
}
.news-section .section-left .pic {
  display: block;
  width: 100%;
  position: relative;
}
.news-section .section-left .pic::after {
  content: "";
  display: block;
  padding-bottom: 72.875%;
}
.news-section .section-left .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.news-section .section-left::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}
.news-section .section-left .text {
  position: absolute;
  left: max(0.3rem, 20px);
  bottom: max(0.3rem, 20px);
  right: max(20px, 0.43rem);
  z-index: 2;
}
.news-section .section-left .text .time-line {
  display: flex;
  align-items: center;
  margin-bottom: max(0.2rem, 10px);
}
.news-section .section-left .text .time-line .time-icon {
  filter: brightness(0) invert(1);
  margin-right: 6px;
  width: 15px;
}
.news-section .section-left .text .time-line .time-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #ffffff;
}
.news-section .section-left .text .tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.news-section .section-left .text .tag-list .tag-item {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font14);
  color: #ffffff;
  line-height: 1;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 4px 11px;
  border: 1px solid #ccc;
  border-radius: 12px;
}
.news-section .section-left .text .tag-list .tag-item:last-child {
  margin-right: 0;
}
.news-section .section-left .text .text-title {
  font-weight: 400;
  font-size: var(--font26);
  color: #ffffff;
  line-height: 1.23076923;
  margin-bottom: max(0.15rem, 10px);
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.news-section .section-left .text .text-desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.625;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.news-section .section-right {
  width: 43.1640625%;
  flex-shrink: 0;
}
/* 新闻页面共用 */
.common-news-list .item {
  display: flex;
  align-items: flex-start;
  padding-bottom: max(0.31rem, 20px);
  padding-top: max(0.3rem, 20px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.common-news-list .item:first-child {
  padding-top: 0;
}
.common-news-list .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.common-news-list .item .pic {
  width: 234px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.common-news-list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 61.96581197%;
}
.common-news-list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.common-news-list .item .text {
  margin-left: max(0.21rem, 15px);
  flex: 1;
  min-width: 0;
}
.common-news-list .item .text .title {
  font-weight: 400;
  font-size: var(--font22);
  color: #333333;
  line-height: 1.45454545;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.common-news-list .item .text .time-line {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.common-news-list .item .text .time-line .time-icon {
  width: 15px;
}
.common-news-list .item .text .time-line .time-text {
  margin-left: 6px;
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font14);
  color: #999999;
  line-height: 1;
}
.common-news-list .item .text .tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.common-news-list .item .text .tag-list .tag-item {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #666666;
  line-height: 1;
  white-space: nowrap;
  padding: 4px 11px;
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-right: 10px;
  margin-bottom: 12px;
}
.common-news-list .item .text .tag-list .tag-item:last-child {
  margin-right: 0;
}
.common-news-list .item .text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.57142857;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.common-news-list .item:hover .pic img {
  transform: scale(1.05);
}
.common-news-list .item:hover .text .title {
  color: var(--theme);
}
.news-list-panel {
  padding-top: max(0.6rem, 30px);
}
.news-list-panel .common-news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  margin-bottom: max(0.6rem, 30px);
}
.news-list-panel .common-news-list .item {
  width: 48.6328125%;
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: max(0.6rem, 30px);
}
.news-list-panel .common-news-list .item .text {
  margin-left: max(0.22rem, 15px);
}
.news-list-panel .common-news-list .item .text .title {
  font-size: var(--font18);
  line-height: 1.4;
}
.news-list-panel .common-news-list .item .text .time-line {
  margin-top: 10px;
}
/* 共用分页器 */
.common-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-pagination .item {
  font-size: var(--font14);
  color: #666666;
  line-height: 1;
  width: max(0.45rem, 35px);
  height: max(0.45rem, 35px);
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(201, 201, 201, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
  margin-right: max(0.15rem, 10px);
}
.common-pagination .item:last-child {
  margin-right: 0;
}
.common-pagination .item img {
  height: 11px;
  object-fit: contain;
  display: block;
}
.common-pagination .item:hover,
.common-pagination .item.active {
  background-color: var(--theme);
  color: #fff;
  border-color: transparent;
}
.common-pagination .item.prev:hover img,
.common-pagination .item.next:hover img {
  filter: brightness(0) invert(1);
}
/* 新闻详情页面 */
.news-detail-page {
  margin-top: var(--header-height);
  background: url(/uploads/image/shimages/news-detail-bg.png) no-repeat right top / contain;
  background-color: #fff;
  padding-bottom: max(1.19rem, var(--space));
}
.news-detail-page .detail-content {
  padding-top: max(0.64rem, 30px);
}
.news-detail-page .detail-content .article-title {
  font-weight: 500;
  font-size: var(--font46);
  color: #333333;
  line-height: 1.2173913;
  text-align: center;
  margin-bottom: max(20px, 0.26rem);
  overflow-wrap: break-word;
}
.news-detail-page .detail-content .tag-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.news-detail-page .detail-content .tag-list .tag-item {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1;
  padding: 10px max(0.42rem, 10px);
  border: 1px solid #cccccc;
  border-radius: 19px;
  margin-right: max(0.2rem, 10px);
  margin-bottom: 10px;
}
.news-detail-page .detail-content .tag-list .tag-item:last-child {
  margin-right: 0;
}
.news-detail-page .detail-content .article-info {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  padding-top: max(15px, 0.26rem);
  padding-bottom: max(15px, 0.26rem);
  margin-bottom: max(0.6rem, 30px);
}
.news-detail-page .detail-content .article-info .info-item {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #999999;
  padding-left: max(0.3rem, 10px);
  padding-right: max(0.3rem, 10px);
  border-right: 1px solid rgba(204, 204, 204, 0.5);
}
.news-detail-page .detail-content .article-info .info-item:first-child {
  padding-left: 0;
}
.news-detail-page .detail-content .article-info .info-item:last-child {
  padding-right: 0;
  border-right: none;
}
.news-detail-page .article-content {
  padding-bottom: 20px;
}
.news-detail-page .article-content p,
.news-detail-page .article-content span,
.news-detail-page .article-content a,
.news-detail-page .article-content div,
.news-detail-page .article-content * {
  max-width: 100%;
  overflow-wrap: break-word;
}
.news-detail-page .article-content img,
.news-detail-page .article-content video {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.news-detail-page .article-content .table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
.news-detail-page .current-article {
  display: flex;
  align-items: center;
  padding-left: max(0.32rem, 15px);
  padding-right: max(0.31rem, 15px);
  padding-top: max(0.41rem, 12px);
  padding-bottom: 12px;
  background-image: url(/uploads/image/shimages/detail-source-liner.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  margin-bottom: max(0.43rem, 20px);
}
.news-detail-page .current-article .left {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
}
.news-detail-page .current-article .right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.news-detail-page .current-article .right .current-point {
  display: flex;
  align-items: center;
}
.news-detail-page .current-article .right .current-point::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #ccc;
  margin-left: max(0.3rem, 10px);
}
.news-detail-page .current-article .right .current-point span {
  font-weight: 400;
  font-size: var(--font16);
  color: #666666;
  margin-left: 10px;
}
.news-detail-page .current-article .right .current-share {
  display: flex;
  align-items: center;
  padding-left: max(0.3rem, 10px);
}
.news-detail-page .current-article .right .current-share .share-text {
  font-weight: 400;
  font-size: var(--font16);
  color: #666666;
  margin-right: max(0.21rem, 10px);
}
.news-detail-page .current-article .right .current-share .icon-list {
  display: flex;
  align-items: center;
}
.news-detail-page .current-article .right .current-share .icon-list .icon-item {
  margin-right: max(0.2rem, 10px);
}
.news-detail-page .current-article .right .current-share .icon-list .icon-item:last-child {
  margin-right: 0;
}
.news-detail-page .current-article .right .current-share .icon-list .icon-item:hover .default {
  display: none;
}
.news-detail-page .current-article .right .current-share .icon-list .icon-item:hover .hover {
  display: block;
}
.news-detail-page .current-article .right .current-share .icon-list .icon-item .default {
  display: block;
}
.news-detail-page .current-article .right .current-share .icon-list .icon-item .hover {
  display: none;
}
.news-detail-page .recommend-article {
  padding-top: max(0.22rem, 15px);
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  padding-bottom: max(15px, 1.1rem);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  margin-bottom: max(0.87rem, 30px);
}
.news-detail-page .recommend-article .recommend-link {
  display: block;
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #999999;
  transition: var(--duration);
  margin-bottom: max(0.16rem, 10px);
  max-width: 86%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.news-detail-page .recommend-article .recommend-link:last-child {
  margin-bottom: 0;
}
.news-detail-page .recommend-article .recommend-link:hover {
  color: var(--theme);
}
/* 详情页面面包屑，新闻详情和产品详情共用 */
.common-news-detail-breadcrumb {
  display: flex;
  align-items: center;
  padding-top: max(10px, 0.21rem);
  padding-bottom: max(10px, 0.21rem);
}
.common-news-detail-breadcrumb .icon img {
  display: block;
  width: 12px;
}
.common-news-detail-breadcrumb .bread-list {
  margin-left: 5px;
  display: flex;
  align-items: center;
}
.common-news-detail-breadcrumb .bread-list .bread-item {
  font-weight: 500;
  font-size: var(--font14);
  color: #666666;
}
.common-news-detail-breadcrumb .bread-list .bread-item:last-child::after {
  display: none;
}
.common-news-detail-breadcrumb .bread-list .bread-item:last-child a {
  color: #333333;
}
.common-news-detail-breadcrumb .bread-list .bread-item::after {
  content: ">";
  margin-left: 5px;
  margin-right: 5px;
  font-family: "source han sans cn", sans-serif;
}
.common-news-detail-breadcrumb .bread-list .bread-item a {
  color: #666666;
}
/* 共用新闻推荐区域 */
.common-recommend-news-area .hot-news-title {
  font-weight: 500;
  font-size: var(--font36);
  color: #333333;
  line-height: 1;
  margin-bottom: max(0.6rem, 30px);
}
.common-recommend-news-area .hot-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: max(0.3rem, 15px);
}
.common-recommend-news-area .hot-list .hot-item {
  overflow: hidden;
}
.common-recommend-news-area .hot-list .hot-item .pic {
  display: block;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.common-recommend-news-area .hot-list .hot-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 62.06896552%;
}
.common-recommend-news-area .hot-list .hot-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.common-recommend-news-area .hot-list .hot-item .text .title {
  font-size: var(--font22);
  color: #333333;
  line-height: 1.45454545;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: max(0.25rem, 15px);
  transition: var(--duration);
}
.common-recommend-news-area .hot-list .hot-item .text .time-line {
  margin-top: max(0.2rem, 10px);
  display: flex;
  align-items: center;
}
.common-recommend-news-area .hot-list .hot-item .text .time-line .time-icon {
  width: 15px;
  margin-right: 6px;
}
.common-recommend-news-area .hot-list .hot-item .text .time-line .time-text {
  line-height: 1;
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #999999;
}
.common-recommend-news-area .hot-list .hot-item .text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #999999;
  line-height: 1.85714286;
  margin-top: max(0.25rem, 15px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((26 / 14) * var(--font14) * 2);
}
.common-recommend-news-area .hot-list .hot-item .text .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: max(0.23rem, 15px);
}
.common-recommend-news-area .hot-list .hot-item .text .more-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0;
  height: 400%;
  background-color: var(--theme);
  z-index: -1;
  pointer-events: none;
  transition: 0.5s ease;
}
.common-recommend-news-area .hot-list .hot-item .text .more-btn .more-text {
  font-weight: 300;
  font-size: 12px;
  color: #666666;
  line-height: 1;
  transition: var(--duration);
}
.common-recommend-news-area .hot-list .hot-item .text .more-btn .more-icon {
  height: 10px;
  margin-left: 11px;
  transition: var(--duration);
}
.common-recommend-news-area .hot-list .hot-item .text .more-btn:hover::after {
  width: 150%;
}
.common-recommend-news-area .hot-list .hot-item .text .more-btn:hover .more-text {
  color: #fff;
}
.common-recommend-news-area .hot-list .hot-item .text .more-btn:hover .more-icon {
  filter: brightness(0) invert(1);
}
.common-recommend-news-area .hot-list .hot-item:hover .pic img {
  transform: scale(1.05);
}
.common-recommend-news-area .hot-list .hot-item:hover .text .title {
  color: var(--theme);
}
/* 产品列表页面 */
.product-list-page {
  padding-bottom: max(1rem, var(--space));
}
.pro-filter-form {
  position: relative;
  z-index: 7;
}
.pro-filter-area {
  margin-top: max(0.81rem, 20px);
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 6px;
  background-color: #fff;
  --padding-space: max(0.22rem, 10px);
  margin-bottom: max(0.34rem, 30px);
}
.pro-filter-area .filter-line {
  display: flex;
  align-items: stretch;
  padding-right: max(0.32rem, 15px);
  border-bottom: 1px solid #e3e3e3;
}
.pro-filter-area .filter-line:last-child {
  border-bottom: none;
}
.pro-filter-area .filter-line .params {
  width: 120px;
  background: #f4f4f4;
  flex-shrink: 0;
  padding-top: var(--padding-space);
  padding-bottom: var(--padding-space);
  background-color: #f4f4f4;
  padding-left: max(0.19rem, 10px);
  padding-right: 10px;
  text-align: left;
}
.pro-filter-area .filter-line .value-list {
  padding-top: 10px;
  padding-bottom: 10px;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: max(0.34rem, 15px);
  row-gap: 10px;
  padding-right: 20px;
  /* 里面的多选 */
  /* 里面的下拉菜单 */
}
.pro-filter-area .filter-line .value-list .value-item {
  margin-right: max(0.55rem, 10px);
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}
.pro-filter-area .filter-line .value-list .value-item:last-child {
  margin-right: 0;
}
.pro-filter-area .filter-line .value-list .value-item .layui-form-checkbox {
  display: none;
}
.pro-filter-area .filter-line .value-list .value-item input {
  display: none;
}
.pro-filter-area .filter-line .value-list .value-item span {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.625;
}
.pro-filter-area .filter-line .value-list .value-item input:checked ~ span {
  color: #f71f26;
}
.pro-filter-area .filter-line .value-list .select-item {
  width: 150px;
  user-select: none;
  margin-right: max(0.25rem, 20px);
  user-select: none !important;
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select .layui-input {
  user-select: none !important;
  font-size: var(--font16);
  font-family: "sourcehansanscn-light", sans-serif;
  line-height: 1;
  font-weight: 300;
  height: 28px;
  box-sizing: border-box;
  color: #666666;
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select {
  user-select: none !important;
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select dl {
  top: 100%;
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select dl dd.layui-this {
  background-color: var(--theme);
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select .layui-edge {
  border: none;
  background-image: url(/uploads/image/shsvg/pro-select-icon.svg);
  width: 9px;
  height: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: -2.5px;
}
.pro-filter-area .filter-line .filter-more-btn {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: var(--font14);
  color: #999999;
  user-select: none;
  cursor: pointer;
}
.pro-filter-area .filter-line .filter-more-btn.show img {
  transform: rotate(-180deg);
}
.pro-filter-area .filter-line .filter-more-btn:hover {
  color: var(--theme);
}
.pro-filter-area .filter-line .filter-more-btn img {
  margin-left: 4px;
  transition: var(--duration);
}
.pro-filter-area .filter-line .filter-more-btn .hover {
  display: none;
}
.pro-filter-area .filter-line .filter-more-btn:hover .default {
  display: none;
}
.pro-filter-area .filter-line .filter-more-btn:hover .hover {
  display: block;
}
.pro-operate-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.pro-operate-line .current-info {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
}
.pro-operate-line .operate-other {
  display: flex;
  align-items: center;
}
.pro-operate-line .operate-other .btn-list {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.pro-operate-line .operate-other .btn-list .btn {
  margin-right: 9px;
  user-select: none;
  cursor: pointer;
}
.pro-operate-line .operate-other .btn-list .btn:last-child {
  margin-right: 0;
}
.pro-operate-line .operate-other .btn-list .btn .hover {
  display: none;
}
.pro-operate-line .operate-other .btn-list .btn .default {
  display: block;
}
.pro-operate-line .operate-other .btn-list .btn:hover .hover,
.pro-operate-line .operate-other .btn-list .btn.current .hover {
  display: block;
}
.pro-operate-line .operate-other .btn-list .btn:hover .default,
.pro-operate-line .operate-other .btn-list .btn.current .default {
  display: none;
}
.pro-operate-line .operate-other .pro-sort {
  display: flex;
  align-items: center;
}
.pro-operate-line .operate-other .pro-sort span {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
  line-height: 1;
}
.pro-operate-line .operate-other .pro-sort .layui-form-select {
  width: 70px;
  border: none;
}
.pro-operate-line .operate-other .pro-sort .layui-form-select .layui-edge {
  border: none;
  background-image: url(/uploads/image/shsvg/pro-filter-icon.svg);
  width: 9px;
  height: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: -2px;
}
.pro-operate-line .operate-other .pro-sort .layui-input {
  border: none;
  font-size: 14px;
  color: #f71f26;
}
.pro-operate-line .operate-other .pro-sort .layui-form-select dl dd.layui-this {
  background-color: var(--theme);
}
.show-pro-list-area {
  margin-top: 30px;
  margin-bottom: max(0.6rem, 30px);
}
.show-pro-list-area .pro-list {
  display: none;
}
.show-pro-list-area .pro-list.show {
  display: block;
}
.show-pro-list-area .pro-list2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px max(0.3rem, 15px);
}
.show-pro-list-area .pro-list2 .pro-item {
  padding-left: max(0.3rem, 12px);
  padding-right: max(0.3rem, 12px);
  padding-bottom: max(0.19rem, 10px);
  background: #f8f8f8;
  border-radius: 10px;
  transition: var(--duration);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.show-pro-list-area .pro-list2 .pro-item:hover {
  background: #ffffff;
  box-shadow: 0px 0px max(0.98rem, 30px) 0px rgba(0, 0, 0, 0.1);
}
.show-pro-list-area .pro-list2 .pro-item:hover .mask {
  top: 0;
}
.show-pro-list-area .pro-list2 .pro-item .pic {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.show-pro-list-area .pro-list2 .pro-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 75.27675277%;
}
.show-pro-list-area .pro-list2 .pro-item .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 4 / 3 !important;
  object-fit: contain;
  object-position: center;
  transition: var(--duration);
  mix-blend-mode: multiply;
}
.show-pro-list-area .pro-list2 .pro-item .text {
  margin-top: 10px;
}
.show-pro-list-area .pro-list2 .pro-item .text .title {
  --font18: max(0.18rem, 16px);
  transition: var(--duration);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.44444444;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((26 / 18) * var(--font18) * 2);
  margin-bottom: max(0.17rem, 10px);
  text-align: center;
}
.show-pro-list-area .pro-list2 .pro-item .text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #999999;
  line-height: 1.57142857;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  padding-top: max(0.2rem, 10px);
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  text-align: center;
}
.show-pro-list-area .pro-list2 .pro-item .mask {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--mask);
  backdrop-filter: var(--mask-filter);
  transition: var(--duration);
  padding: max(0.3rem, 20px) max(0.3rem, 10px);
  display: flex;
  flex-direction: column;
}
.show-pro-list-area .pro-list2 .pro-item .mask .name {
  transition: var(--duration);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: bold;
  font-size: var(--font24);
  color: #000;
  line-height: 1.5;
  margin-bottom: max(0.3rem, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.show-pro-list-area .pro-list2 .pro-item .mask .params-list .param-item {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 2;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.show-pro-list-area .pro-list2 .pro-item .mask .params-list .param-item::before {
  content: "";
  display: inline-block;
  background-image: url(/uploads/image/shsvg/pro-item.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 5px;
  width: 10px;
  height: 10px;
}
.show-pro-list-area .pro-list2 .pro-item .mask .more-btn {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  cursor: pointer;
  width: var(--more-w);
  height: var(--more-h);
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 30px;
  transition: var(--duration);
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-pro-list-area .pro-list2 .pro-item .mask .more-btn .more-text {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}
.show-pro-list-area .pro-list2 .pro-item .mask .more-btn img {
  margin-left: 11px;
  display: block;
  transition: var(--duration);
  width: 10px;
}
.show-pro-list-area .pro-list2 .pro-item .mask .more-btn:hover img {
  margin-left: 5px;
}
.show-pro-list-area .pro-list1 {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(204, 204, 204, 0.5);
}
.show-pro-list-area .pro-list1::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  background-color: #ccc;
}
.show-pro-list-area .pro-list1::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  border-radius: 10px;
}
.show-pro-list-area .pro-list1 .row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  min-width: 900px;
  /* 头部的row */
  /* 下面的参数 row */
}
.show-pro-list-area .pro-list1 .row:last-child {
  border-bottom: none;
}
.show-pro-list-area .pro-list1 .row:nth-child(odd) {
  background: #f8f8f8;
}
.show-pro-list-area .pro-list1 .row:nth-child(even) {
  background: #ffffff;
}
.show-pro-list-area .pro-list1 .row.row-head .col {
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
  padding-top: 20px;
  padding-bottom: 20px;
}
.show-pro-list-area .pro-list1 .row.row-params .col {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.625;
}
.show-pro-list-area .pro-list1 .row.row-params .col5 {
  color: #999999;
}
.show-pro-list-area .pro-list1 .row .col {
  flex-shrink: 0;
  padding-left: 6px;
  padding-right: 6px;
  overflow-wrap: break-word;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.show-pro-list-area .pro-list1 .row .col1 {
  width: 145px;
  padding-top: 0;
  padding-bottom: 0;
}
.show-pro-list-area .pro-list1 .row .col1 .pic {
  display: block;
  width: 125px;
  height: 83px;
  margin-left: auto;
  margin-right: auto;
}
.show-pro-list-area .pro-list1 .row .col1 .pic img {
  display: block;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  object-position: center center;
  margin-left: auto;
  margin-right: auto;
  mix-blend-mode: multiply;
}
.show-pro-list-area .pro-list1 .row .col2 {
  width: 175px;
}
.show-pro-list-area .pro-list1 .row .col3 {
  width: 150px;
}
.show-pro-list-area .pro-list1 .row .col4 {
  width: 170px;
}
.show-pro-list-area .pro-list1 .row .col5 {
  flex: 1;
  min-width: 0;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
}
.product-list-page .pro-case-recommend-area {
  margin-top: 30px;
}
/* 相关案例推荐 */
.pro-case-recommend-area .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: max(0.3rem, 15px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  margin-bottom: 30px;
}
.pro-case-recommend-area .title-line .title {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font36);
  color: #333333;
  line-height: 1;
}
.pro-case-recommend-area .title-line .arrow-area {
  display: flex;
  align-items: center;
}
.pro-case-recommend-area .title-line .arrow-area .left,
.pro-case-recommend-area .title-line .arrow-area .right {
  width: 36px;
  height: 36px;
  background: #f8f8f8;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  margin-right: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--duration);
}
.pro-case-recommend-area .title-line .arrow-area .left:last-child,
.pro-case-recommend-area .title-line .arrow-area .right:last-child {
  margin-right: 0;
}
.pro-case-recommend-area .title-line .arrow-area .left img,
.pro-case-recommend-area .title-line .arrow-area .right img {
  height: 14px;
  display: block;
  transition: var(--duration);
}
.pro-case-recommend-area .title-line .arrow-area .left::after,
.pro-case-recommend-area .title-line .arrow-area .right::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--theme);
  width: 0;
  height: 400%;
  z-index: -1;
  pointer-events: none;
  transition: var(--duration);
}
.pro-case-recommend-area .title-line .arrow-area .left:hover::after,
.pro-case-recommend-area .title-line .arrow-area .right:hover::after {
  width: 130%;
}
.pro-case-recommend-area .title-line .arrow-area .left:hover img,
.pro-case-recommend-area .title-line .arrow-area .right:hover img {
  filter: brightness(0) invert(1);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide {
  user-select: none;
  cursor: pointer;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic {
  display: block;
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic::after {
  content: "";
  display: block;
  padding-bottom: 57.63747454%;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text {
  margin-top: max(0.31rem, 15px);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .slide-title {
  font-weight: 400;
  font-size: var(--font26);
  color: #333333;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .slide-desc {
  margin-top: max(0.3rem, 10px);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(102, 102, 102, 0.6);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((26 / 16) * var(--font16) * 4);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: max(0.25rem, 10px);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn .more-text {
  line-height: 1;
  white-space: nowrap;
  font-weight: 300;
  font-size: 12px;
  color: #666666;
  transition: var(--duration);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn .more-icon {
  height: 10px;
  margin-left: 11px;
  transition: var(--duration);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0;
  height: 350%;
  background-color: var(--theme);
  z-index: -1;
  transition: var(--duration);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn:hover {
  border-color: transparent;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn:hover::after {
  width: 150%;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn:hover .more-text {
  color: #fff;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn:hover .more-icon {
  filter: brightness(0) invert(1);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide:hover .slide-pic img {
  transform: scale(1.05);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide:hover .slide-text .slide-title {
  color: var(--theme);
}
/* 产品详情页面 */
.pro-detail-page {
  margin-top: var(--header-height);
  overflow: hidden;
}
.pro-detail-page .breadcrumb-area {
  background: #e0e0e0;
}
.pro-detail-page .pro-detail-content {
  background-color: #fff;
  padding-top: max(0.68rem, 30px);
  background-image: url(/uploads/image/shimages/news-detail-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: right top;
}
.pro-detail-page .pro-detail-content .content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: max(0.8rem, 30px);
}
.pro-detail-page .pro-detail-content .content-wrap .left {
  width: 49.0234375%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-swiper {
  border-radius: 10px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  overflow: hidden;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  padding-bottom: 83.3997344%;
  position: relative;
  background: #ffffff;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-swiper .swiper-slide .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center center;
  transition: var(--duration);
  mix-blend-mode: multiply;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-left,
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-right {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  user-select: none;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--duration);
  z-index: 5;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-left:hover,
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-right:hover {
  opacity: 1;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-left img,
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-right img {
  display: block;
  width: 11px;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-left {
  left: max(0.31rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-right {
  right: max(0.31rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .right {
  width: 47.00520833%;
  flex-shrink: 0;
  overflow-wrap: break-word;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-title {
  font-weight: 500;
  font-size: var(--font36);
  color: #333333;
  margin-bottom: max(0.3rem, 10px);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-feature {
  font-weight: 500;
  font-size: var(--font24);
  color: #333333;
  margin-bottom: 10px;
}
.pro-detail-page .pro-detail-content .content-wrap .right .feature-desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 2;
  overflow-wrap: break-word;
  padding-bottom: max(0.2rem, 10px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  margin-bottom: max(0.27rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table {
  background: #ffffff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: max(0.3rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr {
  display: flex;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr:last-child {
  border-bottom: none;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr:nth-child(odd) .td:first-child {
  background-color: #f8f8f8;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr:nth-child(even) .td:first-child {
  background-color: #f2f2f2;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(1) {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.33333333;
  width: 167px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(2) {
  padding-left: max(0.3rem, 10px);
  padding-right: max(0.3rem, 10px);
  padding-top: max(0.14rem, 10px);
  padding-bottom: max(0.14rem, 10px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 6px;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(2) .tag {
  padding: 6px max(10px, 0.33rem);
  border-radius: 17px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  margin-right: 10px;
  min-width: 1.48rem;
  text-align: center;
  transition: var(--duration);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(2) .tag:hover {
  color: #fff;
  background-color: var(--theme);
  border-color: transparent;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(2) .tag:last-child {
  margin-right: 0;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list {
  display: flex;
  align-items: center;
  margin-top: max(0.3rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1 {
  width: max(2.8rem, 210px);
  height: max(0.58rem, 45px);
  background: #ffffff;
  border-radius: 29px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-right: 10px;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:last-child {
  margin-right: 0;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  background-color: var(--theme);
  z-index: -1;
  height: 100%;
  width: 0;
  transition: 0.6s ease;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1 .btn-icon {
  margin-right: 11px;
  transition: var(--duration);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1 .btn-text {
  font-size: var(--font18);
  color: #666666;
  line-height: 1;
  white-space: nowrap;
  transition: var(--duration);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:not(.hover-ignore):hover {
  border-color: transparent;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:not(.hover-ignore):hover .btn-icon {
  filter: brightness(0) invert(1);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:not(.hover-ignore):hover .btn-text {
  color: #fff;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:not(.hover-ignore):hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1.hover-ignore {
  border-color: transparent;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1.hover-ignore .btn-icon {
  filter: brightness(0) invert(1);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1.hover-ignore .btn-text {
  color: #fff;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1.hover-ignore::after {
  width: 105%;
}
.pro-detail-page .pro-detail-intro {
  background: url(/uploads/image/shimages/pro-detail-intro-bg.png) no-repeat right top / 100% auto;
  padding-top: max(0.85rem, 30px);
  padding-bottom: max(1.2rem, var(--space));
}
.pro-detail-page .pro-detail-intro .intro-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font22);
  color: #666666;
  line-height: 1.63636364;
  margin-bottom: max(0.6rem, 20px);
}
.pro-detail-page .pro-detail-intro .intro-tab-list {
  display: flex;
  align-items: center;
  margin-bottom: max(0.3rem, 15px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-intro .intro-tab-list .tab-item {
  padding-left: max(20px, 0.74rem);
  padding-right: max(20px, 0.74rem);
  padding-bottom: max(0.13rem, 10px);
  padding-top: max(0.13rem, 10px);
  flex-shrink: 0;
  margin-right: 10px;
  background: #ffffff;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
  font-size: var(--font18);
}
.pro-detail-page .pro-detail-intro .intro-tab-list .tab-item:last-child {
  margin-right: 0;
}
.pro-detail-page .pro-detail-intro .intro-tab-list .tab-item.active {
  color: #fff;
  background-color: #333333;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item {
  display: none;
  font-size: var(--font16);
  overflow-wrap: break-word;
}

.pro-detail-page .pro-detail-intro .intro-tab-content .item::before,
.pro-detail-page .pro-detail-intro .intro-tab-content .item::after {
  content: "";
  display: table;
}

.pro-detail-page .pro-detail-intro .intro-tab-content .item::after {
  clear: both;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item img,
.pro-detail-page .pro-detail-intro .intro-tab-content .item video {
  max-width: 100%;
  vertical-align: top;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item p,
.pro-detail-page .pro-detail-intro .intro-tab-content .item span,
.pro-detail-page .pro-detail-intro .intro-tab-content .item a,
.pro-detail-page .pro-detail-intro .intro-tab-content .item div,
.pro-detail-page .pro-detail-intro .intro-tab-content .item li {
  font-size: var(--font16);
  overflow-wrap: break-word;
}

.pro-detail-page .pro-detail-intro .intro-tab-content .item div,
.pro-detail-page .pro-detail-intro .intro-tab-content .item p,
.pro-detail-page .pro-detail-intro .intro-tab-content .item ul,
.pro-detail-page .pro-detail-intro .intro-tab-content .item ol,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h1,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h2,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h3,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h4,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h5,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h6 {
  margin-bottom: max(0.2rem, 10px);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item.show {
  display: block;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .table-wrap {
  width: 100%;
  overflow-x: auto;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table {
  min-width: max(100%, 1000px);
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border-radius: 10px;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table thead {
  background: #dadada;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table thead tr th {
  font-weight: 400;
  font-size: var(--font16);
  color: #333333;
  padding-top: 10px;
  padding-bottom: 10px;
  border-right: 1px solid rgba(204, 204, 204, 0.5);
  line-height: 1.5;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table thead tr th:last-child {
  border-right: none;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table tbody tr td {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  text-align: center;
  border-right: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table tbody tr td:first-child {
  border-left: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .btn-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .btn-list .btn {
  width: 80px;
  height: 35px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-size: 14px;
  transition: var(--duration);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .download {
  background-color: var(--theme);
  color: #fff;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .download:hover {
  transform: translatey(-2px);
  box-shadow: 0 0px 15px 5px rgba(230, 0, 18, 0.7);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .preview {
  background-color: #333333;
  color: #fff;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .preview:hover {
  transform: translatey(-2px);
  box-shadow: 0 0px 15px 5px rgba(51, 51, 51, 0.7);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download {
  border: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row {
  display: flex;
  align-items: center;
  border-bottom: var(--border);
  min-height: 50px;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row:last-child {
  border-bottom: none;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row:nth-child(odd) {
  background-color: #fff;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row:nth-child(even) {
  background-color: #f8f8f8;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row .col {
  font-size: var(--font16);
  color: #666;
  padding-left: 15px;
  padding-right: 15px;
  overflow-wrap: break-word;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row .col:first-child {
  flex: 1;
  min-width: 0;
  padding-right: max(0.3rem, 20px);
  border-right: 1px solid rgba(204, 204, 204, 0.5);
  padding-top: max(0.2rem, 10px);
  padding-bottom: max(0.2rem, 10px);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row .col .download-btn {
  width: max(1.3rem, 100px);
  height: 35px;
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  border-radius: 10px;
  font-size: var(--font16);
  transition: var(--duration);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row .col .download-btn:hover {
  background-color: var(--theme);
}
/* 相关产品推荐 */
.common-pro-detail-recommend-area {
  background-image: url(/uploads/image/shimages/pro-detail-recommend-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  padding-top: max(1.22rem, var(--space));
  padding-bottom: max(1.2rem, var(--space));
}
.common-pro-detail-recommend-area .pro-detail-recommend-title {
  font-size: var(--font36);
  color: #333333;
  margin-bottom: max(0.41rem, 20px);
}
.common-pro-detail-recommend-area .pro-detail-recommend-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px max(0.3rem, 15px);
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item {
  padding-left: max(0.3rem, 15px);
  padding-right: max(0.3rem, 15px);
  padding-bottom: max(0.19rem, 10px);
  background: #f8f8f8;
  border-radius: 10px;
  transition: var(--duration);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item:hover {
  background: #ffffff;
  box-shadow: 0px 0px max(0.98rem, 30px) 0px rgba(0, 0, 0, 0.1);
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item:hover .mask {
  top: 0;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .pic {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 75.27675277%;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  transition: var(--duration);
  mix-blend-mode: multiply;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .text {
  margin-top: 10px;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .text .title {
  --font18: max(0.18rem, 16px);
  transition: var(--duration);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.44444444;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((26 / 18) * var(--font18) * 2);
  margin-bottom: max(0.17rem, 10px);
  text-align: center;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #999999;
  line-height: 1.57142857;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  padding-top: max(0.2rem, 10px);
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  text-align: center;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--mask);
  backdrop-filter: var(--mask-filter);
  transition: var(--duration);
  padding: max(0.3rem, 20px) max(0.3rem, 10px);
  display: flex;
  flex-direction: column;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .name {
  transition: var(--duration);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: bold;
  font-size: var(--font24);
  color: #000;
  line-height: 1.5;
  margin-bottom: max(0.3rem, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .params-list .param-item {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .params-list .param-item::before {
  content: "";
  display: inline-block;
  background-image: url(/uploads/image/shsvg/pro-item.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 5px;
  width: 10px;
  height: 10px;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .more-btn {
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  cursor: pointer;
  width: var(--more-w);
  height: var(--more-h);
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 30px;
  transition: var(--duration);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .more-btn .more-text {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .more-btn img {
  margin-left: 11px;
  display: block;
  transition: var(--duration);
  width: 10px;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .more-btn:hover img {
  margin-left: 5px;
}
/*  相关产品应用 */
.common-pro-detail-application-area {
  background-image: url(/uploads/image/shimages/pro-detail-application-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: max(1.2rem, var(--space));
  padding-bottom: max(1.2rem, var(--space));
}
.common-pro-detail-application-area .application-title {
  font-weight: 400;
  font-size: var(--font36);
  color: #ffffff;
  margin-bottom: max(0.6rem, 30px);
}
.common-pro-detail-application-area .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: max(0.3rem, 15px);
  row-gap: 30px;
}
.common-pro-detail-application-area .list .item {
  overflow: hidden;
}
.common-pro-detail-application-area .list .item:hover .pic img {
  transform: scale(1.05);
}
.common-pro-detail-application-area .list .item:hover .text .text-title {
  color: var(--theme);
}
.common-pro-detail-application-area .list .item .pic {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.common-pro-detail-application-area .list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 57.63747454%;
}
.common-pro-detail-application-area .list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.common-pro-detail-application-area .list .item .text {
  padding-top: max(0.31rem, 15px);
}
.common-pro-detail-application-area .list .item .text .text-title {
  font-weight: 400;
  font-size: var(--font26);
  color: #fff;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: max(0.31rem, 15px);
  transition: var(--duration);
}
.common-pro-detail-application-area .list .item .text .text-desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc(var(--font16) * (26 / 16) * 4);
}
.common-pro-detail-application-area .list .item .text .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  margin-top: max(0.3rem, 10px);
}
.common-pro-detail-application-area .list .item .text .more-btn .more-text {
  font-weight: 300;
  font-size: 12px;
  color: #fff;
}
.common-pro-detail-application-area .list .item .text .more-btn .more-icon {
  margin-left: 11px;
  display: block;
  transition: var(--duration);
  filter: brightness(0) invert(1);
  height: 10px;
}
/* 关于我们-公司简介 */
.about-company-banner {
  position: relative;
  z-index: 2;
}
.about-company-banner .pic {
  display: block;
}
.about-company-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.about-company-banner .pic video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
  object-position: center bottom;
  mix-blend-mode: multiply;
}
.about-company-banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.about-company-banner .text .title {
  font-weight: bold;
  font-size: var(--font46);
  color: #ffffff;
  line-height: 1.2173913;
  margin-bottom: max(0.14rem, 10px);
}
.about-company-banner .text .sub-title {
  font-weight: 400;
  font-size: var(--font32);
  color: #ffffff;
}
.about-company-banner .about-mouse {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: max(0.36rem, 15px);
  user-select: none;
  cursor: pointer;
}
.about-company-banner .about-mouse img {
  display: block;
  animation: bounce 2s ease infinite alternate;
}
@keyframes bounce {
  from {
    transform: translatey(0px);
  }
  to {
    transform: translatey(20px);
  }
}
.about-company-page {
  overflow: clip;
}
/* 关于我们-公司简介页面共用 */
.about-company-title-area {
  text-align: center;
}
.about-company-title-area .en {
  font-weight: 300;
  font-size: var(--font18);
  color: #666666;
  line-height: 1;
}
.about-company-title-area .zh {
  font-weight: 500;
  font-size: var(--font44);
  color: transparent;
  background: linear-gradient(0deg, #d71418 0%, #e60012 0%, #ff3131 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-top: 7px;
}
.about-company-title-area .sub-title {
  font-weight: 400;
  font-size: var(--font24);
  color: #333333;
  line-height: 1.33333333;
  margin-top: max(0.15rem, 10px);
}
.about-company-desc {
  padding-top: max(1.3rem, var(--space));
  padding-bottom: max(1.24rem, var(--space));
}
.about-company-desc .about-company-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.about-company-desc .company-left {
  width: 49.08854167%;
  flex-shrink: 0;
}
.about-company-desc .company-left .company-title {
  font-weight: 500;
  font-size: var(--font40);
  color: #e70112;
  line-height: 1;
  margin-bottom: max(0.15rem, 10px);
}
.about-company-desc .company-left .company-sub-title {
  font-weight: 400;
  font-size: var(--font32);
  color: #333333;
}
.about-company-desc .company-left .company-desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.625;
  overflow-wrap: break-word;
  margin-top: max(0.45rem, 25px);
}
.about-company-desc .company-left .company-desc p {
  margin-bottom: max(0.25rem, 10px);
}
.about-company-desc .company-left .company-desc p:last-child {
  margin-bottom: 0;
}
.about-company-desc .company-right {
  width: 45.96354167%;
  flex-shrink: 0;
}
.about-company-desc .company-right .pic {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.about-company-desc .company-right .pic:hover img {
  transform: scale(1.05);
}
.about-company-desc .company-right .pic img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.about-company-show {
  background-image: url(/uploads/image/shimages/about-company-show-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: max(1.34rem, var(--space));
  padding-bottom: max(1.18rem, var(--space));
}
.about-company-show .company-tab-list {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #eeeeee;
  margin-top: max(0.57rem, 20px);
  width: fit-content;
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  overflow-x: auto;
}
.about-company-show .company-tab-list .item {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  transition: var(--duration);
  line-height: 1;
  padding-top: max(0.14rem, 10px);
  padding-bottom: max(0.14rem, 10px);
  padding-left: max(0.43rem, 10px);
  padding-right: max(0.43rem, 10px);
}
.about-company-show .company-tab-list .item.active {
  color: #fff;
}
.about-company-show .company-tab-list .bar {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  background: #e60012;
  border-radius: 18px;
  transition: var(--duration);
  z-index: -1;
  width: 142px;
}
.about-company-show .company-show-wrap {
  max-width: 1560px;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .about-company-show .company-show-wrap {
    width: 92%;
  }
}
.about-company-show .swiper-list .swiper-item {
  display: none;
}
.about-company-show .swiper-list .swiper-item.show {
  display: block;
}
.about-company-show .swiper-list .swiper-item .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-company-show .swiper-list .swiper-item .prev img,
.about-company-show .swiper-list .swiper-item .next img {
  display: block;
  width: 11px;
  cursor: pointer;
}
.about-company-show .swiper-list .swiper-item .prev .hover,
.about-company-show .swiper-list .swiper-item .next .hover {
  display: none;
}
.about-company-show .swiper-list .swiper-item .prev:hover .hover,
.about-company-show .swiper-list .swiper-item .next:hover .hover {
  display: inline-block;
}
.about-company-show .swiper-list .swiper-item .prev:hover .default,
.about-company-show .swiper-list .swiper-item .next:hover .default {
  display: none;
}
.about-company-show .about-company-show-swiper {
  margin-top: 30px;
  width: 98.46153846%;
  margin-left: auto;
  margin-right: auto;
}
.about-company-show .about-company-show-swiper .swiper-slide {
  user-select: none;
  transform-origin: center center;
  transform-style: preserve-3d;
}
.about-company-show .about-company-show-swiper .swiper-slide .pic {
  width: 100%;
}
.about-company-show .about-company-show-swiper .swiper-slide .pic img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 993px) {
  .about-company-show .about-company-show-swiper .swiper-slide {
    /* 第一张 */
    /* 第二张图片 */
    /* 第三张图片 */
    /* 第四张图片 */
  }
  .about-company-show .about-company-show-swiper .swiper-slide.swiper-slide-active {
    transform: translatez(-100px) rotatey(25deg);
    transition: 0.3s;
  }
  .about-company-show .about-company-show-swiper .swiper-slide.next1 {
    transform: translatez(-250px) rotatey(10deg);
    transition: 0.3s;
  }
  .about-company-show .about-company-show-swiper .swiper-slide.next2 {
    transform: translatez(-250px) rotatey(-10deg);
    transition: 0.3s;
  }
  .about-company-show .about-company-show-swiper .swiper-slide.next3 {
    transform: translatez(-100px) rotatey(-25deg);
    transition: 0.3s;
  }
}
.about-company-show .about-company-show-swiper .swiper-pagination {
  display: none;
}
/* 企业文化 */
.about-company-culture {
  background-image: url(/uploads/image/shimages/about-culture-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(1.2rem, var(--space));
  padding-bottom: max(1.21rem, var(--space));
}
.about-company-culture .culture-wrap .about-company-title-area .en,
.about-company-culture .culture-wrap .about-company-title-area .sub-title {
  color: #ffffff;
}
.about-company-culture .culture-wrap .about-company-title-area .zh {
  color: #fff;
  background: none;
  -webkit-text-fill-color: initial;
}
.about-company-culture .culture-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: max(0.33rem, 20px);
  column-gap: max(0.3rem, 15px);
  margin-top: max(0.6rem, 30px);
}
.about-company-culture .culture-list .item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  padding-top: max(0.27rem, 20px);
  padding-left: max(0.29rem, 15px);
  padding-right: max(0.29rem, 15px);
  padding-bottom: max(0.4rem, 20px);
}
.about-company-culture .culture-list .item:nth-child(3),
.about-company-culture .culture-list .item:nth-child(7) {
  position: relative;
  background-color: rgba(3, 3, 3, 0.5);
}
.about-company-culture .culture-list .item:nth-child(3)::after,
.about-company-culture .culture-list .item:nth-child(7)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.about-company-culture .culture-list .item.span-2 {
  grid-column: span 2;
}
.about-company-culture .culture-list .item .icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 34px;
  margin-bottom: max(0.2rem, 10px);
}
.about-company-culture .culture-list .item .info .title {
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.33333333;
}
.about-company-culture .culture-list .item .info .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1.44444444;
  margin-top: max(0.12rem, 10px);
}
.about-company-culture .culture-list .item.custom {
  padding: 0;
  border: none;
}
.about-company-culture .culture-list .item.custom:hover .pic img {
  transform: scale(1.05);
}
.about-company-culture .culture-list .item.custom .pic {
  display: block;
  width: 100%;
  height: 100%;
}
.about-company-culture .culture-list .item.custom .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
/* 发展历程 */
.about-company-development {
  padding-top: max(1.2rem, var(--space));
  padding-bottom: max(1.2rem, var(--space));
}
.about-company-development .development-wrap {
  overflow: hidden;
}
.about-company-development .swiper-container {
  --w: max(0.52rem, 40px);
  max-width: 853px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.about-company-development .swiper-container .arrow {
  width: var(--w);
  height: var(--w);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  box-shadow: 0px 5px 1.14rem 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 7;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
}
.about-company-development .swiper-container .arrow.dev-prev {
  left: 0;
}
.about-company-development .swiper-container .arrow.dev-next {
  right: 0;
}
.about-company-development .swiper-container .arrow img {
  width: 12px;
  display: block;
  transition: var(--duration);
  max-width: 60%;
  object-fit: contain;
}
.about-company-development .swiper-container .arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--theme);
  z-index: -1;
  width: 0;
  height: 100%;
  transition: var(--duration);
}
.about-company-development .swiper-container .arrow:hover::after {
  width: 130%;
}
.about-company-development .swiper-container .arrow:hover img {
  filter: brightness(0) invert(1);
}
.about-company-development .swiper-container .about-development-swiper {
  margin-left: auto;
  margin-right: auto;
  width: 77.96014068%;
  overflow: initial !important;
}
.about-company-development .swiper-container .about-development-swiper .swiper-wrapper {
  align-items: center;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: max(40px, 0.92rem);
  padding-top: max(30px, 0.62rem);
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide .content {
  display: block;
  background: #f1f2f4;
  padding-top: max(0.42rem, 20px);
  padding-left: max(0.51rem, 15px);
  padding-right: max(0.51rem, 15px);
  padding-bottom: max(0.71rem, 35px);
  transition: var(--duration);
  opacity: 0.4;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide .year {
  font-weight: bold;
  font-size: var(--font27);
  color: #333333;
  transition: var(--duration);
  line-height: 1;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide .tag {
  display: flex;
  align-items: center;
  margin-bottom: max(0.15rem, 10px);
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide .tag .point {
  width: 6px;
  height: 6px;
  background: #e70112;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 11px;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide .tag .tag-text {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font24);
  color: #666666;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide .desc {
  font-weight: 400;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.57142857;
  margin-bottom: max(0.18rem, 10px);
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide .pic {
  overflow: hidden;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide .pic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-active {
  z-index: 7;
  max-width: none;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-active .content {
  background-color: #fff;
  background: #ffffff;
  box-shadow: 0px 5px max(1.14rem, 30px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transform: scale(1);
  opacity: 1;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-active .content .year {
  font-weight: bold;
  font-size: var(--font36);
  color: #e70112;
  padding-bottom: max(0.31rem, 10px);
  border-bottom: var(--border);
  margin-bottom: max(0.22rem, 10px);
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-active .content .tag {
  margin-bottom: 5px;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-active .content .desc {
  margin-bottom: max(0.14rem, 10px);
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-prev .content .pic,
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-next .content .pic {
  display: none;
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-prev .content {
  transform: translatex(30%);
}
.about-company-development .swiper-container .about-development-swiper .swiper-slide.swiper-slide-next .content {
  transform: translatex(-20%);
}
.about-company-development .year-swiper {
  position: relative;
  margin-top: max(0.36rem, 30px);
}
.about-company-development .year-swiper::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  z-index: -1;
}
.about-company-development .year-swiper .swiper-slide {
  cursor: pointer;
}
.about-company-development .year-swiper .swiper-slide .year {
  font-weight: 300;
  font-size: var(--font14);
  color: #666666;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  margin-top: max(0.16rem, 10px);
}
.about-company-development .year-swiper .swiper-slide .point {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
.about-company-development .year-swiper .swiper-slide .point::before {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #dbdbdb;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.about-company-development .year-swiper .swiper-slide .point::after {
  content: "";
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.about-company-development .year-swiper .swiper-slide.swiper-slide-thumb-active .year {
  font-weight: 400;
  font-size: var(--font36);
  color: #e70112;
  line-height: 1;
}
.about-company-development .year-swiper .swiper-slide.swiper-slide-thumb-active .point::before {
  background-color: #e70112;
}
.about-company-honor {
  padding-top: max(1.2rem, var(--space));
  padding-bottom: max(1.2rem, var(--space));
  background: url(/uploads/image/shimages/about-company-honor-bg.png) no-repeat center / cover;
}
.about-company-honor .honor-list {
  margin-top: max(0.5rem, 30px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 21px;
  column-gap: max(0.3rem, 15px);
}
.about-company-honor .honor-list .item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.about-company-honor .honor-list .item .pic {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: max(0.18rem, 10px);
  flex: 1;
}
.about-company-honor .honor-list .item .pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--duration);
}
.about-company-honor .honor-list .item .text {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font16);
  color: #666666;
  line-height: 2;
  margin-top: 11px;
  text-align: center;
  transition: var(--duration);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.about-company-honor .honor-list .item:hover .pic img {
  transform: scale(1.05);
}
.about-company-honor .honor-list .item:hover .text {
  color: var(--theme);
}
/* 关于我们-联系我们页面 */
.about-contact-page .about-contact-banner {
  background-image: url(/uploads/image/shimages/about-contact-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-top: var(--header-height);
  padding-bottom: max(2.13rem, var(--space));
}
.about-contact-page .about-contact-banner .contact-title {
  padding-top: max(1.25rem, 30px);
  font-size: var(--font48);
  font-weight: 500;
  text-align: left;
  color: #333333;
  line-height: 1;
  margin-bottom: max(0.64rem, 20px);
}
.about-contact-page .about-contact-banner .contact-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: max(15px, 0.29rem);
}
.about-contact-page .about-contact-banner .contact-list .contact-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding-top: max(0.54rem, 20px);
  padding-bottom: max(0.63rem, 20px);
}
.about-contact-page .about-contact-banner .contact-list .contact-item .icon {
  height: max(0.86rem, 35px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: max(0.23rem, 15px);
}
.about-contact-page .about-contact-banner .contact-list .contact-item .icon img {
  display: block;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.about-contact-page .about-contact-banner .contact-list .contact-item .info-name {
  font-size: var(--font22);
  font-weight: 400;
  text-align: center;
  color: #333333;
  line-height: 1;
}
.about-contact-page .about-contact-banner .contact-list .contact-item .info-section-area {
  margin-top: max(20px, 0.48rem);
}
.about-contact-page .about-contact-banner .contact-list .contact-item .info-section-area .info-section .section-title {
  font-size: var(--font16);
  font-weight: 400;
  text-align: center;
  color: #333333;
  line-height: 1;
  margin-bottom: 11px;
}
.about-contact-page .about-contact-banner .contact-list .contact-item .info-section-area .info-section .section-desc {
  font-size: var(--font16);
  text-align: center;
  color: #666666;
  line-height: 1.625;
}
.about-contact-page .about-contact-banner .contact-list .contact-item .info-section-area .info-section:not(:last-child)::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #f71f26;
  margin-top: max(0.3rem, 10px);
  margin-bottom: max(0.3rem, 10px);
  margin-left: auto;
  margin-right: auto;
}
.about-contact-page .about-contact-banner .contact-list .contact-item .qrcode-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: max(0.6rem, 20px);
}
.about-contact-page .about-contact-banner .contact-list .contact-item .qrcode-list .qrcode-item:not(:last-child) {
  margin-right: 10px;
}
.about-contact-page .about-contact-banner .contact-list .contact-item .qrcode-list .qrcode-item p {
  font-size: var(--font16);
  font-weight: 400;
  color: #333333;
  margin-bottom: 10px;
  text-align: center;
}
.about-contact-page .about-contact-banner .contact-list .contact-item .qrcode-list .qrcode-item .pic {
  width: max(60px, 1.27rem);
  height: max(60px, 1.27rem);
  background: #ffffff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 3px;
  padding: 7px;
  margin-left: auto;
  margin-right: auto;
}
.about-contact-page .about-contact-banner .contact-list .contact-item .qrcode-list .qrcode-item .pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
.about-contact-page .about-contact-message {
  background-image: url(/uploads/image/shimages/about-contact-message.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(0.95rem, 35px);
  padding-bottom: max(1.32rem, var(--space));
}
.about-contact-page .about-contact-message .message-title {
  font-size: var(--font48);
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 1;
  margin-bottom: max(0.38rem, 20px);
}
.about-contact-page .about-contact-message .message-sub-title {
  font-size: var(--font18);
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}
.about-contact-page .about-contact-message .form-area {
  margin-top: max(0.6rem, 30px);
}
.about-contact-page .about-contact-message .form-area form {
  display: block;
}
.about-contact-page .about-contact-message .form-area form .input-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-contact-page .about-contact-message .form-area form .input-line .input-item {
  width: 49.0234375%;
  height: max(0.58rem, 40px);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: var(--duration);
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid transparent;
  display: flex;
  align-items: stretch;
  margin-bottom: 20px;
}
.about-contact-page .about-contact-message .form-area form .input-line .input-item:focus-within {
  border-color: var(--theme);
}
.about-contact-page .about-contact-message .form-area form .input-line .input-item input {
  display: block;
  flex: 1;
  height: 100%;
  border: none;
  padding-right: 15px;
  padding-left: 15px;
  font-size: var(--font16);
  color: #000;
}
.about-contact-page .about-contact-message .form-area form .input-line .input-item .placeholder-text {
  font-size: var(--font16);
  font-weight: 500;
  text-align: left;
  color: #999999;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-left: max(0.22rem, 15px);
}
.about-contact-page .about-contact-message .form-area form .input-line .input-item .placeholder-text .red {
  color: #ca1e1e;
}
.about-contact-page .about-contact-message .form-area form .textarea-line {
  width: 100%;
  height: auto;
  background: #ffffff;
  border-radius: 3px;
  padding-top: 21px;
  padding-left: max(0.22rem, 15px);
  padding-bottom: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.about-contact-page .about-contact-message .form-area form .textarea-line:focus-within {
  border-color: var(--theme);
}
.about-contact-page .about-contact-message .form-area form .textarea-line .placeholder-text {
  font-size: var(--font16);
  font-weight: 500;
  text-align: left;
  color: #999999;
  line-height: 1.5;
}
.about-contact-page .about-contact-message .form-area form .textarea-line .placeholder-text .red {
  color: #ca1e1e;
}
.about-contact-page .about-contact-message .form-area form .textarea-line textarea {
  display: block;
  width: 100%;
  border: none;
  resize: none;
  padding-right: 15px;
  margin-top: 10px;
  min-height: 93px;
}
.about-contact-page .about-contact-message .form-area form .upload-file {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  height: max(1.63rem, 100px);
  background: #ffffff;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  user-select: auto;
}
.about-contact-page .about-contact-message .form-area form .upload-file .icon img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: max(0.47rem, 30px);
  object-fit: contain;
}
.about-contact-page .about-contact-message .form-area form .upload-file .text {
  font-size: var(--font16);
  font-weight: 500;
  text-align: center;
  color: #999999;
  line-height: 1;
  margin-top: max(0.27rem, 10px);
}
.about-contact-page .about-contact-message .form-area form .upload-file .file-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  user-select: auto;
  cursor: pointer;
}
.about-contact-page .about-contact-message .form-area form .submit-btn {
  width: 160px;
  height: 48px;
  background: #e70112;
  border-radius: 24px;
  font-size: var(--font18);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  user-select: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.about-hire-page {
  padding-bottom: max(1.17rem, var(--space));
}
.about-hire-page .about-hire-form {
  padding-top: max(0.7rem, var(--space));
}
.about-hire-page .about-hire-form .form {
  display: flex;
  align-items: center;
  justify-content: center;
  --height: max(0.58rem, 45px);
  position: relative;
  z-index: 2;
}
.about-hire-page .about-hire-form .form .select-item {
  width: 2rem;
  margin-right: max(0.2rem, 10px);
  /* 里面的select */
  /* 点击出现的下拉 */
  /* 当前高亮的项目 */
  /* 下拉图标 */
}
.about-hire-page .about-hire-form .form .select-item .layui-form-select .layui-input {
  background: #ffffff;
  height: var(--height);
  border-radius: 6px;
  border: 1px solid #cccccc;
  padding-left: max(0.21rem, 10px);
  font-weight: 400;
  font-size: var(--font16);
}
.about-hire-page .about-hire-form .form .select-item .layui-form-select .layui-input:focus {
  border-color: var(--theme) !important;
}
.about-hire-page .about-hire-form .form .select-item .layui-form-select dl {
  top: 100%;
}
.about-hire-page .about-hire-form .form .select-item .layui-form-select dl dd.layui-this {
  background-color: var(--theme);
}
.about-hire-page .about-hire-form .form .select-item .layui-form-select .layui-edge {
  width: 10px;
  height: 6px;
  border: none;
  background-image: url(/uploads/image/shsvg/pro-select-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  right: max(0.21rem, 10px);
  margin-top: 0;
  top: calc(50% - 3px);
}
.about-hire-page .about-hire-form .form .input-item {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.about-hire-page .about-hire-form .form .input-item input {
  display: block;
  width: 3.15rem;
  height: var(--height);
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #cccccc;
  font-weight: 400;
  font-size: var(--font16);
  padding-left: max(0.23rem, 15px);
  padding-right: max(0.23rem, 15px);
}
.about-hire-page .about-hire-form .form .input-item input::placeholder {
  color: #999999;
}
.about-hire-page .about-hire-form .form .input-item input:focus {
  border-color: var(--theme);
}
.about-hire-page .about-hire-form .form .submit-btn {
  width: max(1.1rem, 80px);
  height: max(0.6rem, var(--height));
  background: #e70112;
  border-radius: 6px;
  user-select: none;
  cursor: pointer;
}
.about-hire-page .about-hire-form .form .submit-btn img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.about-hire-page .about-job-area {
  margin-top: max(0.65rem, 30px);
  --min: 70px;
  --padding: 10px;
}
.about-hire-page .about-job-area .about-job-head {
  display: flex;
  align-items: center;
  border-top: 6px solid #333333;
  border-bottom: 1px solid #333333;
}
.about-hire-page .about-job-area .about-job-head .head-item {
  padding-top: max(10px, 0.25rem);
  padding-bottom: max(10px, 0.3rem);
  font-weight: 500;
  font-size: var(--font22);
  color: #333333;
  line-height: 1;
  white-space: nowrap;
  flex: 1;
  text-align: center;
  padding-left: var(--padding);
  padding-right: var(--padding);
}
.about-hire-page .about-job-area .about-job-head .head-item.head-index {
  flex: none;
  width: var(--min);
  flex-shrink: 0;
}
.about-hire-page .about-job-area .about-job-head .head-item:nth-child(2) {
  text-align: left;
}
.about-hire-page .about-job-area .about-job-list .job-item.active .job-item-head {
  background-color: #333;
  border-color: transparent;
}
.about-hire-page .about-job-area .about-job-list .job-item.active .job-item-head .head-col {
  color: #ffff;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-head {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  user-select: none;
  cursor: pointer;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-head .head-col {
  text-align: center;
  font-weight: 400;
  font-size: var(--font16);
  color: #666666;
  padding-left: var(--padding);
  padding-right: var(--padding);
  padding-top: max(0.25rem, 10px);
  padding-bottom: max(0.25rem, 10px);
  flex: 1;
  line-height: 1.625;
  overflow-wrap: break-word;
  font-family: pingfang sc, sans-serif;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-head .head-col:nth-child(2) {
  text-align: left;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-head .head-col.col-min {
  width: var(--min);
  flex: none;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main {
  background: #f8f8f8;
  padding-top: max(0.5rem, 20px);
  padding-left: max(15px, 0.42rem);
  padding-right: max(0.65rem, 15px);
  padding-bottom: max(0.62rem, 30px);
  background-image: url(/uploads/image/shimages/about-job-main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: none;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .job-title {
  font-weight: 800;
  font-size: var(--font26);
  color: #333333;
  line-height: 1;
  padding-bottom: max(0.22rem, 15px);
  border-bottom: 1px solid #ccc;
  margin-bottom: max(0.27rem, 15px);
}
.job-article {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 2.25;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .job-article p,
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .job-article span,
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .job-article a,
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .job-article div {
  max-width: 100%;
  overflow-wrap: break-word;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .job-article img,
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .job-article video {
  max-width: 100%;
  vertical-align: top;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .job-article .table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
.about-hire-page .about-job-area .about-job-list .job-item .job-item-main .link-btn {
  margin-top: max(0.58rem, 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  width: 160px;
  height: 48px;
  background: #e70112;
  border-radius: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}
/* 技术支持页面 */
.support-page {
  overflow: clip;
}
.support-page .support-content {
  padding-top: max(0.7rem, 35px);
  padding-bottom: max(1.2rem, var(--space));
  background-image: url(/uploads/image/shimages/support-content-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
}
.support-page .support-content .support-wrap {
  display: flex;
  align-items: flex-start;
}
.support-page .support-content .support-wrap .support-aside {
  width: calc(364 / 1536 * 100%);
  flex-shrink: 0;
  margin-right: 30px;
  position: sticky;
  top: calc(10px   var(--header-height));
}
.support-page .support-content .support-wrap .support-aside .aside-title {
  font-weight: bold;
  font-size: var(--font24);
  color: #e70112;
  line-height: 1;
  margin-bottom: max(0.32rem, 20px);
}
.support-page .support-content .support-wrap .support-aside .aside-form {
  display: block;
  margin-bottom: 10px;
}
.support-page .support-content .support-wrap .support-aside .aside-form .form {
  display: flex;
  align-items: center;
}
.support-page .support-content .support-wrap .support-aside .aside-form .form input {
  flex: 1;
  min-width: 0;
  height: 38px;
  background: #ffffff;
  border-radius: 6px 0 0 6px;
  border: 1px solid #cccccc;
  transition: var(--duration);
  border-right: none;
  font-weight: 400;
  font-size: 14px;
  padding-left: max(0.22rem, 10px);
  padding-right: max(0.22rem, 10px);
  color: #000;
}
.support-page .support-content .support-wrap .support-aside .aside-form .form input::placeholder {
  color: #999999;
}
.support-page .support-content .support-wrap .support-aside .aside-form .form input:focus {
  border-color: var(--theme);
}
.support-page .support-content .support-wrap .support-aside .aside-form .form button {
  width: 80px;
  height: 40px;
  background: #cccccc;
  border-radius: 0px 6px 6px 0px;
  transition: var(--duration);
  user-select: none;
  cursor: pointer;
  flex-shrink: 0;
}
.support-page .support-content .support-wrap .support-aside .aside-form .form button img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.support-page .support-content .support-wrap .support-aside .aside-form .form button:hover {
  background-color: var(--theme);
}
.support-page .support-content .support-wrap .support-aside .aside-list-area {
  background-image: url(/uploads/image/shimages/support-aside-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: max(0.4rem, 20px) max(15px, 0.45rem);
  border-radius: 10px;
  border: 1px solid rgba(204, 204, 204, 0.5);
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item {
  margin-bottom: 21px;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item:last-child {
  margin-bottom: 0;
}

.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item.active .title,
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item.current .title {
  color: #e70112;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item.active .title .icon {
  background-color: #e70112;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item.active .title .icon img {
  transform: rotate(-90deg);
  opacity: 1;
  filter: brightness(0) invert(1);
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .title {
  font-size: max(0.16rem, 14px);
  color: #666666;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  cursor: pointer;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .title span {
  transition: var(--duration);
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .title .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .title .icon img {
  filter: brightness(0);
  opacity: 0.5;
  transition: var(--duration);
  width: 5px;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list {
  border-bottom: 2px solid #e70112;
  padding-top: 4px;
  display: none;
  margin-top: 19px;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 70, 127, 0.1);
  margin-left: max(0.19rem, 10px);
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item.active .link,
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item:hover .link {
  color: #e70112;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item.active .link img,
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item:hover .link img {
  filter: none;
  opacity: 1;
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item .link {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 400;
  font-size: var(--font14);
  color: #666666;
  transition: var(--duration);
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: max(0.14rem, 10px);
  padding-top: max(0.14rem, 10px);
}
.support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item .link img {
  filter: brightness(0);
  opacity: 0.5;
  margin-right: 9px;
  width: 5px;
  transition: var(--duration);
}
.support-page .support-content .support-wrap .support-main {
  flex: 1;
  min-width: 0;
}
.support-page .support-content .support-wrap .support-main .main-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
  column-gap: max(0.32rem, 15px);
  margin-bottom: max(0.61rem, 30px);
}
.support-page .support-content .support-wrap .support-main .main-item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  padding-left: max(0.26rem, 15px);
  padding-right: max(0.26rem, 15px);
  padding-top: max(0.25rem, 20px);
  padding-bottom: max(0.3rem, 20px);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.support-page .support-content .support-wrap .support-main .main-item .pic {
  display: block;
  width: 100%;
  background: #f8f8f8;
  border-radius: 10px;
  position: relative;
}
.support-page .support-content .support-wrap .support-main .main-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 109.00321543%;
}
.support-page .support-content .support-wrap .support-main .main-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.support-page .support-content .support-wrap .support-main .main-item .text {
  margin-top: max(0.26rem, 10px);
}
.support-page .support-content .support-wrap .support-main .main-item .text .file-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: max(0.2rem, 10px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  margin-bottom: max(0.21rem, 10px);
}
.support-page .support-content .support-wrap .support-main .main-item .text .file-name .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-page .support-content .support-wrap .support-main .main-item .text .file-name .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
.support-page .support-content .support-wrap .support-main .main-item .text .file-name .name {
  margin-left: 10px;
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  flex: 1;
  min-width: 0;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.support-page .support-content .support-wrap .support-main .main-item .text .other {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: rgba(51, 51, 51, 0.5);
}
.support-page .support-content .support-wrap .support-main .main-item .download-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: var(--duration);
  opacity: 0;
}
.support-page .support-content .support-wrap .support-main .main-item .download-area .icon {
  width: max(65px, 0.92rem);
  height: max(65px, 0.92rem);
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #e70112;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: max(0.2rem, 10px);
}
.support-page .support-content .support-wrap .support-main .main-item .download-area .icon img {
  display: block;
}
.support-page .support-content .support-wrap .support-main .main-item .download-area .download-placeholder {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1;
  text-align: center;
  transition: var(--duration);
}
.support-page .support-content .support-wrap .support-main .main-item .download-area .content:hover .download-placeholder {
  color: var(--theme);
}
.support-page .support-content .support-wrap .support-main .main-item:hover .download-area {
  opacity: 1;
}
.support-question-page {
  overflow: clip;
}
.support-question-page .question-content {
  padding-top: max(0.81rem, 35px);
  padding-bottom: max(0.88rem, 35px);
}
.support-question-page .question-content .question-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.support-question-page .question-content .question-wrap .question-left {
  flex-shrink: 0;
  width: 74.4140625%;
}
.support-question-page .question-content .question-wrap .question-left .question-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all {
  display: flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all.is-show img {
  transform: rotate(-180deg);
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all:hover span {
  color: var(--theme);
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all:hover .hover {
  display: block;
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all:hover .default {
  display: none;
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all:hover img {
  transition: var(--duration);
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all span {
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  transition: var(--duration);
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all .hover {
  display: none;
}
.support-question-page .question-content .question-wrap .question-left .question-top .expand-all img {
  display: block;
  margin-left: 7px;
}
.support-question-page .question-content .question-wrap .question-left .question-top .search {
  width: 3.65rem;
  min-width: 200px;
  display: flex;
  align-items: center;
}
.support-question-page .question-content .question-wrap .question-left .question-top .search input {
  height: 40px;
  flex: 1;
  background: #ffffff;
  border-radius: 6px 0 0 6px;
  border: 1px solid #cccccc;
  transition: var(--duration);
  border-right: none;
  font-weight: 400;
  font-size: 14px;
  color: #101010;
  padding-left: max(15px, 0.22rem);
  padding-right: 15px;
  min-width: 0;
}
.support-question-page .question-content .question-wrap .question-left .question-top .search input::placeholder {
  color: #999999;
}
.support-question-page .question-content .question-wrap .question-left .question-top .search input:focus {
  border-color: var(--theme);
}
.support-question-page .question-content .question-wrap .question-left .question-top .search button {
  cursor: pointer;
  user-select: none;
  width: 80px;
  height: 40px;
  background: #cccccc;
  border-radius: 0px 6px 6px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--duration);
  flex-shrink: 0;
}
.support-question-page .question-content .question-wrap .question-left .question-top .search button:hover {
  background-color: var(--theme);
}
.support-question-page .question-content .question-wrap .question-left .question-list {
  margin-bottom: max(0.6rem, 30px);
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item {
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  padding-left: max(0.3rem, 15px);
  padding-right: max(0.3rem, 15px);
  padding-top: 20px;
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item:last-child {
  margin-bottom: 0;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  user-select: none;
  cursor: pointer;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top.active .top-left .icon .hover {
  display: block;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top.active .top-left .icon .default {
  display: none;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top.active .top-left .top-text {
  color: #e70112;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top.active .state img {
  transform: rotate(-90deg);
  opacity: 1;
  filter: none;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top .top-left {
  display: flex;
  align-items: flex-start;
  flex: 1;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top .top-left .icon {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  margin-top: 0.2em;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top .top-left .icon .hover {
  display: none;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top .top-left .top-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  margin-left: 10px;
  margin-right: max(15px, 0.23rem);
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top .state {
  display: flex;
  align-items: flex-start;
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top .state img {
  display: block;
  transition: var(--duration);
  opacity: 0.5;
  filter: brightness(0);
}
.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-main {
  display: none;
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 2;
  overflow-wrap: break-word;
  margin-left: 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  margin-top: max(0.22rem, 10px);
  margin-right: 36px;
}

.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-main img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

.support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-main img .table-wrap {
  max-width: 100%;
  overflow-wrap: break-word;
}
.support-question-page .question-content .question-wrap .question-right {
  width: 23.56770833%;
  flex-shrink: 0;
  position: sticky;
  top: calc(10px   var(--header-height));
}
.support-question-page .question-content .question-wrap .question-right .area-title {
  font-weight: 400;
  font-size: var(--font18);
  color: #e70112;
  line-height: 1.77777778;
  margin-bottom: 30px;
}
.support-question-page .question-content .question-wrap .question-right .q-item {
  display: block;
  padding-bottom: max(0.2rem, 20px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  margin-bottom: 30px;
}
.support-question-page .question-content .question-wrap .question-right .q-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.support-question-page .question-content .question-wrap .question-right .q-item:hover .pic img {
  transform: scale(1.05);
}
.support-question-page .question-content .question-wrap .question-right .q-item:hover .text .title {
  color: var(--theme);
}
.support-question-page .question-content .question-wrap .question-right .q-item .pic {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.support-question-page .question-content .question-wrap .question-right .q-item .pic::after {
  content: "";
  display: block;
  padding-top: 57.45856354%;
}
.support-question-page .question-content .question-wrap .question-right .q-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.support-question-page .question-content .question-wrap .question-right .q-item .text {
  margin-top: 10px;
}
.support-question-page .question-content .question-wrap .question-right .q-item .text .title {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.55555556;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.support-question-page .question-content .question-wrap .question-right .q-item .text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.57142857;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: 10px;
  padding-right: 14px;
}
.support-question-page .question-content .question-wrap .question-right .q-item .text .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  margin-top: max(0.16rem, 10px);
}
.support-question-page .question-content .question-wrap .question-right .q-item .text .more-btn .more-text {
  font-weight: 300;
  font-size: 12px;
  color: #666666;
  line-height: 1;
}
.support-question-page .question-content .question-wrap .question-right .q-item .text .more-btn .more-icon {
  width: 5px;
  margin-left: 11px;
}
.support-service-page .service-after-text {
  padding-top: max(1.2rem, var(--space));
  padding-bottom: max(1.21rem, var(--space));
}
.support-service-page .service-after-text .title {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font32);
  color: #f71f26;
  line-height: 1;
  margin-bottom: max(0.21rem, 10px);
}
.support-service-page .service-after-text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.77777778;
}
.support-service-page form {
  margin-top: max(0.71rem, 30px);
}
.support-service-page .form .input-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.support-service-page .form .input-line:last-of-type .input-item {
  margin-bottom: 0;
}
.support-service-page .form .input-line .input-item {
  width: 49.0234375%;
  margin-bottom: 20px;
  /* 右侧的小图标 */
}
.support-service-page .form .input-line .input-item.input-item-full {
  width: 100%;
}
.support-service-page .form .input-line .input-item .placeholder-text {
  margin-bottom: 10px;
}
.support-service-page .form .input-line .input-item .placeholder-text span {
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
}
.support-service-page .form .input-line .input-item .placeholder-text .red {
  color: #ca1e1e;
}
.support-service-page .form .input-line .input-item input {
  display: block;
  width: 100%;
  height: max(0.58rem, 35px);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #101010;
  padding-left: max(0.22rem, 10px);
  padding-right: max(0.22rem, 10px);
  transition: var(--duration);
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #cccccc;
}
.support-service-page .form .input-line .input-item input::placeholder {
  color: #999999;
}
.support-service-page .form .input-line .input-item input:focus {
  border-color: var(--theme);
}
.support-service-page .form .input-line .input-item .layui-form-select .layui-input {
  color: #666;
  user-select: none;
}
.support-service-page .form .input-line .input-item .layui-form-select .layui-edge {
  border-color: transparent;
  width: 25px;
  height: 10px;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(/uploads/image/shsvg/service-select.svg);
  margin-top: -5px;
}
.support-service-page .form .input-line .input-item .layui-form-select dl {
  top: 100%;
}
.support-service-page .form .input-line .input-item .layui-form-select dl dd.layui-this {
  background-color: var(--theme);
}
.support-service-page .form .input-line .input-item .upload-file {
  height: max(1.74rem, 100px);
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.support-service-page .form .input-line .input-item .upload-file p {
  font-weight: 500;
  font-size: var(--font16);
  color: #999999;
  line-height: 1;
  margin-top: max(0.26rem, 10px);
  text-align: center;
}
.support-service-page .form .input-line .input-item .upload-file img {
  opacity: 0.5;
  display: block;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  width: max(0.47rem, 30px);
  object-fit: contain;
}
.support-service-page .form .input-line .input-item .upload-file input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  user-select: auto;
  cursor: pointer;
  z-index: 2;
}
.support-service-page .form .input-line .input-item textarea {
  height: max(2.04rem, 180px);
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #cccccc;
  resize: none;
  font-weight: 300;
  font-size: 16px;
  color: #101010;
  width: 100%;
  transition: var(--duration);
  padding-top: 21px;
  padding-left: max(0.22rem, 10px);
  padding-right: max(0.22rem, 10px);
}
.support-service-page .form .input-line .input-item textarea:focus {
  border-color: var(--theme);
}
.support-service-page .form .input-line .input-item textarea::placeholder {
  color: #999999;
  padding-left: 0;
  text-align: left;
}
.support-service-page .form .submit-btn {
  display: block;
  width: 160px;
  height: 48px;
  background: #e70112;
  border-radius: 24px;
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  margin-top: max(0.4rem, 20px);
  cursor: pointer;
  user-select: none;
}
/* 选型帮助页面 */
.support-model-help-page .model-help-wrap {
  padding-top: max(1.05rem, var(--space));
  padding-bottom: max(1.08rem, var(--space));
}
.support-model-help-page .help-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.77777778;
  margin-bottom: max(0.7rem, 30px);
}
.support-model-help-page .form-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: max(0.67rem, 30px);
}
.support-model-help-page .form-area .left-area {
  width: 49.0234375%;
  flex-shrink: 0;
}
.support-model-help-page .form-area .right-area {
  width: 49.0234375%;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.support-model-help-page .form-area .right-area:hover img {
  transform: scale(1.05);
}
.support-model-help-page .form-area .right-area::after {
  content: "";
  display: block;
  /* padding-bottom: 70.11952191%; */
  padding-bottom: 41.5%;
}
.support-model-help-page .form-area .right-area img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.support-model-help-page .input-item {
  margin-bottom: 20px;
}
.support-model-help-page .input-item:last-of-type {
  margin-bottom: 0;
}
.support-model-help-page .input-item .placeholder-text {
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
  line-height: 1;
  margin-bottom: 10px;
}
.support-model-help-page .input-item .placeholder-text .red {
  color: #ca1e1e;
}
.support-model-help-page .input-item input {
  display: block;
  width: 100%;
  height: max(0.58rem, 35px);
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #cccccc;
  transition: var(--duration);
  padding: 0 max(0.23rem, 15px);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  color: #101010;
}
.support-model-help-page .input-item input::placeholder {
  color: #999999;
}
.support-model-help-page .input-item input:focus {
  border-color: var(--theme);
}
.support-model-help-page .input-item textarea {
  display: block;
  width: 100%;
  height: max(100px, 1.74rem);
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #cccccc;
  padding: max(0.22rem, 15px);
  resize: none;
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #101010;
  transition: var(--duration);
}
.support-model-help-page .input-item textarea::placeholder {
  color: #999999;
}
.support-model-help-page .input-item textarea:focus {
  border-color: var(--theme);
}
.support-model-help-page .input-item .upload-file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: max(1.74rem, 100px);
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #cccccc;
}
.support-model-help-page .input-item .upload-file input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
}
.support-model-help-page .input-item .upload-file .content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.5;
  pointer-events: none;
  width: max(0.47rem, 30px);
}
.support-model-help-page .input-item .upload-file .content p {
  font-weight: 500;
  font-size: var(--font16);
  color: #999999;
  line-height: 1;
  text-align: center;
  margin-top: max(0.26rem, 10px);
}
.support-model-help-page .company-form .company-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  margin-bottom: max(0.3rem, 10px);
}
.support-model-help-page .company-form .input-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.support-model-help-page .company-form .input-line .input-item {
  width: 49.0234375%;
}
.support-model-help-page .company-form .input-line .input-item:last-of-type {
  margin-bottom: 20px;
}
.support-model-help-page .company-form .submit-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  cursor: pointer;
  width: 160px;
  height: 48px;
  background: #e70112;
  border-radius: 24px;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1;
  margin-top: 21px;
}
/* 行业应用页面 */
.industry-application-page {
  padding-bottom: max(1.2rem, var(--space));
  overflow: hidden;
}
.industry-application-page .industry-content {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-top: max(0.85rem, 35px);
  margin-bottom: max(0.8rem, 30px);
  position: relative;
}
.industry-application-page .industry-content .pic img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.industry-application-page .industry-content .position-panel {
  position: absolute;
  top: max(0.6rem, 20px);
  left: max(0.6rem, 20px);
  right: max(0.4rem, 20px);
  z-index: 2;
}
.industry-application-page .industry-content .panel {
  width: 70%;
  max-width: 686px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.15), 0px 2px 2px 0px rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  padding-top: max(0.45rem, 20px);
  padding-left: max(0.55rem, 15px);
  padding-right: max(0.9rem, 15px);
  padding-bottom: max(0.62rem, 20px);
}
.industry-application-page .industry-content .panel .panel-title {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font36);
  color: #ffffff;
  line-height: 1;
  margin-bottom: max(0.38rem, 15px);
}
.industry-application-page .industry-content .panel .panel-desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1.77777778;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.industry-application-page .industry-content .panel .btn {
  width: 130px;
  height: 32px;
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  margin-top: max(0.37rem, 15px);
}
.industry-application-page .industry-content .panel .btn:hover img {
  margin-left: 5px;
}
.industry-application-page .industry-content .panel .btn .btn-text {
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  transition: var(--duration);
}
.industry-application-page .industry-content .panel .btn img {
  display: block;
  width: 5px;
  margin-left: 11px;
  transition: var(--duration);
  filter: brightness(0) invert(1);
}
.industry-application-page .industry-content .tag-list {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 11px;
  column-gap: 10px;
  max-width: 620px;
  width: 70%;
  margin-left: auto;
}
.industry-application-page .industry-content .tag-list .tag {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 19px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #ffffff;
  padding: 7px;
  text-align: center;
  overflow-wrap: break-word;
}
.industry-application-page .industry-section {
  margin-bottom: max(0.72rem, 30px);
}
.industry-application-page .industry-section:last-of-type {
  margin-bottom: 0;
}
.industry-application-page .industry-section:last-of-type .section-main {
  border-bottom: none;
  padding-bottom: 0;
}
.industry-application-page .industry-section .section-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: max(0.75rem, 30px);
}
.industry-application-page .industry-section .section-top .top-title {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font36);
  color: #333333;
  white-space: nowrap;
  margin-right: 20px;
  line-height: 1;
}
.industry-application-page .industry-section .section-top .top-other {
  width: 62.36979167%;
  flex-shrink: 0;
}
.industry-application-page .industry-section .section-top .top-other .other-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.77777778;
}
.industry-application-page .industry-section .section-top .top-other .link {
  margin-top: max(0.23rem, 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 16px;
}
.industry-application-page .industry-section .section-top .top-other .link .link-text {
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  line-height: 1;
}
.industry-application-page .industry-section .section-top .top-other .link img {
  display: block;
  width: 5px;
  margin-left: 11px;
  filter: brightness(0) invert(1);
  transition: var(--duration);
}
.industry-application-page .industry-section .section-top .top-other .link:hover img {
  margin-left: 5px;
}
.industry-application-page .industry-section .section-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: max(0.8rem, 30px);
  border-bottom: var(--border);
}
.industry-application-page .industry-section .section-main .list {
  width: 28.64583333%;
  flex-shrink: 0;
}
.industry-application-page .industry-section .section-main .list .item:first-child .link {
  border-top: var(--border);
}
.industry-application-page .industry-section .section-main .list .item.active .link .icon .default,
.industry-application-page .industry-section .section-main .list .item:hover .link .icon .default {
  display: none;
}
.industry-application-page .industry-section .section-main .list .item.active .link .icon .hover,
.industry-application-page .industry-section .section-main .list .item:hover .link .icon .hover {
  display: block;
}
.industry-application-page .industry-section .section-main .list .item.active .link .link-text,
.industry-application-page .industry-section .section-main .list .item:hover .link .link-text {
  color: #f82127;
}
.industry-application-page .industry-section .section-main .list .item .link {
  display: flex;
  align-items: center;
  padding-left: max(0.14rem, 10px);
  padding-right: max(0.14rem, 10px);
  padding-top: max(0.24rem, 10px);
  padding-bottom: max(0.24rem, 10px);
  border-bottom: var(--border);
}
.industry-application-page .industry-section .section-main .list .item .link .icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: max(0.2rem, 10px);
}
.industry-application-page .industry-section .section-main .list .item .link .icon img {
  width: 6px;
}
.industry-application-page .industry-section .section-main .list .item .link .icon .default {
  display: block;
}
.industry-application-page .industry-section .section-main .list .item .link .icon .hover {
  display: none;
}
.industry-application-page .industry-section .section-main .list .item .link .link-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font22);
  color: #333333;
  transition: var(--duration);
}
.industry-application-page .industry-section .section-main .pic {
  width: 62.36979167%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.industry-application-page .industry-section .section-main .pic:hover img {
  transform: scale(1.05);
}
.industry-application-page .industry-section .section-main .pic img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.industry-application-page .industry-fixed {
  position: fixed;
  left: max(0.24rem, 10px);
  top: 50%;
  transform: translatey(-50%);
  z-index: 67;
  display: none;
  transition: var(--duration);
}
.industry-application-page .industry-fixed .progress {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: calc(100%   20px);
  background: rgba(204, 204, 204, 0.5);
  border-radius: 2px;
  overflow: hidden;
  transform: translatey(-50%);
}
.industry-application-page .industry-fixed .progress .bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20%;
  background-color: #e70012;
  border-radius: 2px;
  transition: var(--duration);
}
.industry-application-page .industry-fixed .list {
  padding-left: 16px;
}
.industry-application-page .industry-fixed .list .item {
  display: block;
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
  margin-bottom: max(0.24rem, 15px);
  line-height: 1;
  transition: var(--duration);
  user-select: none;
  cursor: pointer;
}
.industry-application-page .industry-fixed .list .item:last-child {
  margin-bottom: 0;
}
.industry-application-page .industry-fixed .list .item.active {
  color: #f72027;
}
/* 行业应用二级页面 */
.industry-cate-page .industry-cate-content {
  padding-top: max(0.8rem, 35px);
  padding-bottom: max(0.99rem, 35px);
}
.industry-cate-page .max-panel {
  display: block;
  border-radius: max(0.16rem, 10px);
  overflow: hidden;
  margin-bottom: max(0.69rem, 30px);
}
.industry-cate-page .max-panel:hover img {
  transform: scale(1.05);
}
.industry-cate-page .max-panel img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.industry-cate-page .cate-list-area .title-area {
  text-align: center;
}
.industry-cate-page .cate-list-area .title-area .title {
  font-weight: 400;
  font-size: var(--font36);
  color: #333333;
}
.industry-cate-page .cate-list-area .title-area .sub-title {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #666666;
  margin-top: 6px;
}
.industry-cate-page .cate-list-area .list {
  margin-top: max(0.6rem, 30px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: max(0.75rem, 25px);
  column-gap: max(0.3rem, 15px);
  padding-bottom: max(1.03rem, 30px);
  border-bottom: var(--border);
}
.industry-cate-page .cate-list-area .list .item {
  overflow: hidden;
}
.industry-cate-page .cate-list-area .list .item .pic {
  display: block;
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  overflow: hidden;
  padding: 10px;
}
.industry-cate-page .cate-list-area .list .item .pic .pic-box {
  display: block;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 3px;
}
.industry-cate-page .cate-list-area .list .item .pic .pic-box::after {
  content: "";
  display: block;
  padding-bottom: 59.53079179%;
}
.industry-cate-page .cate-list-area .list .item .pic .pic-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 96%;
  max-height: 96%;
  object-fit: contain;
  object-position: center center;
  transform: translate(-50%, -50%);
  transition: var(--duration);
  mix-blend-mode: multiply;
}
.industry-cate-page .cate-list-area .list .item .text .cate-name {
  font-weight: 400;
  font-size: var(--font18);
  color: #f71f26;
  line-height: 1.55555556;
  text-align: center;
  margin-top: max(0.15rem, 10px);
  padding-left: 10px;
  padding-right: 10px;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.industry-cate-page .cate-list-area .list .item .text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.57142857;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: max(0.15rem, 10px);
  text-align: center;
  transition: var(--duration);
}
.industry-cate-page .cate-list-area .list .item .text .desc:empty {
  display: none;
}
.industry-cate-page .cate-list-area .list .item .text .more {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 11px;
}
.industry-cate-page .cate-list-area .list .item .text .more .more-text {
  font-weight: 300;
  font-size: 12px;
  color: #666666;
  line-height: 1;
  transition: var(--duration);
}
.industry-cate-page .cate-list-area .list .item .text .more .more-icon {
  display: flex;
  align-items: center;
  margin-left: 11px;
}
.industry-cate-page .cate-list-area .list .item .text .more .more-icon img {
  width: 5px;
}
.industry-cate-page .cate-list-area .list .item .text .more .more-icon .hover {
  display: none;
}
.industry-cate-page .cate-list-area .list .item:hover .pic .pic-box img {
  transform: translate(-50%, -50%) scale(1.05);
}
.industry-cate-page .cate-list-area .list .item:hover .text .desc {
  color: #f71f26;
}
.industry-cate-page .cate-list-area .list .item:hover .text .more .more-text {
  color: #f71f26;
}
.industry-cate-page .cate-list-area .list .item:hover .text .more .more-icon .hover {
  display: block;
}
.industry-cate-page .cate-list-area .list .item:hover .text .more .more-icon .default {
  display: none;
}
.industry-cate-page .industry-swiper-area {
  margin-top: max(0.8rem, 30px);
}
.industry-cate-page .industry-swiper-area .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.industry-cate-page .industry-swiper-area .title-line .title {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font36);
  color: #333333;
  line-height: 1;
}
.industry-cate-page .industry-swiper-area .title-line .link {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 120px;
  height: 32px;
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 16px;
}
.industry-cate-page .industry-swiper-area .title-line .link:hover .icon {
  margin-left: 6px;
}
.industry-cate-page .industry-swiper-area .title-line .link .link-text {
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font14);
  color: #fff;
  line-height: 1;
}
.industry-cate-page .industry-swiper-area .title-line .link .icon {
  margin-left: max(0.18rem, 10px);
  transition: var(--duration);
}
.industry-cate-page .industry-swiper-area .title-line .link .icon img {
  display: block;
  width: 5px;
  filter: brightness(0) invert(1);
}
.industry-cate-page .industry-swiper-area .swiper-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1616px;
  margin-left: auto;
  margin-right: auto;
  width: 86%;
  margin-top: max(0.61rem, 30px);
}
@media (max-width: 768px) {
  .industry-cate-page .industry-swiper-area .swiper-container {
    width: 92%;
  }
}
.industry-cate-page .industry-swiper-area .swiper-container .arrow {
  margin-top: 1.33rem;
  user-select: none;
  cursor: pointer;
}
.industry-cate-page .industry-swiper-area .swiper-container .arrow img {
  width: 10px;
}
.industry-cate-page .industry-swiper-area .swiper-container .arrow .default {
  display: block;
}
.industry-cate-page .industry-swiper-area .swiper-container .arrow .hover {
  display: none;
}
.industry-cate-page .industry-swiper-area .swiper-container .arrow:hover .default {
  display: none;
}
.industry-cate-page .industry-swiper-area .swiper-container .arrow:hover .hover {
  display: block;
}
.industry-cate-page .industry-swiper-area .industry-swiper {
  width: 95.04950495%;
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide {
  user-select: none;
  cursor: pointer;
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-pic {
  display: block;
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-pic::after {
  content: "";
  display: block;
  padding-bottom: 57.63747454%;
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text {
  margin-top: max(0.31rem, 15px);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .slide-title {
  font-weight: 400;
  font-size: var(--font26);
  color: #333333;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .slide-desc {
  margin-top: max(0.3rem, 10px);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(102, 102, 102, 0.6);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((26 / 16) * var(--font16) * 4);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: max(0.25rem, 10px);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn .more-text {
  line-height: 1;
  white-space: nowrap;
  font-weight: 300;
  font-size: 12px;
  color: #666666;
  transition: var(--duration);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn .more-icon {
  height: 10px;
  margin-left: 11px;
  transition: var(--duration);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0;
  height: 350%;
  background-color: var(--theme);
  z-index: -1;
  transition: var(--duration);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn:hover {
  border-color: transparent;
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn:hover::after {
  width: 150%;
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn:hover .more-text {
  color: #fff;
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn:hover .more-icon {
  filter: brightness(0) invert(1);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide:hover .slide-pic img {
  transform: scale(1.05);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide:hover .slide-text .slide-title {
  color: var(--theme);
}
.industry-cate-page .industry-swiper-area .industry-swiper .swiper-pagination {
  display: none;
}
/* 行业应用详情页面 */
.industry-detail-page {
  /* 方案概述 */
  /* 新能源解决方案 */
  /* 应用案例区域 */
  /* 产品推荐区域 */
  /* 相关产品推荐 */
}
.industry-detail-page .streamer {
  background-color: #000;
  margin-top: var(--header-height);
}
.industry-detail-page .streamer .streamer-wrap {
  display: flex;
  align-items: center;
  height: 56px;
}
.industry-detail-page .streamer .streamer-wrap .common-news-detail-breadcrumb {
  padding-top: max(0.18rem, 10px);
  padding-bottom: max(0.18rem, 10px);
  margin-right: 20px;
}
.industry-detail-page .streamer .streamer-wrap .common-news-detail-breadcrumb .icon img {
  filter: brightness(0) invert(1);
}
.industry-detail-page .streamer .streamer-wrap .common-news-detail-breadcrumb .bread-list .bread-item {
  color: #ffffff;
}
.industry-detail-page .streamer .streamer-wrap .common-news-detail-breadcrumb .bread-list .bread-item a {
  color: #ffffff;
}
.industry-detail-page .streamer .streamer-wrap .other {
  margin-left: auto;
}
.industry-detail-page .streamer .other {
  display: flex;
  align-items: center;
}
.industry-detail-page .streamer .other .page-list {
  display: flex;
  align-items: center;
}
.industry-detail-page .streamer .other .page-list .page-item {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font15);
  color: #ffffff;
  margin-right: max(10px, 0.5rem);
  cursor: pointer;
  user-select: none;
  transition: var(--duration);
}
.industry-detail-page .streamer .other .page-list .page-item:hover {
  color: #c9151e;
}
.industry-detail-page .streamer .other .page-list .page-item:last-child {
  margin-right: 0;
}
.industry-detail-page .streamer .other .btn-list {
  display: flex;
  align-items: center;
  margin-left: max(0.5rem, 20px);
}
.industry-detail-page .streamer .other .btn-list .btn {
  width: 100px;
  height: 32px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.industry-detail-page .streamer .other .btn-list .btn.btn1 {
  background: #173993;
  margin-right: max(0.2rem, 10px);
}
.industry-detail-page .streamer .other .btn-list .btn.btn2 {
  background-color: #c9151e;
}
.industry-detail-page .streamer .other .btn-list .btn img {
  margin-right: 6px;
}
.industry-detail-page .streamer .other .btn-list .btn span {
  font-size: var(--font14);
  font-weight: 400;
  color: #ffffff;
}
.industry-detail-page .industry-banner {
  position: relative;
  z-index: 2;
}
.industry-detail-page .industry-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.industry-detail-page .industry-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.industry-detail-page .industry-banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 690px;
  width: 70%;
}
.industry-detail-page .industry-banner .text .title {
  font-size: var(--font48);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.3rem;
  text-align: center;
  overflow-wrap: break-word;
  line-height: 1.25;
}
.industry-detail-page .industry-banner .text .desc {
  font-size: var(--font18);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.77777778;
  text-align: center;
  overflow-wrap: break-word;
}
.industry-detail-page .industry-banner .mouse {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: max(0.3rem, 10px);
  user-select: none;
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s ease infinite alternate;
}
.industry-detail-page .industry-en-title {
  font-weight: 300;
  font-size: var(--font18);
  line-height: 1;
  color: #666666;
  text-align: center;
}
.industry-detail-page .industry-zh-title {
  font-weight: 500;
  font-size: var(--font44);
  color: transparent;
  line-height: 1;
  background: linear-gradient(0deg, #d71418 0%, #e60012 0%, #ff3131 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top: 7px;
}
.input-article {
  padding-bottom: 50px;
  font-size: 16px;
  line-height: 3.2;
  color: #333333;
}
.industry-detail-page .input-article p,
.industry-detail-page .input-article span,
.industry-detail-page .input-article a,
.industry-detail-page .input-article div {
  max-width: 100%;
  overflow-wrap: break-word;
}
.industry-detail-page .input-article img,
.industry-detail-page .input-article video {
  max-width: 100%;
  vertical-align: top;
}
.industry-detail-page .industry-schema {
  background-image: url(/uploads/image/shimages/industry-detail-schema-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: max(1.2rem, 35px);
  padding-bottom: 3rem;
  overflow: hidden;
}
.industry-detail-page .industry-schema .schema-wrap {
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
  width: 86%;
}
@media (max-width: 768px) {
  .industry-detail-page .industry-schema .schema-wrap {
    width: 92%;
  }
}
.industry-detail-page .industry-schema .border {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: max(0.6rem, 30px);
}
.industry-detail-page .industry-schema .input-article {
  padding-top: max(0.6rem, 20px);
}
.industry-detail-page .industry-car-schema {
  background-image: url(/uploads/image/shimages/industry-detail-car-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center 10%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  overflow: hidden;
}
.industry-detail-page .industry-car-schema .border {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: max(0.6rem, 30px);
  margin-bottom: max(0.6rem, 30px);
  max-width: 100%;
}
.industry-detail-page .industry-car-schema .input-article {
  padding-bottom: 0.9rem;
}
.industry-detail-page .common-pro-detail-application-area {
  padding-bottom: max(1.05rem, 35px);
  background-image: url(/uploads/image/shimages/industry-recommend-bg.png);
  background-position: left bottom;
}
.industry-detail-page .common-pro-detail-application-area .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: max(0.6rem, 30px);
}
.industry-detail-page .common-pro-detail-application-area .title-line .application-title {
  margin-bottom: 0;
  line-height: 1;
}
.industry-detail-page .common-pro-detail-application-area .title-line .more {
  width: 120px;
  height: 32px;
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.industry-detail-page .common-pro-detail-application-area .title-line .more:hover .more-icon {
  margin-left: 5px;
}
.industry-detail-page .common-pro-detail-application-area .title-line .more .more-text {
  line-height: 1;
  font-family: source han sans cn;
  font-weight: 400;
  font-size: var(--font14);
  color: #ffffff;
}
.industry-detail-page .common-pro-detail-application-area .title-line .more .more-icon {
  width: 5px;
  margin-left: max(0.18rem, 10px);
  transition: var(--duration);
  filter: brightness(0) invert(1);
  margin-top: 0.1em;
}
.industry-detail-page .common-pro-detail-application-area .link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: max(2.8rem, 210px);
  height: max(0.68rem, 45px);
  background: #f71f26;
  border-radius: 34px;
  font-size: var(--font24);
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  line-height: 1;
  margin-top: max(30px, 1.35rem);
  margin-left: auto;
  margin-right: auto;
}
.industry-detail-page .common-pro-detail-recommend-area {
  background-image: none;
}
/* 产品列表页面 */
@media (max-width: 1200px) {
  .show-pro-list-area .pro-list2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .show-pro-list-area .pro-list1 {
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .pro-filter-area .filter-line .params {
    width: 95px;
  }
  .pro-filter-area .filter-line .select-list {
    justify-content: space-between;
  }
  .pro-filter-area .filter-line .value-list .select-item {
    width: 47.5%;
    margin-right: 0;
  }
  .show-pro-list-area .pro-list2 .pro-item .mask {
    display: none;
  }
}
@media (max-width: 576px) {
  .pro-filter-area .filter-line .select-list {
    padding-right: 0;
  }
  .pro-filter-area .filter-line .value-list .select-item {
    width: 100%;
  }
  .show-pro-list-area .pro-list2 .pro-item .text .more-btn {
    display: none;
  }
  .show-pro-list-area .pro-list2 .pro-item {
    padding-bottom: 19px;
  }
  .show-pro-list-area .pro-list2 {
    row-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .show-pro-list-area .pro-list2 .pro-item .pic::after {
    padding-bottom: 65%;
  }
  .show-pro-list-area .pro-list1 .row .col1 {
    width: 140px;
  }
  .show-pro-list-area .pro-list1 .row .col2,
  .show-pro-list-area .pro-list1 .row .col3,
  .show-pro-list-area .pro-list1 .row .col4 {
    width: 110px;
  }
  .show-pro-list-area .pro-list1 .row {
    min-width: 650px;
  }
  .pro-case-recommend-area .title-line .title {
    font-size: 20px;
  }
  .pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn {
    display: none;
  }
}
/* 内页共用banner */
@media (max-width: 768px) {
  .common-banner .pic img {
    height: 260px;
    object-fit: cover;
  }
  .common-banner .text .breadcrumb {
    display: none;
  }
  /* 分页器 */
  .common-pagination {
    flex-wrap: wrap;
  }
  .common-pagination .item {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
  }
}
/* 内页共用banner */
@media (max-width: 576px) {
  .common-banner .text .banner-title {
    font-size: 22px;
  }
  .common-banner .text .banner-desc {
    line-height: 1.5;
  }
  .common-banner .text .banner-desc {
    padding-bottom: 2.5rem;
  }
  .common-banner .text .banner-desc br {
    display: none;
  }
}
/* 产品详情 */
@media (max-width: 1200px) {
  .pro-detail-page .pro-detail-intro .intro-tab-list {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .pro-detail-page .pro-detail-intro .intro-tab-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 10px;
  }
  .pro-detail-page .pro-detail-intro .intro-tab-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #333;
  }
}
@media (max-width: 992px) {
  .pro-detail-page .pro-detail-content .content-wrap {
    flex-wrap: wrap;
  }
  .pro-detail-page .pro-detail-content .content-wrap .left {
    width: 100%;
  }
  .pro-detail-page .pro-detail-content .content-wrap .right {
    width: 100%;
    margin-top: 30px;
  }
  .common-pro-detail-recommend-area .pro-detail-recommend-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .common-pro-detail-application-area .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-swiper .swiper-slide .pic {
    padding-bottom: 65%;
  }
}
@media (max-width: 768px) {
  .common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask {
    display: none;
  }
}
@media (max-width: 576px) {
  .pro-detail-page .breadcrumb-area {
    display: none;
  }
  .pro-detail-page .pro-detail-content .content-wrap .right .pro-title {
    font-size: 18px;
  }
  .pro-detail-page .pro-detail-content .content-wrap .right .pro-feature {
    font-size: 16px;
  }
  .pro-detail-page .pro-detail-content .content-wrap .right .table .tr {
    flex-wrap: wrap;
  }
  .pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(1) {
    height: 40px;
    width: 100%;
    border: none;
    border-bottom: var(--border);
  }
  .pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1 {
    width: 80%;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .common-pro-detail-application-area .list .item .text .more-btn {
    display: none;
  }
  .common-pro-detail-application-area .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .common-pro-detail-application-area .list .item .text .text-desc {
    height: auto;
  }
  .common-pro-detail-recommend-area .pro-detail-recommend-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .pic::after {
    padding-bottom: 65%;
  }
  .common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .text .more-btn {
    display: none;
  }
  .common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item {
    padding-bottom: 19px;
  }
}
/* 行业应用页面 */
@media (max-width: 1200px) {
  .industry-application-page .industry-fixed {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .industry-application-page .industry-section .section-top {
    flex-wrap: wrap;
  }
  .industry-application-page .industry-section .section-top .top-title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .industry-application-page .industry-section .section-top .top-other {
    width: 100%;
  }
  .industry-application-page .industry-section .section-main {
    flex-wrap: wrap;
  }
  .industry-application-page .industry-section .section-main .list {
    width: 100%;
  }
  .industry-application-page .industry-section .section-main .pic {
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
  .industry-application-page .industry-section .section-main {
    border-bottom: none;
  }
  .industry-application-page .industry-content .panel {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .industry-application-page .industry-content .tag-list {
    align-items: start;
  }
  .industry-application-page .industry-content .tag-list {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  .industry-application-page .industry-content .panel {
    width: 100%;
  }
  .industry-application-page .industry-content .panel .panel-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .industry-application-page .industry-content .panel .panel-desc {
    line-height: 1.5;
  }
  .industry-application-page .industry-content .tag-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 行业应用二级页面 */
@media (max-width: 992px) {
  .industry-cate-page .cate-list-area .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .industry-cate-page .cate-list-area .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-cate-page .industry-swiper-area .swiper-container .arrow {
    display: none;
  }
  .industry-cate-page .industry-swiper-area .industry-swiper .swiper-pagination {
    display: block;
    position: static;
    margin-top: 20px;
  }
  .industry-cate-page .industry-swiper-area .industry-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
  }
}
@media (max-width: 576px) {
  .industry-cate-page .cate-list-area .title-area .title {
    font-size: 18px;
  }
  .industry-cate-page .cate-list-area .list {
    grid-template-columns: 1fr;
  }
  .industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .slide-desc {
    height: auto;
  }
  .industry-cate-page .industry-swiper-area .industry-swiper .swiper-slide .slide-text .more-btn {
    display: none;
  }
}
/* 应用详情页面 */
@media (max-width: 992px) {
  .industry-detail-page .industry-banner .mouse {
    display: none;
  }
}
@media (max-width: 768px) {
  .industry-detail-page .streamer .streamer-wrap .common-news-detail-breadcrumb {
    display: none;
  }
  .industry-detail-page .industry-banner .pic img {
    min-height: 300px;
    object-fit: cover;
    object-position: center center;
  }
}
@media (max-width: 576px) {
  .industry-detail-page .industry-banner .text {
    width: 86%;
  }
  .industry-detail-page .industry-banner .text .title {
    font-size: 20px;
  }
  .industry-detail-page .industry-schema {
    padding-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .common-pro-detail-application-area .application-title,
  .common-pro-detail-recommend-area .pro-detail-recommend-title {
    font-size: 20px;
  }
  .common-pro-detail-application-area .list .item .text .text-title {
    font-size: 16px;
  }
}
/* 新闻列表页面 */
@media (max-width: 992px) {
  .news-section {
    flex-wrap: wrap;
  }
  .news-section .section-left {
    width: 100%;
    margin-bottom: 30px;
  }
  .news-section .section-right {
    width: 100%;
  }
  .news-list-panel .common-news-list {
    flex-wrap: wrap;
  }
  .news-list-panel .common-news-list .item {
    width: 100%;
  }
  .news-panel-swiper .news-swiper .pic img {
    min-height: 300px;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 768px) {
  .news-section .section-left .pic::after {
    padding-bottom: 60%;
  }
}
@media (max-width: 576px) {
  .news-panel-swiper .news-swiper .slide-text .slide-title,
  .news-section .section-left .text .text-title {
    font-size: 16px;
  }
  .news-panel-swiper .news-swiper .slide-text .tag-list,
  .news-section .section-left .text .tag-list {
    display: none;
  }
  .news-panel-swiper .news-swiper .slide-text .slide-more {
    display: none;
  }
  .common-news-list .item {
    align-items: stretch;
  }
  .common-news-list .item .pic {
    width: 110px;
  }
  .common-news-list .item .pic img {
    position: initial;
  }
  .common-news-list .item .pic::after {
    display: none;
  }
  .common-news-list .item .text .time-line {
    display: none;
  }
  .common-news-list .item .text .tag-list {
    display: none;
  }
  .common-news-list .item .text {
    margin-left: 10px;
    align-self: center;
  }
}
/* 新闻详情 */
@media (max-width: 768px) {
  .common-news-detail-breadcrumb {
    display: none;
  }
  .news-detail-page .current-article {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .news-detail-page .current-article .left {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-detail-page .current-article .right {
    width: 100%;
    margin-left: 0;
  }
  .news-detail-page .recommend-article .recommend-link {
    max-width: 100%;
  }
  .news-detail-page .recommend-article {
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .news-detail-page .detail-content .article-title {
    font-size: 22px;
    overflow-wrap: break-word;
  }
  .news-detail-page .detail-content .tag-list {
    display: none;
  }
  .news-detail-page .detail-content .article-info {
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .news-detail-page .detail-content .article-info .info-item {
    width: 50%;
    text-align: center;
    border-right: none;
    font-size: 12px;
    overflow-wrap: break-word;
    flex-shrink: 0;
    margin-bottom: 6px;
  }
  .news-detail-page .current-article .right {
    flex-wrap: wrap;
  }
  .news-detail-page .current-article .right .current-point {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-detail-page .current-article .right .current-point::after {
    display: none;
  }
  .news-detail-page .current-article .right .current-share {
    margin-left: auto;
  }
  .common-recommend-news-area .hot-news-title {
    font-size: 20px;
    line-height: 1;
  }
  .common-recommend-news-area .hot-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
  .common-recommend-news-area .hot-list .hot-item .text .time-line {
    display: none;
  }
  .common-recommend-news-area .hot-list .hot-item .text .more-btn {
    display: none;
  }
  .common-recommend-news-area .hot-list .hot-item .text .desc {
    margin-top: 10px;
  }
}
/* 资料下载 */
@media (max-width: 1200px) {
  .support-page .support-content .support-wrap .support-main .main-item .download-area .icon {
    width: 50px;
    height: 50px;
  }
  .support-page .support-content .support-wrap .support-main .main-item .download-area .icon img {
    max-width: 60%;
    max-height: 60%;
  }
}
@media (max-width: 992px) {
  .support-page .support-content .support-wrap {
    flex-wrap: wrap;
  }
  .support-page .support-content .support-wrap .support-aside {
    width: 100%;
    position: static;
  }
  .support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item {
    border: var(--border);
    margin-left: 0;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 10px;
    position: relative;
    overflow: hidden;
  }
  .support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item .list .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--theme);
  }
  .support-page .support-content .support-wrap .support-main {
    flex: none;
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .support-page .support-content .support-wrap .support-aside .aside-list-area .aside-item {
    margin-bottom: 0;
    border-bottom: var(--border);
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .support-page .support-content .support-wrap .support-main .main-list {
    grid-template-columns: 1fr;
  }
  .support-page .support-content .support-wrap .support-main .main-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .support-page .support-content .support-wrap .support-main .main-item .pic::after {
    padding-bottom: 65%;
  }
}
/* 常见问题列表 */
@media (max-width: 768px) {
  .support-question-page .question-content .question-wrap {
    flex-wrap: wrap;
  }
  .support-question-page .question-content .question-wrap .question-left {
    width: 100%;
  }
  .support-question-page .question-content .question-wrap .question-right {
    width: 100%;
  }
  .support-question-page .question-content .question-wrap .question-left .question-top .search {
    flex: 1;
    margin-left: 50px;
  }
  .support-question-page .question-content .question-wrap .question-right {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .support-question-page .question-content .question-wrap .question-left .question-top {
    flex-wrap: wrap;
  }
  .support-question-page .question-content .question-wrap .question-left .question-top .search {
    width: 100%;
    margin-bottom: 10px;
    order: -1;
    flex: none;
    margin-left: auto;
    margin-right: auto;
  }
  .support-question-page .question-content .question-wrap .question-left .question-top .expand-all {
    margin-left: auto;
  }
  .support-question-page .question-content .question-wrap .question-left .question-list .question-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .support-question-page .question-content .question-wrap .question-left .question-list .question-item .item-top .top-left .icon {
    margin-top: 0;
  }
  .support-question-page .question-content .question-wrap .question-right .area-title {
    margin-bottom: 20px;
  }
  .support-question-page .question-content .question-wrap .question-right .q-item .text .desc {
    padding-right: 0;
  }
  .support-question-page .question-content .question-wrap .question-right .q-item .text .more-btn {
    display: none;
  }
}
/* 售后服务支持 */
@media (max-width: 768px) {
  .support-service-page .form .submit-btn {
    width: 140px;
    height: 35px;
  }
}
@media (max-width: 576px) {
  .support-service-page .form .input-line {
    flex-wrap: wrap;
  }
  .support-service-page .form .input-line .input-item {
    width: 100%;
  }
  .support-service-page .form .input-line .input-item input {
    font-size: 14px;
  }
  .support-service-page .form .input-line .input-item textarea {
    font-size: 14px;
  }
}
/* 技术支持-选型帮助  */
@media (max-width: 768px) {
  .support-model-help-page .form-area {
    flex-wrap: wrap;
  }
  .support-model-help-page .form-area .left-area {
    width: 100%;
    margin-bottom: 20px;
  }
  .support-model-help-page .form-area .right-area {
    display: none;
  }
  .support-model-help-page .company-form .input-line {
    flex-wrap: wrap;
  }
  .support-model-help-page .company-form .input-line .input-item {
    width: 100%;
  }
  .support-model-help-page .company-form .submit-btn {
    width: 140px;
    height: 35px;
  }
}
/* 关于我们-联系我们 */
@media (max-width: 992px) {
  .about-contact-page .about-contact-banner .contact-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
@media (max-width: 768px) {
  .about-contact-page .about-contact-banner .contact-list .contact-item .qrcode-list .qrcode-item .pic {
    width: max(1.27rem, 90px);
    height: max(1.27rem, 90px);
  }
  .about-contact-page .about-contact-message .form-area form .submit-btn {
    width: 140px;
    height: 35px;
  }
  .about-contact-page .about-contact-banner .contact-title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .about-contact-page .about-contact-banner .contact-list {
    grid-template-columns: 1fr;
  }
  .about-contact-page .about-contact-message .form-area form .input-line {
    flex-wrap: wrap;
  }
  .about-contact-page .about-contact-message .form-area form .input-line .input-item {
    width: 100%;
  }
  .about-contact-page .about-contact-banner .contact-title {
    text-align: center;
  }
}
/*  关于我们-人才招聘 */
@media (max-width: 768px) {
  .about-hire-page .about-hire-form .form {
    flex-wrap: wrap;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-hire-page .about-hire-form .form .select-item {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .about-hire-page .about-hire-form .form .input-item {
    width: 100%;
    margin-right: 0;
    display: flex;
  }
  .about-hire-page .about-hire-form .form .input-item input {
    flex: 1;
    min-width: 0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    width: auto;
  }
  .about-hire-page .about-hire-form .form .submit-btn {
    flex-shrink: 0;
    border-radius: 0 6px 6px 0;
  }
  .about-hire-page .about-job-area .about-job-list .job-item .job-item-main .link-btn {
    width: 140px;
    height: 35px;
  }
  .about-hire-page .about-job-area {
    overflow-x: auto;
  }
  .about-hire-page .about-job-area::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 10px;
  }
  .about-hire-page .about-job-area::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--theme);
  }
}
@media (max-width: 576px) {
  .about-hire-page .about-job-area .about-job-head,
  .about-hire-page .about-job-area .about-job-list {
    min-width: 200%;
  }
}
/* 关于我们-公司简介 */
@media (max-width: 1200px) {
  .about-company-banner {
    margin-top: var(--header-height);
  }
}
@media (max-width: 992px) {
  .about-company-desc .about-company-wrap {
    flex-wrap: wrap;
  }
  .about-company-desc .company-left {
    width: 100%;
  }
  .about-company-desc .company-right {
    width: 100%;
    margin-top: 30px;
  }
  .about-company-desc .company-right .pic img {
    margin-left: auto;
    margin-right: auto;
  }
  .about-company-honor .honor-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .about-company-culture .culture-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-company-culture .culture-list .item .info .desc br {
    display: none;
  }
  .about-company-banner .about-mouse {
    display: none;
  }
}
@media (max-width: 576px) {
  .about-company-banner .text .title {
    font-size: 22px;
  }
  .about-company-banner .text .sub-title {
    font-size: 16px;
    line-height: 1.5;
  }
  .about-company-banner .pic img {
    min-height: 260px;
    object-fit: cover;
  }
  .about-company-desc .company-left .company-title {
    font-size: 20px;
  }
  .about-company-desc .company-left .company-sub-title {
    font-size: 16px;
    font-weight: 500;
  }
  .about-company-show .swiper-list .swiper-item .prev,
  .about-company-show .swiper-list .swiper-item .next {
    display: none;
  }
  .about-company-title-area .zh {
    font-size: 18px;
  }
  .about-company-title-area .sub-title {
    font-size: 16px;
  }
  .about-company-show .about-company-show-swiper .swiper-pagination {
    position: static;
    display: block;
    margin-top: 10px;
  }
  .about-company-show .about-company-show-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
  }
  .about-company-culture .culture-list .item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .about-company-culture .culture-list .item .icon {
    margin-bottom: 5px;
  }
  .about-company-culture .culture-list .item .icon img {
    max-width: 30px;
  }
  .about-company-culture .culture-list .item .info .title {
    font-size: 16px;
  }
  .about-company-development .swiper-container .arrow {
    display: none;
  }
  .about-company-development .swiper-container .about-development-swiper {
    width: 90%;
  }
  .about-company-honor .honor-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 产品二级页面 */
.product-cate-page .pro-cate-section1 {
  padding-top: max(1.1rem, var(--space));
}
.product-cate-page .pro-cate-section1 .more-btn {
  width: 180px;
  height: 48px;
  background: #f71f26;
  border-radius: 24px;
  font-size: var(--font18);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  margin-top: max(0.61rem, 30px);
}
.product-cate-page .pro-cate-title-area .title {
  font-weight: 400;
  font-size: var(--font36);
  color: #333333;
  line-height: 1;
  margin-bottom: max(0.19rem, 10px);
}
.product-cate-page .pro-cate-title-area .sub-title {
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  font-family: sourcehansanscn-light, sans-serif;
}
.product-cate-page .common-pro-detail-recommend-area {
  background-image: none;
  padding-top: max(var(--space), 1.11rem);
  padding-bottom: max(var(--space), 1.01rem);
}
.product-cate-page .common-pro-detail-recommend-area .pro-detail-recommend-list {
  margin-top: 30px;
}
.product-cate-page .common-pro-detail-recommend-area .btn {
  width: 180px;
  height: 48px;
  background: #f71f26;
  border-radius: 24px;
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  margin-top: max(0.6rem, 30px);
}
.product-cate-page .pro-contrast {
  padding-top: max(1.02rem, var(--space));
  padding-bottom: max(0.98rem, var(--space));
  background-color: #f8f8f8;
}
.product-cate-page .pro-contrast .table-wrap {
  overflow-x: auto;
  max-width: 100%;
  margin-top: 30px;
  margin-bottom: max(0.6rem, 30px);
}
.product-cate-page .pro-contrast .table-wrap table {
  min-width: 100%;
  border-collapse: collapse;
  border: var(--border);
}
.product-cate-page .pro-contrast .table-wrap table thead {
  background: #333333;
  border: 1px solid rgba(204, 204, 204, 0.5);
}
.product-cate-page .pro-contrast .table-wrap table thead th {
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  padding-top: max(0.15rem, 10px);
  padding-bottom: max(0.15rem, 10px);
  text-align: left;
  padding-left: 0.6rem;
  padding-right: 10px;
}
.product-cate-page .pro-contrast .table-wrap table thead th:last-child {
  padding-left: 0;
}
.product-cate-page .pro-contrast .table-wrap table tbody tr {
  border-bottom: var(--border);
}
.product-cate-page .pro-contrast .table-wrap table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.product-cate-page .pro-contrast .table-wrap table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}
.product-cate-page .pro-contrast .table-wrap table tbody tr td {
  padding-top: max(0.27rem, 10px);
  padding-bottom: max(0.25rem, 10px);
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.625;
  overflow-wrap: break-word;
  padding-left: 0.6rem;
  padding-right: 10px;
}
.product-cate-page .pro-contrast .table-wrap table tbody tr td.color-gray {
  color: #999999;
}
.product-cate-page .pro-contrast .table-wrap table tbody tr td:last-child {
  padding-left: 0;
}
.product-cate-page .pro-contrast .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  width: 180px;
  height: 48px;
  background: #f71f26;
  border-radius: 24px;
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
}
.product-cate-page .pro-guide {
}
.product-cate-page .pro-guide .main {
  margin-top: 30px;
  position: relative;
}
.product-cate-page .pro-guide .main .pic-list {
  width: 100%;
  height: 6.58rem;
  position: relative;
}
.product-cate-page .pro-guide .main .pic-list::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.product-cate-page .pro-guide .main .pic-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--duration);
}
.product-cate-page .pro-guide .main .pic-list img.show {
  opacity: 1;
}
.product-cate-page .pro-guide .main .swiper-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
}
.product-cate-page .pro-guide .main .swiper-container .guide-swiper {
  flex: 1;
  margin-left: 20px;
  margin-right: 20px;
}
.product-cate-page .pro-guide .main .swiper-container .guide-swiper .swiper-slide {
  text-align: center;
}
.product-cate-page .pro-guide .main .swiper-container .guide-swiper .swiper-slide .index {
  font-weight: bold;
  font-size: var(--font68);
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: max(0.21rem, 10px);
}
.product-cate-page .pro-guide .main .swiper-container .guide-swiper .swiper-slide .title {
  font-weight: 400;
  font-size: var(--font36);
  color: #fff;
  margin-bottom: 0.62rem;
}
.product-cate-page .pro-guide .main .swiper-container .guide-swiper .swiper-slide .desc {
  font-weight: 400;
  font-size: var(--font18);
  line-height: 1.77777778;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  color: #fff;
}
.product-cate-page .pro-guide .main .swiper-container .arrow img {
  display: block;
  width: 10px;
  filter: brightness(0) invert(1);
  transition: var(--duration);
  user-select: none;
  cursor: pointer;
}
.product-cate-page .pro-guide .main .swiper-container .arrow img:hover {
  filter: none;
}
.product-cate-page .pro-guide .main .tab-list {
  position: absolute;
  left: 50%;
  bottom: 8.53932584%;
  transform: translatex(-50%);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  display: flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
  max-width: 92%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: auto;
  margin-right: auto;
}
.product-cate-page .pro-guide .main .tab-list .tab-item {
  font-weight: 400;
  font-size: var(--font18);
  transition: var(--duration);
  text-align: center;
  padding: max(0.15rem, 10px) max(0.32rem, 15px);
  overflow: hidden;
  flex-shrink: 0;
  white-space: nowrap;
  color: #fff;
}
.product-cate-page .pro-guide .main .tab-list .tab-item.active {
  color: #333333;
}
.product-cate-page .pro-guide .main .tab-list .point {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #fff;
  width: calc(100% / 6);
  height: 100%;
  border-radius: 99px;
  transition: var(--duration);
}
.product-cate-page .pro-advantage {
  padding-bottom: max(1.01rem, var(--space));
}
.product-cate-page .pro-advantage .advantage-main {
  margin-top: max(0.43rem, 30px);
  background-image: url(/uploads/image/shimages/pro-cate-advantage.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  overflow: hidden;
  padding-top: max(1.53rem, 30px);
  padding-bottom: max(0.61rem, 30px);
  display: flex;
  align-items: flex-start;
  padding-left: max(0.6rem, 15px);
  padding-right: max(0.45rem, 15px);
  column-gap: 1.05rem;
}
.product-cate-page .pro-advantage .advantage-main .item {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  overflow-wrap: break-word;
}
.product-cate-page .pro-advantage .advantage-main .item:nth-child(even) {
  margin-top: max(0.6rem, 30px);
}
.product-cate-page .pro-advantage .advantage-main .item .text {
  margin-left: 12px;
}
.product-cate-page .pro-advantage .advantage-main .item .text .index {
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1;
  margin-bottom: max(0.2rem, 10px);
}
.product-cate-page .pro-advantage .advantage-main .item .text .title {
  font-weight: 400;
  font-size: var(--font24);
  color: #ffff;
  margin-bottom: max(0.25rem, 10px);
  overflow-wrap: break-word;
}
.product-cate-page .pro-advantage .advantage-main .item .text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55555556;
}
.product-cate-page .pro-case-recommend-area {
  padding-bottom: max(var(--space), 1rem);
}
.product-cate-page .pro-case-recommend-area .title-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-cate-page .pro-cate-question {
  padding-bottom: max(0.91rem, var(--space));
  background-color: #f8f8f8;
}
.product-cate-page .pro-cate-question .question-list {
  margin-bottom: max(0.6rem, 30px);
  margin-top: max(0.32rem, 30px);
}
.product-cate-page .pro-cate-question .question-list .question-item {
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  padding-left: max(0.3rem, 15px);
  padding-right: max(0.3rem, 15px);
  padding-top: 20px;
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.product-cate-page .pro-cate-question .question-list .question-item:last-child {
  margin-bottom: 0;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  user-select: none;
  cursor: pointer;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top.active .top-left .icon .hover {
  display: block;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top.active .top-left .icon .default {
  display: none;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top.active .top-left .top-text {
  color: #e70112;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top.active .state img {
  transform: rotate(-90deg);
  opacity: 1;
  filter: none;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left {
  display: flex;
  align-items: flex-start;
  flex: 1;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .icon {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  margin-top: 0.2em;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .icon .hover {
  display: none;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .top-text {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  margin-left: 10px;
  margin-right: max(15px, 0.23rem);
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .state {
  display: flex;
  align-items: flex-start;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .state img {
  display: block;
  transition: var(--duration);
  opacity: 0.5;
  filter: brightness(0);
}
.product-cate-page .pro-cate-question .question-list .question-item .item-main {
  display: none;
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 2;
  overflow-wrap: break-word;
  margin-left: 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  margin-top: max(0.22rem, 10px);
  margin-right: 36px;
}
.product-cate-page .pro-cate-question .btn {
  width: 240px;
  height: 48px;
  background: #f71f26;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font18);
  color: #fff;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
}
.product-cate-page .pro-cate-recommend {
}
.product-cate-page .pro-cate-recommend .title-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-cate-page .pro-cate-recommend .title-line .arrow-area {
  display: flex;
  align-items: center;
}
.product-cate-page .pro-cate-recommend .title-line .arrow-area .left,
.product-cate-page .pro-cate-recommend .title-line .arrow-area .right {
  width: 36px;
  height: 36px;
  background: #f8f8f8;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  margin-right: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--duration);
}
.product-cate-page .pro-cate-recommend .title-line .arrow-area .left:last-child,
.product-cate-page .pro-cate-recommend .title-line .arrow-area .right:last-child {
  margin-right: 0;
}
.product-cate-page .pro-cate-recommend .title-line .arrow-area .left img,
.product-cate-page .pro-cate-recommend .title-line .arrow-area .right img {
  height: 14px;
  display: block;
  transition: var(--duration);
}
.product-cate-page .pro-cate-recommend .title-line .arrow-area .left::after,
.product-cate-page .pro-cate-recommend .title-line .arrow-area .right::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--theme);
  width: 0;
  height: 400%;
  z-index: -1;
  pointer-events: none;
  transition: var(--duration);
}
.product-cate-page .pro-cate-recommend .title-line .arrow-area .left:hover::after,
.product-cate-page .pro-cate-recommend .title-line .arrow-area .right:hover::after {
  width: 130%;
}
.product-cate-page .pro-cate-recommend .title-line .arrow-area .left:hover img,
.product-cate-page .pro-cate-recommend .title-line .arrow-area .right:hover img {
  filter: brightness(0) invert(1);
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper {
  margin-top: 30px;
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide {
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 10px;
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide .pic {
  position: relative;
  overflow: hidden;
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide .pic::after {
  content: "";
  display: block;
  padding-bottom: 69.06077348%;
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide .text {
  padding-top: max(0.36rem, 20px);
  padding-bottom: max(0.4rem, 20px);
  padding-left: 15px;
  padding-right: 15px;
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide .text .title {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  text-align: center;
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.44444444;
  transition: var(--duration);
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide .text .desc {
  font-family: sourcehansanscn-light, sans-serif;
  font-weight: 300;
  font-size: var(--font14);
  color: #999999;
  margin-top: max(0.15rem, 10px);
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  text-align: center;
  transition: var(--duration);
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide:hover .text .title {
  color: var(--theme);
}
.product-cate-page .pro-cate-recommend .pro-cate-swiper .swiper-slide:hover .text .desc {
  color: var(--theme);
}
@media (max-width: 992px) {
  .product-cate-page .pro-contrast .table-wrap table {
    min-width: 800px;
  }
}
@media (max-width: 768px) {
  .pro-operate-line {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .pro-operate-line .pro-cate-title-area {
    width: 100%;
  }
  .pro-operate-line .operate-other {
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .product-cate-page .common-pro-detail-recommend-area .btn,
  .product-cate-page .pro-contrast .btn {
    width: 140px;
    height: 40px;
  }
  .product-cate-page .pro-guide .main .pic-list {
    height: 15rem;
  }
  .product-cate-page .pro-guide .main .swiper-container {
    top: 15%;
    transform: translate(-50%, 0);
  }
  .product-cate-page .pro-guide .main .swiper-container .guide-swiper {
    margin-left: 15px;
    margin-right: 15px;
  }
  .product-cate-page .pro-advantage .advantage-main {
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 0;
    row-gap: 30px;
  }
  .product-cate-page .pro-advantage .advantage-main .item {
    width: 47.5%;
    flex: none;
    flex-shrink: 0;
  }
  .product-cate-page .pro-advantage .advantage-main .item:nth-child(even) {
    margin-top: 0;
  }
  .product-cate-page .pro-cate-question .question-list .question-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .icon {
    margin-top: 0;
  }
  .product-cate-page .pro-cate-question .btn {
    width: 180px;
    height: 40px;
  }
}
/* 核心优势页面 */
.advantage-page .common-banner .text .advantage-title .en {
  font-weight: 300;
  font-size: var(--font18);
  color: #fff;
}
.advantage-page .common-banner .text .advantage-title .zh {
  font-weight: 500;
  font-size: var(--font44);
  color: #fff;
}
.advantage-page .common-banner .text .advantage-sub-title {
  font-weight: 400;
  font-size: var(--font24);
  color: #fff;
  padding-bottom: 1.96rem;
  margin-top: max(0.4rem, 15px);
}
.advantage-page .advantage-title-area .title {
  font-weight: 500;
  font-size: var(--font44);
  color: #333333;
  text-align: center;
}
.advantage-page .advantage-title-area .sub-title {
  font-weight: 400;
  font-size: var(--font22);
  color: #333333;
  text-align: center;
  margin-top: 10px;
}
.advantage-page .advantage-title-area .sub-title span {
  color: #e70113;
}
.advantage-page .brand {
  padding-top: max(var(--space), 1.07rem);
  padding-bottom: max(var(--space), 1.02rem);
  overflow: hidden;
}
.advantage-page .brand .brand-main {
  margin-top: max(0.6rem, 30px);
  display: flex;
  justify-content: space-between;
}
.advantage-page .brand .brand-main .left {
  width: 33.0078125%;
  flex-shrink: 0;
}
.advantage-page .brand .brand-main .left .item {
  display: flex;
  align-items: flex-start;
  padding-top: max(0.45rem, 20px);
  padding-bottom: max(0.45rem, 20px);
  padding-left: max(0.5rem, 15px);
  padding-right: max(0.5rem, 15px);
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #c2d6e3;
  transition: var(--duration);
}
.advantage-page .brand .brand-main .left .item:not(:last-child) {
  margin-bottom: max(0.19rem, 10px);
}
.advantage-page .brand .brand-main .left .item:hover {
  background-color: var(--theme);
  border-color: transparent;
}
.advantage-page .brand .brand-main .left .item:hover .icon img {
  filter: brightness(0) invert(1);
}
.advantage-page .brand .brand-main .left .item:hover .item-text {
  color: #fff;
}
.advantage-page .brand .brand-main .left .item .icon {
  margin-right: max(0.21rem, 10px);
}
.advantage-page .brand .brand-main .left .item .icon img {
  margin-top: 0.45em;
  transition: var(--duration);
}
.advantage-page .brand .brand-main .left .item .item-text {
  font-weight: 400;
  font-size: var(--font22);
  color: #333333;
  line-height: 1.45454545;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.advantage-page .brand .brand-main .right {
  width: 64.97395833%;
  flex-shrink: 0;
  position: relative;
}
.advantage-page .brand .brand-main .right .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.advantage-page .brand .brand-main .right .pic:hover img {
  transform: scale(1.05);
}
.advantage-page .brand .brand-main .right .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration);
}
.advantage-page .brand .brand-main .right .text-list {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: max(0.6rem, 20px);
  width: calc(100% - max(1.2rem, 30px));
  z-index: 2;
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}
.advantage-page .brand .brand-main .right .text-list .text-item .item-t {
  line-height: 1;
}
.advantage-page .brand .brand-main .right .text-list .text-item .item-t .data {
  font-weight: 500;
  font-size: var(--font68);
  color: #fff;
}
.advantage-page .brand .brand-main .right .text-list .text-item .item-t .unit {
  font-weight: 500;
  font-size: var(--font18);
  color: #fff;
  vertical-align: top;
}
.advantage-page .brand .brand-main .right .text-list .text-item .item-b {
  font-weight: 500;
  font-size: var(--font18);
  color: #fff;
  margin-top: max(0.18rem, 10px);
}
.advantage-page .technology {
  padding-top: max(1.03rem, var(--space));
  padding-bottom: max(1rem, var(--space));
  background-image: linear-gradient(to bottom, #f5f8fa, transparent);
}
.advantage-page .technology .technology-main {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #c2d6e3;
  padding-top: max(0.73rem, 20px);
  padding-left: max(0.4rem, 20px);
  padding-right: max(0.4rem, 20px);
  padding-bottom: max(0.6rem, 30px);
}
.advantage-page .technology .technology-main .text-list {
  display: grid;
  width: fit-content;
  grid-template-columns: repeat(3, 1fr);
  column-gap: max(0.8rem, 15px);
  row-gap: max(0.2rem, 10px);
  margin-left: auto;
  margin-right: auto;
  margin-top: max(0.63rem, 20px);
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font16);
  color: #333333;
}
.advantage-page .technology .technology-main .text-list img {
  margin-right: 10px;
}
.advantage-page .technology .technology-main .intro-list {
  margin-top: max(0.6rem, 30px);
  background-image: url(/uploads/image/shimages/advantage-intro-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(0.72rem, 30px);
  padding-bottom: max(0.72rem, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2.1rem;
  border-radius: 10px;
  margin-bottom: max(0.4rem, 30px);
}
.advantage-page .technology .technology-main .intro-list .item .item-t {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font48);
  color: #fff;
}
.advantage-page .technology .technology-main .intro-list .item .item-t .unit {
  font-weight: 500;
  font-size: var(--font18);
  color: #fff;
  margin-left: 10px;
}
.advantage-page .technology .technology-main .intro-list .item .item-b {
  font-weight: 500;
  font-size: var(--font18);
  color: #fff;
  text-align: center;
}
.advantage-page .technology .technology-main .team {
  display: flex;
  align-items: center;
}
.advantage-page .technology .technology-main .team .text {
  font-weight: 500;
  font-size: var(--font24);
  color: #333333;
  line-height: 1.33333333;
}
.advantage-page .technology .technology-main .team .list {
  margin-left: max(0.6rem, 20px);
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.advantage-page .technology .technology-main .team .list .item {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  background: #e6ebee;
  border-radius: 10px;
  padding-left: max(0.4rem, 15px);
  padding-right: max(0.19rem, 15px);
  padding-top: max(0.24rem, 20px);
  padding-bottom: max(0.24rem, 20px);
  transition: var(--duration);
}
.advantage-page .technology .technology-main .team .list .item:hover {
  background-color: var(--theme);
}
.advantage-page .technology .technology-main .team .list .item:hover .item-l img {
  filter: brightness(0) invert(1);
}
.advantage-page .technology .technology-main .team .list .item:hover .item-l .desc {
  color: #fff;
}
.advantage-page .technology .technology-main .team .list .item:hover .cate {
  color: #fff;
}
.advantage-page .technology .technology-main .team .list .item .item-l {
  display: flex;
  align-items: center;
}
.advantage-page .technology .technology-main .team .list .item .item-l img {
  margin-right: 12px;
  transition: var(--duration);
}
.advantage-page .technology .technology-main .team .list .item .item-l .desc {
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  transition: var(--duration);
}
.advantage-page .technology .technology-main .team .list .item .cate {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font16);
  color: #666666;
  transition: var(--duration);
}
.advantage-page .quality {
  padding-top: max(1.01rem, var(--space));
  padding-bottom: max(1.01rem, var(--space));
  background-image: linear-gradient(to bottom, #f5f8fa, transparent);
  overflow: hidden;
}
.advantage-page .quality .intro-list {
  display: flex;
  margin-top: max(0.6rem, 30px);
  padding-top: max(0.58rem, 20px);
  padding-bottom: max(0.64rem, 20px);
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.advantage-page .quality .intro-list .intro-item {
  display: flex;
  align-items: flex-start;
  width: 25%;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}
.advantage-page .quality .intro-list .intro-item:not(:last-child) {
  border-right: 1px solid rgba(204, 204, 204, 0.5);
}
.advantage-page .quality .intro-list .intro-item:first-child {
  justify-content: flex-start;
  padding-right: 10px;
  padding-left: 0;
}
.advantage-page .quality .intro-list .intro-item:last-child {
  justify-content: flex-end;
  padding-left: 10px;
  padding-right: 0;
}
.advantage-page .quality .intro-list .intro-item .icon {
  margin-right: max(0.12rem, 10px);
  margin-top: 0.3em;
}
.advantage-page .quality .intro-list .intro-item .text {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.625;
}
.advantage-page .quality .quality-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: max(0.6rem, 30px);
  column-gap: max(0.45rem, 30px);
}
.advantage-page .quality .quality-panel .left {
  width: 49.0234375%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.advantage-page .quality .quality-panel .left:hover img {
  transform: scale(1.05);
}
.advantage-page .quality .quality-panel .left img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.advantage-page .quality .quality-panel .right {
  flex: 1;
  min-width: 0;
}
.advantage-page .quality .quality-panel .right .section .section-title-line {
  display: flex;
  align-items: center;
}
.advantage-page .quality .quality-panel .right .section .section-title-line .icon {
  margin-right: max(0.23rem, 10px);
}
.advantage-page .quality .quality-panel .right .section .section-title-line .icon img {
  display: block;
  width: max(0.26rem, 20px);
  height: auto;
  object-fit: contain;
}
.advantage-page .quality .quality-panel .right .section .section-title-line .panel-title {
  font-weight: 500;
  font-size: var(--font24);
  color: #333333;
  line-height: 1;
  padding-top: 0.1em;
}
.advantage-page .quality .quality-panel .right .section .main {
  width: calc(100% - var(--w));
  margin-left: auto;
  overflow-wrap: break-word;
}
.advantage-page .quality .quality-panel .right .section1 {
  margin-bottom: max(0.61rem, 30px);
}
.advantage-page .quality .quality-panel .right .section1 .main {
  padding-bottom: max(0.6rem, 20px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.advantage-page .quality .quality-panel .right .tag-list {
  margin-top: max(0.3rem, 20px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: max(0.2rem, 10px);
  row-gap: max(0.2rem, 15px);
  width: 70.65693431%;
}
.advantage-page .quality .quality-panel .right .tag-list .tag-item {
  font-family: sourcehansanscn-light, sans-serif;
  font-size: var(--font16);
  color: #333333;
  border-radius: 99px;
  border: 1px solid #cccccc;
  text-align: center;
  padding: 8px;
  transition: var(--duration);
}
.advantage-page .quality .quality-panel .right .tag-list .tag-item:hover {
  background-color: var(--theme);
  color: #fff;
  border-color: transparent;
}
.advantage-page .quality .quality-panel .right .section2 .text-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: max(0.3rem, 20px);
  column-gap: max(0.45rem, 20px);
}
.advantage-page .quality .quality-panel .right .section2 .text-list .text-item {
  display: flex;
  align-items: center;
}
.advantage-page .quality .quality-panel .right .section2 .text-list .text-item img {
  margin-right: max(0.13rem, 10px);
}
.advantage-page .quality .quality-panel .right .section2 .text-list .text-item span {
  font-family: sourcehansanscn-light;
  font-size: var(--font16);
  color: #333333;
}
.advantage-page .service {
  padding-top: max(1.02rem, var(--space));
  padding-bottom: max(1.02rem, var(--space));
  background: linear-gradient(to bottom, #f5f8fa, transparent);
  overflow: hidden;
}
.advantage-page .service .service-wrap {
  max-width: 1458px;
}
.advantage-page .service .service-panel {
  display: flex;
  justify-content: space-between;
  margin-top: max(0.6rem, 30px);
}
.advantage-page .service .service-panel .left {
  width: 48.97119342%;
  flex-shrink: 0;
  position: relative;
}
.advantage-page .service .service-panel .left .pic {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.advantage-page .service .service-panel .left .pic:hover img {
  transform: scale(1.05);
}
.advantage-page .service .service-panel .left .pic::after {
  content: "";
  display: block;
  padding-bottom: 59.24369748%;
}
.advantage-page .service .service-panel .left .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.advantage-page .service .service-panel .left .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.09rem;
}
.advantage-page .service .service-panel .left .text .text-item .item-top {
  font-weight: bold;
  font-size: var(--font48);
  line-height: 32px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 10px;
  text-align: center;
}
.advantage-page .service .service-panel .left .text .text-item .item-bottom {
  font-weight: 500;
  font-size: var(--font18);
  line-height: 32px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}
.advantage-page .service .service-panel .right {
  width: 48.97119342%;
  background: #e6ebee;
  border-radius: 10px;
  padding-top: max(0.3rem, 20px);
  padding-bottom: max(0.3rem, 20px);
}
.advantage-page .service .service-panel .right .section-title {
  text-align: center;
  font-weight: 500;
  font-size: var(--font32);
  color: #333333;
  margin-bottom: max(0.4rem, 20px);
}
.advantage-page .service .service-panel .right img {
  display: block;
  max-width: 76%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.advantage-page .service .icon-list {
  margin-top: max(0.6rem, 30px);
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}
.advantage-page .service .icon-list .icon-item .icon {
  text-align: center;
  margin-bottom: max(0.3rem, 10px);
  height: max(0.67rem, 35px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.advantage-page .service .icon-list .icon-item .icon img {
  display: block;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center center;
}
.advantage-page .service .icon-list .icon-item .desc {
  font-weight: 400;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.625;
  overflow-wrap: break-word;
  text-align: center;
}
@media (max-width: 992px) {
  .advantage-page .technology .technology-main .text-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-page .technology .technology-main .team .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-page .quality .intro-list {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .advantage-page .quality .intro-list .intro-item {
    width: 50%;
    justify-content: flex-start !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border: 0 !important;
  }
  .advantage-page .quality .intro-list .intro-item .icon {
    margin-top: 0;
  }
  .advantage-page .quality .intro-list .intro-item .text br {
    display: none;
  }
  .advantage-page .quality .quality-panel .right .tag-list {
    width: 100%;
  }
  .advantage-page .service .icon-list {
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .advantage-page .brand .brand-main {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .advantage-page .brand .brand-main .left {
    width: 100%;
    order: 1;
  }
  .advantage-page .brand .brand-main .right {
    width: 100%;
  }
  .advantage-page .technology .technology-main .team {
    flex-wrap: wrap;
  }
  .advantage-page .technology .technology-main .team .text {
    width: 100%;
    margin-bottom: 15px;
  }
  .advantage-page .technology .technology-main .team .text br {
    display: none;
  }
  .advantage-page .technology .technology-main .team .list {
    flex: none;
    width: 100%;
    margin-left: 0;
  }
  .advantage-page .quality .quality-panel {
    row-gap: 20px;
    flex-wrap: wrap;
  }
  .advantage-page .quality .quality-panel .left {
    width: 100%;
  }
  .advantage-page .quality .quality-panel .right {
    flex: none;
    width: 100%;
  }
  .advantage-page .quality .quality-panel .right .section1 .main {
    border-color: transparent;
  }
  .advantage-page .quality .quality-panel .right .section1 {
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  }
  .advantage-page .service .service-panel {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .advantage-page .service .service-panel .left {
    width: 100%;
  }
  .advantage-page .service .service-panel .right {
    width: 100%;
  }
  .advantage-page .service .icon-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
  }
  .advantage-page .service .service-panel .left .text {
    column-gap: 2rem;
  }
}
@media (max-width: 576px) {
  .advantage-page .brand .brand-main .right .text-list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }
  .advantage-page .brand .brand-main .right .text-list {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .advantage-page .brand .brand-main .right .text-list .text-item {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .advantage-page .brand .brand-main .left .item .item-text br {
    display: none;
  }
  .advantage-page .brand .brand-main .left .item .icon img {
    width: 18px;
    margin-top: 0;
  }
  .advantage-page .technology .technology-main {
    padding-left: 10px;
    padding-right: 10px;
  }
  .advantage-page .brand .brand-main .right .pic img {
    min-height: 260px;
    object-fit: cover;
  }
  .advantage-page .brand .brand-main .right .text-list .text-item .item-b {
    margin-top: 0;
  }
  .advantage-page .brand .brand-main .left .item {
    align-items: center;
  }
  .advantage-page .brand .brand-main .left .item .item-text {
    font-size: 14px;
  }
  .common-banner .text {
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .advantage-page .common-banner .text .advantage-sub-title {
    padding-bottom: 0;
  }
  .advantage-page .technology .technology-main .text-list {
    grid-template-columns: 1fr;
    row-gap: 10px;
    width: 100%;
  }
  .advantage-page .technology .technology-main .text-list img {
    width: 18px;
  }
  .advantage-page .technology .technology-main .intro-list {
    min-height: 180px;
  }
  .advantage-page .technology .technology-main .team .list {
    grid-template-columns: 1fr;
  }
  .advantage-page .quality .intro-list {
    flex-wrap: wrap;
  }
  .advantage-page .quality .intro-list .intro-item {
    width: 100%;
  }
  .advantage-page .quality .intro-list .intro-item .icon {
    width: 18px;
  }
  .advantage-page .quality .quality-panel .right .section1 .main,
  .advantage-page .quality .quality-panel .right .section2 .main {
    margin-left: 0;
    width: 100%;
  }
  .advantage-page .quality .intro-list .intro-item {
    align-items: center !important;
  }
  .advantage-page .quality .quality-panel .right .tag-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-page .quality .quality-panel .right .section2 .text-list {
    justify-content: space-between;
    column-gap: 0;
  }
  .advantage-page .quality .quality-panel .right .section2 .text-list .text-item {
    width: 47.5%;
  }
  .advantage-page .quality .quality-panel .right .section2 .text-list .text-item img {
    width: 18px;
  }
  .advantage-page .service .service-panel .right img {
    max-width: 92%;
  }
  .advantage-page .service .icon-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.search-list-page .page-content {
  padding-bottom: max(1.2rem, var(--space));
}
.search-list-page .search-form {
  --h: 60px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  max-width: 600px;
  padding-top: max(1rem, var(--space));
}

.search-list-page .search-form input {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: 60px;
  border: 1px solid #ccc;
  padding-left: max(0.35rem, 10px);
  padding-right: max(0.35rem, 10px);
  font-size: 16px;
  color: #333;
  transition: var(--duration);
}

.search-list-page .search-form input:focus {
  border-color: var(--theme);
}

.search-list-page .search-form button {
  width: 140px;
  height: var(--h);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  background-color: var(--theme);
  border-radius: 60px;
  font-size: 16px;
  color: #fff;
}
.search-list-page .search-list {
  margin-top: max(0.6rem, 30px);
  margin-bottom: 30px;
}

.search-list-page .search-list .item {
  display: block;
  padding-top: max(0.4rem, 10px);
  padding-bottom: max(0.4rem, 10px);
  border-bottom: 1px solid #eee;
}

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

.search-list-page .search-list .item:hover .desc span {
  background-size: 100% 1px;
  background-position: left bottom;
  color: var(--theme);
}

.search-list-page .search-list .item .title {
  font-size: var(--font22);
  color: #333;
  line-height: 1.5;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: max(0.2rem, 15px);
  transition: var(--duration);
}

.search-list-page .search-list .item .desc {
  font-size: var(--font16);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: max(0.2rem, 10px);
}

.search-list-page .search-list .item .desc span {
  display: inline;
  background-image: linear-gradient(to right, var(--theme), var(--theme));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
  color: #666;
  transition: background-size 1s, color var(--duration);
}

.search-list-page .search-list .item .source {
  font-size: 14px;
  color: #666;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}

@media (max-width: 576px) {
  .search-list-page .search-form {
    --h: 40px;
  }

  .search-list-page .search-form input {
    font-size: 14px;
  }
  .search-list-page .search-form button {
    font-size: 14px;
  }

  .search-list-page .search-list .item .title {
    font-size: 16px;
  }
}

/* 2025-12-20 添加产品参数折叠按钮 */
.product-list-page .phone-toggle-form-btn {
  display: none;
}

@media (min-width: 769px) {
  .product-list-page .pro-filter-area {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .product-list-page .pro-filter-area {
    margin-bottom: 10px;
  }

  .product-list-page .pro-operate-line {
    margin-top: 20px;
  }
  .product-list-page .phone-toggle-form-btn {
    display: block;
    background-color: var(--theme);
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-top: 35px;
    color: #fff;
  }

  .product-list-page .pro-filter-area {
    display: none;
  }
}




