.swiper {
  overflow: hidden;
}
/* 共用分页器 */
.common-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-pagination .item {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  font-weight: 400;
  font-size: var(--font-20);
  color: #000000;
}
.common-pagination .item:last-of-type {
  margin-right: 0;
}
.common-pagination .item.active,
.common-pagination .item:hover {
  background-color: #e22027;
  color: #fff;
}
.common-pagination .item.icon .default {
  display: block;
}
.common-pagination .item.icon .active {
  display: none;
}
.common-pagination .item.icon:hover {
  background-color: #e22027;
}
.common-pagination .item.icon:hover .active {
  display: block;
}
.common-pagination .item.icon:hover .default {
  display: none;
}
/* 共用视频蒙层 */
.common-video-mask {
  position: fixed;
  z-index: 677;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  padding-top: 15vh;
  cursor: zoom-out;
  display: none;
}
.common-video-mask.detail-video-mask {
  background-color: #232526;
}
.common-video-mask .mask-wrap .close {
  text-align: right;
  cursor: pointer;
  user-select: none;
}
.common-video-mask .mask-wrap .close .hover {
  display: none;
}
.common-video-mask .mask-wrap .close:hover .default {
  display: none;
}
.common-video-mask .mask-wrap .close:hover .hover {
  display: inline-block;
}
.common-video-mask .mask-wrap .video {
  display: flex;
  justify-content: center;
  margin-top: max(0.65rem, 35px);
  cursor: pointer;
}
.common-video-mask .mask-wrap .video video {
  display: block;
  max-height: 70vh;
  max-width: 1200px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
/* 共用表单 */
.common-form {
  background-image: url(../images/common-form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 1rem;
  padding-bottom: 1.21rem;
}
.common-form .form-title {
  font-weight: bold;
  font-size: var(--font-40);
  color: #000000;
  line-height: 1;
  text-align: center;
  margin-bottom: 0.56rem;
}
.common-form .custom-select {
  width: 100%;
  margin-bottom: max(25px, 0.49rem);
  position: relative;
  z-index: 4;
}
.common-form .custom-select .select-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: max(15px, 0.43rem);
  padding-right: max(15px, 0.43rem);
  height: 70px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  cursor: pointer;
}
.common-form .custom-select .select-head .text {
  font-weight: bold;
  font-size: var(--font-20);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.common-form .custom-select .select-head .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-form .custom-select .select-main {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  height: auto;
  padding-top: max(20px, 0.32rem);
  padding-bottom: max(20px, 0.24rem);
  padding-left: max(0.44rem, 15px);
  padding-right: max(0.43rem, 15px);
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  display: none;
  max-height: 230px;
  overflow-y: auto;
}
.common-form .custom-select .select-main .select-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.common-form .custom-select .select-main .select-item .icon {
  opacity: 0;
}
.common-form .custom-select .select-main .select-item:hover span {
  color: #e22027;
}

.common-form .custom-select .select-main .select-item:hover .icon {
  opacity: 1;
}
.common-form .custom-select .select-main .select-item span {
  font-weight: 400;
  font-size: 16px;
  color: #707070;
  line-height: 2.125;
  display: flex;
  align-items: center;
  justify-content: center;
}

.common-form .custom-select .select-main .select-item:hover span.cate2::before {
  content: "-";
}
.common-form .custom-select .select-main .select-item:hover span.cate3::before {
  content: "--";
}
.common-form .custom-select .select-main .select-item:hover span.cate4::before {
  content: "---";
}
.common-form .inline-row {
  display: flex;
  justify-content: space-between;
}
.common-form .inline-row .col-item {
  width: 32.5%;
  flex-shrink: 0;
  position: relative;
  margin-bottom: 18px;
}
.common-form .inline-row .col-item .placeholder-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: max(0.26rem, 15px);
  transition: 0.6s ease;
}
.common-form .inline-row .col-item .placeholder-text span {
  font-weight: 400;
  font-size: var(--font-16);
  color: #666666;
  transition: 0.6s ease;
}
.common-form .inline-row .col-item .placeholder-text .required {
  color: #e22027;
}
.common-form .inline-row .col-item.focus .placeholder-text {
  opacity: 0.5;
}
.common-form .inline-row .col-item input {
  display: block;
  width: 100%;
  height: 70px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  outline: none;
  padding-left: 130px;
  padding-right: 15px;
}
.common-form .inline-row .col-item input:focus {
  border-color: #e22027;
}
.common-form .row-full {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}
.common-form .row-full .placeholder-text {
  position: absolute;
  top: max(0.27rem, 15px);
  left: max(0.27rem, 15px);
  transition: 0.6s ease all;
}
.common-form .row-full .placeholder-text span {
  font-weight: 400;
  font-size: var(--font-16);
  color: #666666;
  transition: 0.6s ease all;
}
.common-form .row-full .placeholder-text .required {
  color: #e22027;
}
.common-form .row-full.focus .placeholder-text {
  opacity: 0.5;
}
.common-form .row-full textarea {
  display: block;
  width: 100%;
  height: 150px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  outline: none;
  resize: none;
  padding-left: 120px;
  padding-top: 27px;
  padding-right: 15px;
  line-height: 1.25;
}
.common-form .row-full textarea:focus {
  outline: none;
  border-color: #e22027;
}
.common-form .submit-line {
  display: flex;
  align-items: center;
}
.common-form .submit-line .ver-code {
  width: 77.5625%;
  position: relative;
  margin-right: 1.625%;
}
.common-form .submit-line .ver-code input {
  display: block;
  width: 100%;
  height: 60px;
  background: #ffffff;
  padding-left: 150px;
  padding-right: 170px;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.common-form .submit-line .ver-code input:focus {
  border-color: #e22027;
}
.common-form .submit-line .ver-code .placeholder-text {
  font-weight: 400;
  font-size: var(--font-16);
  color: #666666;
  position: absolute;
  left: max(15px, 0.26rem);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.6s ease all;
}
.common-form .submit-line .ver-code.focus .placeholder-text {
  opacity: 0.5;
}
.common-form .submit-line .ver-code.focus .code-pic {
  height: calc(100% - 2px);
  right: 1px;
}
.common-form .submit-line .ver-code .code-pic {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 161px;
  height: 100%;
  object-fit: contain;
  user-select: none;
  cursor: pointer;
  transition: 0.6s;
}
.common-form .submit-line .btn-list {
  display: flex;
}
.common-form .submit-line .btn-list .btn {
  width: 160px;
  height: 60px;
  border-radius: 10px;
  margin-right: 13px;
  user-select: none;
  cursor: pointer;
}
.common-form .submit-line .btn-list .btn:last-of-type {
  margin-right: 0;
}
.common-form .submit-line .btn-list .submit-btn {
  background: #e22027;
  font-weight: bold;
  font-size: var(--font-20);
  color: #ffffff;
}
.common-form .submit-line .btn-list .reset-btn {
  border: 2px solid rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: var(--font-20);
  color: #000000;
}
/* 公司动态 */
.company-banner {
  position: relative;
}
.company-banner .pic {
  display: block;
  width: 100%;
}
.company-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.company-banner .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15%;
}
.company-banner .text .title-zh {
  font-weight: bold;
  font-size: var(--font-40);
  color: #ffffff;
  line-height: 1.25;
}
.company-banner .text .title-en {
  font-weight: bold;
  font-size: var(--font-20);
  color: rgba(255, 255, 255, 0.2);
  margin-top: 5px;
}
.company-banner .text .btn-list {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.company-banner .text .btn-list .link-btn {
  width: 200px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
  border-radius: 30px;
  font-weight: bold;
  font-size: var(--font-20);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all var(--duration) ease;
  margin-right: 25px;
}
.company-banner .text .btn-list .link-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #e22027;
  transition: var(--duration) ease all;
  z-index: -1;
}
.company-banner .text .btn-list .link-btn:hover {
  color: #fff;
}
.company-banner .text .btn-list .link-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.company-banner .text .btn-list .link-btn:last-of-type {
  margin-right: 0;
}
.company-banner .text .btn-list .link-btn.active {
  color: #fff;
}
.company-banner .text .btn-list .link-btn.active::after {
  width: 100%;
  left: 0;
  right: auto;
}
/* 公司动态和新闻详情的右侧 */
.common-company-right {
  width: 32.5%;
  flex-shrink: 0;
  /* 优惠活动 */
}
.common-company-right .recommend-area .recommend-title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  padding-bottom: max(0.21rem, 15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
}
.common-company-right .recommend-list .item {
  display: flex;
  align-items: flex-start;
  padding-top: max(0.22rem, 15px);
  padding-bottom: max(0.23rem, 15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.6s;
}
.common-company-right .recommend-list .item .pic {
  width: 0;
  position: relative;
  transition: 0.6s;
  overflow: hidden;
}
.common-company-right .recommend-list .item .pic:hover img {
  transform: scale(1.05);
}
.common-company-right .recommend-list .item .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.common-company-right .recommend-list .item .text {
  flex: 1;
  display: flex;
  align-items: center;
  padding-right: 10px;
  min-width: 0;
}
.common-company-right .recommend-list .item .text .time {
  font-weight: 400;
  font-size: var(--font-16);
  color: rgba(0, 0, 0, 0.6);
}
.common-company-right .recommend-list .item .text .title {
  font-weight: 400;
  font-size: var(--font-18);
  color: #000000;
  margin-left: max(0.15rem, 10px);
  flex: 1;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  transition: 0.6s all ease;
}
.common-company-right .recommend-list .item.active .pic {
  width: 180px;
  flex-shrink: 0;
  border-radius: 10px;
}
.common-company-right .recommend-list .item.active .pic::after {
  content: "";
  display: block;
  padding-bottom: 55.556%;
}
.common-company-right .recommend-list .item.active .text {
  margin-left: max(0.24rem, 15px);
  display: block;
}
.common-company-right .recommend-list .item.active .text .title {
  margin-left: 0;
  margin-top: 12px;
  color: #e22027;
  font-weight: bold;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.common-company-right .discount {
  margin-top: 55px;
}
.common-company-right .discount .discount-title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  padding-bottom: max(0.21rem, 15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: max(15px, 0.3rem);
}
.common-company-right .discount .list .item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.common-company-right .discount .list .item:last-of-type {
  margin-bottom: 0;
}
.common-company-right .discount .list .item .pic {
  width: 100%;
  display: block;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.common-company-right .discount .list .item .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.common-company-right .discount .list .item .pic:hover img {
  transform: scale(1.05);
}
.common-company-right .discount .list .item .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease all;
}
.common-company-right .discount .list .item .text {
  position: absolute;
  top: 50%;
  left: 5.962%;
  transform: translateY(-50%);
  z-index: 2;
  width: 90%;
}
/* 2025-4-10 限制文字 */
.common-company-right .discount .list .item .text .title {
  font-weight: bold;
  font-size: var(--font-20);
  color: #ffffff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.common-company-right .discount .list .item .text .sub-title {
  font-weight: 400;
  font-size: var(--font-14);
  color: #ffffff;
  line-height: 1.85714286;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
/* 公司动态main */
.company-main {
  padding-top: 1.17rem;
  padding-bottom: 1.66rem;
  overflow: hidden;
}
.company-main .company-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.company-main .company-wrap .main-left {
  width: 61.25%;
  flex-shrink: 0;
}
.company-main .company-wrap .main-left .panel {
  display: block;
  margin-bottom: max(30px, 0.63rem);
}
.company-main .company-wrap .main-left .panel:hover .pic img {
  transform: scale(1.05);
}
.company-main .company-wrap .main-left .panel:hover .text .title {
  color: #e22027;
}
.company-main .company-wrap .main-left .panel:hover .text .more span {
  color: #e22027;
}
.company-main .company-wrap .main-left .panel:hover .text .more .icon .default {
  display: none;
}
.company-main .company-wrap .main-left .panel:hover .text .more .icon .active {
  display: block;
}
.company-main .company-wrap .main-left .panel .pic {
  width: 100%;
  padding-top: 40.817%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
}
.company-main .company-wrap .main-left .panel .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 0.6s ease all;
}
.company-main .company-wrap .main-left .panel .text {
  padding-right: max(15px, 0.3rem);
}
.company-main .company-wrap .main-left .panel .text .time {
  font-weight: 400;
  font-size: var(--font-20);
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 7.5px;
}
.company-main .company-wrap .main-left .panel .text .title {
  font-weight: bold;
  font-size: var(--font-30);
  line-height: 1.5;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  color: #000;
  transition: var(--duration) ease all;
}
.company-main .company-wrap .main-left .panel .text .sub-title {
  font-weight: 400;
  font-size: var(--font-16);
  color: rgba(0, 0, 0, 0.6);
  margin-top: 4px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  margin-bottom: max(0.32rem, 15px);
}
.company-main .company-wrap .main-left .panel .text .more {
  display: flex;
  align-items: center;
  width: fit-content;
}
.company-main .company-wrap .main-left .panel .text .more span {
  font-weight: 400;
  font-size: var(--font-16);
  color: #000000;
}
.company-main .company-wrap .main-left .panel .text .more .icon {
  margin-left: 12px;
}
.company-main .company-wrap .main-left .panel .text .more .icon .default {
  display: block;
}
.company-main .company-wrap .main-left .panel .text .more .icon .active {
  display: none;
}
.company-main .company-wrap .main-left .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.company-main .company-wrap .main-left .list .item {
  width: 48.98%;
  flex-shrink: 0;
  margin-bottom: max(0.64rem, 30px);
}
.company-main .company-wrap .main-left .list .item:hover .pic img {
  transform: scale(1.05);
}
.company-main .company-wrap .main-left .list .item:hover .text .title {
  color: #e22027;
}
.company-main .company-wrap .main-left .list .item:hover .text .more span {
  color: #e22027;
}
.company-main .company-wrap .main-left .list .item:hover .text .more .icon .default {
  display: none;
}
.company-main .company-wrap .main-left .list .item:hover .text .more .icon .active {
  display: block;
}
.company-main .company-wrap .main-left .list .item .pic {
  display: block;
  width: 100%;
  padding-bottom: 62.292%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: max(0.25rem, 15px);
}
.company-main .company-wrap .main-left .list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 0.6s ease all;
}
.company-main .company-wrap .main-left .list .item .text {
  padding-right: max(0.3rem, 15px);
}
.company-main .company-wrap .main-left .list .item .text .time {
  font-weight: 400;
  font-size: var(--font-16);
  color: rgba(0, 0, 0, 0.6);
}
.company-main .company-wrap .main-left .list .item .text .title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  margin-top: 7px;
  line-height: 1.5;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  transition: 0.6s;
}
.company-main .company-wrap .main-left .list .item .text .sub-title {
  font-weight: 400;
  font-size: var(--font-16);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.625;
  margin-top: 4px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}
.company-main .company-wrap .main-left .list .item .text .more {
  margin-top: max(15px, 0.29rem);
  display: flex;
  align-items: center;
}
.company-main .company-wrap .main-left .list .item .text .more span {
  font-weight: 400;
  font-size: 16px;
  transition: 0.6s;
  color: #000000;
}
.company-main .company-wrap .main-left .list .item .text .more .icon {
  margin-left: 12px;
}
.company-main .company-wrap .main-left .list .item .text .more .icon .default {
  display: block;
}
.company-main .company-wrap .main-left .list .item .text .more .icon .active {
  display: none;
}
/* 关于我们 banner */
.about-banner {
  position: relative;
}
.about-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.about-banner .banner-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7.3%;
}
.about-banner .banner-text .title-zh {
  font-size: var(--font-40);
  font-weight: 700;
  text-align: left;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 10px;
}
.about-banner .banner-text .title-en {
  font-size: var(--font-20);
  font-weight: 700;
  text-align: left;
  color: rgba(255, 255, 255, 0.2);
}
.about-banner .banner-text .btn-list {
  display: flex;
  align-items: center;
  margin-top: 0.92rem;
}
.about-banner .banner-text .btn-list .btn {
  width: 200px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21) inset;
  backdrop-filter: blur(10px);
  font-weight: bold;
  font-size: var(--font-20);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  margin-right: max(15px, 0.23rem);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all var(--duration) ease;
}
.about-banner .banner-text .btn-list .btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #e22027;
  transition: var(--duration) ease all;
  z-index: -1;
}
.about-banner .banner-text .btn-list .btn:hover {
  color: #fff;
}
.about-banner .banner-text .btn-list .btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.about-banner .banner-text .btn-list .btn.active::after {
  width: 100%;
  left: 0;
  right: auto;
}
/* 关于我们，公司介绍 */
.about-company {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  padding-top: 1.39rem;
  padding-bottom: 3.35rem;
  overflow: hidden;
}
.about-company .company-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about-company .company-wrap .company-left {
  width: 38.125%;
  flex-shrink: 0;
}
.about-company .company-wrap .company-left .title {
  font-weight: bold;
  font-size: var(--font-40);
  color: #000000;
  line-height: 1.25;
}
.about-company .company-wrap .company-left .title .red {
  color: #e22027;
}
.about-company .company-wrap .company-left .pic {
  padding-top: 1.09rem;
  padding-left: 0.69rem;
}
.about-company .company-wrap .company-left .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.about-company .company-wrap .company-right {
  width: 55.5%;
  flex-shrink: 0;
  font-size: var(--font-16);
  font-weight: 400;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.625;
  padding-top: 1.79rem;
}
.about-company .company-wrap .company-right p {
  margin-bottom: max(15px, 0.25rem);
}
.about-company .company-wrap .company-right p:last-of-type {
  margin-bottom: 0;
}
/* 关于我们，企业文化 */
.about-company-culture {
  padding-top: 1.37rem;
  padding-bottom: 1.78rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  max-height: 970px;
}
.about-company-culture .title {
  font-size: var(--font-40);
  font-weight: 700;
  text-align: left;
  color: #ffffff;
  margin-bottom: 0.51rem;
}
.about-company-culture .list {
  width: 90%;
  max-width: 560px;
}
.about-company-culture .list .item {
  width: 100%;
  /* 2025-4-30 */
  background: rgba(255, 255, 255, 1);
  /* box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21) inset; */
  border-radius: 10px;
  backdrop-filter: blur(10px);
  margin-bottom: 13px;
  /* padding-top: 0.3rem; */
  /* padding-bottom: 0.3rem; */
  /* 2025-5-6 */
  /* padding-left: max(10px, 0.22rem); */
  /* padding-right: max(10px, 0.22rem); */
  padding: max(0.3rem, 20px) max(0.3rem, 15px);
  display: flex;
  align-items: flex-start;
  /* padding-right: 0.22rem; */
  /* padding-left: 0.24rem; */
  /* min-height: 180px; */
}
.about-company-culture .list .item .i-right {
  margin-left: 0.27rem;
}
/* 2025-4-30 */
.about-company-culture .list .item .i-right .i-title {
  font-size: var(--font-24);
  font-weight: 700;
  line-height: 1.08333333;
  margin-bottom: 15px;
  /* color: #ffffff; */
  color: #333;
}

