.animate-title span {
  display: inline-block;
  vertical-align: top;
}
.common-tab-list {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.common-tab-list::before,
.common-tab-list::after {
  content: "";
  margin: auto;
}
.common-tab-list .tab-item {
  display: block;
  width: fit-content;
  flex-shrink: 0;
  background: #ffffff;
  box-shadow: 0px 0px max(2.5rem, 60px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 90px;
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  padding: max(0.2rem, 15px) max(0.62rem, 20px);
  transition: var(--duration);
}
.common-tab-list .tab-item.active,
.common-tab-list .tab-item:hover {
  background: #92d95f;
  color: #ffffff;
}
.news-banner {
  position: sticky;
  top: 0;
  padding-top: max(1.95rem, 160px);
  padding-bottom: calc(7.0313vw + max(1.87rem, var(--space)));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.news-banner .banner-title {
  font-weight: 400;
  font-size: var(--font50);
  color: #ffffff;
  text-align: center;
  margin-bottom: max(0.9rem, 30px);
}
.news-banner .news-swiper {
  overflow: initial;
}
.news-banner .news-swiper .swiper-slide {
  display: flex;
  align-items: center;
  transition: var(--duration);
}
.news-banner .news-swiper .swiper-slide.swiper-slide-prev {
  opacity: 0;
}
.news-banner .news-swiper .swiper-slide.swiper-slide-next {
  filter: blur(10px);
}
.news-banner .news-swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  filter: none !important;
}
.news-banner .news-swiper .swiper-slide .pic {
  width: 43.75%;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.news-banner .news-swiper .swiper-slide .pic:hover img {
  transform: scale(1.05);
}
.news-banner .news-swiper .swiper-slide .pic::before {
  content: "";
  display: block;
  padding-bottom: 64.28571429%;
}
.news-banner .news-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.news-banner .news-swiper .swiper-slide .text {
  margin-left: max(30px, 0.88rem);
  width: 45.625%;
  flex-shrink: 0;
}
.news-banner .news-swiper .swiper-slide .text .time {
  font-weight: 400;
  font-size: var(--font20);
  color: #92d95f;
  margin-bottom: 20px;
}
.news-banner .news-swiper .swiper-slide .text .title {
  font-weight: 400;
  font-size: var(--font30);
  color: #ffffff;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: max(0.3rem, 20px);
}
.news-banner .news-swiper .swiper-slide .text .desc {
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
  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.8rem, 20px);
}
.news-banner .news-swiper .swiper-slide .text .more {
  display: flex;
  align-items: center;
  width: fit-content;
  font-weight: 400;
  font-size: var(--font20);
  color: #92d95f;
}
.news-banner .news-swiper .swiper-slide .text .more span {
  transition: var(--duration);
}
.news-banner .news-swiper .swiper-slide .text .more:hover span:nth-child(2) {
  transform: translateX(10px);
}
.news-content {
  position: sticky;
  top: 0;
  margin-top: -7.0313vw;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border-radius: var(--global-radius) 0 0 0;
  padding-top: max(0.75rem, var(--space));
  padding-bottom: max(1.62rem, var(--space));
}
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  margin-top: max(0.7rem, 30px);
  margin-bottom: max(0.9rem, 30px);
}
.news-list .item {
  position: relative;
}
.news-list .item.active .pic img,
.news-list .item:hover .pic img {
  height: 100%;
}
.news-list .item.active .text .title,
.news-list .item:hover .text .title {
  color: #ffffff;
}
.news-list .item .pic {
  overflow: hidden;
  transition: var(--duration);
  padding-bottom: 103.84615385%;
  position: relative;
}
.news-list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 68.51851852%;
  object-fit: cover;
  transition: var(--duration);
  border-radius: 10px;
}
.news-list .item .text {
  padding-left: max(0.28rem, 15px);
  padding-right: max(0.6rem, 15px);
  padding-top: max(0.34rem, 20px);
  padding-bottom: max(0.4rem, 20px);
  position: absolute;
  left: 0;
  bottom: 0;
}
.news-list .item .text .time {
  font-weight: 400;
  font-size: var(--font18);
  color: #92d95f;
}
.news-list .item .text .title {
  margin-top: 18px;
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.41666667;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.common-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: max(0.15rem, 10px);
}
.common-pagination .item {
  --unit: max(0.79rem, 45px);
  width: var(--unit);
  height: var(--unit);
  background: #ffffff;
  box-shadow: 0px 0px max(0.76rem, 20px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  transition: var(--duration);
}
.common-pagination .item img {
  display: block;
  max-width: 50%;
  height: auto;
  object-fit: contain;
  transition: var(--duration);
}
.common-pagination .item:hover,
.common-pagination .item.active {
  background-color: #92d95f;
  color: #ffffff;
}
.common-pagination .item:hover img,
.common-pagination .item.active img {
  filter: brightness(0) invert(1);
}
.news-detail-banner {
  position: sticky;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 19.0625vw;
  padding-bottom: max(35px, 9.6354vw);
}
.news-detail-banner .news-detail-title {
  font-weight: 400;
  font-size: var(--font50);
  color: #ffffff;
  line-height: 1.4;
  overflow-wrap: break-word;
}
.news-detail-banner .news-detail-title span {
  display: block;
}
.common-breadcrumb {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: max(0.3rem, 20px);
  padding-bottom: max(0.3rem, 20px);
}
.common-breadcrumb .bread-item:not(:last-child)::after {
  content: "-";
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.6);
  margin-left: 3px;
  margin-right: 3px;
}
.common-breadcrumb .bread-item a {
  font-weight: 400;
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.6);
}
.news-detail-main {
  position: sticky;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  background-color: #fff;
  margin-top: -5.0521vw;
  border-radius: var(--global-radius) 0 0 0;
  padding-bottom: max(2.2rem, var(--space));
}
.news-detail-content {
  padding-top: max(45px, 0.9rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: max(1.72rem, var(--space));
}
.news-detail-content .main {
  width: 65.625%;
  flex-shrink: 0;
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}
.news-detail-content .main img,
.news-detail-content .main video {
  max-width: 100% !important;
  height: auto !important;
  vertical-align: top;
}
.news-detail-content .main .table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
.news-detail-content .aside {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  width: 28.75%;
  flex-shrink: 0;
}
.news-detail-content .aside .aside-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #000000;
  padding-bottom: max(0.27rem, 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: max(0.3rem, 20px);
}
.news-detail-content .aside .list .aside-item {
  display: flex;
  align-items: center;
  padding-bottom: max(0.3rem, 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.news-detail-content .aside .list .aside-item:not(:last-child) {
  margin-bottom: max(0.3rem, 20px);
}
.news-detail-content .aside .list .aside-item:hover .pic img {
  transform: scale(1.05);
}
.news-detail-content .aside .list .aside-item:hover .text .title {
  color: var(--theme);
}
.news-detail-content .aside .list .aside-item:hover .text .title span {
  background-size: 100% 1px;
  background-position: left bottom;
}
.news-detail-content .aside .list .aside-item .pic {
  position: relative;
  width: 39.13043478%;
  max-width: 180px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-detail-content .aside .list .aside-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 66.66666667%;
}
.news-detail-content .aside .list .aside-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.news-detail-content .aside .list .aside-item .text {
  flex: 1;
  min-width: 0;
  padding-left: max(0.25rem, 10px);
  padding-right: max(0.15rem, 10px);
}
.news-detail-content .aside .list .aside-item .text .time {
  font-weight: 400;
  font-size: var(--font16);
  color: #92d95f;
}
.news-detail-content .aside .list .aside-item .text .title {
  margin-top: max(0.15rem, 10px);
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.news-detail-content .aside .list .aside-item .text .title span {
  background-image: linear-gradient(to right, var(--theme), var(--theme));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
  transition: background-size 0.6s linear;
}
.news-detail-recommend-list .item {
  display: block;
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  padding-top: max(0.32rem, 20px);
  padding-bottom: max(0.32rem, 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--duration);
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.news-detail-recommend-list .item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.news-detail-recommend-list .item:hover {
  color: var(--theme);
  border-bottom-color: var(--theme);
}
.common-banner {
  position: relative;
}
.common-banner.sticky-banner {
  position: sticky;
  top: 0;
}
.common-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.common-banner .text {
  position: absolute;
  left: 50%;
  top: 33.93009378%;
  transform: translateX(-50%);
}
.common-banner .text .banner-title {
  font-weight: 400;
  font-size: var(--font50);
  color: #ffffff;
  text-align: center;
}
.common-banner .text .nav-tab {
  display: flex;
  justify-content: flex-start;
  column-gap: max(0.24rem, 20px);
  overflow-x: auto;
  margin-top: 19.1146vw;
}
.common-banner .text .nav-tab::before,
.common-banner .text .nav-tab::after {
  content: "";
  display: block;
  margin: auto;
}
.common-banner .text .nav-tab .tab-item {
  display: block;
  width: fit-content;
  white-space: nowrap;
  background: #ffffff;
  box-shadow: 0px 0px max(2.5rem, 50px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  padding-left: max(0.62rem, 20px);
  padding-right: max(0.62rem, 20px);
  padding-top: max(0.2rem, 15px);
  padding-bottom: max(0.2rem, 15px);
  transition: var(--duration);
}
.common-banner .text .nav-tab .tab-item:hover,
.common-banner .text .nav-tab .tab-item.active {
  background-color: #92d95f;
  color: #fff;
}
.common-banner.tradition-banner .text {
  top: 29.66751918%;
}
.common-banner.tradition-banner .banner-desc {
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
  line-height: 1.5;
  margin-top: max(0.35rem, 20px);
  overflow-wrap: break-word;
  text-align: center;
}
.common-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
}
.job-page .job-main {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  background-color: #eff9e7;
  border-radius: var(--global-radius) 0px 0px 0px;
}
.job-page .job-main .job-section1 {
  padding-top: max(1.35rem, 35px);
  padding-bottom: max(1.56rem, var(--space));
}
.job-page .job-main .job-section1 .progress img {
  display: block;
  max-width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
  transition: 1s linear;
}
.job-page .job-main .job-section1 .progress img.show {
  clip-path: inset(0 0 0 0);
}
.job-page .job-main .job-intro .intro-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.job-page .job-main .job-intro .text {
  width: 49.375%;
  flex-shrink: 0;
}
.job-page .job-main .job-intro .text .text-group {
  margin-top: max(0.72rem, 30px);
}
.job-page .job-main .job-intro .text .text-group .text-item .item-title {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  padding-bottom: max(0.3rem, 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: max(0.3rem, 20px);
  user-select: none;
  cursor: pointer;
}
.job-page .job-main .job-intro .text .text-group .text-item .item-desc {
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  overflow-wrap: break-word;
  padding-bottom: max(0.7rem, 30px);
  display: none;
}
.job-page .job-main .job-intro .text .text-group .text-item .item-desc p:not(:last-child) {
  margin-bottom: max(0.3rem, 20px);
}
.job-page .job-main .job-intro .text .text-group .text-item.active .item-title {
  border-color: var(--theme);
  color: var(--theme);
}
.job-page .job-main .job-intro .pic {
  width: 42.5%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}
.job-page .job-main .job-intro .pic:hover img {
  transform: scale(1.05);
}
.job-page .job-main .job-intro .pic img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.job-page .job-main .job-section2 {
  padding-top: max(1.16rem, var(--space));
  padding-bottom: max(0.6rem, 30px);
  background-color: #fff;
  overflow: hidden;
}
.job-page .job-main .job-section3 {
  padding-top: max(0.6rem, 30px);
  background-color: #fff;
  padding-bottom: max(2.34rem, var(--space));
}
.job-page .job-main .job-section3 .intro-wrap {
  position: relative;
  z-index: 10;
}
.job-page .job-main .job-section3 .intro-wrap::before {
  content: "";
  position: absolute;
  left: -8.4375vw;
  bottom: -1.8229vw;
  width: 17.7083vw;
  height: 10.4167vw;
  background: rgba(146, 217, 95, 0.1);
  border-radius: 10px;
  z-index: -1;
}
@media (min-width: 1921px) {
  .job-page .job-main .job-section3 .intro-wrap::before {
    left: -15.4375vw;
    width: 20vw;
  }
}
.job-page .job-main .job-section3 .common-title {
  margin-bottom: max(0.68rem, 30px);
}
.job-page .job-main .job-section3 .text .text-group {
  margin-top: 0;
}
.job-page .job-main .job-section3 .intro-wrap {
  align-items: center;
}
.post-page .post-main {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  border-radius: var(--global-radius) 0 0 0;
  padding-top: max(1.42rem, var(--space));
  padding-bottom: max(1.94rem, var(--space));
}
.post-page .post-main .post-list {
  margin-top: max(0.56rem, 30px);
}
.post-page .post-main .post-list .post-item {
  background: #ffffff;
  box-shadow: 0px 0px max(0.92rem, 20px) 0px rgba(146, 217, 95, 0.1);
  border-radius: 10px;
  border: 2px solid #92d95f;
  padding-left: max(0.4rem, 15px);
  padding-right: max(0.4rem, 15px);
}
.post-page .post-main .post-list .post-item:not(:last-child) {
  margin-bottom: 10px;
}
.post-page .post-main .post-list .post-item .item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  padding-top: max(0.28rem, 20px);
  padding-bottom: max(0.28rem, 20px);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.post-page .post-main .post-list .post-item .item-top.active {
  border-color: #92d95f;
}
.post-page .post-main .post-list .post-item .item-top.active .post-name {
  color: #92d95f;
}
.post-page .post-main .post-list .post-item .item-top.active .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
  background-color: #92d95f;
}
.post-page .post-main .post-list .post-item .item-top.active .icon::before {
  background-color: #92d95f;
}
.post-page .post-main .post-list .post-item .item-top .post-name {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.post-page .post-main .post-list .post-item .item-top .icon {
  position: relative;
  flex-shrink: 0;
  --unit: 20px;
  width: var(--unit);
  height: var(--unit);
  user-select: none;
  cursor: pointer;
}
.post-page .post-main .post-list .post-item .item-top .icon::before,
.post-page .post-main .post-list .post-item .item-top .icon::after {
  content: "";
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--duration);
}
.post-page .post-main .post-list .post-item .item-top .icon::before {
  width: var(--unit);
  height: 2px;
}
.post-page .post-main .post-list .post-item .item-top .icon::after {
  width: 2px;
  height: var(--unit);
  z-index: 2;
}
.post-page .post-main .post-list .post-item .item-main {
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  overflow-wrap: break-word;
  padding-top: max(0.46rem, 30px);
  padding-bottom: max(0.6rem, 30px);
  display: none;
}
.post-page .post-main .post-list .post-item .link {
  margin-top: max(0.45rem, 30px);
  width: 220px;
  height: 60px;
  background: #92d95f;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
}
.activity-main {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  border-radius: var(--global-radius) 0 0 0;
  padding-top: max(1.35rem, var(--space));
  padding-bottom: max(1.69rem, var(--space));
}
.activity-main .activity-swiper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.activity-main .activity-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.activity-main .activity-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 34.28571429%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}
.activity-main .activity-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  padding-bottom: 43.75%;
  position: relative;
}
.activity-main .activity-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.activity-main .activity-swiper .swiper-slide .text {
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.25;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding-left: max(0.48rem, 15px);
  padding-right: max(1.8rem, 15px);
  padding-bottom: max(0.4rem, 20px);
}
.activity-main .activity-swiper .swiper-slide .text span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.activity-main .activity-swiper .swiper-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: max(0.47rem, 20px);
  right: max(0.5rem, 20px);
  left: auto;
  width: fit-content;
}
.activity-main .activity-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 1;
  margin-left: 0;
}
.activity-main .activity-swiper .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: max(0.15rem, 10px);
}
.activity-main .activity-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #92d95f;
}
.activity-list {
  margin-top: max(0.4rem, 30px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  row-gap: 20px;
  margin-bottom: max(0.74rem, 35px);
}
.activity-list .item {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.activity-list .item:hover .pic img {
  transform: scale(1.05);
}
.activity-list .item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
  z-index: 1;
}
.activity-list .item .pic {
  position: relative;
  overflow: hidden;
  padding-bottom: 63.29113924%;
}
.activity-list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.activity-list .item .text {
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.25;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding-bottom: max(0.4rem, 20px);
  padding-left: max(0.48rem, 15px);
  padding-right: max(0.48rem, 15px);
}
.environment-main {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  border-radius: var(--global-radius) 0 0 0;
  padding-top: max(1.32rem, var(--space));
  padding-bottom: max(1.63rem, var(--space));
}
.environment-swiper-container {
  overflow: hidden;
  margin-bottom: max(1.21rem, 35px);
}
.environment-swiper-container .environment-swiper {
  overflow: initial !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 86%;
}
.environment-swiper-container .environment-swiper .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.environment-swiper-container .environment-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 2;
}
.environment-swiper-container .environment-swiper .swiper-slide.swiper-slide-active::before {
  opacity: 0;
}
.environment-swiper-container .environment-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  padding-bottom: 54.54545455%;
  position: relative;
}
.environment-swiper-container .environment-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.environment-swiper-container .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: max(0.68rem, 45px);
  height: max(0.68rem, 45px);
  background: #ffffff;
  box-shadow: 0px 0px max(0.76rem, 20px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
}
.environment-swiper-container .icon img {
  display: block;
  width: 10px;
  height: auto;
  transition: var(--duration);
}
.environment-swiper-container .icon:hover {
  background-color: var(--theme);
}
.environment-swiper-container .icon:hover img {
  filter: brightness(0) invert(1);
}
.environment-swiper-container .icon.environment-prev {
  left: -1.7rem;
}
.environment-swiper-container .icon.environment-next {
  right: -1.7rem;
}
.environment-swiper-container .swiper-pagination {
  display: none;
}
.environment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: max(30px, 0.67rem);
}
.environment-list .item {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.environment-list .item::before {
  content: "";
  display: block;
  padding-bottom: 63.29113924%;
}
.environment-list .item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.environment-list .item:hover img {
  transform: scale(1.05);
}
.tradition-main {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -9.5313vw;
  background-repeat: repeat;
  background-size: cover;
  background-position: 100% 20%;
  background-color: #fff;
  border-radius: var(--global-radius) 0 0 0;
  overflow-x: clip;
}
.tradition-main .tradition-section1 {
  padding-top: max(3.4rem, 200px);
  padding-bottom: max(0.95rem, var(--space));
  --pointUnit: 19px;
}
.tradition-main .tradition-section1 .tradition-wrap {
  position: relative;
  z-index: 10;
}
.tradition-main .tradition-section1 .pic img {
  display: block;
  max-width: 50.25%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.tradition-main .tradition-section1 .pic .phone-img {
  display: none;
}
.tradition-main .tradition-section1 .mark-item {
  position: absolute;
  --width: calc(880 / 1600 * 100%);
  width: var(--width);
  pointer-events: none;
}
.tradition-main .tradition-section1 .mark-item .point {
  width: var(--pointUnit);
  height: var(--pointUnit);
  background: rgba(146, 217, 95, 0.4);
  border-radius: 50%;
  position: relative;
  user-select: none;
  cursor: pointer;
  animation: point 2s infinite alternate;
  pointer-events: initial;
}
.tradition-main .tradition-section1 .mark-item .point::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52.63157895%;
  height: 52.63157895%;
  background: #92d95f;
  border-radius: 50%;
}
.tradition-main .tradition-section1 .mark-item .inner {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 100%;
  transform: translate(calc(-47.5% + calc(var(--pointUnit) / 2)));
  display: none;
  pointer-events: none;
}
.tradition-main .tradition-section1 .mark-item .inner .main {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 0px max(0.92rem, 20px) 0px rgba(146, 217, 95, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: max(0.46rem, 15px);
  padding-right: max(0.63rem, 15px);
  padding-top: max(0.45rem, 20px);
  padding-bottom: max(0.45rem, 20px);
  position: relative;
  z-index: 2;
}
.tradition-main .tradition-section1 .mark-item .inner .main .inner-pic {
  display: block;
  width: max(1.98rem, 110px);
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.tradition-main .tradition-section1 .mark-item .inner .main .inner-pic::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.tradition-main .tradition-section1 .mark-item .inner .main .inner-pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.tradition-main .tradition-section1 .mark-item .inner .main .inner-text {
  flex: 1;
  min-width: 0;
  padding-left: max(0.51rem, 20px);
}
.tradition-main .tradition-section1 .mark-item .inner .main .inner-text .text-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #000000;
  margin-bottom: max(0.2rem, 10px);
}
.tradition-main .tradition-section1 .mark-item .inner .main .inner-text .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: max(0.4rem, 20px);
}
.tradition-main .tradition-section1 .mark-item .inner .main .inner-text .download {
  width: 140px;
  height: 40px;
  background: #92d95f;
  border-radius: 20px;
  font-weight: 400;
  font-size: var(--font16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  pointer-events: initial;
}
.tradition-main .tradition-section1 .mark-item .inner .modify {
  width: 100%;
  margin-top: -10%;
}
.tradition-main .tradition-section1 .mark-item .inner .modify img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.tradition-main .tradition-section1 .mark-item1 {
  left: 24.9375%;
  top: 58.008016%;
}
.tradition-main .tradition-section1 .mark-item2 {
  left: 24.9375%;
  top: 64.008016%;
}
.tradition-main .tradition-section1 .mark-item3 {
  left: 25.9375%;
  top: 67.008016%;
}
.tradition-main .tradition-section1 .mark-item4 {
  left: 35%;
  top: 45%;
}
.tradition-main .tradition-section1 .mark-item5 {
  left: 43.75%;
  top: 34.5%;
}
.tradition-main .tradition-section1 .mark-item6 {
  left: 51.6875%;
  top: 32.5%;
}
.tradition-main .tradition-section1 .mark-item7 {
  left: 63.875%;
  top: 17.5%;
}
.tradition-main .tradition-section1 .mark-item8 {
  left: 72.75%;
  top: -1%;
}
.tradition-main .tradition-section1 .mark-item9 {
  left: 73.5%;
  top: 4%;
}
.tradition-main .tradition-section1 .mark-item10 {
  left: 74%;
  top: 10.5%;
}
.tradition-main .tradition-section2 {
  padding-top: max(0.95rem, var(--space));
  padding-bottom: max(1.87rem, var(--space));
}
.tradition-main .tradition-section2 .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: max(0.4rem, 20px);
}
.tradition-main .tradition-section2 .title-line .arrow-area {
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.tradition-main .tradition-section2 .title-line .arrow-area .btn {
  flex-shrink: 0;
  --btnWidth: max(0.68rem, 45px);
  width: var(--btnWidth);
  height: var(--btnWidth);
  background: #ffffff;
  box-shadow: 0px 0px max(0.76rem, 20px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
}
.tradition-main .tradition-section2 .title-line .arrow-area .btn:hover {
  background-color: var(--theme);
}
.tradition-main .tradition-section2 .title-line .arrow-area .btn:hover img {
  filter: brightness(0) invert(1);
}
.tradition-main .tradition-section2 .title-line .arrow-area .btn img {
  display: block;
  width: 10px;
  height: auto;
  transition: var(--duration);
}
.tradition-main .tradition-section2 .tradition-swiper .swiper-slide {
  position: relative;
}
.tradition-main .tradition-section2 .tradition-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.tradition-main .tradition-section2 .tradition-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background-image: linear-gradient(to top, #92d95f, transparent);
  pointer-events: none;
  z-index: 1;
}
.tradition-main .tradition-section2 .tradition-swiper .swiper-slide .pic {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.tradition-main .tradition-section2 .tradition-swiper .swiper-slide .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.tradition-main .tradition-section2 .tradition-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.tradition-main .tradition-section2 .tradition-swiper .swiper-slide .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: max(0.3rem, 20px);
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
@keyframes point {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.new-type-page {
  overflow: clip;
}
.new-type-page .new-type-main {
  position: sticky;
  top: 0;
}
.new-type-page .new-type-section1 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(45px, 10vw);
  padding-bottom: max(45px, 12.5vw);
  border-radius: var(--global-radius) 0 0 0;
}
.new-type-page .new-type-section1 .text-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
  text-align: center;
  margin-bottom: max(0.32rem, 20px);
}
.new-type-page .new-type-section1 .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  overflow-wrap: break-word;
  text-align: center;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.new-type-page .new-type-section2 {
  min-height: 100vh;
  background-color: #fff;
  padding-top: 10.752vh;
  padding-bottom: 9.677vh;
}
.new-type-page .new-type-section2 .common-title {
  text-align: center;
  margin-bottom: max(0.54rem, 35px);
}
.new-type-page .new-type-section2 .section2-wrap {
  max-width: 1760px;
  width: 92%;
  margin-left: auto;
  overflow: hidden;
  --unit: max(0.38rem, 20px);
}
@media (min-width: 1921px) {
  .new-type-page .new-type-section2 .section2-wrap {
    margin-left: auto;
    margin-right: auto;
  }
}
.new-type-page .new-type-section2 .section2-wrap .content {
  position: relative;
  z-index: 6;
  width: fit-content;
  padding-left: 0.73rem;
}
@media (max-width: 768px) {
  .new-type-page .new-type-section2 .section2-wrap {
    width: 92%;
  }
}
.new-type-page .new-type-section2 .section2-wrap .list {
  display: flex;
  column-gap: max(0.68rem, 30px);
  align-items: flex-start;
  position: relative;
  z-index: 6;
}
.new-type-page .new-type-section2 .section2-wrap .list .item {
  width: 240px;
  height: var(--h);
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 10px;
  border: 2px solid #92d95f;
  padding-left: max(0.22rem, 15px);
  padding-right: max(0.22rem, 15px);
  padding-top: max(0.3rem, 20px);
  padding-bottom: max(0.3rem, 20px);
  position: relative;
}
.new-type-page .new-type-section2 .section2-wrap .list .item:nth-child(even) {
  margin-top: calc(var(--h) + max(0.28rem, 18px) + calc(var(--unit) * 2));
}
.new-type-page .new-type-section2 .section2-wrap .list .item .icon {
  display: block;
  max-width: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: max(0.25rem, 20px);
}
.new-type-page .new-type-section2 .section2-wrap .list .item .icon img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.new-type-page .new-type-section2 .section2-wrap .list .item .text .text-title {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  margin-bottom: 10px;
  text-align: center;
}
.new-type-page .new-type-section2 .section2-wrap .list .item .text .text-desc {
  font-weight: 400;
  font-size: var(--font16);
  line-height: 1.625;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
.new-type-page .new-type-section2 .section2-wrap .list .item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max(0.28rem, 18px);
  height: max(0.28rem, 18px);
  background: #92d95f;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.new-type-page .new-type-section2 .section2-wrap .list .item:nth-child(odd)::before {
  top: calc(100% + var(--unit));
}
.new-type-page .new-type-section2 .section2-wrap .list .item:nth-child(even)::before {
  bottom: calc(100% + var(--unit));
}
.new-type-page .new-type-section2 .section2-wrap .progress {
  width: 100%;
  height: max(0.28rem, 18px);
  border-radius: 14px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: calc(var(--h) + var(--unit));
  overflow: hidden;
}
.new-type-page .new-type-section2 .section2-wrap .progress .bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #92d95f;
}
.new-type-page .new-type-section3 {
  padding-top: max(1.38rem, var(--space));
  padding-bottom: max(1.77rem, var(--space));
  background-color: #eff9e7;
}
.new-type-page .new-type-section3 .section3-wrap {
  display: flex;
  align-items: flex-start;
}
.new-type-page .new-type-section3 .main1 {
  display: flex;
  align-items: flex-start;
}
.new-type-page .new-type-section3 .type-section3-swiper1 {
  width: 6.72rem;
  flex-shrink: 0;
  margin-left: 0;
  margin-right: max(1.67rem, 35px);
}
.new-type-page .new-type-section3 .type-section3-swiper1 .swiper-slide .pic {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.new-type-page .new-type-section3 .type-section3-swiper1 .swiper-slide .pic::before {
  content: "";
  display: block;
  padding-bottom: 106.54761905%;
}
.new-type-page .new-type-section3 .type-section3-swiper1 .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.new-type-page .new-type-section3 .text-area {
  padding-top: max(0.4rem, 20px);
  width: 6rem;
}
.new-type-page .new-type-section3 .text-area .common-title {
  margin-bottom: max(0.7rem, 20px);
}
.new-type-page .new-type-section3 .text-area .text-list .item {
  padding-top: max(0.24rem, 20px);
  padding-bottom: max(0.24rem, 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--duration);
}
.new-type-page .new-type-section3 .text-area .text-list .item.active {
  border-color: #92d95f !important;
}
.new-type-page .new-type-section3 .text-area .text-list .item.active .item-title {
  color: #92d95f;
}
.new-type-page .new-type-section3 .text-area .text-list .item.prev {
  border-color: #92d95f !important;
}
.new-type-page .new-type-section3 .text-area .text-list .item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.new-type-page .new-type-section3 .text-area .text-list .item .item-title {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  transition: var(--duration);
}
.new-type-page .new-type-section3 .text-area .text-list .item .item-desc {
  font-weight: 400;
  font-size: var(--font20);
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
  display: none;
}
.new-type-page .new-type-section3 .main2 {
  width: max(3.34rem, 200px);
  margin-left: auto;
}
.new-type-page .new-type-section3 .main2 .type-section3-swiper2 {
  margin-top: 5.32rem;
}
.new-type-page .new-type-section3 .main2 .swiper-slide .pic {
  display: block;
  width: 100%;
  border-radius: 10px 0 0 10px;
  position: relative;
  overflow: hidden;
}
.new-type-page .new-type-section3 .main2 .swiper-slide .pic::before {
  content: "";
  display: block;
  padding-bottom: 109.58083832%;
}
.new-type-page .new-type-section3 .main2 .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.new-type-page .new-type-section4 {
  position: relative;
}
.new-type-page .new-type-section4 .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.new-type-page .new-type-section4 .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.new-type-page .new-type-section4 .text .text-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #ffffff;
  margin-bottom: max(0.47rem, 20px);
}
.new-type-page .new-type-section4 .text .btn {
  width: 200px;
  height: 60px;
  background: #92d95f;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
}
.new-type-mask-form {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: calc(99 * 2);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.new-type-mask-form .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 1400px;
  width: 86vw;
  background: #ffffff;
  border-radius: 10px;
  padding-bottom: max(1.01rem, 20px);
  padding-left: max(1.27rem, 20px);
  padding-right: max(1.3rem, 20px);
  max-height: 86vh;
  overflow-y: auto;
}
.new-type-mask-form .content::-webkit-scrollbar {
  width: 6px;
  background-color: #ccc;
  border-radius: 10px;
}
.new-type-mask-form .content::-webkit-scrollbar-thumb {
  width: 6px;
  border-radius: 10px;
  background-color: var(--theme);
}
.new-type-mask-form .content .title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
  margin-bottom: max(0.36rem, 20px);
}
.new-type-mask-form .close {
  padding-top: max(0.4rem, 20px);
  padding-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-bottom: max(0.2rem, 20px);
  background-color: #fff;
  position: sticky;
  top: 0;
}
.new-type-mask-form .close img {
  display: block;
  width: 24px;
  height: auto;
  transition: var(--duration);
  filter: brightness(0) opacity(0.2);
  margin-left: auto;
  user-select: none;
  cursor: pointer;
}
.new-type-mask-form .close img:hover {
  filter: none;
}
.new-type-mask-form .main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.new-type-mask-form .main .left {
  width: 48.20647419%;
  flex-shrink: 0;
  --input-h: 50px;
}
.new-type-mask-form .main .left .placeholder-text {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  line-height: 1.5;
  margin-bottom: 10px;
}
.new-type-mask-form .main .left .placeholder-text .required {
  color: #92d95f;
}
.new-type-mask-form .main .left .select-item {
  width: 100%;
  margin-bottom: 18px;
}
.new-type-mask-form .main .left .select-item .layui-input {
  height: var(--input-h);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: max(0.2rem, 15px);
  padding-right: 30px;
}
.new-type-mask-form .main .left .select-item .layui-form-select .layui-edge {
  border-top-color: #000000;
  right: 20px;
}
.new-type-mask-form .main .left .input-item {
  width: 100%;
  margin-bottom: 15px;
}
.new-type-mask-form .main .left .input-item input {
  display: block;
  width: 100%;
  height: var(--input-h);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--duration);
  padding-left: 20px;
  padding-right: 20px;
}
.new-type-mask-form .main .left .input-item input:focus {
  border-color: var(--theme);
}
.new-type-mask-form .main .left .submit-btn {
  margin-top: 30px;
  width: 160px;
  height: 50px;
  background: #92d95f;
  border-radius: 10px;
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.new-type-mask-form .main .right {
  width: 38.58267717%;
  flex-shrink: 0;
  padding-top: 0.4rem;
}
.new-type-mask-form .main .right .info-list .info-item:not(:last-child) {
  margin-bottom: max(0.72rem, 20px);
}
.new-type-mask-form .main .right .info-list .info-item .item-title {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.25;
  margin-bottom: max(0.25rem, 15px);
}
.new-type-mask-form .main .right .info-list .info-item .item-desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}
.check-main {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: max(1.42rem, var(--space));
  background-color: #fff;
  border-radius: var(--global-radius) 0 0 0;
}
.check-main .check-section1 {
  padding-bottom: max(0.62rem, 30px);
}
.check-main .check-section1 .common-title {
  text-align: center;
}
.check-main .check-section1 .desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 98.75%;
  overflow-wrap: break-word;
  margin-left: auto;
  margin-right: auto;
  margin-top: max(0.25rem, 20px);
}
.check-main .check-section1 .check-table {
  margin-top: max(0.5rem, 30px);
  overflow-x: auto;
}
.check-main .check-section1 .check-table table {
  border-collapse: collapse;
  border-radius: 10px;
  width: 100%;
}
.check-main .check-section1 .check-table table thead th {
  background: #92d95f;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  text-align: center;
  height: 70px;
  border-right: 1px solid #fff;
}
.check-main .check-section1 .check-table table tbody td {
  height: 47px;
  font-weight: 400;
  font-size: var(--font18);
  color: #000000;
  text-align: center;
  border: 1px solid rgba(146, 217, 95, 0.4);
  overflow-wrap: break-word;
  background-color: #fff;
}
.check-main .check-section2 {
  padding-top: max(0.62rem, 30px);
  padding-bottom: max(0.6rem, 30px);
}
.check-main .check-section2 .common-title {
  margin-bottom: max(0.4rem, 30px);
  text-align: center;
}
.check-main .check-section2 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 30px;
}
.check-main .check-section2 .list .item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.check-main .check-section2 .list .item:hover .pic img {
  transform: scale(1.05);
}
.check-main .check-section2 .list .item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background-image: linear-gradient(to top, #92d95f, transparent);
  pointer-events: none;
  z-index: 1;
}
.check-main .check-section2 .list .item .pic {
  display: block;
  width: 100%;
  position: relative;
}
.check-main .check-section2 .list .item .pic::before {
  content: "";
  display: block;
  padding-bottom: 92.30769231%;
}
.check-main .check-section2 .list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.check-main .check-section2 .list .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: max(0.3rem, 20px);
  padding-left: 15px;
  padding-right: 15px;
  z-index: 2;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.check-main .check-section3 {
  padding-top: max(0.6rem, 30px);
  padding-bottom: max(1.95rem, var(--space));
}
.check-main .check-section3 .common-title {
  text-align: center;
  margin-bottom: max(0.4rem, 30px);
}
.check-main .check-section3 .swiper-container-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: max(0.3rem, 20px);
  max-width: 1820px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.check-main .check-section3 .swiper-container-wrap .icon {
  flex-shrink: 0;
  width: max(0.79rem, 60px);
  height: max(0.79rem, 60px);
  background: #ffffff;
  box-shadow: 0px 0px max(0.76rem, 20px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: var(--duration);
  display: flex;
  justify-content: center;
  align-items: center;
}
.check-main .check-section3 .swiper-container-wrap .icon:not(.swiper-button-disabled):hover {
  background-color: var(--theme);
  user-select: none;
  cursor: pointer;
}
.check-main .check-section3 .swiper-container-wrap .icon:not(.swiper-button-disabled):hover img {
  filter: brightness(0) invert(1);
}
.check-main .check-section3 .swiper-container-wrap .icon img {
  display: block;
  width: 10px;
  height: auto;
  transition: var(--duration);
}
@media (max-width: 768px) {
  .check-main .check-section3 .swiper-container-wrap {
    width: 92%;
  }
}
.check-main .check-section3 .swiper-container-wrap .check-swiper {
  flex: 1;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}
.check-main .check-section3 .swiper-container-wrap .check-swiper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.check-main .check-section3 .swiper-container-wrap .check-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.check-main .check-section3 .swiper-container-wrap .check-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background-image: linear-gradient(to top, #92d95f, transparent);
  pointer-events: none;
  z-index: 1;
}
.check-main .check-section3 .swiper-container-wrap .check-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  position: relative;
}
.check-main .check-section3 .swiper-container-wrap .check-swiper .swiper-slide .pic::before {
  content: "";
  display: block;
  padding-bottom: 92.30769231%;
}
.check-main .check-section3 .swiper-container-wrap .check-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.check-main .check-section3 .swiper-container-wrap .check-swiper .swiper-slide .text {
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding-bottom: max(0.3rem, 20px);
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.production-main {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: max(1.42rem, var(--space));
  border-radius: var(--global-radius) 0 0 0;
  background-color: var(--bg-color);
}
.production-main .section1 {
  padding-bottom: max(0.64rem, 30px);
}
.production-main .section1 .common-title {
  text-align: center;
}
.production-main .section1 .section1-wrap .desc-text {
  margin-top: max(0.32rem, 20px);
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-bottom: max(0.51rem, 30px);
}
.production-main .section1 .swiper-container {
  position: relative;
  overflow: hidden;
  --swiper-width: calc(773 / 1600 * 100%);
}
.production-main .section1 .production1-swiper {
  width: var(--swiper-width);
  overflow: initial;
  margin: 0;
}
.production-main .section1 .production1-swiper .swiper-slide {
  overflow: hidden;
  position: relative;
  user-select: none;
  transition: 0.5s;
  /* 后面的其他slide */
  /* 当前激活的slide */
}
.production-main .section1 .production1-swiper .swiper-slide .pic {
  display: block;
  padding-bottom: 75%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
}
.production-main .section1 .production1-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.production-main .section1 .production1-swiper .swiper-slide .text {
  position: static;
  font-weight: 400;
  font-size: var(--font24);
  color: #010101;
  line-height: 1.25;
  text-align: left;
  margin-top: max(0.28rem, 20px);
  transition: none;
}
.production-main .section1 .production1-swiper .swiper-slide.swiper-slide-active ~ .swiper-slide {
  width: 65.6167979% !important;
}
.production-main .section1 .production1-swiper .swiper-slide.swiper-slide-active {
  border-radius: 10px;
}
.production-main .section1 .production1-swiper .swiper-slide.swiper-slide-active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background-image: linear-gradient(to top, #92d95f, transparent);
  pointer-events: none;
  z-index: 1;
}
.production-main .section1 .production1-swiper .swiper-slide.swiper-slide-active .pic {
  padding-bottom: 75.03234153%;
}
.production-main .section1 .production1-swiper .swiper-slide.swiper-slide-active .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding-left: max(0.3rem, 15px);
  padding-right: max(0.3rem, 15px);
  padding-bottom: max(0.37rem, 20px);
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
}
.production-main .section1 .production1-pagination {
  position: absolute;
  right: 0;
  bottom: 12.06896552%;
  left: auto;
  top: auto;
  width: calc(100% - var(--swiper-width) - 2.5%);
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
}
.production-main .section1 .production1-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--theme);
}
.production-main .section2 {
  padding-top: max(0.64rem, 30px);
  padding-bottom: max(2.07rem, var(--space));
}
.production-main .section2 .panel {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  align-items: center;
}
.production-main .section2 .panel:not(:last-child) {
  margin-bottom: max(0.4rem, 30px);
}
.production-main .section2 .panel .pic {
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}
.production-main .section2 .panel .pic:hover img {
  transform: scale(1.05);
}
.production-main .section2 .panel .pic img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.production-main .section2 .panel .text {
  width: 50%;
  flex-shrink: 0;
  padding-left: max(0.7rem, 20px);
  padding-right: max(0.8rem, 20px);
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.production-main .section2 .panel .text .text-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
  margin-bottom: max(0.3rem, 20px);
}
.production-main .section2 .panel .text .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}
.production-main .section2 .panel .text .text-desc p:not(:last-child) {
  margin-bottom: max(0.3rem, 20px);
}
.research-main {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
}
.research-main .research-section1 {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  background-color: #fff;
  padding-top: max(1.4rem, var(--space));
  padding-bottom: max(1.2rem, var(--space));
  border-radius: var(--global-radius) 0 0 0;
}
.research-main .research-section1 .section-text .common-title {
  text-align: center;
}
.research-main .research-section1 .section-text .text-desc {
  margin-top: max(0.3rem, 20px);
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.research-main .research-section1 .research-swiper-container {
  overflow: hidden;
  margin-top: max(0.56rem, 30px);
}
.research-main .research-section1 .research-swiper1 {
  overflow: initial;
}
.research-main .research-section1 .research-swiper1 .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.research-main .research-section1 .research-swiper1 .swiper-slide:hover::before {
  opacity: 1;
}
.research-main .research-section1 .research-swiper1 .swiper-slide:hover .text {
  opacity: 1;
}
.research-main .research-section1 .research-swiper1 .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background-image: linear-gradient(to top, #92d95f, transparent);
  z-index: 1;
  opacity: 0;
  transition: var(--duration);
}
.research-main .research-section1 .research-swiper1 .swiper-slide .pic {
  display: block;
  position: relative;
}
.research-main .research-section1 .research-swiper1 .swiper-slide .pic::before {
  content: "";
  display: block;
  padding-bottom: 116%;
}
.research-main .research-section1 .research-swiper1 .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.research-main .research-section1 .research-swiper1 .swiper-slide .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding-left: max(0.35rem, 15px);
  padding-right: max(0.35rem, 15px);
  padding-bottom: max(0.36rem, 20px);
  opacity: 0;
  transition: var(--duration);
}
.research-main .research-section1 .research-swiper1 .swiper-slide .text .name {
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: max(0.18rem, 10px);
}
.research-main .research-section1 .research-swiper1 .swiper-slide .text .desc {
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1.44444444;
  overflow-wrap: break-word;
}
.research-main .research-section1 .research-swiper1 .swiper-pagination {
  display: none;
}
.research-main .research-section1 .intro-text {
  margin-top: max(0.7rem, 30px);
  max-width: 883px;
  font-weight: 400;
  font-size: var(--font18);
  line-height: 1.44444444;
  color: rgba(0, 0, 0, 0.6);
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  text-align: center;
}
.research-main .research-section1 .intro-text p:not(:last-child) {
  margin-bottom: max(0.4rem, 20px);
}
.research-main .research-section2 {
  background-color: #eff9e7;
  padding-top: max(1.06rem, var(--space));
  padding-bottom: max(1.57rem, var(--space));
}
.research-main .research-section2 .text {
  margin-bottom: max(0.56rem, 30px);
}
.research-main .research-section2 .text .common-title {
  text-align: center;
  margin-bottom: max(0.3rem, 20px);
}
.research-main .research-section2 .text .desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.research-main .research-section2 .swiper-slide {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.research-main .research-section2 .swiper-slide .text {
  width: 50%;
  flex-shrink: 0;
  padding-top: max(0.67rem, 20px);
  padding-bottom: 20px;
  padding-left: max(0.66rem, 20px);
  padding-right: max(1.3rem, 20px);
}
.research-main .research-section2 .swiper-slide .text .text-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
  margin-bottom: max(0.3rem, 20px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.research-main .research-section2 .swiper-slide .text .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.research-main .research-section2 .swiper-slide .pic {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
}
.research-main .research-section2 .swiper-slide .pic:hover img {
  transform: scale(1.05);
}
.research-main .research-section2 .swiper-slide .pic::before {
  content: "";
  display: block;
  padding-bottom: 62.5%;
}
.research-main .research-section2 .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.research-main .research-section2 .swiper-pagination {
  display: flex;
  align-items: center;
  position: absolute;
  left: max(0.66rem, 20px);
  bottom: max(0.67rem, 20px);
  column-gap: max(0.17rem, 10px);
}
.research-main .research-section2 .swiper-pagination .swiper-pagination-bullet {
  margin-left: 0;
  margin-right: 0;
  opacity: 1;
  width: max(0.3rem, 20px);
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  transition: var(--duration);
}
.research-main .research-section2 .swiper-pagination .swiper-pagination-bullet-active {
  width: max(0.5rem, 35px);
  background: #92d95f;
}
.research-main .research-section3 {
  padding-top: max(1.1rem, var(--space));
  padding-bottom: max(1.36rem, var(--space));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.research-main .research-section3 .text-site {
  margin-bottom: max(0.57rem, 30px);
}
.research-main .research-section3 .text-site .common-title {
  text-align: center;
  margin-bottom: max(0.25rem, 20px);
}
.research-main .research-section3 .text-site .desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.research-main .research-section3 .research-swiper3 {
  overflow: initial;
}
.research-main .research-section3 .research-swiper3 .swiper-slide {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding-top: max(0.4rem, 20px);
  height: auto;
}
.research-main .research-section3 .research-swiper3 .swiper-slide:hover .pic img {
  transform: translate(-50%, -50%) scale(1.05);
}
.research-main .research-section3 .research-swiper3 .swiper-slide:hover .text {
  color: var(--theme);
}
.research-main .research-section3 .research-swiper3 .pic {
  display: block;
  width: 100%;
  position: relative;
}
.research-main .research-section3 .research-swiper3 .pic::before {
  content: "";
  display: block;
  padding-bottom: 57.5%;
}
.research-main .research-section3 .research-swiper3 .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
  object-position: center center;
  transition: var(--duration);
}
.research-main .research-section3 .research-swiper3 .text {
  margin-top: 20px;
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.41666667;
  overflow-wrap: break-word;
  text-align: center;
  padding-left: max(0.7rem, 15px);
  padding-right: max(0.7rem, 15px);
  padding-bottom: max(0.5rem, 20px);
  transition: var(--duration);
}
.research-main .research-section3 .swiper-pagination {
  position: static;
  margin-top: max(0.5rem, 20px);
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  width: 90%;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
}
.research-main .research-section3 .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--theme);
}
.research-main .research-section4 {
  padding-top: max(1.3rem, var(--space));
  padding-bottom: max(1.36rem, var(--space));
  background-color: #eff9e7;
}
.research-main .research-section4 .text-site {
  margin-bottom: max(0.7rem, 30px);
}
.research-main .research-section4 .text-site .common-title {
  text-align: center;
  margin-bottom: max(0.25rem, 20px);
}
.research-main .research-section4 .text-site .desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 1240px;
  overflow-wrap: break-word;
  margin-left: auto;
  margin-right: auto;
}
.research-main .research-section4 .swiper-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.research-main .research-section4 .swiper-container .research-swiper4 {
  margin-left: 20px;
  margin-right: 20px;
}
.research-main .research-section4 .swiper-container .research-swiper4 .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.research-main .research-section4 .swiper-container .research-swiper4 .swiper-slide .pic {
  display: block;
  width: 100%;
}
.research-main .research-section4 .swiper-container .research-swiper4 .swiper-slide .pic img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.research-main .research-section4 .swiper-container .modify img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.research-main .research-section4 .swiper-btn-site {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.research-main .research-section4 .swiper-btn-site .btn {
  flex-shrink: 0;
  width: max(0.68rem, 45px);
  height: max(0.68rem, 45px);
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--duration);
  user-select: none;
}
.research-main .research-section4 .swiper-btn-site .btn:not(.swiper-button-disabled):hover {
  background-color: var(--theme);
  cursor: pointer;
}
.research-main .research-section4 .swiper-btn-site .btn:not(.swiper-button-disabled):hover img {
  filter: brightness(0) invert(1);
}
.research-main .research-section4 .swiper-btn-site .btn img {
  display: block;
  width: 10px;
  height: auto;
  transition: var(--duration);
}
.contact-main {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  background-color: var(--bg-color);
  padding-top: max(1.6rem, var(--space));
  padding-bottom: max(1.92rem,var(--space));
  border-radius: var(--global-radius) 0 0 0;
}
.contact-main .contact-section1 {
  margin-bottom: 35px;
}
.contact-main .contact-section1 .section1-main {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  padding-top: max(45px, 1.72rem);
  padding-bottom: max(45px, 1.72rem);
  padding-left: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
.contact-main .contact-section1 .section1-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(146, 217, 95, 0.8), transparent);
  z-index: -1;
  pointer-events: none;
}
.contact-main .contact-section1 .section1-main .text-area {
  width: 50%;
  max-width: 532px;
  overflow-wrap: break-word;
}
.contact-main .contact-section1 .section1-main .text-area .title {
  font-weight: 400;
  font-size: var(--font36);
  color: #ffffff;
  margin-bottom: max(0.3rem, 20px);
}
.contact-main .contact-section1 .section1-main .text-area .desc {
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.58333333;
  overflow-wrap: break-word;
}
.contact-main .contact-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
}
.contact-main .contact-list .item {
  width: 49.375%;
  flex-shrink: 0;
  padding-left: max(0.65rem, 20px);
  padding-right: max(0.65rem, 20px);
  padding-top: max(0.62rem, 20px);
  padding-bottom: max(0.62rem, 20px);
  background: #ffffff;
  border-radius: 10px;
}
.contact-main .contact-list .item .item-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #000000;
  padding-bottom: max(0.23rem, 10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
.contact-main .contact-list .item .info-site .item-desc {
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  overflow-wrap: break-word;
}
.contact-main .contact-list .item .info-site .btn {
  margin-top: max(1.07rem, 20px);
  width: 110px;
  height: 44px;
  border-radius: 22px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: bold;
  font-size: var(--font16);
  color: #92d95f;
  transition: var(--duration);
}
.contact-main .contact-list .item .info-site .btn:hover {
  background-color: var(--theme);
  border-color: transparent;
}
.contact-main .contact-list .item .info-site .btn:hover span {
  color: #fff;
}
.contact-main .contact-list .item .info-site .btn:hover img {
  filter: brightness(0) invert(1);
}
.contact-main .contact-list .item .info-site .btn span {
  transition: var(--duration);
}
.contact-main .contact-list .item .info-site .btn img {
  display: block;
  width: 13px;
  height: auto;
  flex-shrink: 0;
  margin-left: 10px;
  transition: var(--duration);
}
.common-breadcrumb {
  padding-top: max(0.25rem, 20px);
  padding-bottom: max(0.25rem, 20px);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 10px;
}
.common-breadcrumb .item {
  font-weight: 400;
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.6);
}
.common-breadcrumb .item:not(:last-child)::after {
  content: "-";
  margin-left: 3px;
  margin-right: 3px;
}
.product-list-main {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  border-radius: var(--global-radius) 0 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #fff;
  padding-bottom: max(2.28rem,var(--space));
}
.product-list-main .product-tab {
  padding-top: max(0.95rem, 45px);
}
.product-list-main .product-tab::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.06);
}
.product-list-main .product-tab .list {
  display: flex;
  justify-content: flex-start;
  column-gap: max(0.76rem, 20px);
  overflow-x: auto;
}
.product-list-main .product-tab .list .tab-item {
  font-weight: 400;
  font-size: var(--font24);
  color: rgba(0, 0, 0, 0.6);
  padding-bottom: max(0.27rem, 20px);
  transition: var(--duration);
  position: relative;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}
.product-list-main .product-tab .list .tab-item.active,
.product-list-main .product-tab .list .tab-item:hover {
  color: var(--theme);
}
.product-list-main .product-tab .list .tab-item.active::before,
.product-list-main .product-tab .list .tab-item:hover::before {
  width: 100%;
}
.product-list-main .product-tab .list .tab-item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme);
  transition: var(--duration);
}
.product-list-main .product-select-list {
  margin-top: max(0.6rem, 30px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: max(0.26rem, 20px);
  row-gap: 20px;
}
.product-list-main .product-select-list .select-item {
  position: relative;
  z-index: 6;
  --unit: max(0.4rem, 15px);
}
.product-list-main .product-select-list .select-item.active {
  z-index: 7;
}
.product-list-main .product-select-list .select-item.active .item-top {
  background-color: #92d95f;
  color: #fff;
  border-color: transparent;
}
.product-list-main .product-select-list .select-item.active img {
  filter: brightness(0) invert(1);
}
.product-list-main .product-select-list .select-item .item-top {
  min-height: 70px;
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  border: 2px solid #92d95f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  padding-left: var(--unit);
  padding-right: var(--unit);
  padding-top: 10px;
  padding-bottom: 10px;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  position: relative;
  z-index: 2;
}
.product-list-main .product-select-list .select-item .item-top img {
  flex-shrink: 0;
  width: 15px;
  height: auto;
  transition: var(--duration);
}
.product-list-main .product-select-list .select-item .item-list {
  display: none;
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  max-height: 450px;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
  border-radius: 10px;
  padding-top: 30px;
  padding-bottom: max(0.5rem, 20px);
}
.product-list-main .product-select-list .select-item .item-list::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
  background-color: #ccc;
}
.product-list-main .product-select-list .select-item .item-list::-webkit-scrollbar-thumb {
  width: 6px;
  border-radius: 10px;
  background-color: var(--theme);
}
.product-list-main .product-select-list .select-item .item-list .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-items: center;
  padding-left: var(--unit);
  padding-right: var(--unit);
  user-select: none;
  cursor: pointer;
}
.product-list-main .product-select-list .select-item .item-list .item:hover .item-text {
  color: var(--theme);
}
.product-list-main .product-select-list .select-item .item-list .item:not(:last-child) {
  margin-bottom: 10px;
}
.product-list-main .product-select-list .select-item .item-list .item input {
  display: none;
}
.product-list-main .product-select-list .select-item .item-list .item input:checked ~ .icon {
  background-color: #92d95f;
  border-color: transparent;
}
.product-list-main .product-select-list .select-item .item-list .item input:checked ~ .icon::before {
  opacity: 1;
}
.product-list-main .product-select-list .select-item .item-list .item input:checked ~ .item-text {
  color: #92d95f;
}
.product-list-main .product-select-list .select-item .item-list .item .icon {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: var(--duration);
  position: relative;
}
.product-list-main .product-select-list .select-item .item-list .item .icon::before {
  content: "√";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  transition: var(--duration);
  opacity: 0;
}
.product-list-main .product-select-list .select-item .item-list .item .item-text {
  margin-left: max(0.17rem, 10px);
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  font-weight: 400;
  font-size: var(--font16);
  color: #000000;
  line-height: 1.875;
  transition: var(--duration);
}
.product-list-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
  column-gap: 20px;
  margin-top: max(0.56rem, 30px);
}
.product-list-group .item {
  overflow: hidden;
  padding-top: max(0.64rem, 20px);
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: max(0.5rem, 20px);
}
.product-list-group .item:hover .pic img {
  transform: translate(-50%, -50%) scale(1.05);
}
.product-list-group .item:hover .pic::after {
  opacity: 1;
}
.product-list-group .item:hover .text {
  color: var(--theme);
}
.product-list-group .item .pic {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: max(0.3rem, 20px);
  margin-bottom: max(0.3rem, 10px);
}
.product-list-group .item .pic::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 66.53846154%;
}
.product-list-group .item .pic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../images/product-hover.svg);
  opacity: 0;
  transition: var(--duration);
}
.product-list-group .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 center;
  transition: var(--duration);
}
.product-list-group .item .text {
  display: block;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.product-detail-page {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(calc(var(--header-height) + 45px), 1.64rem);
  padding-bottom: 1.98rem;
}
.product-detail-page .common-breadcrumb .item {
  color: #fff;
}
.product-detail-page .detail-main {
  margin-top: max(0.37rem, 30px);
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding-top: max(0.72rem, 30px);
  padding-bottom: max(0.8rem, 30px);
  padding-left: max(0.7rem, 20px);
  padding-right: max(0.7rem, 20px);
}
.product-detail-page .detail-main .detail-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
  padding-bottom: max(0.3rem, 10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: max(0.3rem, 20px);
  overflow-wrap: break-word;
}
.product-detail-page .detail-main .detail-desc {
  font-weight: 400;
  font-size: var(--font16);
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
  padding-bottom: max(0.34rem, 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.product-detail-page .detail-main .param-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: max(0.4rem, 20px);
  margin-top: max(0.3rem, 20px);
  margin-bottom: max(0.5rem, 35px);
}
.product-detail-page .detail-main .param-list .item .item-title {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  line-height: 1.5;
  overflow-wrap: break-word;
  margin-bottom: 5px;
}
.product-detail-page .detail-main .param-list .item .item-desc {
  font-weight: 400;
  font-size: var(--font16);
  line-height: 1.875;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}
.product-detail-page .detail-main .switch-main .tab-area::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.06);
}
.product-detail-page .detail-main .switch-main .switch-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 0.92rem;
  overflow-x: auto;
}
.product-detail-page .detail-main .switch-main .switch-list .item {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  line-height: 1.5;
  overflow-wrap: break-word;
  white-space: nowrap;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: var(--duration);
  user-select: none;
  cursor: pointer;
}
.product-detail-page .detail-main .switch-main .switch-list .item::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme);
  transition: var(--duration);
}
.product-detail-page .detail-main .switch-main .switch-list .item.active,
.product-detail-page .detail-main .switch-main .switch-list .item:hover {
  color: #92d95f;
}
.product-detail-page .detail-main .switch-main .switch-list .item.active::after,
.product-detail-page .detail-main .switch-main .switch-list .item:hover::after {
  width: 100%;
}
.product-detail-page .detail-main .switch-main .switch-main {
  margin-top: 25px;
  font-weight: 400;
  font-size: var(--font16);
  line-height: 1.875;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}