/* 2025-4-30 */
.about-company-culture .list .item .i-right .i-desc {
  /* font-size: var(--font-20); */
  font-size: var(--font-18);
  font-weight: 400;
  text-align: left;
  line-height: 1.3;
  /* color: #ffffff; */
  /* color: #333; */
  color: #666;
}
.about-company-culture .list .item:last-of-type {
  margin-bottom: 0;
}
/* 关于我们-发展历程 */
.about-history {
  padding-top: 1.1rem;
  overflow: hidden;
}
.about-history .history-wrap .history-title {
  font-size: var(--font-40);
  font-weight: 700;
  text-align: left;
  color: #000000;
  line-height: 1;
  margin-bottom: 0.62rem;
}
.about-history .history-wrap .history-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about-history .history-wrap .history-main .history-left {
  --space-left: 0.8rem;
  width: 47.5%;
  flex-shrink: 0;
  position: relative;
}
.about-history .history-wrap .history-main .history-left.red::before {
  border-left-color: #e22027;
}
.about-history .history-wrap .history-main .history-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  border-left: 2px dashed #b4b4b4;
}
.about-history .history-wrap .history-main .history-left .swiper1 {
  height: 7rem;
  min-height: 570px;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide {
  padding-left: var(--space-left);
  display: flex;
  align-items: flex-start;
  position: relative;
  /* 线条 */
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  height: 0;
  border-left: 2px dashed;
  border-left-color: #e22027;
  z-index: 2;
  transition: 0.6s;
  background-color: #fff;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 2px solid #b4b4b4;
  border-radius: 50%;
  z-index: 2;
  transition: 0.6s;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide.red::before {
  height: 100%;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide.red::after {
  background-color: #e22027;
  border-color: #e22027;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide.red .slide-left .time,
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide.red .slide-left .unit {
  color: #e22027;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide .slide-left {
  display: flex;
  align-items: flex-end;
  margin-right: 1.22rem;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide .slide-left .time {
  font-size: var(--font-30);
  font-weight: 700;
  text-align: left;
  color: #b4b4b4;
  transition: 0.6s;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide .slide-left .unit {
  font-size: var(--font-20);
  font-weight: 700;
  text-align: left;
  color: #b4b4b4;
  margin-left: 10px;
  transition: 0.6s;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide .slide-right .title {
  font-size: var(--font-20);
  font-weight: 700;
  text-align: left;
  color: #000000;
}
.about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide .slide-right .desc {
  font-size: var(--font-16);
  font-weight: 400;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.2rem;
}
.about-history .history-wrap .history-main .history-left .swiper-btn {
  display: flex;
  align-items: center;
  margin-left: 10px;
  padding-bottom: 1.51rem;
  padding-left: 0.66rem;
}
.about-history .history-wrap .history-main .history-left .swiper-btn.red {
  border-left-color: #e22027;
}
.about-history .history-wrap .history-main .history-left .swiper-btn .btn {
  width: 60px;
  height: 60px;
  background: rgba(226, 32, 39, 0.1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  margin-right: 13px;
  transition: var(--duration) ease all;
}
.about-history .history-wrap .history-main .history-left .swiper-btn .btn:last-of-type {
  margin-right: 0;
}
.about-history .history-wrap .history-main .history-left .swiper-btn .btn .active {
  display: none;
}
.about-history .history-wrap .history-main .history-left .swiper-btn .btn:hover {
  background-color: #e22027;
}
.about-history .history-wrap .history-main .history-left .swiper-btn .btn:hover .active {
  display: inline-block;
}
.about-history .history-wrap .history-main .history-left .swiper-btn .btn:hover .default {
  display: none;
}
.about-history .history-wrap .history-main .history-right {
  width: 37.5%;
  flex-shrink: 0;
}
.about-history .history-wrap .history-main .history-right img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
/* 关于我们-荣誉资质 */
.about-honor {
  padding-top: max(35px, 1.49rem);
  padding-bottom: max(35px, 1.49rem);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.about-honor .honor-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.53rem;
}
.about-honor .honor-head .honor-title {
  font-size: var(--font-40);
  font-weight: 700;
  text-align: left;
  color: #ffffff;
}
.about-honor .honor-head .honor-btn-list {
  display: flex;
}
.about-honor .honor-head .honor-btn-list .btn {
  width: 160px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
  border-radius: 30px;
  font-weight: bold;
  font-size: var(--font-20);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all var(--duration) ease;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  margin-right: 13px;
}
.about-honor .honor-head .honor-btn-list .btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #e22027;
  transition: var(--duration) ease all;
  z-index: -1;
}
.about-honor .honor-head .honor-btn-list .btn:hover {
  color: #fff;
}
.about-honor .honor-head .honor-btn-list .btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.about-honor .honor-head .honor-btn-list .btn:last-of-type {
  margin-right: 0;
}
.about-honor .honor-head .honor-btn-list .btn.active::after {
  width: 100%;
  left: 0;
  right: auto;
}
.about-honor .honor-swiper {
  margin-left: 1.6rem;
  display: none;
}
.about-honor .honor-swiper.show {
  display: block;
}
.about-honor .honor-swiper .swiper-slide {
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: max(30px, 0.6rem);
  padding-bottom: max(20px, 0.42rem);
  height: auto;
}
.about-honor .honor-swiper .swiper-slide:hover .pic .max-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.about-honor .honor-swiper .swiper-slide .pic {
  /* width: 70%; */
  width: 86%;
  margin-left: auto;
  margin-right: auto;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-honor .honor-swiper .swiper-slide .pic .slide-pic {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 1.9rem;
  object-fit: contain;
  object-position: center;
}
.about-honor .honor-swiper .swiper-slide .pic .max-icon {
  width: max(30px, 0.5rem);
  height: max(30px, 0.5rem);
  background: rgba(226, 32, 39, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  transition: 0.6s;
}
.about-honor .honor-swiper .swiper-slide .pic .max-icon img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.about-honor .honor-swiper .swiper-slide .text {
  font-weight: bold;
  font-size: var(--font-20);
  color: #000000;
  line-height: 1.7;
  margin-top: max(15px, 0.3rem);
  width: 100%;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
/* 2025-4-12 修改 */
.about-honor .honor-swiper .other-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(1600px + calc((100% - 1600px) / 2));
  max-width: 92%;
  margin-top: max(35px, 1.08rem);
}
.about-honor .honor-swiper .other-line .btn-list {
  display: flex;
  align-items: center;
  margin-right: max(35px, 1.08rem);
}
.about-honor .honor-swiper .other-line .btn-list .btn {
  width: 60px;
  height: 60px;
  background: rgba(226, 32, 39, 0.1);
  border-radius: 30px;
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  transition: 0.6s ease all;
}
.about-honor .honor-swiper .other-line .btn-list .btn:last-of-type {
  margin-right: 0;
}
.about-honor .honor-swiper .other-line .btn-list .btn .active {
  display: none;
}
.about-honor .honor-swiper .other-line .btn-list .btn:hover {
  background-color: #e22027;
}
.about-honor .honor-swiper .other-line .btn-list .btn:hover .active {
  display: block;
}
.about-honor .honor-swiper .other-line .btn-list .btn:hover .default {
  display: none;
}
.about-honor .honor-swiper .other-line .swiper-pagination {
  flex: 1;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
}
.about-honor .honor-swiper .other-line .swiper-pagination .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
  background-color: #e22027;
}
/* 关于我们，合作客户 */
.about-partner {
  padding-top: 0.9rem;
  padding-bottom: 2.35rem;
  position: relative;
}
.about-partner .about-partner-bg {
  position: absolute;
  width: 100%;
  max-width: 1600px;
  left: 50%;
  top: 19%;
  transform: translateX(-50%);
  z-index: -2;
  pointer-events: none;
  user-select: none;
}
.about-partner .about-partner-bg img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-partner .partner-title {
  font-weight: bold;
  font-size: var(--font-40);
  color: #000000;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 0.74rem;
}
.about-partner .limarquee-list .limarquee {
  background-color: transparent;
}
.about-partner .limarquee-list .limarquee .str_move {
  display: flex;
}
.about-partner .limarquee-list .limarquee:hover {
  background-color: transparent;
}
.about-partner .limarquee-list .limarquee .item {
  width: 300px;
  height: 100px;
  background: #ffffff;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: 11px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.about-partner .limarquee-list .limarquee .item img {
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
}
/* 共用面包屑 */
.common-breadcrumb .bread-wrap ul {
  display: flex;
  align-items: center;
}
.common-breadcrumb .bread-wrap li {
  display: flex;
  align-items: center;
}
.common-breadcrumb .bread-wrap li::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-left: 2px;
  margin-right: 2px;
}
.common-breadcrumb .bread-wrap li:last-of-type::after {
  display: none;
}
.common-breadcrumb .bread-wrap li.active a {
  color: #fff;
}
.common-breadcrumb .bread-wrap a {
  font-weight: 400;
  font-size: var(--font-16);
  color: rgba(255, 255, 255, 0.4);
  line-height: 2.125;
}
/* 新闻详情页面banner */
.news-detail-banner {
  padding-top: 108px;
  padding-bottom: 154px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.news-detail-banner .pic {
  display: block;
}
.news-detail-banner .pic img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
}
.news-detail-banner .text-box {
  margin-top: 1rem;
}
.news-detail-banner .text-box .detail-title {
  font-weight: bold;
  font-size: var(--font-40);
  color: #ffffff;
}
.news-detail-banner .text-box .info-line {
  display: flex;
  align-items: center;
  margin-top: 0.17rem;
}
.news-detail-banner .text-box .info-line .info-item {
  font-weight: 400;
  font-size: var(--font-20);
  color: #ffffff;
  line-height: 1.7;
  margin-right: max(0.43rem, 15px);
}
.news-detail-banner .text-box .info-line .info-item:last-of-type {
  margin-right: 0;
}
/* 新闻详情主体 */
.news-detail-main .news-detail-wrap {
  position: relative;
  margin-top: -1.24rem;
  z-index: 2;
  background-image: url(../images/news-detail-main-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left top;
  padding-top: 0.86rem;
  padding-bottom: 1.7rem;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.news-detail-main .news-detail-wrap .detail-left {
  width: 58.504%;
  flex-shrink: 0;
  /* 视频 */
  /* 文章 */
  /* 推荐新闻 */
}
.news-detail-main .news-detail-wrap .detail-left .video-box {
  width: 100%;
  position: relative;
  margin-bottom: 0.52rem;
}
.news-detail-main .news-detail-wrap .detail-left .video-box .video-poster {
  display: block;
  width: 100%;
  padding-top: 55.814%;
  position: relative;
  z-index: 2;
}
.news-detail-main .news-detail-wrap .detail-left .video-box .video-poster img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 0.6s ease all;
}
.news-detail-main .news-detail-wrap .detail-left .video-box .btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  cursor: pointer;
  z-index: 2;
}
.news-detail-main .news-detail-wrap .detail-left .video-box .btn .hover {
  display: none;
}
.news-detail-main .news-detail-wrap .detail-left .video-box .btn:hover .hover {
  display: inline-block;
}
.news-detail-main .news-detail-wrap .detail-left .video-box .btn:hover .default {
  display: none;
}
.news-detail-main .news-detail-wrap .detail-left .article-main p,
.news-detail-main .news-detail-wrap .detail-left .article-main span {
  font-weight: 400;
  font-size: var(--font-16);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.625;
}
/* 2025-6-24 修改 */
.news-detail-main .news-detail-wrap .detail-left .article-main p,
.news-detail-main .news-detail-wrap .detail-left .article-main span,
.news-detail-main .news-detail-wrap .detail-left .article-main * {
  max-width: 100%;
  overflow-wrap: break-word;
}
.news-detail-main .news-detail-wrap .detail-left .article-main img {
  max-width: 100%;
  overflow-wrap: break-word;
  vertical-align: top;
}
.news-detail-main .news-detail-wrap .detail-left .article-main .table-wrap {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
}
.news-detail-main .news-detail-wrap .detail-left .article-main table {
  border-collapse: collapse;
}
.news-detail-main .news-detail-wrap .detail-left .news-recommend {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0.56rem 0.5rem;
  margin-top: 1.77rem;
}
.news-detail-main .news-detail-wrap .detail-left .news-recommend .recommend-item {
  padding-bottom: max(15px, 0.27rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: max(15px, 0.28rem);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}
.news-detail-main .news-detail-wrap .detail-left .news-recommend .recommend-item:last-of-type {
  margin-bottom: 0;
}
.news-detail-main .news-detail-wrap .detail-left .news-recommend .recommend-item a {
  font-weight: 400;
  font-size: var(--font-20);
  color: #000000;
  line-height: 1.7;
  transition: var(--duration);
}
.news-detail-main .news-detail-wrap .detail-left .news-recommend .recommend-item a:hover {
  color: #e22027;
}
.news-detail-main .news-detail-wrap .common-company-right {
  width: 35.375%;
  flex-shrink: 0;
}
/* 产品详情页面 */
.pro-detail-banner {
  position: relative;
}
.pro-detail-banner .pic {
  display: block;
  width: 100%;
}
.pro-detail-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.pro-detail-banner .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 21.4%;
}
.pro-detail-banner .text .title-zh {
  font-weight: bold;
  font-size: var(--font-40);
  color: #ffffff;
}
.pro-detail-banner .text .title-en {
  font-weight: bold;
  font-size: var(--font-20);
  color: rgba(255, 255, 255, 0.2);
}
/* 产品详情主体 */
.pro-detail-main {
  padding-top: 1.38rem;
}
.pro-detail-main .pro-detail-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.3rem;
}
/* 2025-4-16 修改 */
.pro-detail-main .pro-detail-wrap .detail-left {
  flex-shrink: 0;
  /* width: 4rem; */
  width: 3.2rem;
  min-width: 300px;
  position: sticky;
  top: calc(var(--header-height) + 30px);
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  max-height: calc(96vh - var(--header-height));
  overflow-y: auto;
  /* 自定义滚动条部分 */
}
.pro-detail-main .pro-detail-wrap .detail-left::-webkit-scrollbar {
  width: 7px;
  background-color: #efefef;
}
.pro-detail-main .pro-detail-wrap .detail-left::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /* 轨道的圆角 */
  background-color: var(--theme);
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/* 2025-4-16 修改 */
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: max(10px, 0.2rem);
  padding-bottom: max(10px, 0.2rem);
  background-image: url(../images/pro-detail-left-bg.png);
  background-repeat: no-repeat;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  background-size: 0% 100%;
  transition: var(--duration);
  background-position: left center;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one.active {
  background-size: 100% 100%;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one.active a {
  color: #fff;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one.active .icon .active {
  display: block;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one.active .icon .default {
  display: none;
}
/* 2025-4-16 修改 */
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one a {
  font-weight: bold;
  font-size: var(--font-20);
  color: #000;
  transition: var(--duration);
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one .icon {
  user-select: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one .icon .active {
  display: none;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two-list {
  display: none;
}
/* 2025-4-16 修改 */
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two {
  padding-left: max(0.3rem, 15px);
  padding-right: max(0.3rem, 15px);
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .two-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: max(10px, 0.23rem);
  padding-bottom: max(10px, 0.22rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  /* 扩大点击范围 */
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .two-h.active a {
  color: #e22027;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .two-h.active .two-icon .active {
  display: block;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .two-h.active .two-icon .default {
  display: none;
}
/* 2025-4-16 修改 */
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .two-h a {
  font-weight: bold;
  font-size: var(--font-18);
  color: #909090;
  transition: var(--duration);
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .two-h a:hover {
  color: #e22027;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .two-h .two-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .two-h .two-icon .active {
  display: none;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three-list {
  display: none;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: max(0.175rem, 10px);
  padding-bottom: max(0.175rem, 10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h.active {
  /* 扩大点击范围 */
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h.active a {
  color: #e22027;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h.active .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h.active .icon .active {
  display: block;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h.active .icon .default {
  display: none;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h a {
  font-weight: 400;
  font-size: var(--font-16);
  color: #909090;
  transition: var(--duration);
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h a:hover {
  color: #e22027;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h .icon {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h .icon .active {
  display: none;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-four-list {
  padding-top: max(15px, 0.26rem);
  padding-bottom: max(15px, 0.24rem);
  display: none;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-four-list .four-item {
  margin-bottom: max(0.17rem, 10px);
  padding-left: 20px;
  position: relative;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-four-list .four-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #909090;
  border-radius: 50%;
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-four-list .four-item:last-of-type {
  margin-bottom: 0;
}
/* 2025-4-16 修改 */
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-four-list .four-item a {
  font-weight: 400;
  font-size: var(--font-14);
  color: #909090;
  transition: var(--duration);
}
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-four-list .four-item a:hover,
.pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-four-list .four-item a.active {
  color: var(--theme);
}
.pro-detail-main .pro-detail-wrap .detail-right {
  margin-left: max(30px, 1rem);
  flex: 1;
  min-width: 0;
  /* 评价 */
  /* 服务项目 */
  /* 表格 */
  /* 案例分享 */
  /* 技术平台 */
  /* 技术平台 */
  /* 服务流程 */
  /* 常见问题 */
}
.pro-detail-main .pro-detail-wrap .detail-right .evaluate {
  margin-bottom: 0.65rem;
}
.pro-detail-main .pro-detail-wrap .detail-right .evaluate .e-title {
  font-weight: bold;
  font-size: var(--font-40);
  color: #000000;
  margin-bottom: max(15px, 0.36rem);
}
.pro-detail-main .pro-detail-wrap .detail-right .evaluate .sub-title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  padding-bottom: 0.21rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.25rem;
}
/* 2025-4-10 修改位子颜色 */
.pro-detail-main .pro-detail-wrap .detail-right .evaluate .e-desc {
  font-weight: 400;
  font-size: var(--font-16);
  /* color: rgba(0, 0, 0, 0.6); */
  color: #000;
  line-height: 1.625;
}
.pro-detail-main .pro-detail-wrap .detail-right .service {
  margin-bottom: max(30px, 0.46rem);
}
.pro-detail-main .pro-detail-wrap .detail-right .service .sub-title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  padding-bottom: 0.21rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  margin-bottom: max(15px, 0.25rem);
}
.pro-detail-main .pro-detail-wrap .detail-right .service .service-list .s-item {
  font-weight: 400;
  font-size: var(--font-20);
  color: #000000;
  display: flex;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  z-index: 2;
}
.pro-detail-main .pro-detail-wrap .detail-right .service .service-list .s-item:last-of-type {
  margin-bottom: 0;
}
.pro-detail-main .pro-detail-wrap .detail-right .service .service-list .s-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #e22027;
  border-radius: 50%;
}
.pro-detail-main .pro-detail-wrap .detail-right .params-table {
  margin-bottom: max(35px, 0.85rem);
  max-width: 100%;
  overflow-x: auto;
}

.pro-detail-main .pro-detail-wrap .detail-right .params-table::-webkit-scrollbar {
  height: 6px;
}

.params-table table {
  width: 100%;
  /* table-layout: fixed; */
  border-collapse: collapse;
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.1);
}
.params-table table td {
  border: 1px solid rgba(199, 199, 199, 0.2);
}
.params-table table tr:nth-child(1) {
  border-radius: 10px 10px 0px 0px;
  background: rgba(226, 32, 39, 0.1);
}
.params-table table tr th:nth-child(1),
.params-table table tr td:nth-child(1) {
  width: 30.9%;
}
.params-table table tr th:nth-child(2),
.params-table table tr td:nth-child(2) {
  width: 69.1%;
}
.params-table table tr th {
  font-weight: bold;
  font-size: var(--font-20);
  color: #000000;
  /* padding-left: 0.52rem; */
  /* padding-top: 0.23rem; */
  /* padding-bottom: 0.25rem; */
  /* padding-right: 10px; */
  padding: 10px;
}
.params-table table tr th:nth-child(1) {
  border-right: 1px solid rgba(199, 199, 199, 0.2);
}
.params-table table tr td:nth-child(1) {
  font-weight: bold;
  font-size: var(--font-20);
  color: #000000;
  position: relative;
  /* padding-left: 0.83rem; */
  /* padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0.43rem;
  padding-right: 10px; */
  /* padding: 10px; */
}
.params-table table tr td:nth-child(1) .icon .hover {
  display: none;
}
.params-table table tr td:nth-child(1) .icon img {
  padding-top: 4px;
}

/* 改为类名控制 */
.params-table table tr th.hover:hover,
.params-table table tr td.hover:hover,
.params-table table tr td.hover:hover a,
.params-table table tr td.hover:hover span,
.params-table table tr td.hover:hover p,
.params-table table tr td.hover:hover * {
  color: #e22027 !important;
}
/* .params-table table tr td:nth-child(1):hover .icon .default {
  display: none;
}
.params-table table tr td:nth-child(1):hover .icon .hover {
  display: inline-block;
} */
.params-table table tr td:nth-child(2) {
  font-weight: 400;
  font-size: var(--font-20);
  color: rgba(0, 0, 0, 0.6);
  /* padding-top: 0.4rem; */
  /* padding-bottom: 0.43rem;
  padding-left: 0.54rem;
  padding-right: 0.51rem;
  line-height: 1.8; */
  /* padding: 10px; */
}

/* 2025-4-10 修改 */
.params-table table tr td a {
  color: #000;
}

.params-table table tr td {
  vertical-align: middle !important;
  padding: 10px;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case {
  width: 100%;
  margin-bottom: max(35px, 0.92rem);
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  margin-bottom: 0.11rem;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main {
  width: 100%;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .case-swiper {
  width: 100%;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .swiper-slide {
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  user-select: none;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .swiper-slide .slide-pic {
  background: #f0f0f0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-top: 51.852%;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .swiper-slide .slide-pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 0.6s ease all;
  mix-blend-mode: multiply;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .swiper-slide .slide-text {
  font-weight: 400;
  font-size: var(--font-20);
  color: #000000;
  line-height: 1.5;
  padding-top: 0.29rem;
  padding-bottom: 0.32rem;
  padding-left: 0.31rem;
  padding-right: 0.47rem;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .swiper-slide .slide-text span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .swiper-slide:hover .slide-pic img {
  transform: scale(1.05);
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .swiper-slide:hover .slide-text span {
  color: var(--theme);
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line {
  display: flex;
  align-items: center;
  margin-top: 32px;
  /* 分页器 */
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .case-arrow {
  width: 60px;
  height: 60px;
  background: rgba(226, 32, 39, 0.1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .case-arrow.case-left {
  margin-right: 13px;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .case-arrow:last-of-type {
  margin-right: 0;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .case-arrow .hover {
  display: none;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .case-arrow:hover {
  background-color: #e22027;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .case-arrow:hover .hover {
  display: block;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .case-arrow:hover .default {
  display: none;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .swiper-pagination {
  margin-left: 0.7rem;
  flex: 1;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .swiper-pagination .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
  background-color: #e22027;
}
.pro-detail-main .pro-detail-wrap .detail-right .detail-skill .skill-title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  margin-bottom: 21px;
}
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .swiper-slide {
  position: relative;
  z-index: 2;
}
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .swiper-slide.swiper-slide-active .pic::after {
  background-color: rgba(255, 255, 255, 0);
}
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .swiper-slide .pic {
  padding-top: 78.572%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .swiper-slide .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  transition: var(--duration);
}
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 0.6s ease all;
}
/* 2025-4-21 修改 */
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .swiper-slide .slide-text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: max(15px, 0.36rem);
  padding-right: max(15px, 0.36rem);
  padding-bottom: max(15px, 0.32rem);
  font-weight: bold;
  font-size: var(--font-20);
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;

  width: 100%;
  text-align: center;
}
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .skill-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: max(0.4rem, 15px);
}
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .skill-pagination .swiper-pagination-bullet {
  width: max(0.6rem, 30px);
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: var(--duration);
  margin-left: 0;
  margin-right: 13px;
  user-select: none;
  cursor: pointer;
}
.pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .skill-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #cc0000;
}
.pro-detail-main .pro-detail-wrap .detail-right .progress {
  margin-top: max(35px, 0.8rem);
  margin-bottom: max(35px, 1.2rem);
}
.pro-detail-main .pro-detail-wrap .detail-right .progress .progress-title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
}
.pro-detail-main .pro-detail-wrap .detail-right .progress .progress-pic {
  margin-top: max(30px, 0.7rem);
}
.pro-detail-main .pro-detail-wrap .detail-right .progress .progress-pic img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.pro-detail-main .pro-detail-wrap .detail-right .question .question-title {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.pro-detail-main .pro-detail-wrap .detail-right .question .question-list {
  margin-top: 0.27rem;
}
.pro-detail-main .pro-detail-wrap .detail-right .question .question-list .question-item {
  margin-bottom: 15px;
}
.pro-detail-main .pro-detail-wrap .detail-right .question .question-list .question-item:last-of-type {
  margin-bottom: 0;
}
.pro-detail-main .pro-detail-wrap .detail-right .question .question-list .question-item .q-title {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 1.625;
}
.pro-detail-main .pro-detail-wrap .detail-right .question .question-list .question-item .q-desc {
  font-weight: 400;
  font-size: var(--font-16);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.625;
}
/* 联系我们 banner */
.contact-banner {
  position: relative;
}
.contact-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.contact-banner .contact-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23%;
}
.contact-banner .contact-text .contact-title {
  font-weight: bold;
  font-size: var(--font-40);
  color: #ffffff;
}
.contact-banner .contact-text .contact-sub-title {
  font-weight: bold;
  font-size: var(--font-20);
  color: rgba(255, 255, 255, 0.2);
}
/* 联系我们面板 */
.contact-info .info-wrap {
  margin-top: max(35px, 1.4rem);
  margin-bottom: max(35px, 0.5rem);
  background: url(../images/contact-info.png) no-repeat center / cover;
  border-radius: 10px;
  padding-top: max(35px, 1.12rem);
  padding-bottom: max(35px, 1.18rem);
  padding-left: max(20px, 0.41rem);
}
.contact-info .info-wrap .panel {
  width: 92%;
  max-width: 585px;
  background: #ffffff;
  border-radius: 10px;
  padding: max(20px, 0.5rem) max(15px, 0.56rem);
  padding-top: max(20px, 0.45rem);
}
.contact-info .info-wrap .panel .panel-title {
  font-weight: bold;
  font-size: var(--font-30);
  color: #000000;
  padding-bottom: 0.26rem;
  border-bottom: 2px solid #000;
}
.contact-info .info-wrap .panel .panel-item {
  display: flex;
  align-items: center;
  padding-bottom: 0.29rem;
  padding-top: 0.26rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-info .info-wrap .panel .panel-item .icon {
  width: 28px;
  margin-right: max(15px, 0.24rem);
}
.contact-info .info-wrap .panel .panel-item .text {
  font-weight: 400;
  font-size: var(--font-20);
  color: #000000;
}
/* 联系我们列表 */
.contact-info-list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: max(35px, 1.6rem);
}
.contact-info-list .item {
  width: 32.5%;
  flex-shrink: 0;
  min-height: 230px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding-top: max(0.46rem, 20px);
  padding-left: max(0.43rem, 15px);
  padding-right: max(0.42rem, 15px);
  padding-bottom: 22px;
  margin-bottom: 20px;
  margin-right: 1.25%;
}
.contact-info-list .item:nth-of-type(3n) {
  margin-right: 0;
}
.contact-info-list .item .item-h {
  font-weight: bold;
  font-size: var(--font-24);
  color: #000000;
  padding-bottom: max(0.17rem, 10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-info-list .item .item-m {
  display: flex;
  align-items: flex-start;
  padding-top: max(0.23rem, 15px);
}
.contact-info-list .item .item-m .text {
  font-weight: 400;
  font-size: var(--font-20);
  color: #000000;
  line-height: 1.5;
  margin-left: max(0.18rem, 10px);
}
/* 项目主体 */
.project-main {
  width: 100%;
  height: 10rem;
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
}

/* 2025-4-30 */
.project-main .slide {
  flex: 1;
  /* background: rgba(0, 0, 0, 0.2); */
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
  /* margin-right: 2px; */
  /* margin-right: 1px; */
  position: relative;
  overflow: hidden;
  transition: var(--duration);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.project-main .slide:last-of-type {
  margin-right: 0;
}
/* 2025-4-30 */
.project-main .slide .slide-content {
  transition: var(--duration);
  /* position: absolute; */
  /* left: 50%; */
  /* top: 50%; */
  /* transform: translate(-50%, -50%); */
  padding-top: 40%;
  margin-left: auto;
  margin-right: auto;
  width: 65%;
}
.project-main .slide .icon {
  /* text-align: center; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  margin-bottom: max(15px, 0.33rem);
}

/* 2025-4-30 */
.project-main .slide .title {
  font-weight: bold;
  font-size: var(--font-26);
  color: #ffffff;
  position: relative;
  /* width: fit-content; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  margin-bottom: max(15px, 0.22rem);
  white-space: nowrap;
}
.project-main .slide .title::after {
  content: "";
  width: 0;
  height: 2px;
  background: #e22027;
  margin-top: 0.14rem;
  transform: var(--duration);
  display: block;
}

/* 2025-4-30 */
.project-main .slide .cate-list {
  /* width: fit-content; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}
.project-main .slide .cate-list .cate {
  display: flex;
  align-items: center;
  /* padding: 2px 17px; */
  /* 2025-4-30 */
  /* padding-right: 5px; */
  width: fit-content;
  border-radius: max(0.2rem, 10px);
  margin-bottom: 2px;
  white-space: nowrap;
  transition: var(--duration);
}
.project-main .slide .cate-list .cate:last-of-type {
  margin-bottom: 0;
}
.project-main .slide .cate-list .cate .cate-text {
  font-weight: 400;
  font-size: var(--font-20);
  color: #ffffff;
  line-height: 1.8;
  transition: color var(--duration);
}
.project-main .slide .cate-list .cate .cate-icon {
  margin-left: max(15px, 0.56rem);
  opacity: 0;
}
/* 2025-4-30 */
.project-main .slide .cate-list .cate:hover .cate-text {
  /* background: rgba(226, 32, 39, 0.3); */
  color: #e22027;
}
.project-main .slide .cate-list .cate:hover .cate-icon {
  /* opacity: 1; */
}
.project-main .slide .link-more {
  /* width: 116px; */
  /* background: #e22027; */
  /* border-radius: 17px; */
  user-select: none;
  cursor: pointer;
  font-weight: bold;
  font-size: var(--font-16);
  color: #ffffff;
  /* text-align: center; */
  line-height: 34px;
  /* margin-top: 0.35rem; */
  margin-top: max(15px, 0.35rem);
  display: block;
  white-space: nowrap;
  /* 2025-4-30 */
  /* border-bottom: 1px solid #e22027; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  text-decoration: underline;
  transition: var(--duration);
}
/* 2025-4-30 */
.project-main .slide .link-more:hover {
  color: #e22027;
}

/* 2025-4-30 修改 */
.project-main .slide .show {
  /* display: none; */
}
/* 2025-4-30 修改 */
.project-main .slide.active {
  background-color: rgba(0, 0, 0, 0.4);
}
.project-main .slide.active .icon {
  text-align: left;
}
.project-main .slide.active .slide-content {
  left: 16.23%;
  top: 50%;
  transform: translate(0, -50%);
}
.project-main .slide.active .title {
  margin-left: 0;
  margin-right: 0;
}
.project-main .slide.active .title::after {
  width: 40px;
}
@media (max-width: 1600px) {
  .about-history .history-wrap .history-main .history-left {
    width: 56%;
  }
  .about-partner {
    padding-top: 20px;
  }
  .params-table table tr td:nth-child(1) {
    padding-left: max(0.2rem, 15px);
  }
  .params-table table tr th {
    padding-left: max(0.2rem, 15px);
  }
}
@media (max-width: 1200px) {
  .company-banner .pic img {
    min-height: 300px;
    object-fit: cover;
    object-position: center center;
  }
  .project-main .slide .title {
    font-size: var(--font-18);
  }
}
@media (max-width: 992px) {
  .about-partner .limarquee-list .limarquee .item {
    width: 260px;
  }
  .company-main .company-wrap {
    flex-wrap: wrap;
  }
  .company-main .company-wrap .main-left {
    width: 100%;
    margin-bottom: 35px;
  }
  .common-company-right {
    width: 100%;
  }
  .contact-info-list {
    justify-content: space-between;
  }
  .contact-info-list .item {
    width: 47.5%;
    margin-right: 0;
  }
  .news-detail-main .news-detail-wrap {
    flex-wrap: wrap;
  }
  .news-detail-main .news-detail-wrap .detail-left {
    width: 100%;
    margin-bottom: 45px;
  }
  .news-detail-main .news-detail-wrap .common-company-right {
    width: 100%;
  }
  /* 产品详情 */
  .pro-detail-main .pro-detail-wrap {
    flex-wrap: wrap;
  }
  .pro-detail-main .pro-detail-wrap .detail-left {
    width: 100%;
    position: static;
  }
  .pro-detail-main .pro-detail-wrap .detail-right {
    flex: none;
    width: 100%;
    margin-top: 45px;
    margin-left: 0;
  }
  .project-main {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: max(0.6rem, 30px) max(0.4rem, 15px);
    height: auto;
  }
  .project-main .slide {
    flex: none;
    width: 47.5%;
    margin-right: 0;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .project-main .slide .slide-content {
    position: static;
    transform: translateX(0);
    padding: 20px 15px;
  }
  .project-main .slide .show {
    display: block;
  }
  .project-main .slide .cate-list {
    width: 100%;
  }
  .project-main .slide .cate-list .cate {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .project-main .slide .cate-list .cate .cate-icon {
    display: none;
  }
  .project-main .slide .link-more {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  /* 共用提交表单 */
  .common-form .inline-row {
    flex-wrap: wrap;
  }
  .common-form .custom-select {
    margin-bottom: 15px;
  }
  .common-form .inline-row .col-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .about-banner .pic img {
    min-height: 500px;
    object-fit: cover;
  }
  /* 2025-4-12 修改 */
  .about-banner .banner-text .btn-list {
    overflow-x: auto;
  }

  /* 隐藏滚动条 */
  .about-banner .banner-text .btn-list::-webkit-scrollbar {
    /* height: 7px; */
    background-color: #efefef;
    width: 0;
    height: 0;
  }

  .about-banner .banner-text .btn-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--theme);
  }

  /* 2025-4-12 修改 */
  .about-banner .banner-text .btn-list .btn {
    width: 34%;
    margin-right: 5%;
    margin-bottom: 10px;
    flex-shrink: 0;
  }
  /* .about-banner .banner-text .btn-list .btn:nth-child(3n) {
    margin-right: 0;
  } */
  .about-company {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .about-company .company-wrap {
    flex-wrap: wrap;
  }
  .about-company .company-wrap .company-left {
    width: 100%;
    margin-bottom: 25px;
  }
  .about-company .company-wrap .company-right {
    width: 100%;
    padding-top: 0;
    font-size: 16px;
    margin-top: 35px;
  }
  .about-company .company-wrap .company-left .pic {
    padding-left: 0;
  }
  .about-history .history-wrap .history-main {
    flex-wrap: wrap;
  }
  .about-history .history-wrap .history-main .history-left {
    width: 100%;
  }
  .about-history .history-wrap .history-main .history-right {
    width: 100%;
    margin-bottom: 35px;
    order: -1;
  }
  .about-honor {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .about-honor .honor-swiper {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .common-form .submit-line {
    flex-wrap: wrap;
  }
  .common-form .submit-line .ver-code {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .common-form .submit-line .btn-list {
    justify-content: center;
    width: 100%;
  }
  .common-form .submit-line .btn-list .submit-btn {
    order: 1;
    margin-right: 0;
    margin-left: 15px;
  }
  .news-detail-main .news-detail-wrap .detail-left .news-recommend {
    margin-top: 35px;
  }
  .news-detail-main .news-detail-wrap {
    padding: 30px 20px;
  }
  .common-breadcrumb .bread-wrap ul {
    display: none;
  }
  /* 产品详情 */
  .pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one {
    padding: 15px;
  }
  .pro-detail-banner .pic img {
    height: 200px;
  }
  .pro-detail-banner .text .title-zh {
    font-size: 22px;
  }
  .pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-three .three-h a {
    font-size: 14px;
  }
  .pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-two .item-four-list .four-item a {
    font-size: 14px;
  }
  .pro-detail-main .pro-detail-wrap .detail-right .evaluate .e-title {
    font-size: 20px;
  }
  .params-table table tr td:nth-child(1),
  .params-table table tr td:nth-child(2) {
    font-size: var(--font-14);
  }
  .params-table table tr td:nth-child(1) .icon {
    display: none;
  }
  /* 2025-4-21 修改 */
  .params-table table {
    min-width: 500px !important;
    width: auto !important;
  }
  .pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .swiper-slide .slide-text {
    font-size: 14px;
    padding: 15px 10px;
  }
  .pro-detail-main .pro-detail-wrap .detail-right .detail-case .case-main .other-line .case-arrow {
    width: 45px;
    height: 45px;
  }
  /* 产品详情 */
  .pro-detail-main .pro-detail-wrap .detail-left .d-cate-item .item-one a {
    font-size: 16px;
  }
  .pro-detail-main .pro-detail-wrap .detail-right .skill-swiper .swiper-slide .slide-text {
    font-size: 14px;
  }
  .pro-detail-main .pro-detail-wrap .detail-right .question .question-list .question-item .q-desc {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  :root {
    --phone-space: 45px;
  }
  /* 共用表单 */
  .common-form {
    padding-top: var(--phone-space);
    padding-bottom: var(--phone-space);
  }
  .common-form .inline-row .col-item input {
    padding-left: 110px;
    height: 50px;
  }
  .common-form .custom-select .select-head {
    height: 50px;
  }
  .common-form .submit-line .ver-code input {
    height: 50px;
    padding-left: 130px;
    padding-right: 140px;
  }
  .common-form .row-full textarea {
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .common-form .submit-line .ver-code .code-pic {
    max-width: 130px;
  }
  .common-form .submit-line .btn-list .btn {
    height: 50px;
  }
  /* 共用分页器 */
  .common-pagination .item {
    width: 45px;
    height: 45px;
  }
  .about-banner .pic img {
    height: 400px;
    object-position: left center;
  }
  .about-banner .banner-text .btn-list .btn {
    height: 45px;
  }
  .about-company .company-wrap .company-left .title {
    font-size: 22px;
  }
  .about-company-culture .list {
    width: 100%;
  }
  .about-company-culture .list .item {
    min-height: auto;
    padding: 30px 15px;
  }
  .about-history .history-wrap .history-main .history-left .swiper1 {
    min-height: 400px;
  }
  .about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide .slide-left .unit {
    margin-left: 5px;
  }
  .about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide .slide-right .desc {
    font-size: 14px;
  }
  .about-history .history-wrap .history-main .history-left .swiper1 .swiper-slide .slide-left {
    margin-right: 20px;
  }
  .about-history .history-wrap .history-main .history-left .swiper-btn .btn {
    width: 45px;
    height: 45px;
  }
  .about-honor .honor-head {
    flex-wrap: wrap;
  }
  .about-honor .honor-head .honor-btn-list {
    margin-top: 15px;
  }
  .about-honor .honor-head .honor-btn-list .btn {
    height: 45px;
    font-size: 16px;
  }
  .about-honor .honor-swiper .other-line {
    flex-wrap: wrap;
  }
  .about-honor .honor-swiper .other-line .swiper-pagination {
    width: 100%;
    flex: none;
    margin-bottom: 15px;
    order: -1;
  }
  .about-honor .honor-swiper .other-line .btn-list .btn {
    width: 45px;
    height: 45px;
  }
  .about-partner .limarquee-list .limarquee .item {
    width: 150px;
    height: 90px;
  }
  .about-partner .limarquee-list .limarquee .item img {
    max-width: 70% !important;
    max-height: 70% !important;
  }
  /* 公司动态 */
  .company-main .company-wrap .main-left .panel .text .title {
    font-size: 20px;
  }
  .company-main .company-wrap .main-left .list .item {
    width: 100%;
  }
  .company-main .company-wrap .main-left .panel .pic {
    padding-top: 52%;
  }
  .company-main .company-wrap .main-left .list .item .pic {
    padding-bottom: 52%;
  }
  .company-banner .text .btn-list .link-btn {
    width: 160px;
    height: 45px;
    font-size: 16px;
  }
  /* 联系我们 */
  .contact-banner .pic img {
    height: 200px;
    object-fit: cover;
    object-position: right top;
  }
  .contact-info .info-wrap .panel {
    width: 96%;
  }
  .contact-info .info-wrap .panel .panel-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .contact-info-list .item {
    width: 100%;
    min-height: auto;
    padding: 30px 15px;
  }
  /* 新闻详情 */
  .news-detail-banner .text-box .detail-title {
    font-size: 22px;
  }
  .news-detail-banner .text-box .info-line .info-item {
    font-size: 16px;
  }
  .news-detail-main .news-detail-wrap .detail-left .news-recommend {
    padding-left: 15px;
    padding-right: 15px;
  }
  .news-detail-main .news-detail-wrap .detail-left .news-recommend .recommend-item a {
    font-size: 14px;
  }
  .news-detail-main .news-detail-wrap .detail-left .video-box .btn img {
    width: 45px;
  }
  .news-detail-banner {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .news-detail-main .news-detail-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
  .common-company-right .discount .list .item .pic {
    height: 150px;
  }
  .project-main .slide {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .project-main .slide .title {
    margin-bottom: 7px;
  }
  .project-main .slide .cate-list .cate .cate-text {
    line-height: 1.5;
  }
  .project-main .slide .link-more {
    margin-top: 10px;
  }

  .about-honor .honor-swiper .swiper-slide .text {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
  }
}

/* 2025-4-10 修改恢复项目编号 */
.pro-detail-main ul li {
  list-style: none;
}

.pro-detail-main ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e22027;
  border-radius: 50%;
  margin-right: max(10px, 0.16rem);
  vertical-align: middle;
}

.pro-detail-main ol,
.pro-detail-main ol li {
  list-style: decimal;
  list-style-position: outside; /* 确保标记在内容外侧 */
}

.pro-detail-main ol {
  padding-left: max(20px, 0.28rem);
}

/* 统一颜色和大小 */
.pro-detail-main .pro-detail-wrap .detail-right .service p,
.pro-detail-main .pro-detail-wrap .detail-right .service span {
  font-size: var(--font-16);
  color: #000;
}

.pro-detail-main .pro-detail-wrap .detail-right .service a,
.pro-detail-main ol li,
.pro-detail-main ul li {
  color: #000;
}

/* 2025-5-8 修改 */
@media (max-width: 992px) {
  .project-main .slide .icon {
    text-align: center;
  }

  .project-main .slide .title {
    text-align: center;
  }
  .project-main .slide .link-more {
    text-align: center;
  }
}

/* 2025-6-24 修改 */
.pro-detail-main .pro-detail-wrap .detail-right p,
.pro-detail-main .pro-detail-wrap .detail-right span,
.pro-detail-main .pro-detail-wrap .detail-right div,
.pro-detail-main .pro-detail-wrap .detail-right li {
  font-size: var(--font-18);
  line-height: 2;
  color: #000;
}

/* 2025-6-24 修改 */
.news-detail-main .news-detail-wrap .detail-left .article-main p,
.news-detail-main .news-detail-wrap .detail-left .article-main span,
.pro-detail-main .pro-detail-wrap .detail-right div,
.pro-detail-main .pro-detail-wrap .detail-right li {
  font-size: var(--font-18);
  line-height: 2;
  color: #000;
}

/* 2025-6-26 修改 */
.company-banner,
.contact-banner,
.pro-detail-banner,
.project-main,
.about-banner {
  margin-top: var(--header-height);
}