.product-detail-page .detail-main .switch-main .switch-main img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.product-detail-page .detail-main .switch-main .switch-main .item {
  display: none;
}
.product-detail-page .detail-main .switch-main .switch-main .item.show {
  display: block;
}
.product-detail-page .detail-main .return-btn {
  margin-top: max(0.7rem, 30px);
  width: 240px;
  height: 60px;
  background: #92d95f;
  border-radius: 30px;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.new-type2-page .new-type2-main {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fff;
  margin-top: -7.0833vw;
  border-radius: var(--global-radius) 0 0 0;
}
.new-type2-page .new-type2-main .new-type-text .common-title {
  text-align: center;
  margin-bottom: max(0.4rem, 20px);
}
.new-type2-page .new-type2-main .new-type-text .desc {
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  overflow-wrap: break-word;
  text-align: center;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
}
.new-type2-page .new-type2-main .intro-list .intro-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-type2-page .new-type2-main .intro-list .intro-item .pic {
  width: 46.875%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.new-type2-page .new-type2-main .intro-list .intro-item .pic:hover img {
  transform: scale(1.05);
}
.new-type2-page .new-type2-main .intro-list .intro-item .pic img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.new-type2-page .new-type2-main .intro-list .intro-item .text {
  width: 43.75%;
  flex-shrink: 0;
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .text-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #000000;
  margin-bottom: max(0.46rem, 20px);
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .list .item {
  display: block;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  transition: var(--duration);
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .list .item.prev {
  border-color: #92d95f !important;
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .list .item.active {
  border-color: #92d95f !important;
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .list .item.active .item-title {
  color: #92d95f;
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .list .item:first-child {
  border-top: 2px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .list .item:not(:last-child) {
  margin-bottom: 20px;
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .list .item .item-title {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  transition: var(--duration);
}
.new-type2-page .new-type2-main .intro-list .intro-item .text .list .item .item-desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
  display: none;
}
.new-type2-page .new-type2-main .section1 {
  padding-top: max(1.36rem, var(--space));
  padding-bottom: max(1.7rem, var(--space));
  border-radius: var(--global-radius) 0 0 0;
}
.new-type2-page .new-type2-main .section1 .new-type-text {
  margin-bottom: max(0.95rem, 30px);
}
.new-type2-page .new-type2-main .section1 .intro-list1 {
  margin-bottom: max(0.95rem, 35px);
}
.new-type2-page .new-type2-main .section2 {
  padding-top: max(1.1rem,var(--space));
  padding-bottom: max(1.85rem, var(--space));
  background-color: #fff;
}
.new-type2-page .new-type2-main .section2 .intro {
  margin-top: max(0.74rem, 30px);
  margin-bottom: max(1.3rem,var(--space));
}
.new-type2-page .new-type2-main .section2 .intro .intro-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #000000;
  line-height: 1.66666667;
  margin-bottom: max(0.3rem, 20px);
  text-align: center;
}
.new-type2-page .new-type2-main .section2 .intro .intro-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 20px;
  column-gap: 25px;
}
.new-type2-page .new-type2-main .section2 .intro .intro-list .item {
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px;
  border: 2px solid #92d95f;
  padding-top: max(0.4rem, 20px);
  padding-left: max(0.47rem, 15px);
  padding-right: max(0.47rem, 15px);
  padding-bottom: max(0.4rem, 20px);
  display: flex;
  flex-direction: column;
}
.new-type2-page .new-type2-main .section2 .intro .intro-list .item .icon {
  width: max(1.28rem, 76px);
  height: max(1.28rem, 76px);
  margin-left: auto;
  margin-right: auto;
  background: #92d95f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: max(0.58rem, 20px);
}
.new-type2-page .new-type2-main .section2 .intro .intro-list .item .icon img {
  display: block;
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  object-position: center center;
}
.new-type2-page .new-type2-main .section2 .intro .intro-list .item .text {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.41666667;
  overflow-wrap: break-word;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-type2-page .new-type2-main .section3 {
  padding-top: max(1.6rem, var(--space));
  padding-bottom: max(1.62rem, var(--space));
  background-color: var(--bg-color);
}
.new-type2-page .new-type2-main .section3 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new-type2-page .new-type2-main .section3 .item .text {
  flex-shrink: 0;
  width: 43.75%;
}
.new-type2-page .new-type2-main .section3 .item .text .text-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
  line-height: 1.25;
  margin-bottom: max(0.4rem, 20px);
}
.new-type2-page .new-type2-main .section3 .item .text .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}
.new-type2-page .new-type2-main .section3 .item .pic {
  width: 46.875%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.new-type2-page .new-type2-main .section3 .item .pic:hover img {
  transform: scale(1.05);
}
.new-type2-page .new-type2-main .section3 .item .pic img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
/* 新型烟草，国外版本 */
.new-type-en-page .new-type-en-main {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: -7.0833vw;
  background-color: #fff;
  border-radius: var(--global-radius) 0 0 0;
}
.new-type-en-page .section1 {
  border-radius: var(--global-radius) 0 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  padding-top: max(1.48rem,var(--space));
  padding-bottom: max(1.52rem,var(--space));
}
.new-type-en-page .section1 .text-site {
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: max(0.8rem, 30px);
}
.new-type-en-page .section1 .text-site .text-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
  line-height: 1.25;
  margin-bottom: max(0.3rem, 20px);
  text-align: center;
}
.new-type-en-page .section1 .text-site .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.new-type-en-page .section1 .show-group .show-item {
  background: #ffffff;
  border-radius: 10px;
  padding: max(0.67rem, 20px);
  overflow: hidden;
}
.new-type-en-page .section1 .show-group .show-item:not(:last-child) {
  margin-bottom: 20px;
}
.new-type-en-page .section1 .show-group .show-item .show-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #000000;
  margin-bottom: max(0.25rem, 20px);
}
.new-type-en-page .section1 .show-group .show-item .show-intro {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}
.new-type-en-page .section1 .show-group .show-item .pro-list {
  margin-top: max(0.3rem, 20px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 18px;
  row-gap: 20px;
  padding-right: 0.55rem;
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item {
  border-radius: 10px;
  overflow: hidden;
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item:last-child {
  border: 2px solid #92d95f;
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .pic {
  display: block;
  width: 100%;
  background-color: rgba(146, 217, 95, 0.15);
  position: relative;
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .pic:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.new-type-en-page .section1 .show-group .show-item .pro-list .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 center;
  transition: var(--duration);
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .text-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-left: max(0.35rem, 15px);
  padding-right: max(0.35rem, 15px);
  padding-top: max(0.4rem, 20px);
  padding-bottom: max(0.4rem, 20px);
  transition: var(--duration);
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .text-inner:hover {
  background-color: #92d95f;
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .text-inner:hover .text {
  color: #fff;
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .text-inner:hover img {
  filter: brightness(0) invert(1);
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .text-inner .text {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.25;
  transition: var(--duration);
}
.new-type-en-page .section1 .show-group .show-item .pro-list .item .text-inner .icon img {
  display: block;
  width: 10px;
  transition: var(--duration);
}
.new-type-en-page .section1 .download-area {
  margin-top: max(1.12rem, 35px);
}
.new-type-en-page .section1 .download-area .download-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #000000;
  margin-bottom: max(0.5rem, 30px);
}
.new-type-en-page .section1 .download-area .download-list {
  border-top: 2px solid rgba(0, 0, 0, 0.06);
  padding-top: max(0.3rem, 20px);
}
.new-type-en-page .section1 .download-area .download-list .download-item {
  display: flex;
  align-items: stretch;
  padding-bottom: max(0.3rem, 20px);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}
.new-type-en-page .section1 .download-area .download-list .download-item:not(:last-child) {
  margin-bottom: max(0.3rem, 20px);
}
.new-type-en-page .section1 .download-area .download-list .download-item.active .pic {
  width: 252px;
  margin-right: max(20px, 0.56rem);
}
.new-type-en-page .section1 .download-area .download-list .download-item .pic {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 0;
  transition: 0.5s linear;
}
.new-type-en-page .section1 .download-area .download-list .download-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 67.46031746%;
}
.new-type-en-page .section1 .download-area .download-list .download-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.new-type-en-page .section1 .download-area .download-list .download-item .text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new-type-en-page .section1 .download-area .download-list .download-item .text .text-title {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.25;
  overflow-wrap: break-word;
}
.new-type-en-page .section1 .download-area .download-list .download-item .text .btn {
  width: 140px;
  height: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #92d95f;
  font-weight: 400;
  font-size: var(--font18);
  color: #92d95f;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
  margin-top: 10px;
}
.new-type-en-page .section1 .download-area .download-list .download-item .text .btn:hover {
  background-color: #92d95f;
  color: #fff;
}
.new-type-en-page .new-type-en-contact {
  position: relative;
  z-index: 6;
}
.new-type-en-page .new-type-en-contact .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.new-type-en-page .new-type-en-contact .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.new-type-en-page .new-type-en-contact .text .text-title {
  font-weight: 400;
  font-size: var(--font40);
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: max(0.35rem, 20px);
}
.new-type-en-page .new-type-en-contact .text .btn {
  width: 200px;
  height: 60px;
  background: #92d95f;
  border-radius: 30px;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.about-page {
  overflow: clip;
  background-color: #fff;
}
.about-page .about-banner {
  position: sticky;
  top: 0;
  z-index: 6;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  --bannerUnit: 0px;
  overflow: hidden;
}
.about-page .about-banner .pic {
  width: 100%;
  height: 100%;
  position: relative;
}
.about-page .about-banner .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .about-banner .pic .pic1,
.about-page .about-banner .pic .pic2 {
  position: absolute;
  left: 0;
  top: 0;
}
.about-page .about-banner .pic .pic1 {
  opacity: 1;
}
.about-page .about-banner .pic .pic2 {
  opacity: 0;
}
.about-page .about-banner .banner-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  mix-blend-mode: screen;
}
.about-page .about-banner .banner-mask .circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #000;
  width: 140vw;
  height: 140vw;
  clip-path: circle(var(--bannerUnit));
}
.about-page .about-banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: var(--font50);
  color: #000000;
  line-height: 1.2;
  z-index: 2;
  width: 90%;
}
.about-page .about-banner .text .text-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.about-page .about-banner .text .text-box1 {
  opacity: 1;
}
.about-page .about-banner .text .text-box1 p:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  clip-path: circle(var(--bannerUnit));
}
.about-page .about-banner .text .text-box2 {
  opacity: 0;
  color: #fff;
}
.about-page .about-banner .icon-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about-page .about-banner .icon-area .icon {
  position: absolute;
}
.about-page .about-banner .icon-area .icon img {
  display: block;
  max-width: 160px;
  height: auto;
}
.about-page .about-banner .icon-area .icon1 {
  left: 4.16666667%;
  top: 32.96296296%;
}
.about-page .about-banner .icon-area .icon2 {
  left: 25.67708333%;
  top: 51.66666667%;
}
.about-page .about-banner .icon-area .icon3 {
  left: 35.20833333%;
  top: 69.35185185%;
}
.about-page .about-banner .icon-area .icon4 {
  left: 63.02083333%;
  top: 16.66666667%;
}
.about-page .about-banner .icon-area .icon5 {
  left: 68.33333333%;
  top: 55.09259259%;
}
.about-page .about-banner .icon-area .icon6 {
  left: 89.0625%;
  top: 29.53703704%;
}
.about-page .about-main {
  background-color: #fff;
}
.about-page .about-main .about-section1 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(8.125vw, 45px);
  padding-bottom: 31.7708vw;
}
.about-page .about-main .about-section1 .section1-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about-page .about-main .about-section1 .section1-wrap .left {
  width: 18.75%;
  flex-shrink: 0;
}
.about-page .about-main .about-section1 .section1-wrap .left .title {
  font-weight: 400;
  font-size: var(--font50);
  color: #ffffff;
}
.about-page .about-main .about-section1 .section1-wrap .right {
  width: 53.75%;
  flex-shrink: 0;
}
.about-page .about-main .about-section1 .section1-wrap .right .intro-list .item .item-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #ffffff;
  padding-top: max(0.25rem, 15px);
  padding-bottom: max(0.25rem, 15px);
  line-height: 1.5;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.about-page .about-main .about-section1 .section1-wrap .right .intro-list .item .item-desc {
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
  line-height: 1.5;
  overflow-wrap: break-word;
  padding-top: max(0.25rem, 20px);
  padding-bottom: max(0.35rem, 20px);
  display: none;
}
.about-page .about-section2 {
  background-color: var(--bg-color);
  border-radius: var(--global-radius) 0 0 0;
  position: sticky;
  top: 0;
  z-index: 7;
  padding-bottom: max(1.96rem,var(--space));
}
.about-page .about-section2 .about-development {
  position: relative;
  z-index: 6;
  padding-top: max(1.37rem, 45px);
  overflow: clip;
  padding-bottom: max(0.75rem, 30px);
}
.about-page .about-section2 .about-development .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: max(0.9rem, 30px);
}
.about-page .about-section2 .about-development .title-line .title {
  font-weight: 400;
  font-size: var(--font50);
  color: #000000;
}
.about-page .about-section2 .about-development .title-line .placeholder {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
}
.about-page .about-section2 .about-development .devlopment-main {
  position: relative;
  padding-top: max(2.1rem, 45px);
}
.about-page .about-section2 .about-development .development-swiper {
  width: 40%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-section2 .about-development .development-swiper .swiper-slide .pic {
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: max(0.3rem, 20px);
}
.about-page .about-section2 .about-development .development-swiper .swiper-slide .pic::after {
  content: "";
  display: block;
  padding-bottom: 62.5%;
}
.about-page .about-section2 .about-development .development-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.about-page .about-section2 .about-development .development-swiper .swiper-slide .text {
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.about-page .about-section2 .about-development .progress-inner {
  width: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5%;
}
.about-page .about-section2 .about-development .progress-inner::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.about-page .about-section2 .about-development .progress-inner .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about-page .about-section2 .about-development .progress-inner .circle img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-section2 .about-development .progress-inner .list {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  --rotate: 0deg;
  transform: rotate(var(--rotate));
  transition: var(--duration);
}
.about-page .about-section2 .about-development .progress-inner .list .item {
  position: absolute;
  opacity: 1;
}
.about-page .about-section2 .about-development .progress-inner .list .item .point {
  width: max(1.5625vw, 15px);
  height: max(1.5625vw, 15px);
  background: rgba(146, 217, 95, 0.2);
  border-radius: 50%;
  position: relative;
  opacity: 1;
  user-select: none;
  cursor: pointer;
}
.about-page .about-section2 .about-development .progress-inner .list .item .point::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56.66666667%;
  height: 56.66666667%;
  border-radius: 50%;
  background: #92d95f;
}
.about-page .about-section2 .about-development .progress-inner .list .item .text {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  font-weight: 400;
  font-size: var(--font40);
  color: #92d95f;
  user-select: none;
  cursor: pointer;
}
.about-page .about-section2 .about-development .progress-inner .list .item.item1 {
  top: 0.35%;
  left: 50%;
  transform: translateX(-50%);
}
.about-page .about-section2 .about-development .progress-inner .list .item.item2 {
  right: 25%;
  top: 6.7%;
  transform: rotate(30deg);
}
.about-page .about-section2 .about-development .progress-inner .list .item.item3 {
  right: 7%;
  top: 24.5%;
  transform: rotate(60deg);
}
.about-page .about-section2 .about-development .progress-inner .list .item.item4 {
  right: 0.4%;
  top: 50%;
  transform: rotate(90deg) translateX(-50%);
}
.about-page .about-section2 .about-development .progress-inner .list .item.item5 {
  right: 6.7%;
  bottom: 25%;
  transform: rotate(120deg);
  top: auto;
}
.about-page .about-section2 .about-development .progress-inner .list .item.item6 {
  right: 25%;
  bottom: 6.7%;
  transform: rotate(150deg);
  top: auto;
}
.about-page .about-section2 .about-development .progress-inner .list .item.item7 {
  right: 50%;
  top: auto;
  bottom: 0.4%;
  transform: rotate(180deg) translateX(-50%);
}
.about-page .about-section2 .about-development .progress-inner .list .item.item8 {
  left: 25%;
  bottom: 6.8%;
  transform: rotate(-150deg);
  top: auto;
}
.about-page .about-section2 .about-development .progress-inner .list .item.item9 {
  left: 7%;
  bottom: 24.7%;
  transform: rotate(-120deg);
  top: auto;
}
.about-page .about-section2 .about-development .progress-inner .list .item.item10 {
  left: 0.3%;
  top: 50%;
  transform: rotate(-90deg) translateX(50%);
}
.about-page .about-section2 .about-development .progress-inner .list .item.item11 {
  left: 7%;
  top: 24.75%;
  transform: rotate(-60deg);
}
.about-page .about-section2 .about-development .progress-inner .list .item.item12 {
  left: 25%;
  top: 6.75%;
  transform: rotate(-30deg);
}
.about-page .about-section2 .about-skill {
  padding-top: max(0.75rem, 30px);
  padding-bottom: max(0.75rem, 30px);
}
.about-page .about-section2 .about-skill .skill-title {
  font-weight: 400;
  font-size: var(--font50);
  color: #000000;
  margin-bottom: max(0.5rem, 30px);
}
.about-page .about-section2 .about-skill .panel-group .panel {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.about-page .about-section2 .about-skill .panel-group .panel:not(:last-child) {
  margin-bottom: 30px;
}
.about-page .about-section2 .about-skill .panel-group .panel .pic {
  flex-shrink: 0;
  width: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}
.about-page .about-section2 .about-skill .panel-group .panel .pic:hover img {
  transform: scale(1.05);
}
.about-page .about-section2 .about-skill .panel-group .panel .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration);
}
.about-page .about-section2 .about-skill .panel-group .panel .text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: max(0.82rem, 20px);
  padding-bottom: max(0.8rem, 20px);
  padding-left: max(0.6rem, 15px);
  padding-right: max(0.6rem, 15px);
}
.about-page .about-section2 .about-skill .panel-group .panel .text .icon {
  display: block;
  width: 64px;
  margin-bottom: max(0.54rem, 20px);
}
.about-page .about-section2 .about-skill .panel-group .panel .text .icon img {
  display: block;
  max-width: 100%;
  height: auto;
}
.about-page .about-section2 .about-skill .panel-group .panel .text .text-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #000000;
  margin-bottom: max(0.25rem, 20px);
}
.about-page .about-section2 .about-skill .panel-group .panel .text .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: 20px;
}
.about-page .about-section2 .about-skill .panel-group .panel .text .btn {
  margin-top: auto;
  width: 200px;
  height: 60px;
  background: #92d95f;
  border-radius: 30px;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.about-page .about-section2 .about-honor {
  padding-top: max(0.75rem, 30px);
  overflow: clip;
}
.about-page .about-section2 .about-honor .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: max(0.4rem, 20px);
}
.about-page .about-section2 .about-honor .title-line .title {
  font-weight: 400;
  font-size: var(--font50);
  color: #000000;
}
.about-page .about-section2 .about-honor .title-line .btn-list {
  display: flex;
  align-items: center;
  column-gap: 18px;
}
.about-page .about-section2 .about-honor .title-line .btn-list .btn {
  flex-shrink: 0;
  width: max(0.68rem, 45px);
  height: max(0.68rem, 45px);
  background: #ffffff;
  box-shadow: 0px 0px max(0.76rem, 20px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: var(--duration);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  user-select: none;
}
.about-page .about-section2 .about-honor .title-line .btn-list .btn img {
  display: block;
  width: 10px;
  height: auto;
  transition: var(--duration);
}
.about-page .about-section2 .about-honor .title-line .btn-list .btn:not(.swiper-button-disabled):hover {
  background-color: var(--theme);
  cursor: pointer;
}
.about-page .about-section2 .about-honor .title-line .btn-list .btn:not(.swiper-button-disabled):hover img {
  filter: brightness(0) invert(1);
}
.about-page .about-section2 .about-honor .about-honor-swiper {
  overflow: initial;
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-slide {
  padding-top: max(0.5rem, 20px);
  padding-left: max(0.6rem, 20px);
  padding-right: max(0.6rem, 20px);
  padding-bottom: max(0.5rem, 20px);
  border-radius: 10px;
  background-color: #fff;
  height: auto;
  border: none;
  outline: none;
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-slide:hover .pic img {
  transform: translate(-50%, -50%) scale(1.05);
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-slide:hover .text {
  color: var(--theme);
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-slide .pic {
  display: block;
  position: relative;
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-slide .pic::after {
  content: "";
  display: block;
  padding-bottom: 54.44444444%;
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-slide .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: var(--duration);
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-slide .text {
  margin-top: max(0.35rem, 20px);
  font-weight: 400;
  font-size: var(--font24);
  color: #000000;
  text-align: center;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-pagination {
  position: static;
  margin-top: max(0.63rem, 20px);
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
}
.about-page .about-section2 .about-honor .about-honor-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #92d95f;
}
@media (max-width: 992px) {
  .common-banner {
    margin-top: var(--header-height);
  }
  .common-banner.sticky-banner {
    position: relative;
  }
  .common-banner .text {
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    display: block;
  }
  .common-banner .text .nav-tab {
    display: none;
  }
  .activity-main {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .activity-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .activity-main .activity-swiper .swiper-pagination {
    position: static;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .activity-main .activity-swiper .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background-color: #fff;
  }
}
@media (max-width: 992px) {
  .check-main .check-section1 .check-table {
    overflow-x: auto;
  }
  .check-main .check-section1 .check-table table {
    min-width: 992px;
  }
}
@media (max-width: 768px) {
  .check-main .check-section2 .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .check-main .check-section3 .swiper-container-wrap {
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: center;
    column-gap: 20px;
  }
  .check-main .check-section3 .swiper-container-wrap .check-swiper {
    flex: none;
    width: 100%;
    flex-shrink: 0;
    order: -1;
  }
  .check-main {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .check-main .check-section1 .check-table table {
    min-width: 600px;
  }
  .check-main .check-section2 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-main {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .contact-main .contact-section1 .section1-main .text-area {
    width: 100%;
  }
  .contact-main .contact-section1 .section1-main::before {
    width: 100%;
  }
  .contact-main .contact-list {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .contact-main .contact-list .item {
    width: 100%;
  }
}
@media (max-width: 1450px) {
  .environment-swiper-container .icon.environment-next {
    right: 20px;
  }
  .environment-swiper-container .icon.environment-prev {
    left: 20px;
  }
  .environment-swiper-container .environment-swiper {
    width: 92%;
  }
}
@media (max-width: 768px) {
  .environment-main {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .environment-swiper-container .icon {
    display: none;
  }
  .environment-swiper-container .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    position: static;
  }
  .environment-swiper-container .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .environment-swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
  }
  .environment-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 992px) {
  .news-detail-banner {
    margin-top: var(--header-height);
    position: static;
  }
}
@media (max-width: 768px) {
  .news-detail-main {
    position: static;
    margin-top: 0;
  }
  .news-detail-banner .news-detail-title {
    font-size: 24px;
  }
  .common-breadcrumb .bread-item a {
    font-size: 14px;
  }
  .news-detail-content {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .news-detail-content .main {
    width: 100%;
  }
  .news-detail-content .aside {
    position: static;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .news-detail-banner {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
  .common-breadcrumb {
    display: none;
  }
  .news-detail-recommend-list .item {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .news-list .item .text .title {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .news-banner {
    position: relative;
    margin-top: var(--header-height);
  }
  .news-content {
    position: static;
    margin-top: 0;
  }
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-list .item .pic img {
    height: 100%;
  }
  .news-list .item .text .title {
    color: #fff;
  }
}
@media (max-width: 576px) {
  .news-banner .news-swiper .swiper-slide {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .news-banner .news-swiper .swiper-slide .pic {
    width: 100%;
  }
  .news-banner .news-swiper .swiper-slide .text {
    width: 100%;
    margin-left: 0;
  }
  .news-banner {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 992px) {
  .new-type-en-page .section1 .show-group .show-item .pro-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .new-type-en-page .new-type-en-contact .pic img {
    min-height: 300px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .new-type-en-page .new-type-en-main {
    margin-top: 0;
    position: static;
  }
}
@media (max-width: 576px) {
  .new-type-en-page .section1 .show-group .show-item .pro-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .new-type-en-page .section1 .download-area .download-list .download-item {
    align-items: flex-start;
  }
  .new-type-en-page .section1 .download-area .download-list .download-item.active .pic {
    width: 30%;
    flex-shrink: 0;
  }
  .new-type-en-page .section1 .download-area .download-list .download-item .text .btn {
    margin-top: 20px;
  }
  .new-type-en-page .section1 .download-area .download-list .download-item .text .btn {
    height: 30px;
    font-size: 14px;
  }
  .new-type-en-page .new-type-en-contact .text .btn {
    width: 160px;
    height: 45px;
  }
  .new-type-mask-form .main {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .new-type-mask-form .main .left {
    width: 100%;
  }
  .new-type-mask-form .main .right {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .new-type-page .new-type-section3 .type-section3-swiper1 {
    margin-right: 1rem;
  }
  .new-type-page .new-type-section4 .pic img {
    min-height: 300px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .new-type-page .new-type-main {
    position: static;
  }
  .new-type-page .new-type-section2 .section2-wrap .progress {
    display: none;
  }
  .new-type-page .new-type-section2 .section2-wrap .list .item::before {
    display: none;
  }
  .new-type-page .new-type-section2 {
    min-height: auto;
  }
  .new-type-page .new-type-section2 .section2-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .new-type-page .new-type-section2 .section2-wrap .list {
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 0;
    justify-content: space-between;
    align-items: stretch;
  }
  .new-type-page .new-type-section2 .section2-wrap .list .item {
    width: 47.5%;
    margin-top: 0 !important;
    height: auto;
  }
  .new-type-page .new-type-section2 .section2-wrap .content {
    padding-left: 0;
  }
  .new-type-page .new-type-section3 .main2 {
    display: none;
  }
}
@media (max-width: 576px) {
  .new-type-page .new-type-section1 .text-title {
    font-size: 20px;
  }
  .new-type-page .new-type-section1 .text-desc br {
    display: none;
  }
  .new-type-page .new-type-section2 .section2-wrap .list .item {
    width: 100%;
  }
  .new-type-page .new-type-section3 .section3-wrap {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .new-type-page .new-type-section3 .main1 {
    flex-wrap: wrap;
    row-gap: 30px;
    width: 100%;
    overflow: hidden;
  }
  .new-type-page .new-type-section3 .type-section3-swiper1 {
    width: 100%;
    margin-right: 0;
  }
  .new-type-page .new-type-section3 .text-area {
    width: 100%;
  }
  .new-type-page .new-type-section4 .text .btn {
    width: 160px;
    height: 45px;
  }
}
@media (max-width: 992px) {
  .new-type2-page .new-type2-main .section2 .intro .intro-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .new-type2-page .new-type2-main {
    position: static;
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .new-type2-page .new-type2-main .intro-list .intro-item {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .new-type2-page .new-type2-main .intro-list .intro-item .pic {
    width: 100%;
    order: -1;
  }
  .new-type2-page .new-type2-main .intro-list .intro-item .text {
    width: 100%;
  }
  .new-type2-page .new-type2-main .section2 .intro .intro-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .new-type2-page .new-type2-main .section3 .item {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .new-type2-page .new-type2-main .section3 .item .text {
    width: 100%;
    order: 1;
  }
  .new-type2-page .new-type2-main .section3 .item .pic {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .job-page .job-main {
    position: static;
    margin-top: 0;
  }
  .job-page .job-main .job-section1 .progress {
    overflow-x: auto;
    margin-top: 30px;
  }
  .job-page .job-main .job-section1 .progress img {
    min-width: 1000px;
  }
}
@media (max-width: 576px) {
  .job-page .job-main .job-intro .intro-wrap {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .job-page .job-main .job-intro .pic {
    width: 100%;
    order: -1;
  }
  .job-page .job-main .job-intro .text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .post-page .post-main {
    margin-top: 0;
    position: static;
  }
}
@media (max-width: 576px) {
  .post-page .post-main .post-list .post-item .link {
    width: 160px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .product-detail-page .detail-main .param-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-detail-page .detail-main .detail-title {
    font-size: 24px;
  }
  .product-detail-page .detail-main .param-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-detail-page .detail-main .return-btn {
    width: 180px;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .product-list-main {
    position: static;
    margin-top: 0;
  }
  .product-list-main .product-select-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-list-main .product-select-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }
  .product-list-main .product-select-list .select-item .item-top {
    min-height: 60px;
    height: auto;
  }
  .product-list-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .production-main .section1 .swiper-container {
    --swiper-width: 65%;
  }
  .production-main .section2 .panel {
    flex-wrap: wrap;
  }
  .production-main .section2 .panel .text {
    width: 100%;
  }
  .production-main .section2 .panel .pic {
    width: 100%;
    order: -1;
  }
  .production-main {
    position: static;
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .production-main .section1 .swiper-container {
    --swiper-width: 100%;
  }
  .production-main .section1 .production1-pagination {
    position: static;
    margin-top: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .production-main .section2 .panel .text .text-title {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .research-main .research-section2 .swiper-slide .text .text-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .research-main .research-section2 .swiper-slide .text .text-desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .research-main {
    position: static;
    margin-top: 0;
  }
  .research-main .research-section2 .swiper-slide {
    flex-wrap: wrap;
  }
  .research-main .research-section2 .swiper-slide .pic {
    width: 100%;
    order: -1;
  }
  .research-main .research-section2 .swiper-slide .text {
    width: 100%;
  }
  .research-main .research-section2 .swiper-pagination {
    position: static;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
@media (max-width: 576px) {
  .research-main .research-section1 .research-swiper1 .swiper-pagination {
    display: block;
    margin-top: 20px;
    position: initial;
  }
  .research-main .research-section1 .research-swiper1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
  }
  .research-main .research-section1 .intro-text {
    text-align: left;
  }
  .research-main .research-section2 .text .desc {
    text-align: left;
  }
  .research-main .research-section4 .text-site .desc {
    text-align: left;
  }
}
@media (max-width: 990px) {
  .tradition-main .tradition-section1 {
    overflow-x: auto;
  }
}
@media (max-width: 768px) {
  .tradition-main {
    position: static;
    margin-top: 0;
  }
  .common-banner.tradition-banner .text {
    top: 45%;
  }
  .tradition-main .tradition-section1 {
    padding-top: 65px;
  }
  .tradition-main .tradition-section1 .pic .pc-img {
    display: none;
  }
  .tradition-main .tradition-section1 .pic .phone-img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .tradition-main .tradition-section1 .mark-item {
    position: static;
  }
  .tradition-main .tradition-section1 .mark-item .point {
    display: none;
  }
  .tradition-main .tradition-section1 .mark-item .inner {
    position: static;
    display: block;
    transform: none;
  }
  .tradition-main .tradition-section1 .mark-item .inner .modify {
    display: none;
  }
  .tradition-main .tradition-section1 .mark-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
  }
  .tradition-main .tradition-section1 .mark-list .mark-item {
    width: 47.5%;
  }
  .tradition-main .tradition-section1 .mark-list .mark-item .inner .main {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .tradition-main .tradition-section1 .mark-list .mark-item .inner .main .inner-pic {
    margin-left: auto;
    margin-right: auto;
  }
  .tradition-main .tradition-section1 .mark-list .mark-item .inner .main .inner-text {
    flex: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .tradition-main .tradition-section1 .mark-list .mark-item .inner .main .inner-text .text-title {
    text-align: center;
  }
  .tradition-main .tradition-section1 .mark-list .mark-item .inner .main .inner-text .download {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  .common-banner.tradition-banner .banner-desc {
    display: none;
  }
  .tradition-main .tradition-section1 .mark-list .mark-item {
    width: 100%;
  }
  .tradition-main .tradition-section1 .mark-item .inner .main .inner-text .text-desc {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .about-page .about-banner .icon-area .icon img {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .about-page .about-section2 .about-skill .panel-group .panel .pic {
    width: 50%;
  }
  .about-page .about-section2 .about-skill .panel-group .panel .text .icon {
    width: 45px;
  }
  .about-page .about-section2 .about-skill .panel-group .panel .text .btn {
    width: 160px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .about-page .about-main .about-section1 .section1-wrap .left .title,
  .about-page .about-section2 .about-skill .skill-title,
  .about-page .about-section2 .about-honor .title-line .title {
    font-size: 26px;
  }
  .about-page .about-section2 .about-development .title-line .title {
    font-size: 22px;
  }
  .about-page .about-banner .text {
    font-size: 24px;
  }
  .about-page .about-banner .icon-area .icon img {
    max-width: 70px;
  }
  .about-page .about-banner .banner-mask .circle {
    width: 220px;
    height: 220px;
  }
  .about-page .about-main .about-section1 .section1-wrap {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .about-page .about-main .about-section1 .section1-wrap .left {
    width: 100%;
  }
  .about-page .about-main .about-section1 .section1-wrap .right {
    width: 100%;
  }
  .about-page .about-section2 .about-skill {
    padding-top: 45px;
  }
  .about-page .about-main .about-section1 {
    background-position: center top;
  }
  .about-page .about-section2 .about-skill .panel-group .panel {
    flex-wrap: wrap;
  }
  .about-page .about-section2 .about-skill .panel-group .panel .pic {
    width: 100%;
    order: -1;
  }
  .about-page .about-section2 .about-skill .panel-group .panel .text {
    width: 100%;
    flex: none;
  }
  .about-page .about-main .about-section1 .section1-wrap .right .intro-list .item .item-desc {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  }
  .about-page .about-section2 .about-honor .about-honor-swiper .swiper-slide .text {
    font-size: 14px;
  }
  .about-page .about-section2 .about-development .progress-inner {
    top: 0;
  }
  .about-page .about-section2 .about-development .development-swiper {
    margin-top: 45%;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item .text {
    margin-top: 10px;
    font-size: 16px;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item1 {
    top: -0.4%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item2 {
    top: 5.6%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item3 {
    right: 5.65%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item4 {
    right: -0.5%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item5 {
    right: 5.7%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item6 {
    bottom: 5.7%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item7 {
    bottom: -0.5%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item8 {
    bottom: 5.7%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item9 {
    bottom: 22.7%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item10 {
    left: -0.4%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item11 {
    left: 5.65%;
  }
  .about-page .about-section2 .about-development .progress-inner .list .item.item12 {
    top: 5.25%;
  }
  .about-page .about-section2 .about-development .progress-inner {
    clip-path: inset(0 0 56% 0);
  }
  .about-page .about-section2 .about-development .development-swiper .swiper-slide .text {
    font-size: 16px;
  }
}
.tradition-page {
  overflow-x: clip;
}
.tradition-main-type2 {
  position: relative;
  z-index: 10;
  margin-top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  background-repeat: repeat;
  background-size: cover;
  background-position: 100% 20%;
  background-color: #fff;
  padding-top: max(1.4rem,var(--space));
  padding-bottom: max(1.4rem, var(--space));
  --picHeight: 5rem;
  overflow-x: clip;
}
.tradition-main-type2 .phone-btn {
  display: none;
}
.tradition-main-type2 .section-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.tradition-main-type2 .tradition-section1 {
  width: 70px;
  flex-shrink: 0;
  --pointUnit: 19px;
}
.tradition-main-type2 .tradition-section1 .tradition-wrap {
  position: relative;
  z-index: 10;
}
.tradition-main-type2 .tradition-section1 .pic {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.tradition-main-type2 .tradition-section1 .pic img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.tradition-main-type2 .tradition-section1 .pic .phone-img {
  display: none;
}
.tradition-main-type2 .tradition-section1 .pic .point {
  position: absolute;
  --pointUnit: 15px;
  width: var(--pointUnit);
  height: var(--pointUnit);
  border-radius: 50%;
  background-color: rgba(146, 217, 95, 0.4);
  user-select: none;
  cursor: pointer;
  z-index: 2;
}
.tradition-main-type2 .tradition-section1 .pic .point::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background-color: #92d95f;
}
.tradition-main-type2 .tradition-section1 .pic .point .line {
  position: absolute;
  height: 2px;
  background-color: var(--theme);
  transition: 0.45s ease;
  clip-path: inset(0 100% 0 0);
}
.tradition-main-type2 .tradition-section1 .pic .point.active .line {
  clip-path: inset(0 0 0 0);
}
.tradition-main-type2 .tradition-section1 .pic .point1 {
  left: -1%;
  bottom: -0.5%;
}
.tradition-main-type2 .tradition-section1 .pic .point1 .line {
  width: 8.1rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(300deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point2 {
  left: 34.5%;
  bottom: 0;
}
.tradition-main-type2 .tradition-section1 .pic .point2 .line {
  width: 8rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(300deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point3 {
  left: 73.7%;
  bottom: -0.5%;
}
.tradition-main-type2 .tradition-section1 .pic .point3 .line {
  width: 7.6rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(297deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point4 {
  left: -6%;
  bottom: 26%;
}
.tradition-main-type2 .tradition-section1 .pic .point4 .line {
  width: 6rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(312deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point5 {
  left: -6%;
  bottom: 40%;
}
.tradition-main-type2 .tradition-section1 .pic .point5 .line {
  width: 5.25rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(320deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point6 {
  left: 37%;
  top: 46%;
}
.tradition-main-type2 .tradition-section1 .pic .point6 .line {
  width: 4.6rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(324deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point7 {
  left: 40%;
  top: 15%;
}
.tradition-main-type2 .tradition-section1 .pic .point7 .line {
  width: 3.9rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(355deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point8 {
  top: -0.3%;
  left: 6%;
}
.tradition-main-type2 .tradition-section1 .pic .point8 .line {
  width: 4.1rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point9 {
  top: -0.5%;
  left: 43.5%;
}
.tradition-main-type2 .tradition-section1 .pic .point9 .line {
  width: 3.9rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  transform-origin: left center;
}
.tradition-main-type2 .tradition-section1 .pic .point10 {
  top: -0.3%;
  right: -2%;
}
.tradition-main-type2 .tradition-section1 .pic .point10 .line {
  width: 3.9rem;
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  transform-origin: left center;
}
.tradition-main-type2 .mark-item .main {
  display: flex;
  align-items: center;
}
.tradition-main-type2 .mark-item .main .inner-pic {
  width: max(1.98rem, 100px);
}
.tradition-main-type2 .mark-item .main .inner-pic img {
  display: block;
  max-width: 100%;
  height: auto;
}
.tradition-main-type2 .mark-item .main .inner-text {
  flex: 1;
  min-width: 0;
  padding-left: max(0.4rem, 15px);
  padding-right: max(0.4rem, 15px);
}
.tradition-main-type2 .mark-item .main .inner-text .text-title {
  font-weight: 400;
  font-size: var(--font30);
  color: #000000;
  margin-bottom: 10px;
}
.tradition-main-type2 .mark-item .main .inner-text .text-desc {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}
.tradition-main-type2 .mark-item .main .inner-text .download {
  width: 140px;
  height: 40px;
  background: #92d95f;
  border-radius: 20px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  margin-top: 20px;
}
.tradition-main-type2 .tradition-section2 {
  width: 75%;
  height: 100%;
}
.tradition-main-type2 .tradition-section2 .section-list {
  height: 100%;
  position: relative;
  z-index: 10;
}
.tradition-main-type2 .tradition-section2 .section-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-right: 6px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s linear;
}
.tradition-main-type2 .tradition-section2 .section-item::-webkit-scrollbar {
  width: 6px;
  background-color: #ccc;
  border-radius: 10px;
}
.tradition-main-type2 .tradition-section2 .section-item::-webkit-scrollbar-thumb {
  width: 6px;
  background-color: var(--theme);
  border-radius: 10px;
}
.tradition-main-type2 .tradition-section2 .section-item.show {
  opacity: 1;
  pointer-events: initial;
}
.tradition-main-type2 .tradition-section2 .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: max(0.4rem, 20px);
  margin-top: max(0.4rem, 20px);
}
.tradition-main-type2 .tradition-section2 .title-line .common-title {
  font-size: var(--font32);
}
.tradition-main-type2 .tradition-section2 .title-line .arrow-area {
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.tradition-main-type2 .tradition-section2 .title-line .arrow-area .btn {
  flex-shrink: 0;
  --btnWidth: max(0.6rem, 45px);
  width: var(--btnWidth);
  height: var(--btnWidth);
  background: #ffffff;
  box-shadow: 0px 0px max(0.76rem, 20px) 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
}
.tradition-main-type2 .tradition-section2 .title-line .arrow-area .btn:hover {
  background-color: var(--theme);
}
.tradition-main-type2 .tradition-section2 .title-line .arrow-area .btn:hover img {
  filter: brightness(0) invert(1);
}
.tradition-main-type2 .tradition-section2 .title-line .arrow-area .btn img {
  display: block;
  width: 10px;
  height: auto;
  transition: var(--duration);
}
.tradition-main-type2 .tradition-section2 .tradition-swiper .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.tradition-main-type2 .tradition-section2 .tradition-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.tradition-main-type2 .tradition-section2 .tradition-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background-image: linear-gradient(to top, #92d95f, transparent);
  pointer-events: none;
  z-index: 1;
}
.tradition-main-type2 .tradition-section2 .tradition-swiper .swiper-slide .pic {
  display: block;
  position: relative;
}
.tradition-main-type2 .tradition-section2 .tradition-swiper .swiper-slide .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.tradition-main-type2 .tradition-section2 .tradition-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.tradition-main-type2 .tradition-section2 .tradition-swiper .swiper-slide .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: max(0.3rem, 20px);
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
@media (max-width: 1600px) {
  .tradition-main-type2 .tradition-section1 {
    width: 50px;
  }
}
@media (max-width: 1350px) {
  .tradition-main-type2 .tradition-section1 .pic .point1 .line {
    width: 8.3rem;
  }
  .tradition-main-type2 .tradition-section1 .pic .point2 .line {
    width: 8.4rem;
    transform: translateY(-50%) rotate(296deg);
  }
  .tradition-main-type2 .tradition-section1 .pic .point3 .line {
    width: 8.6rem;
    transform: translateY(-50%) rotate(294deg);
  }
  .tradition-main-type2 .tradition-section1 .pic .point4 .line {
    width: 6.7rem;
    transform: translateY(-50%) rotate(307deg);
  }
  .tradition-main-type2 .tradition-section1 .pic .point5 .line {
    width: 5.75rem;
    transform: translateY(-50%) rotate(315deg);
  }
  .tradition-main-type2 .tradition-section1 .pic .point6 .line {
    width: 4.85rem;
    transform: translateY(-50%) rotate(321deg);
  }
}
@media (max-width: 1200px) {
  .tradition-main-type2 {
    height: auto;
  }
  .tradition-main-type2 .section-wrap {
    height: auto;
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .tradition-main-type2 .tradition-section1 .pic .point.active .line {
    display: none;
  }
  .tradition-main-type2 .tradition-section1 {
    width: 100%;
  }
  .tradition-main-type2 .tradition-section2 {
    width: 100%;
    height: auto;
  }
  .tradition-main-type2 .tradition-section2 .section-item {
    position: static;
    opacity: 1;
  }
  .tradition-main-type2 .tradition-section1 .pic {
    margin-bottom: 60px;
  }
  .tradition-main-type2 .tradition-section1 .pic .pc-img {
    display: none;
  }
  .tradition-main-type2 .tradition-section1 .pic .phone-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .tradition-main-type2 .tradition-section1 .pic .point {
    pointer-events: none;
  }
  .tradition-main-type2 .tradition-section1 .pic .point.active {
    background-color: rgba(230, 0, 18, 0.4);
  }
  .tradition-main-type2 .tradition-section1 .pic .point.active::before {
    background-color: #e60012;
  }
  .tradition-main-type2 .tradition-section1 .pic .point1 {
    left: 0%;
  }
  .tradition-main-type2 .tradition-section1 .pic .point2 {
    left: -0.5%;
    bottom: 40%;
  }
  .tradition-main-type2 .tradition-section1 .pic .point3 {
    left: -0.5%;
    top: 6%;
    bottom: auto;
  }
  .tradition-main-type2 .tradition-section1 .pic .point4 {
    left: 20%;
    bottom: 83%;
  }
  .tradition-main-type2 .tradition-section1 .pic .point5 {
    left: 35%;
    bottom: 83%;
  }
  .tradition-main-type2 .tradition-section1 .pic .point6 {
    left: 52%;
    top: 27%;
  }
  .tradition-main-type2 .tradition-section1 .pic .point7 {
    left: 80%;
    top: 45%;
  }
  .tradition-main-type2 .tradition-section1 .pic .point8 {
    left: auto;
    right: 0%;
  }
  .tradition-main-type2 .tradition-section1 .pic .point9 {
    left: auto;
    right: -0.5%;
    top: 40%;
  }
  .tradition-main-type2 .tradition-section1 .pic .point10 {
    left: auto;
    right: -0.2%;
    top: 80%;
  }
  .tradition-main-type2 .tradition-section2 .section-item {
    display: none;
  }
  .tradition-main-type2 .tradition-section2 .section-item.show {
    display: block;
  }
  .tradition-main-type2 .phone-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .tradition-main-type2 .phone-btn::-webkit-scrollbar {
    height: 6px;
    background-color: #ccc;
    border-radius: 10px;
  }
  .tradition-main-type2 .phone-btn::-webkit-scrollbar-thumb {
    height: 6px;
    border-radius: 10px;
    background-color: var(--theme);
  }
  .tradition-main-type2 .phone-btn .btn {
    width: fit-content;
    padding: 15px 20px;
    background-color: #fff;
    white-space: nowrap;
    font-size: 16px;
    color: #333;
    border-radius: 10px;
    transition: var(--duration);
    user-select: none;
    cursor: pointer;
  }
  .tradition-main-type2 .phone-btn .btn.active {
    background-color: var(--theme);
    color: #fff;
  }
}
@media (max-width: 576px) {
  .tradition-main-type2 .phone-btn {
    column-gap: 15px;
  }
  .tradition-main-type2 .phone-btn .btn {
    padding: 10px;
  }
  .tradition-main-type2 .tradition-section1 .pic .point {
    --pointUnit: 10px;
  }
  .tradition-main-type2 .mark-item .main {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .tradition-main-type2 .mark-item .main .inner-text {
    flex: none;
    width: 100%;
    flex-shrink: 0;
    order: 1;
  }
}
.search-list-page .common-banner .pic {
  position: relative;
}
.search-list-page .common-banner .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.15);
}
.search-list-page .search-list-main {
  border-radius: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #fff;
  padding-top: max(1.4rem,var(--space));
  padding-bottom: max(1.18rem,var(--space));
}
.search-list-page .product-list-group,
.search-list-page .news-list {
  margin-bottom: max(0.6rem, 30px);
}
@media (max-width: 992px) {
  .search-list-page {
    margin-top: var(--header-height);
  }
}
@media (max-width: 576px) {
  .search-list-page .common-banner .text .banner-title {
    font-size: 24px;
    overflow-wrap: break-word;
  }
}
