.index {
  position: relative;
}

.index .banner {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}


.index .banner .swiper_banner {
  height: 100%;
  overflow: hidden;
}

.index .banner .content {
  position: relative;
  height: 100vh;

}

.index .banner .content .banner_bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.index .banner .content .banner_bg .banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .banner .content .banner_bg .banner_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .banner .info {
  position: absolute;
  width: 12rem;
  bottom: 1.1rem;
  left: 0;
  z-index: 2;
  padding: 1.2rem 1.2rem 0 1.2rem;
  z-index: 2;
}

.index .banner .info .item {
  position: absolute;
  left: 1.2rem;
  bottom: 0;
  opacity: 0;
  /*display: none;*/
  /*transition: opacity 1.5s ease;*/
  width: 100%;
  
}

.index .banner .info .item.on {
  opacity: 1;
}


.index .banner .info .item .title {
  color: #fff;
  line-height: 1.22;
  position: relative;
}

.index .banner .info .item .p_btn {
  margin: .5rem 0 0 0;
}


.index .banner .banner-pagination .swiper-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  bottom: .33rem;
  z-index: 2;
}

.index .banner .banner-pagination .swiper-pagination-bullet {
  width: .48rem;
  height: 2px;
  background: #fff;
  background-size: 100% 100%;
  opacity: 1;
}

.index .banner .banner-pagination .swiper-pagination-bullet-active {
  background: rgba(150, 180, 20, 1);
  background-size: 100% 100%;
}

.index .sec_1-pin-wrap {
  /* 仅作为 pin 容器，让 .sec_1 在其内部用 margin:auto 居中 */
}

.index .sec_1 {
  position: relative;
  width: 60%;
  height: 100vh;
  border-radius: 1rem;
  margin: 2.87rem auto 0 auto;
  overflow: hidden;
}

.index .sec_1_m {
  display: none;
}

.index .sec_1 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.index .sec_1 .bg img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  width: 0;
}

.index .sec_1 .bg img:first-child {
  width: 100%;
}

.index .sec_1 .content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 1.4rem 1.2rem;
  box-sizing: border-box;
  display: flex;
  gap: 4.1rem;
  opacity: 0;
}

.index .sec_1 .content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 66%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 11%, rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}

.index .sec_1 .content .box_1 {
  display: flex;
  gap: .5rem;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 6.1rem;
}

.index .sec_1 .content .box_1 .items {
  display: flex;
  gap: .37rem;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.index .sec_1 .content .box_1 .items .title {
  display: flex;
  align-self: start;
  gap: .27rem;
  color: #fff;
  line-height: 1.33;
  letter-spacing: -0.84px;
  opacity: .3;
  width: 6.1rem;
  transition: all .3s ease-in-out;
}

.index .sec_1 .content .box_1 .items .title span {
  padding-top: .1rem;
}

.index .sec_1 .content .box_1 .items .title.on {
  opacity: 1;
}

.index .sec_1 .content .box_1 .items .title .f_24 {
  opacity: 0;
  transition: all .3s ease-in-out;
}

.index .sec_1 .content .box_1 .items .title.on .f_24 {
  opacity: 1;
}

.index .sec_1 .content .box_1 .pages {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.index .sec_1 .content .box_1 .pages .dot {
  width: .1rem;
  height: .1rem;
  border-radius: 50%;
  background: rgba(150, 180, 20, 1);
}

.index .sec_1 .content .box_1 .pages .page {
  color: #fff;
}

.index .sec_1 .content .box_1 .pages .page span:first-child {
  color: rgba(150, 180, 20, 1);
}

.index .sec_1 .content .box_2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.index .sec_1 .content .box_2 .item {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}

.index .sec_1 .content .box_2 .item .desc {
  /*width: 4.84rem;*/
  width: 100%;
  text-align: end;
  opacity: 0;
  transition: all .3s ease;
  transform: translateY(.2rem);
  color: rgba(255, 255, 255, 1);
  line-height: 1.8;
}

.index .sec_1 .content .box_2 .item.on .desc {
  opacity: 1;
  transform: translateY(0);
}

.index .sec_1 .content .box_2 .item .btn {
  display: flex;
  justify-content: end;
  pointer-events: none;
}
.index .sec_1 .content .box_2 .item.on .btn {
    pointer-events: auto;
}

.index .sec_2 {
  position: relative;
  height: 13.6rem;
}

.index .sec_2 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.index .sec_2 .bg .img2 {
  position: absolute;
  top: 3.87rem;
  right: 0;
  width: 100%;
  height: 7.99rem;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.index .sec_2 .bg .earth {
  position: absolute;
  top: 1.74rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.48rem;
  height: 11.85rem;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.index .sec_2 .bg .earth .img1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .sec_2 .bg .earth .point {
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .04rem;
  z-index: 1;
}

.index .sec_2 .bg .earth .point .img {
  width: .6rem;
  height: .6rem;
}

.index .sec_2 .bg .earth .point span {
  color: rgba(51, 51, 51, 1);
  line-height: 1.5;
}

.index .sec_2 .content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  padding: 1.3rem 1.2rem;
  gap: 5rem;
  justify-content: space-between;
}

.index .sec_2 .content .left {
  width: 6.12rem;

}

.index .sec_2 .content .left .title {
  color: #000;
  line-height: 1.28;
}

.index .sec_2 .content .left .desc {
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
  margin-top: .4rem;
}

.index .sec_2 .content .left .btn {
  display: flex;
  margin: .6rem 0 0 0;
}

.index .sec_2 .content .left .btn .p_btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.index .sec_2 .content .left .btn .p_btn:hover {
  background: rgba(150, 180, 20, 1);
  color: #fff;
  border: 1px solid rgba(150, 180, 20, 1);
}

.index .sec_2 .content .right {
  flex: 1;
}

.index .sec_2 .content .right .list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: .5rem;
  column-gap: .8rem;
}

.index .sec_2 .content .right .item {
  width: calc((100% - .8rem) / 2);
}

.index .sec_2 .content .right .item .name {
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
}

.index .sec_2 .content .right .item .desc {
  color: #333;
  line-height: 1.5;
  margin-top: .1rem;
}

.index .sec_2 .content .right .item .desc strong {
  margin-right: .08rem;
}

.index .sec_3 {
  position: relative;
  padding: .07rem 1.2rem 1.8rem 1.2rem;
}

.index .sec_3 .p_label {
  text-align: center;
}

.index .sec_3 .content {
  margin: .8rem 0 0 0;
  overflow: hidden;
  width: 100%;
}

.index .sec_3 .content .swiper_3 {
  width: 100%;
  overflow: hidden;
}

.index .sec_3 .content .item {
  width: 100%;
}

.index .sec_3 .content .item .img_box {
  width: 100%;
  height: 5.7rem;
  border-radius: .2rem;
  overflow: hidden;
}

.index .sec_3 .content .item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}

.index .sec_3 .content .item:hover .img_box img {
  transform: scale(1.05);
}

.index .sec_3 .content .item .name {
  color: #000;
  line-height: 1.5;
  margin: .2rem 0 0 0;
  transition: all .3s ease;
}

.index .sec_3 .content .item:hover .name {
  color: rgba(150, 180, 20, 1);
}

.index .sec_3 .content .item .btns {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  height: .46rem;
  margin: .2rem 0 0 0;
}

.index .sec_3 .content .item .btns .address {
  display: flex;
  align-items: center;
  gap: .1rem;
  color: #000;
  line-height: 1.2;
}

.index .sec_3 .content .item .btns .address img {
  width: .15rem;
}

.index .sec_3 .content .item .btns .btn {
  width: .46rem;
  height: .46rem;
  background: #000;
  border-radius: 50%;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index .sec_3 .content .item:hover .btns .btn {
  background: rgba(150, 180, 20, 1);
}

.index .sec_3 .content .item .btns .btn img {
  width: .22rem;
}


.index .sec_4 {
  position: relative;
  padding: 1.2rem 1.2rem 1.38rem 1.2rem;
  background: rgba(251, 251, 251, 1);
}

.index .sec_4 .p_label {
  text-align: center;
}

.index .sec_4 .content {
  margin: .9rem 0 0 0;
  width: 100%;
  display: flex;
  gap: .6rem;
}

.index .sec_4 .content .left {
  width: 7.97rem;
  flex-shrink: 0;
}

.index .sec_4 .content .left .img_box {
  width: 7.97rem;
  height: 4.58rem;
  border-radius: .2rem;
  /* overflow: hidden; */
  position: relative;
}

.index .sec_4 .content .left .img_box img {
  width: 100%;
  height: 100%;
  border-radius: .2rem;
  object-fit: cover;
  transition: all .3s ease;
}

.index .sec_4 .content .left:hover .img_box img {
  transform: scale(1.05);
}

.index .sec_4 .content .left .img_box .swiper_4 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index .sec_4 .content .left .img_box .swiper_4 .swiper-slide {
  border-radius: .2rem;
  overflow: hidden;
}

.index .sec_4 .content .left .img_box .pagination {
  position: absolute;
  bottom: -.35rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  width: 100%;
}

.index .sec_4 .content .left .img_box .pagination .swiper-pagination {
  text-align: end;
}

.index .sec_4 .content .left .img_box .pagination .swiper-pagination-bullet {
  width: .48rem;
  height: 2px;
  background: rgba(51, 51, 51, .5);
  background-size: 100% 100%;
  opacity: 1;
}

.index .sec_4 .content .left .img_box .pagination .swiper-pagination-bullet-active {
  background: rgba(150, 180, 20, 1);
  background-size: 100% 100%;
}

.index .sec_4 .content .left .info {
  position: relative;
  margin: .23rem 0 0 0;
}

.index .sec_4 .content .left .info .item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .3s ease;
}

.index .sec_4 .content .left .info .item.on {
  opacity: 1;
}

.index .sec_4 .content .left .info .item .time {
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
  transition: all .3s ease;
}

.index .sec_4 .content .left:hover .info .item .time {
  color: rgba(150, 180, 20, 1);
}

.index .sec_4 .content .left .info .item .name {
  color: #000;
  line-height: 1.5;
  margin: .13rem 0 0 0;
  position: relative;
  letter-spacing: -0.12px;
  transition: all .3s ease;

  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index .sec_4 .content .left:hover .info .item .name {
  color: rgba(150, 180, 20, 1);
}

.index .sec_4 .content .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  height: 5.5rem;
  overflow: auto;
}

.index .sec_4 .content .right .item {
  display: flex;
  gap: .35rem;
  align-items: center;
}

.index .sec_4 .content .right .item .img_box {
  width: 2.42rem;
  height: 1.56rem;
  border-radius: .15rem;
  overflow: hidden;
  flex-shrink: 0;
}

.index .sec_4 .content .right .item .img_box img {
  width: 100%;
  height: 100%;
  border-radius: .15rem;
  object-fit: cover;
  transition: all .3s ease;
}

.index .sec_4 .content .right .item:hover .img_box img {
  transform: scale(1.05);
}

.index .sec_4 .content .right .item .name {
  color: #000;
  line-height: 1.5;
  height: .76rem;
  overflow: hidden;
  transition: all .3s ease;

  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index .sec_4 .content .right .item:hover .name {
  color: rgba(150, 180, 20, 1);
}

.index .sec_4 .content .right .item .time {
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
  margin: .4rem 0 0 0;
  transition: all .3s ease;
}

.index .sec_4 .content .right .item:hover .time {
  color: rgba(150, 180, 20, 1);
}

.index .sec_5 {
  position: relative;
  height: 10.8rem;
  padding: 2.4rem 1.2rem 1.2rem 1.2rem;
  background: rgba(251, 251, 251, 1);
}

.index .sec_5 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.index .sec_5 .bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.4rem;
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.00) 100%);
  z-index: 1;
  pointer-events: none;
}

.index .sec_5 .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .sec_5 .label {
  width: 10.83rem;
  line-height: 1.33;
  color: #fff;
}

.index .sec_5 .p_btn {
  margin: .6rem 0 0 0;

}


.news {
  position: relative;
  background: rgba(242, 245, 245, 1);
  padding-top: .8rem;
  padding-bottom: 1.2rem;
}

.news .crumb {
  padding: .5rem 1.2rem 0 1.2rem;
}

.news .news-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  margin-top: 1.04rem;
}

.news .news-title {
  font-size: .5rem;
  line-height: 1.28;
  color: #000;
}

.news .news-tabs {
  display: flex;
  gap: .5rem;
}

.news .news-tabs .tab {
  height: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .3rem;
  font-size: .24rem;
  font-weight: 500;
  font-family: 'Montserrat-Medium';
  transition: all .3s ease;
}

.news .news-tabs .tab.news-tab {
  width: 1.2rem;
}

.news .news-tabs .tab.exhibition-tab {
  width: 2rem;
}

.news .news-tabs .tab.active {
  background: rgba(150, 180, 20, 1);
  color: #fff;
}

.news .news-tabs .tab:not(.active) {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}


.news .news-featured {
  padding: 0 1.2rem;
  margin-top: .79rem;
  position: relative;
}

.news .news-featured .featured-card {
  display: flex;
  background: #fff;
  border-radius: .2rem;
  box-shadow: 0 .2824rem .4583rem -.1rem rgba(56, 101, 62, 0.1);
  overflow: hidden;
  position: relative;
}

.news .news-featured .featured-card .swiper_1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news .news-featured .featured-card .featured-pagination {
  position: absolute;
  bottom: .8rem;
  left: 9.77rem;
}

.news .news-featured .featured-card .featured-pagination .swiper-pagination {
  position: relative;
  bottom: unset;
}

.news .news-featured .featured-card .featured-pagination .swiper-pagination .swiper-pagination-bullet {
  width: .32rem;
  height: 2px;
  border-radius: 0;
  background: rgba(51, 51, 51, .3);
}

.news .news-featured .featured-card .featured-pagination .swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(150, 180, 20, 1);
}

.news .news-featured .featured-card .item {
  display: flex;
}

.news .news-featured .featured-card .featured-img {
  width: 8.96rem;
  height: 5.67rem;
  flex-shrink: 0;
  border-radius: .2rem;
  overflow: hidden;
}

.news .news-featured .featured-card .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}

.news .news-featured .featured-card:hover .featured-img img {
  transform: scale(1.05);
}

.news .news-featured .featured-card .featured-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: .81rem 0 0 .81rem;
  padding-right: .8rem;
  min-width: 0;
}

.news .news-featured .featured-card .featured-date {
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
  transition: all .3s ease;
}

.news .news-featured .featured-card:hover .featured-date {
  color: rgba(150, 180, 20, 1);
}

.news .news-featured .featured-card .featured-title {
  color: #000;
  line-height: 1.46;
  transition: all .3s ease;
  margin-top: .16rem;

  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news .news-featured .featured-card:hover .featured-title {
  color: rgba(150, 180, 20, 1);
}

.news .news-featured .featured-card .featured-desc {
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
  margin-top: .3rem;

  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news .news-featured .featured-card .p_btn {
  margin-top: .6rem;
  align-self: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.news .news-featured .featured-card .p_btn:hover {
  border-color: rgba(150, 180, 20, 1);
}



.news .news-list {
  padding: 0 1.2rem;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
}

.news .news-list .news-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: .95rem;
  border-radius: .2rem;
  padding: .15rem;
  transition: all .3s ease;
  position: relative;
}

.news .news-list .news-row:hover {}

.news .news-list .news-row:last-child {
  margin-bottom: 0;
}

.news .news-list .news-row .row-date {
  flex-shrink: 0;
  line-height: 1;
  margin-right: .88rem;
}

.news .news-list .news-row .row-date .date-day {
  color: #000;
  line-height: 1;
}

.news .news-list .news-row .row-date .date-space {
  width: .14rem;
  flex-shrink: 0;
}

.news .news-list .news-row .row-date .date-sep {
  color: rgba(102, 102, 102, 1);
  line-height: 1;
}

.news .news-list .news-row .row-date .date-month {
  color: rgba(102, 102, 102, 1);
  line-height: 1;
}

.news .news-list .news-row .row-img {
  width: 5.04rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: .2rem;
  overflow: hidden;
  margin-right: 1.1rem;
  position: relative;
  z-index: 1;
}

.news .news-list .news-row .row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}

.news .news-list .news-row:hover .row-img img {
  transform: scale(1.05);
}

.news .news-list .news-row .row-text {
  width: 11.16rem;
  border-radius: .2rem;
  padding: .7rem 1.19rem .7rem 2.27rem;
  height: 100%;
  min-width: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
  transition: all .5s ease;

}

.news .news-list .news-row:hover .row-text {
  background: #fff;
  box-shadow: 0 .2824rem .4583rem -.1rem rgba(56, 101, 62, 0.1);

}

.news .news-list .news-row .row-text .row-title {
  color: #000;
  line-height: 1.46;
  transition: all .3s ease;

  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news .news-list .news-row:hover .row-text .row-title {
  color: rgba(150, 180, 20, 1);
}

.news .news-list .news-row .row-text .row-desc {
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
  margin-top: .1rem;

  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.news .exhibition-grid {
  display: none;
  flex-wrap: wrap;
  gap: .95rem .3rem;
  padding: 0 1.2rem;
  margin-top: 1.6rem;
}

.news .exhibition-grid .exhibition-card {
  width: calc((100% - .6rem) / 3);
  height: 5.05rem;
  /* background: #fff; */
  /*border-radius: .2rem;*/
  overflow: hidden;
  padding: 0;
  transition: all .3s ease;
  position: relative;
}

.news .exhibition-grid .exhibition-card .card-img {
  width: 100%;
  height: 3.56rem;
  overflow: hidden;
  border-radius: .2rem;
}

.news .exhibition-grid .exhibition-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}

.news .exhibition-grid .exhibition-card:hover .card-img img {
  transform: scale(1.05);
}

.news .exhibition-grid .exhibition-card .card-date-row {
  display: flex;
  align-items: center;
  margin-top: .34rem;
  padding: 0;
}

.news .exhibition-grid .exhibition-card .card-date {
  color: rgba(128, 130, 133, 1);
  line-height: 1.25;
  margin-right: .2rem;
}

.news .exhibition-grid .exhibition-card .card-location-icon {
  width: .18rem;
  height: .18rem;
  flex-shrink: 0;
}

.news .exhibition-grid .exhibition-card .card-location {
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
}

.news .exhibition-grid .exhibition-card .card-title {
  color: #000;
  line-height: 1.46;
  margin-top: .25rem;
  transition: all .3s ease;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*.news .exhibition-grid .exhibition-card:nth-child(1) .card-title {*/
/*  color: rgba(150, 180, 20, 1);*/
/*}*/

.news .exhibition-grid .exhibition-card:hover .card-title {
  color: rgba(150, 180, 20, 1);
}

.news .news-featured .featured-card .featured-date-row {
  display: flex;
  align-items: center;
  gap: .06rem;
}

.news .news-featured .featured-card .featured-date-row .exhibition-tag {
  display: none;
  align-items: center;
  gap: .06rem;
}

.news .news-featured .featured-card .featured-date-row .exhibition-tag .location-icon {
  width: .18rem;
  height: .18rem;
  flex-shrink: 0;
}

.news .news-featured .featured-card .featured-date-row .exhibition-tag .location-text {
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
}

.news .news-pagination {
  padding: .6rem 1.2rem 0 1.2rem;
}

.news-detail {
  position: relative;
  background: rgba(242, 245, 245, 1);
  padding-top: .8rem;
  padding-bottom: 1.2rem;
}

.news-detail .crumb {
  padding: .5rem 1.2rem 0 1.2rem;
}

.news-detail .detail-title {
  padding: 0 1.2rem;
  margin-top: 1.0rem;
  line-height: 1.28;
}

.news-detail .detail-date {
  display: block;
  padding: 0 1.2rem;
  margin-top: .3rem;
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
}

.news-detail .detail-divider {
  margin: .62rem 1.2rem 0 1.2rem;
  height: 0;
  border-top: 1px solid rgba(96, 96, 96, 0.1);
}

/* ============================================ */
/*  Three-column body                           */
/* ============================================ */

.news-detail .detail-body {
  display: flex;
  align-items: flex-start;
  padding: 0 1.2rem;
  margin-top: 1.3rem;
}

.news-detail .detail-sidebar {
  width: 3.74rem;
  flex-shrink: 0;
  position: sticky;
  top: 1.5rem;
}

.news-detail .detail-sidebar .sidebar-header {
  display: flex;
  align-items: center;
  gap: .12rem;
}

.news-detail .detail-sidebar .sidebar-bar {
  width: 2px;
  height: .2rem;
  background: rgba(150, 180, 20, 1);
  flex-shrink: 0;
}

.news-detail .detail-sidebar .sidebar-title {
  line-height: 2;
  color: rgba(150, 180, 20, 1);
}

.news-detail .detail-sidebar .sidebar-item {
  display: block;
  color: #000;
  line-height: 1.42;
  transition: all .3s ease;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-detail .detail-sidebar .sidebar-item:nth-child(2) {
  margin-top: .2rem;
}

.news-detail .detail-sidebar .sidebar-item:nth-child(3) {
  margin-top: .34rem;
}

.news-detail .detail-sidebar .sidebar-item:nth-child(4) {
  margin-top: .34rem;
}

.news-detail .detail-sidebar .sidebar-item:hover {
  color: rgba(150, 180, 20, 1);
}

/* ---- 中栏: 正文 ---- */
.news-detail .detail-content {
  width: 9.22rem;
  flex-shrink: 0;
  margin-left: 1.49rem;
}



/* 正文容器 — 富文本默认样式 */
.news-detail .detail-content {
  font-size: .2rem;
  color: #333;
  line-height: 1.5;
  font-family: 'Hind-Light';
  font-weight: normal;
}

.news-detail .detail-content p strong {
    /*font-weight: 600;*/
}

.news-detail .detail-content p+.content-img {
  margin-top: .4rem;
}

.news-detail .detail-content .content-img+p {
  margin-top: .4rem;
}

.news-detail .detail-content .content-img {
  width: 100%;
  height: 5.06rem;
  border-radius: .2rem;
  overflow: hidden;
  background: #ACACAC;
}

.news-detail .detail-content .content-img img {
  width: 100%;
}


.news-detail .detail-content .content-meta {
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
  margin-top: .4rem;
  font-family: 'Montserrat-Light';
  font-weight: 300;
}

.news-detail .detail-content .content-meta .meta-row {
  display: flex;
  align-items: baseline;
  gap: .06rem;
}

.news-detail .detail-content .content-meta .meta-label {
  color: #000;
  font-family: 'Montserrat-Medium';
  font-weight: 500;
}

/* ---- 右栏: 分享 ---- */
.news-detail .detail-share {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: sticky;
  top: 1.5rem;
}

.news-detail .detail-share .share-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-detail .detail-share .share-label {
  color: rgba(51, 51, 51, 1);
  line-height: 1.3;
  text-transform: uppercase;
}

.news-detail .detail-share .share-icon {
  display: block;
}

.news-detail .detail-share .share-icon .icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.news-detail .detail-share .share-icon .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .3s ease;
}

.news-detail .detail-share .share-icon .icon .active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.news-detail .detail-share .share-icon:hover .icon .normal {
  opacity: 0;
}

.news-detail .detail-share .share-icon:hover .icon .active {
  opacity: 1;
}

.news-detail .detail-share .icon-1 {
  width: .28rem;
  height: .28rem;
  margin-top: .2rem;
}

.news-detail .detail-share .icon-3 {
  width: .2rem;
  height: .2rem;
  margin-top: .2rem;
}

.news-detail .detail-share .icon-2 {
  width: .26rem;
  height: .26rem;
  margin-top: .2rem;
}

.news-detail .detail-share .share-line {
  width: .97rem;
  height: 0;
  border-top: 1px solid rgba(96, 96, 96, 0.1);
  margin-top: .2rem;
}

.news-detail .detail-share .share-back {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin-top: .4rem;
}

.news-detail .detail-share .share-back .back-text {
  color: rgba(51, 51, 51, 1);
  line-height: 1.3;
  transition: all .3s ease;
}

.news-detail .detail-share .share-back:hover .back-text {
  color: rgba(150, 180, 20, 1);
}

.news-detail .detail-share .share-back {
  position: relative;
}

.news-detail .detail-share .share-back .icon {
  position: relative;
  width: .14rem;
  height: .14rem;
  flex-shrink: 0;
}

.news-detail .detail-share .share-back .icon img {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}

.news-detail .detail-share .share-back .icon .active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.news-detail .detail-share .share-back:hover .icon .normal {
  opacity: 0;
}

.news-detail .detail-share .share-back:hover .icon .active {
  opacity: 1;
}

.product {
  position: relative;
  padding: .52rem 1.2rem 1.8rem 1.2rem;
}

.product .content {
  display: flex;
  gap: 1.28rem;
  margin: 1.09rem 0 0 0;
}

.product .content .left {
  width: 3.46rem;
  position: relative;
  flex-shrink: 0;
  position: sticky;
  top: 1.5rem;
  height: fit-content;
}

.product .content .left .list {
  display: flex;
  flex-direction: column;
  gap: .24rem;
}


.product .content .left .list .li {
  width: 100%;
  padding-bottom: .24rem;
  border-bottom: 1px solid rgba(226, 226, 226, 1);
}

.product .content .left .list.case .li {
  transition: all .3s ease-in-out;
}

.product .content .left .list.case .li.on {
  color: rgba(150, 180, 20, 1);
}

.product .content .left .list .li .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: .2rem;
  line-height: 1.3;
}

.product .content .left .list .li .label .icon {
  width: .16rem;
  height: .16rem;
  flex-shrink: 0;
  position: relative;
}

.product .content .left .list .li .label .icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.product .content .left .list .li .label .icon img.normal,
.product .content .left .list .li.on .label .icon img.active {
  opacity: 1;
}

.product .content .left .list .li.on .label .icon img.normal,
.product .content .left .list .li .label .icon img.active {
  opacity: 0;
}

.product .content .left .list .li .li_1 {
  max-height: 0;
  overflow: hidden;
  transition: all .3s ease-in-out;

}

.product .content .left .list .li.on .li_1 {
  max-height: 10rem;
  overflow: initial;
  margin-top: .3rem;
}

.product .content .left .list .li .li_1 .li_1_label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(102, 102, 102, 1);
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.product .content .left .list .li .li_1.on .li_1_label {
  color: rgba(150, 180, 20, 1);
}

.product .content .left .list .li .li_1 .li_1_content {
  display: flex;
  flex-direction: column;
  gap: .24rem;
  transition: all .3s ease-in-out;

  max-height: 0;
  overflow: auto;
}

.product .content .left .list .li.on .li_1.on .li_1_content {
  max-height: 10rem;
  overflow: initial;
  margin-top: .3rem;
}

.product .content .left .list .li_1_item {
  padding: 0 0 0 .24rem;
  position: relative;
  cursor: pointer;
}

.product .content .left .list .li_1_item.on {
  color: rgba(150, 180, 20, 1);
  transition: all .3s ease-in-out;
}

.product .content .left .list .li_1_item.on::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(150, 180, 20, 1);
  transition: all .3s ease-in-out;
}

.product .content .right {
  flex: 1;
  position: relative;
}

.product .content .right .box {
  position: relative;
  margin-bottom: .8rem;
  scroll-margin-top: 1.5rem;
}

.product .content .right .box .list {
  display: flex;
  flex-wrap: wrap;
  gap: .24rem;
  margin: .2rem 0 0 0;
}

.product .content .right .box .list .li {
  width: calc((100% - .48rem) / 3);
  padding: .12rem .47rem .4rem .47rem;
  background: linear-gradient(180deg, #F8F8F8 0%, #FCFCFC 105.4%);
  border-radius: .2rem;
  cursor: pointer;
}

.product .content .right .box .list .li .img_box {
  width: 2.9rem;
  height: 2.9rem;
  position: relative;
  margin: 0 auto;
}

.product .content .right .box .list .li .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .3s ease-in-out;
}

.product .content .right .box .list .li:hover .img_box img {
  transform: scale(1.05);
}



.product .content .right .box .list .li .title {
  color: #000;
  line-height: 1.33;
  text-align: center;
  margin-top: .2rem;
}

.product .content .case_box {
  position: relative;
  display: none;
  flex: 1;
}


.product .content .case_box .box {
  position: relative;
  margin-bottom: .8rem;
  scroll-margin-top: 1.5rem;
}

.product .content .case_box .box .list {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem .4rem;
  margin: .2rem 0 0 0;
}

.product .content .case_box .box .list .li {
  width: calc((100% - .4rem) / 2);
  position: relative;
  cursor: pointer;
}

.product .content .case_box .box .list .li .img_box {
  width: 5.83rem;
  height: 3.96rem;
  position: relative;
  overflow: hidden;
  border-radius: .2rem;
}

.product .content .case_box .box .list .li .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.product .content .case_box .box .list .li:hover .img_box img {
  transform: scale(1.05);
}

.product .content .case_box .box .list .li .title {
  color: #000;
  line-height: 1.5;
  margin-top: .3rem;

  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product .content .case_box .box .list .li .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .27rem;
  margin-top: .15rem;
}

.product .content .case_box .box .list .li .btns .tag {
  line-height: 1.28;
  color: #000;
}

.product .content .case_box .box .list .li .btns .btn {
  width: .46rem;
  height: .46rem;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .content .case_box .box .list .li .btns .btn img {
  width: .2rem;
}



.product-detail {
  position: relative;
  background: #fff;
  padding: .8rem 0 0 0;
}

.product-detail .pd-hero {
  position: relative;
  height: 9.4rem;
  overflow: hidden;
  display: flex;
  background: #fff;
}

.product-detail .pd-hero .left {
  width: 9.6rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  background: rgba(245, 245, 245, 1);
  padding: .52rem .6rem .52rem 1.2rem;
}

.product-detail .pd-hero .right {
  flex: 1;
  height: 100%;
}

.product-detail .pd-hero .left .label {
  color: rgba(150, 180, 20, 1);
  line-height: 1.38;
  margin: .88rem 0 0 0;
}

.product-detail .pd-hero .left .name {
  margin: .26rem 0 0 0;
  line-height: 1.14;
  width: 5.38rem;
  color: #000;
}

.product-detail .pd-hero .left .desc {
  width: 5.38rem;
  margin: .6rem 0 0 0;
  line-height: 1.75;
  color: rgba(102, 102, 102, 1);
}

.product-detail .pd-hero .left .btn {
  margin: .7rem 0 0 0;
}

.product-detail .pd-hero .right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-detail .pd-hero .right .img_box {
  width: 5.2rem;
  height: 7.04rem;
  overflow: hidden;
}

.product-detail .pd-hero .right .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}








.product-detail .pd-advantages {
  position: relative;
  margin: .33rem 0 0 0;
  padding: 1.5rem 1.2rem 2.44rem 1.2rem;
  background: #F8FAFB;
  overflow: hidden;
}

.product-detail .pd-advantages .section-title {
  line-height: 1.28;
  color: #000;
  text-align: center;
}

.product-detail .pd-advantages .advantages-grid {
  display: flex;
  justify-content: center;
  gap: 0 7.48rem;
  padding: 0 1.2rem;
  margin-top: 1.3rem;
  position: relative;
}

.product-detail .pd-advantages .advantages-grid .img_box {
  position: absolute;
  width: 5.95rem;
  height: 8.06rem;
  left: 50%;
  transform: translateX(-50%);
  top: -1.3rem;
}

.product-detail .pd-advantages .advantages-grid .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail .pd-advantages .adv-col {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.product-detail .pd-advantages .advantage-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-detail .pd-advantages .adv-col:nth-child(2) .advantage-item {
  align-items: flex-start;
  text-align: left;
}

.product-detail .pd-advantages .adv-col:nth-child(1) .advantage-item {

  align-items: flex-end;
  text-align: right;
}

.product-detail .pd-advantages .advantage-item .adv-num {
  line-height: .9;
  color: #E6E8E9;
}

.product-detail .pd-advantages .advantage-item .adv-text {
  line-height: 1.38;
  margin-top: .16rem;
  max-width: 3.3rem;
  transition: all .3s ease-in-out;
}

.product-detail .pd-advantages .advantage-item.right-aligned .adv-text {
  color: #000;
}

.product-detail .pd-advantages .advantage-item.on .adv-text {
  color: rgba(150, 180, 20, 1);
}

.product-detail .pd-specs {
  padding: 1.2rem 1.2rem .94rem 1.2rem;
  background: #fff;
}

.product-detail .pd-specs .section-title {
  text-align: center;
  color: #000;
}

.product-detail .pd-specs .specs-content {
  display: flex;
  justify-content: center;
  margin: .33rem 0 0 0;
  gap: 1.96rem;
}

.product-detail .pd-specs .specs-content .img_box {
  width: 5.2rem;
  height: 7.04rem;
  overflow: hidden;
  position: relative;
}

.product-detail .pd-specs .specs-content .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.product-detail .pd-specs .specs-content .img_box img.on {
  opacity: 1;
}

.product-detail .pd-specs .specs-content .info {
  padding-top: .97rem;
  width: 5.95rem;
  position: relative;
}

.product-detail .pd-specs .specs-content .info .swiper_1 {
  width: 100%;
  overflow: hidden;
  margin-top: .4rem;
}

.product-detail .pd-specs .specs-content .info .name {
  color: #000;
  line-height: 1.25;
  letter-spacing: -0.16px;
}

.product-detail .pd-specs .specs-content .info .box {
  /*max-height: 5.38rem;*/
  /*overflow-y: auto;*/
  /* padding-right: 1rem; */
}

.product-detail .pd-specs .specs-content .info .box .label {
  color: #000;
  line-height: 1.5;
  margin-top: .24rem;
}

.product-detail .pd-specs .specs-content .info .box .table {
  width: 100%;
  margin-top: .24rem;
  max-height: 3.8rem;
  overflow-y: auto;
}

.product-detail .pd-specs .specs-content .info .box .table table {
  width: 100%;
  border-collapse: collapse;
}

.product-detail .pd-specs .specs-content .info .box .table table tr td {
  padding: .08rem .2rem;
  line-height: 1.77;
}

.product-detail .pd-specs .specs-content .info .box .table table tr td:first-child {
  color: rgba(0, 0, 0, .5);
}

.product-detail .pd-specs .specs-content .info .box .btn .p_btn {
  border: 1px solid rgba(0, 0, 0, 0.10);
  margin: .5rem 0 0 0;
}

.product-detail .pd-specs .specs-content .info .box_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: .44rem;
  height: .44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(150, 180, 20, 1);
  border-radius: 50%;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.product-detail .pd-specs .specs-content .info .box_btn:hover {
  background: #96B414;
}

.product-detail .pd-specs .specs-content .info .box_btn.prev {
  left: -1.2rem;
}

.product-detail .pd-specs .specs-content .info .box_btn.next {
  right: -.6rem;
}

.product-detail .pd-specs .specs-content .info .box_btn img {
  width: .13rem;
  height: auto;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out;
}

.product-detail .pd-specs .specs-content .info .box_btn img.normal,
.product-detail .pd-specs .specs-content .info .box_btn:hover img.active {
  opacity: 1;
}

.product-detail .pd-specs .specs-content .info .box_btn:hover img.normal,
.product-detail .pd-specs .specs-content .info .box_btn img.active {
  opacity: 0;
}

.product-detail .pd-downloads {
  position: relative;
  padding: .95rem 1.2rem 1.6rem 1.2rem;
  background: #fff;
  text-align: center;
}

.product-detail .pd-downloads .section-title {
  color: #000;
  line-height: 1.28;
  text-align: center;
}

.product-detail .pd-downloads .downloads-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 0 .78rem;
  max-width: 16.8rem;
  margin: .8rem auto 0 auto;
}

.product-detail .pd-downloads .download-item {
  width: calc((100% - .4rem) / 2);
  height: 1.14rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: 0 .35rem;
  background: #F8FAFB;
  border-radius: .12rem;
  transition: all .3s ease;
}

.product-detail .pd-downloads .download-item:hover {
  box-shadow: 0 .05rem .15rem rgba(56, 101, 62, 0.08);
}

.product-detail .pd-downloads .download-item .dl-icon {
  width: .44rem;
  height: .44rem;
  flex-shrink: 0;
}

.product-detail .pd-downloads .download-item .dl-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail .pd-downloads .download-item .dl-name {
  flex: 1;
  color: #000;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: left;
}

.product-detail .pd-downloads .download-item .dl-arrow {
  
  flex-shrink: 0;
  
  display: flex;
  gap: .2rem;
  align-items: center;
}

.product-detail .pd-downloads .download-item .dl-arrow img {
  width: .38rem;
  height: .28rem;
  flex-shrink: 0;
}

.product-detail .pd-downloads .p_btn {
  margin-top: .8rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.product-detail .pd-downloads .p_btn:hover {
  background: rgba(150, 180, 20, 1);
  border-color: rgba(150, 180, 20, 1);
}

.product-detail .pd-cta {
  position: relative;
  height: 3.38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail .pd-cta .cta-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.product-detail .pd-cta .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail .pd-cta .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.product-detail .pd-cta .cta-content .cta-title {
  color: #fff;
  line-height: 1.5;
  text-align: center;
  max-width: 5.94rem;
  margin: 0 auto;
}

.product-detail .pd-cta .cta-content .cta-btns {
  display: flex;
  justify-content: center;
  gap: .3rem;
  margin-top: .4rem;
}

.product-detail .pd-cta .cta-content .cta-btns .p_btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.product-detail .pd-cta .cta-content .cta-btns .p_btn:hover {
  background: rgba(150, 180, 20, 1);
  border-color: rgba(150, 180, 20, 1);
}







/* ============================================ */
/*  Product Detail 2 (Figma 2129:5798, 1920×6144)*/
/* ============================================ */

.pd2 {
  position: relative;
  background: #fff;
}

/* ---- Hero (y:0-980, 1920×902) ---- */
.pd2 .pd2-hero {
  position: relative;
  height: 9.8rem;
  overflow: hidden;
  display: flex;
  /* align-items: center; */
  padding-top: 3.2rem;
}

.pd2 .pd2-hero .crumb {
  position: absolute;
  left: 1.2rem;
  top: 1.3rem;
  z-index: 1;
}

.pd2 .pd2-hero .hero-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
}

.pd2 .pd2-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd2 .pd2-hero .hero-bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6.63rem;
  /*background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);*/
}

.pd2 .pd2-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.2rem;
  max-width: 10.21rem;
}

.pd2 .pd2-hero .hero-content .hero-title {
  color: #000;
  line-height: 1.28;
}

.pd2 .pd2-hero .hero-content .hero-desc {
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
  margin-top: .32rem;
}

.pd2 .pd2-hero .hero-content .p_btn {
  margin-top: .88rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.pd2 .pd2-hero .hero-content .p_btn:hover {
  background: rgba(150, 180, 20, 1);
  border-color: rgba(150, 180, 20, 1);
}

.pd2 .pd2-features {
  padding: 1.5rem 0 .95rem 0;
  position: relative;
}

.pd2 .pd2-features .section-title {
  text-align: center;
  line-height: 1.28;
}



.pd2 .pd2-features .features-grid {
  display: flex;
  /* padding: 0 3.2rem; */
  justify-content: center;
  position: relative;
  margin: auto 1.2rem;
  margin-top: .87rem;
  height: 7.5rem;
}

.pd2 .pd2-features .features-grid .features-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pd2 .pd2-features .features-grid .features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd2 .pd2-features .features-grid .features-phones {
  position: absolute;
  left: 1.38rem;
  top: 1.47rem;
  width: 2.49rem;
  height: 5.16rem;
  z-index: 1;
}

.pd2 .pd2-features .features-grid .features-phones img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.pd2 .pd2-features .features-grid .features-phones img.on {
  opacity: 1;
}

.m-features-grid-label {
  display: none;
}

.pd2 .pd2-features .feature-card {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;

  padding: 0 .6rem;
  padding-bottom: .62rem;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

.pd2 .pd2-features .feature-card .card-label {
  color: #fff;
  line-height: 1.5;
  width: 100%;
}

.pd2 .pd2-features .feature-card .card-p {
  color: #fff;
  line-height: 1.5;
  width: 4.8rem;

  max-height: 0;
  overflow: hidden;
  transition: all .3s ease-in-out;

  transform: translateY(50%);
  opacity: 0;
}

.pd2 .pd2-features .feature-card.on .card-p {
  max-height: 10rem;
  overflow: initial;
  opacity: 1;
  margin-top: .2rem;
  transform: translateY(0);

}

.pd2 .pd2-features .feature-card.on {
  background: rgba(0, 0, 0, .2);
  flex: 1.2;
}

/* ---- AI Energy Optimization (y:2151+) ---- */
.pd2 .pd2-ai {
  padding: .95rem 2.1rem 1.79rem 2.1rem;
  background: #fff;
}

.pd2 .pd2-ai .section-title {
  text-align: center;
  line-height: 1.28;
  color: #000;
}

.pd2 .pd2-ai .ai-grid {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin: .95rem 0 0 0;
}

.pd2 .pd2-ai .ai-item {
  display: flex;
  gap: .885rem;
  align-items: center;
  cursor: pointer;
}

.pd2 .pd2-ai .ai-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.pd2 .pd2-ai .ai-item .ai-img {
  width: 7.68rem;
  height: 4.32rem;
  border-radius: .2rem;
  overflow: hidden;
  flex-shrink: 0;
}

.pd2 .pd2-ai .ai-item .ai-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.pd2 .pd2-ai .ai-item:hover .ai-img img {
  transform: scale(1.05);
}

.pd2 .pd2-ai .ai-item .ai-info {
  flex: 1;
}

.pd2 .pd2-ai .ai-item .ai-info .ai-tag {
  color: #96B414;
  letter-spacing: -0.18px;
  line-height: 1.38;
}

.pd2 .pd2-ai .ai-item .ai-info .ai-title {
  line-height: 1.28;
  color: #000;
  margin-top: .24rem;
  transition: all .3s ease-in-out;
}

.pd2 .pd2-ai .ai-item:hover .ai-title {
  color: #96B414;
}



.pd2 .pd2-ai .ai-item .ai-info .ai-desc {
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
  margin-top: .24rem;
}

.pd2 .pd2-cloud {
  position: relative;
  padding: 1.3rem 1.2rem;
  overflow: hidden;
  height: 10.8rem;
}

.pd2 .pd2-cloud .cloud-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  z-index: 0;
}

.pd2 .pd2-cloud .cloud-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.pd2 .pd2-cloud .cloud-title {
  line-height: 1.28;
  color: #fff;
  position: relative;
  z-index: 1;
  width: 6.43rem;
}

.pd2 .pd2-cloud .cloud-content {
  position: relative;
  z-index: 1;
  border-radius: .3rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(.15rem);
  padding: .6rem 0;

  width: 7.56rem;
  margin-top: .8rem;
}

.pd2 .pd2-cloud .cloud-content .cloud-content-box {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 0 .6rem;

  height: 5.36rem;
  overflow-y: auto;
}

.pd2 .pd2-cloud .cloud-content .cloud-item {
  display: flex;
  transition: all .3s ease-in-out;
  gap: .16rem;
}

.pd2 .pd2-cloud .cloud-content .cloud-item:hover {
  transform: translateX(-.2rem);
}

.pd2 .pd2-cloud .cloud-content .cloud-item .icon {
  width: .36rem;
  height: .36rem;
}

.pd2 .pd2-cloud .cloud-content .cloud-item .icon img {
  width: 100%;
  height: 100%;
}

.pd2 .pd2-cloud .cloud-content .cloud-item .name {
  line-height: 1.38;
  color: #fff;
  padding-bottom: .3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex: 1;
}


/* ---- CTA (y:5046-5384) ---- */
.pd2 .pd2-cta {
  position: relative;
  height: 3.38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd2 .pd2-cta .cta-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pd2 .pd2-cta .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd2 .pd2-cta .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pd2 .pd2-cta .cta-content .cta-title {
  color: #fff;
  line-height: 1.5;
  text-align: center;
  max-width: 5.94rem;
  margin: 0 auto;
}

.pd2 .pd2-cta .cta-content .cta-btns {
  display: flex;
  justify-content: center;
  gap: .3rem;
  margin-top: .4rem;
}

.pd2 .pd2-cta .cta-content .cta-btns .p_btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.pd2 .pd2-cta .cta-content .cta-btns .p_btn:hover {
  background: rgba(150, 180, 20, 1);
  border-color: rgba(150, 180, 20, 1);
}

.about {
  position: relative;
}

.about .sec_1 {
  position: relative;
  padding: .52rem 1.2rem .7rem 1.2rem;
}

.about .sec_1 .content {
  width: 12.63rem;
  margin: 0 auto;
}

.about .sec_1 .content .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
  margin-top: .68rem;
}

.about .sec_1 .content .sub_title {
  line-height: 1.63;
  color: #000;
  margin-top: .8rem;
  text-align: center;
}

.about .sec_1 .content .desc {
  line-height: 1.5;
  color: rgba(102, 102, 102, 1);
  margin-top: .24rem;
  text-align: center;
}

.about .sec_1 .boxs {
  width: 13.5rem;
  margin: .6rem auto 0 auto;
  display: flex;
  gap: 1.7rem;
  justify-content: center;
}

.about .sec_1 .boxs .box {
  width: calc((100% - 5.1rem) / 4);
}

.about .sec_1 .boxs .box .nums {
  color: #000;
}

.about .sec_1 .boxs .box .nums strong {
  color: rgba(150, 180, 20, 1);
  line-height: 1.22;
  margin-right: .08rem;
}

.about .sec_1 .boxs .box .name {
  color: rgba(102, 102, 102, 1);
  line-height: 1.37;
  margin-top: .06rem;
}

.about .sec_1 .img_box {
  width: 16.8rem;
  height: 8rem;
  margin: .8rem auto 0 auto;
  overflow: hidden;
  border-radius: .2rem;
}

.about .sec_1 .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .sec_2 {
  position: relative;
  padding: .7rem 1.2rem .75rem 1.2rem;
}

.about .sec_2 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
}

.about .sec_2 .content {
  width: 100%;
  margin-top: .8rem;
}

.about .sec_2 .content .swiper_1 {
  width: 100%;
  overflow: hidden;
}

.about .sec_2 .content .item {
  width: 100%;
  cursor: pointer;
}

.about .sec_2 .content .item .img_box {
  width: 100%;
  height: 3.43rem;
  overflow: hidden;
  border-radius: .14rem;
}

.about .sec_2 .content .item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.about .sec_2 .content .item:hover .img_box img {
  transform: scale(1.05);
}

.about .sec_2 .content .item .name {
  line-height: 1.5;
  color: #000;
  margin-top: .28rem;
  text-align: start;

  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.about .sec_2 .content .item:hover .name {
  color: rgba(150, 180, 20, 1);
}

.about .sec_2 .content .item .desc {
  line-height: 1.5;
  margin-top: .14rem;
  color: rgba(0, 0, 0, .8);
  text-align: start;
}

.about .sec_3 {
  position: relative;
  padding: .75rem 0 0 0;
}

.about .sec_3 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
}

.about .sec_3 .content {
  width: 100%;
}

.about .sec_3 .content .swiper_2 {
  width: 100%;
  overflow: hidden;
  padding: .8rem 0 1.6rem 0;
}

.about .sec_3 .content .swiper_2 .swiper-slide {
  height: auto;
}

.about .sec_3 .content .item {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: .2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 .16rem .8rem rgba(0, 0, 0, 0.10);
  position: relative;
}

.about .sec_3 .content .item .btn {
  position: absolute;
  bottom: .4rem;
}

.about .sec_3 .content .item .img_box {
  width: 100%;
  height: 5rem;
  overflow: hidden;
}

.about .sec_3 .content .item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.about .sec_3 .content .item:hover .img_box img {
  transform: scale(1.05);
}

.about .sec_3 .content .item .info {
  padding: .4rem .4rem 1.5rem .4rem;
}

.about .sec_3 .content .item .name {
  line-height: 1.5;
  color: #000;
  text-align: start;

  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.about .sec_3 .content .item:hover .name {
  color: rgba(150, 180, 20, 1);
}

.about .sec_3 .content .item .desc {
  line-height: 1.5;
  margin-top: .16rem;
  color: rgba(0, 0, 0, 1);
  text-align: start;
  min-height: 1.5rem;
  /* margin-bottom: 1rem; */

  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.about .sec_3 .content .item .btn .p_btn {
  margin-top: .24rem;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.about .sec_4 {
  position: relative;
  padding: 1.2rem 0 1.4rem 0;
  background: rgba(248, 250, 251, 1);
}

.about .sec_4 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
}

.about .sec_4 .content {
  margin-top: 1.13rem;
  width: 100%;
}

.about .sec_4 .content .swiper_3 {
  width: 100%;
  overflow: hidden;
  padding-left: 1.2rem;
}


.about .sec_4 .content .time {
  line-height: 1.21;
  color: rgba(0, 0, 0, .3);
  position: relative;
  padding-bottom: .26rem;
  transition: all .3s ease-in-out;
  height: 1.3rem;
  display: flex;
  cursor: pointer;
  align-items: end;
}

.about .sec_4 .content .time.on {
  color: rgba(150, 180, 20, 1);
  font-size: .96rem;
}

.about .sec_4 .content .time::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(198, 198, 198, .6);
}

.about .sec_4 .content .time::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: .75rem;
  width: 1px;
  height: .12rem;
  background: rgba(198, 198, 198, .6);
  transition: all .3s ease-in-out;
}

.about .sec_4 .content .time.on::before {
  height: .22rem;
  background: rgba(150, 180, 20, 1);
}

.about .sec_4 .content .boxs {
  margin: 1rem 1.2rem 0 1.2rem;
  position: relative;
  min-height: 4rem;
  overflow: hidden;
}

.about .sec_4 .content .boxs .box {
  display: flex;
  margin-right: .9rem;
  min-height: .4rem;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.about .sec_4 .content .boxs .box.on {
  opacity: 1;
  pointer-events: auto;
}

.about .sec_4 .content .boxs .box .img_box {
  width: 5.9rem;
  height: 4rem;
  border-radius: .2rem;
  overflow: hidden;
}

.about .sec_4 .content .boxs .box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .sec_4 .content .boxs .box .info {
  padding: .4rem .4rem .4rem;
  min-height: 4rem;
}

.about .sec_4 .content .boxs .box .info .name {
  line-height: 1.28;
  color: #000;
  text-align: start;

  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.about .sec_4 .content .boxs .box .info .desc {
  line-height: 1.5;
  margin-top: .3rem;
  color: rgba(102, 102, 102, 1);
  text-align: start;

  max-height: 1.8rem;
  overflow-y: auto;

}

.about .sec_4 .content .btns {
  display: flex;
  position: absolute;
  align-items: center;
  bottom: .4rem;
  left: 6rem;
  gap: .2rem;
}

.about .sec_4 .content .btns .btn {
  border: 1px solid rgba(150, 180, 20, 1);
  border-radius: 50%;
  width: .44rem;
  height: .44rem;
  cursor: pointer;
  transition: all .3s ease-in-out;
  position: relative;
}

.about .sec_4 .content .btns .btn:hover {
  background: rgba(150, 180, 20, 1);
}

.about .sec_4 .content .btns .btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .18rem;

  opacity: 0;
  transition: all .3s ease-in-out;
}

.about .sec_4 .content .btns .btn .normal,
.about .sec_4 .content .btns .btn:hover .active {
  opacity: 1;
}

.about .sec_4 .content .btns .btn:hover .normal,
.about .sec_4 .content .btns .btn .active {
  opacity: 0;
}

.about .sec_5 {
  position: relative;
  padding: 1.3rem 1.2rem 1.2rem 1.2rem;
}

.about .sec_5 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
}

.about .sec_5 .m_btns {
    display: none;
}

.about .sec_5 .map {
  height: 5.92rem;
  width: 14.88rem;
  margin: .9rem auto 0 auto;
  position: relative;
}

.about .sec_5 .map .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .sec_5 .map .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .sec_5 .map .point {
  position: absolute;
  width: .3rem;
  height: .3rem;
}

.about .sec_5 .map .point img {
  width: 100%;
  height: 100%;
}

.about .sec_5 .map .point span {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
}

.about .sec_5 .map .point3 {
  position: absolute;
  width: 1.74rem;
  height: 1.74rem;
  z-index: 1;
}

.about .sec_5 .map .point3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .sec_5 .map .point3 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.about .sec_5 .map .point1 .label-bottom {
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            bottom: auto;
            right: auto;
        }
        .about .sec_5 .map .point1 .label-top {
            top: auto;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            right: auto;
        }
        .about .sec_5 .map .point1 .label-left {
            top: 50%;
            left: auto;
            right: 100%;
            transform: translateY(-50%);
            bottom: auto;
        }
        .about .sec_5 .map .point1 .label-right {
            top: 50%;
            left: 100%;
            transform: translateY(-50%);
            right: auto;
            bottom: auto;
        }
        .about .sec_5 .map .point1 .label-top-left {
            top: auto;
            bottom: 100%;
            left: auto;
            right: 100%;
            transform: none;
        }
        .about .sec_5 .map .point1 .label-top-right {
            top: auto;
            bottom: 100%;
            left: 100%;
            transform: none;
            right: auto;
        }
        .about .sec_5 .map .point1 .label-bottom-left {
            top: 100%;
            left: auto;
            right: 100%;
            transform: none;
            bottom: auto;
        }
        .about .sec_5 .map .point1 .label-bottom-right {
            top: 100%;
            left: 100%;
            transform: none;
            right: auto;
            bottom: auto;
        }

.about .sec_5 .tags {
  display: flex;
  justify-content: end;
  gap: .5rem;
  align-items: center;
}

.about .sec_5 .tags .tag {
  color: #333;
  line-height: 1.5;

  display: flex;
  align-items: center;
}

.about .sec_5 .tags .tag img {
  width: .26rem;
  height: .26rem;
  margin-right: .08rem;
}

.about .sec_6 {
  position: relative;
  padding: 1.4rem 1.2rem 1.8rem 1.2rem;
  background: #ffff;
}

.about .sec_6 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.09rem;
}

.about .sec_6 .bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 119, 146, 0.30) 0%, rgba(0, 119, 146, 0.00) 42.02%);
}

.about .sec_6 .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .sec_6 .content .title {
  line-height: 1.28;
  color: #fff;
  text-align: center;
}

.about .sec_6 .content .desc {
  line-height: 1.5;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  width: 9.8rem;
  margin: 0 auto;
  margin-top: .4rem;
}

.about .sec_6 .content .box {
  width: 100%;
  position: relative;
  border-radius: .2rem;
  box-shadow: 0 .3rem .618rem 0 rgba(0, 146, 223, 0.05);
  background: #fff;
  padding-bottom: .37rem;
  margin: 1.01rem 0 0 0;
}

.about .sec_6 .content .box::before {
  content: '';
  position: absolute;
  top: .71rem;
  left: 0;
  width: .78rem;
  height: 4.23rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 84.62%);
  pointer-events: none;
  z-index: 10;
}

.about .sec_6 .content .box::after {
  content: '';
  position: absolute;
  top: .71rem;
  right: 0;
  width: .78rem;
  height: 4.23rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.00) 0%, #FFF 84.62%);
  pointer-events: none;
  z-index: 10;
}


.about .sec_6 .content .box .swiper_4 {
  width: 100%;
  position: relative;
  padding: .7rem 0 .47rem 0;
  overflow: hidden;
  min-height: 5.59rem;
}

.about .sec_6 .content .box .item {
  width: 100%;

}

.about .sec_6 .content .box .item .img_box {
  width: 1.99rem;
  height: 2.6rem;
  overflow: hidden;
  transition: all .3s ease-in-out;
  margin: 0 auto;
}

.about .sec_6 .content .box .item.on .img_box {
  width: 2.33rem;
  height: 3.05rem;
  box-shadow: 0 .2rem .2rem 0 rgba(12, 52, 105, 0.10);
}

.about .sec_6 .content .box .item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .sec_6 .content .box .item .txt {
  text-align: center;
  line-height: 1.5;
  color: rgba(0, 0, 0, .4);
  transition: all .3s ease-in-out;
  margin: .35rem 0 0 0;
}

.about .sec_6 .content .box .item.on .txt {
  color: #000;
}

.about .sec_6 .content .box .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
}

.about .sec_6 .content .box .btns .btn {
  border: 1px solid rgba(150, 180, 20, 1);
  border-radius: 50%;
  width: .44rem;
  height: .44rem;
  cursor: pointer;
  transition: all .3s ease-in-out;
  position: relative;
}

.about .sec_6 .content .box .btns .btn:hover {
  background: rgba(150, 180, 20, 1);
}

.about .sec_6 .content .box .btns .btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .18rem;

  opacity: 0;
  transition: all .3s ease-in-out;
}

.about .sec_6 .content .box .btns .btn .normal,
.about .sec_6 .content .box .btns .btn:hover .active {
  opacity: 1;
}

.about .sec_6 .content .box .btns .btn:hover .normal,
.about .sec_6 .content .box .btns .btn .active {
  opacity: 0;
}


.service .p_tabs {
    position: sticky;
    top: .8rem;
    z-index: 1;
}

.service .content {
  position: relative;
}

.service .content .crumb {
  margin: .52rem 1.2rem 0 1.2rem;
}

.service .content .sec_1 {
  position: relative;
  margin-top: .68rem;
  padding: 0 1.2rem;
}

.service .content .sec_1 .title {
  line-height: 1.28;
  max-width: 12rem;
  color: #000;
  text-align: center;
  margin: 0 auto;
}

.service .content .sec_1 .sub_title {
  line-height: 1.63;
  color: rgba(0, 0, 0, 1);
  text-align: center;
  max-width: 12rem;
  margin: 0 auto;
  margin-top: .6rem;

}

.service .content .sec_1 .top_desc {

  text-align: center;
  line-height: 1.5;
  color: rgba(102, 102, 102, 1);
  max-width: 12rem;
  margin: 0 auto;
  margin-top: .24rem;
}

.service .content .sec_1 .box {
  margin: .9rem 0 0 0;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.service .content .sec_1 .box .img_box {
  width: 7.6rem;
  height: 5.64rem;
  border-radius: .2rem;
  overflow: hidden;
}

.service .content .sec_1 .box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service .content .sec_1 .box .info {
  flex: 1;
}

.service .content .sec_1 .box .info .name {
  color: #333;
  line-height: 1.33;
}

.service .content .sec_1 .box .info .desc {
  margin: .4rem 0 0 0;
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
}

.service .content .sec_1 .box .info .list_box {
  display: flex;
  flex-wrap: wrap;
  gap: .21rem;
  margin-top: .48rem;
}

.service .content .sec_1 .box .info .list_box .item {
  width: calc((100% - .42rem) / 3);
  display: flex;
  flex-direction: column;
  gap: .12rem;
}

.service .content .sec_1 .box .info .list_box .item img {
  width: .68rem;
  height: .68rem;
}

.service .content .sec_1 .box .info .list_box .item span {
  line-height: 1.5;
  color: #000;
}

.service .content .sec_2 {
  position: relative;
  margin-top: 1.6rem;
  /* height: 11.22rem; */
  padding: 4.2rem 1.2rem 1.8rem 1.2rem;
}

.service .content .sec_2 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.54rem;
  pointer-events: none;
  z-index: 0;
}

.service .content .sec_2 .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service .content .sec_2 .card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: .2rem;
  box-shadow: 0 .4rem .6rem 0 rgba(76, 91, 11, 0.10);
  padding: 1rem;
}

.service .content .sec_2 .card .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
  max-width: 12rem;
  margin: 0 auto;
}

.service .content .sec_2 .card .desc {
  line-height: 1.5;
  color: rgba(102, 102, 102, 1);
  max-width: 12rem;
  margin: 0 auto;
  margin-top: .4rem;
}

.service .content .sec_2 .card .btn {
  display: flex;
  justify-content: center;
  margin-top: .4rem;
}

.service .content .sec_2 .card .btn .p_btn {
  /* background: rgba(150, 180, 20, 1); */
  /* color: #fff; */
  border: 1px solid rgba(0, 0, 0, .1);
}

.service .content .sec_2 .card .btn .p_btn:hover {
  border: 1px solid rgba(150, 180, 20, 1);
}

/* .service .content .sec_2 .card .btn .p_btn .icon {
  background: #fff;
}

.service .content .sec_2 .card .btn .p_btn .icon .normal {
  opacity: 0;
}

.service .content .sec_2 .card .btn .p_btn .icon .active {
  opacity: 1;
} */

.contact {
  position: relative;
}

.contact .sec_1 {
  position: relative;
  padding: .52rem 0 0 0;
}

.contact .sec_1 .crumb {
  padding: 0 1.2rem;
}

.contact .sec_1 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
  padding: 0 1.2rem;
  margin-top: .68rem;
}

.contact .sec_1 .content {
  position: relative;
  height: 10.8rem;
  padding: .94rem 3.41rem 0;
}

.contact .sec_1 .content .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact .sec_1 .content .bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFF 0%, #F0FEFF 100%);
  pointer-events: none;
  z-index: -1;
}

.contact .sec_1 .content .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact .sec_1 .content .boxs {
  display: flex;
  gap: 2.5rem;
}

.contact .sec_1 .content .boxs .box {
  position: relative;
  text-align: center;
  min-width: 2.46rem;
}

.contact .sec_1 .content .boxs .box .icon {
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 50%;
  background: rgba(128, 154, 14, 0.05);

  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.contact .sec_1 .content .boxs .box .icon img {
  width: .48rem;
  height: .48rem;
}

.contact .sec_1 .content .boxs .box .name {
  line-height: 1.46;
  margin-top: .28rem;
  color: #000;
}

.contact .sec_1 .content .boxs .box .desc {
  line-height: 1.5;
  color: rgba(102, 102, 102, 1);
  margin-top: .14rem;
}

.contact .sec_2 {
  position: relative;
  padding: 1.6rem 1.2rem 1.8rem 1.2rem;
  background: rgba(242, 245, 245, 1);
}

.contact .sec_2 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
  padding: 0 1.2rem;
}

.contact .sec_2 .p_form {
  position: relative;
  margin-top: .8rem;
  background: #fff;
  border-radius: .2rem;
  gap: .4rem;
}

.contact .sec_2 .p_form .form_item {
  width: calc((100% - .8rem) / 3);
}

.contact .sec_2 .p_form .form_item.half {
  width: calc((100% - .4rem) / 2);
}

.contact .sec_2 .p_form .form_item.full {
  width: 100%;
}

.contact .sec_2 .p_form input,
.contact .sec_2 .p_form textarea {
  border-radius: .15rem;
}

.contact .sec_2 .p_form input {
  height: .5rem;
}

.contact2 {
  position: relative;
}

.contact2 .sec_1 {
  position: relative;
  padding: .52rem 1.2rem 1.8rem 1.2rem;

}

.contact2 .sec_1 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
  margin-top: .68rem;
}

.contact2 .sec_1 .content {
  position: relative;
  margin: .9rem 0 0 0;

}

.contact2 .sec_1 .content .boxs {
  display: flex;
  gap: .54rem;
  flex-wrap: wrap;
}

.contact2 .sec_1 .content .boxs .box {
  width: calc((100% - 1.08rem) / 3);
  padding: .6rem .5rem;
  background: rgba(249, 249, 250, 1);
  border-radius: .18rem;
  transition: all .3s;
}

.contact2 .sec_1 .content .boxs .box:hover {
    background: #fff;
    box-shadow: 0 28px 64.6px 5px #003b3d0f;
}

.contact2 .sec_1 .content .boxs .box .name {
  line-height: 1.46;
  color: #000;
  padding-bottom: .46rem;
  border-bottom: 1px solid rgba(229, 229, 230, 1);
  height: 1.2rem;
}

.contact2 .sec_1 .content .boxs .box .desc {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .46rem;
}

.contact2 .sec_1 .content .boxs .box .desc .desc_line {
  line-height: 1.25;
  color: rgba(102, 102, 102, 1);

  display: flex;
  align-items: center;
}

.contact2 .sec_1 .content .boxs .box .desc .desc_line span {
  color: rgba(0, 0, 0, .5);
  width: .8rem;
}

.contact2 .sec_1 .content .boxs .box .desc .desc_line p {
  color: rgba(0, 0, 0, 1);
}

.contact2 .contact-pagination {
  position: relative;
  margin-top: .8rem;
}

.joinus {
  position: relative;
}

.joinus .sec_1 {
  position: relative;
  padding: .52rem 1.2rem 1.8rem 1.2rem;
  background: rgba(242, 245, 245, 1);
}

.joinus .sec_1 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
  margin-top: .68rem;
}

.joinus .sec_1 .content {
  position: relative;
  margin-top: .8rem;
}

.joinus .sec_1 .content .p_form {
  display: flex;
  align-items: center;
  gap: .2rem;
  padding: 0;
  z-index: 10;
  position: relative;
}

.joinus .sec_1 .content .p_form .form_item {
  width: 3.2rem;
}

.joinus .sec_1 .content .p_form .form_item input {
  height: .52rem;
  padding: .2rem;
  border-radius: .99rem;
  background: #fff;
}

.joinus .sec_1 .content .p_form .search {
  display: flex;
  align-items: center;
  gap: .2rem;
  padding: .05rem .05rem .05rem .2rem;
  background: #fff;
  border-radius: .99rem;
}

.joinus .sec_1 .content .p_form .search .btn {
  padding: .15rem .48rem;
  border-radius: .99rem;
  background: rgba(150, 180, 20, 1);
  color: #fff;
  cursor: pointer;
  border: none;
}

.joinus .sec_1 .content .p_form .search input {
  background: #fff;
}

.joinus .sec_1 .content .p_form .clean {
  cursor: pointer;
  padding: .2rem .54rem;
  background: #000;
  border-radius: .99rem;
  color: #fff;
}

.joinus .sec_1 .content .list {
  margin: .4rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: .24rem;
}

.joinus .sec_1 .content .list .li {
  padding: .3rem;
  transition: all .3s ease-in-out;
  border-radius: .2rem;
  cursor: pointer;
}

.joinus .sec_1 .content .list .li.on {
  background: #fff;
  box-shadow: 0 .32rem .8rem .12rem rgba(76, 91, 11, 0.10);
  cursor: auto;
}

.joinus .sec_1 .content .list .li .label {
  display: flex;
  align-items: center;
  gap: .2rem;
  justify-content: space-between;
  color: #000;
  line-height: 1.63;
}

.joinus .sec_1 .content .list .li .arrow {
  width: .44rem;
  height: .44rem;
  border-radius: 50%;
  /* transition: all .3s ease-in-out; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.joinus .sec_1 .content .list .li.on .arrow {
  border: 1px solid rgba(150, 180, 20, 1);
}

.joinus .sec_1 .content .list .li .arrow img {
  width: .24rem;
  height: .24rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  /* transition: all .3s ease-in-out; */
}

.joinus .sec_1 .content .list .li .arrow img.normal,
.joinus .sec_1 .content .list .li.on .arrow img.active {
  opacity: 1;
}

.joinus .sec_1 .content .list .li.on .arrow img.normal,
.joinus .sec_1 .content .list .li .arrow img.active {
  opacity: 0;
}

.joinus .sec_1 .content .list .li .box {
  max-height: 0;
  overflow: hidden;
  transition: all .3s ease-in-out;
  border-radius: .2rem;
}

.joinus .sec_1 .content .list .li.on .box {
  max-height: 100vh;

}

.joinus .sec_1 .content .list .li .box .box_info {
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
}

.joinus .sec_1 .content .list .li .box .box_desc {
  margin-top: .24rem;
  color: rgba(102, 102, 102, 1);
  line-height: 1.5;
}

.joinus .sec_1 .content .list .li .box .box_desc .box_label {
  color: rgba(0, 0, 0, 1);
  line-height: 1.55;
  margin-bottom: .1rem;
}

.joinus .sec_1 .content .list .li .box .box_desc.email {
  color: rgba(150, 180, 20, 1);
}

/* ========================================
   faq.html — FAQ 页面
   Figma: 古顶新能源 #1459:3603
   ======================================== */

.faq {
  position: relative;
}

.faq .sec_1 {
  position: relative;
  padding: .52rem 1.2rem 1.8rem 1.2rem;
  background: rgba(242, 245, 245, 1);
}

.faq .sec_1 .crumb {
  padding: 0;
}

.faq .sec_1 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
  margin-top: .68rem;
}

.faq .sec_1 .search-bar {
  display: flex;
  align-items: center;
  max-width: 12rem;
  height: .88rem;
  margin: .54rem auto 0 auto;
  background: #fff;
  border-radius: .99rem;
  padding: .05rem .05rem .05rem .3rem;
}

.faq .sec_1 .search-bar input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #666;
}

.faq .sec_1 .search-bar input::placeholder {
  color: #666;
}

.faq .sec_1 .search-bar .btn {
  height: .78rem;
  padding: 0 .6rem;
  background: rgba(150, 180, 20, 1);
  border: none;
  border-radius: .99rem;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  line-height: .78rem;
  transition: background .3s ease;
}

.faq .sec_1 .search-bar .btn:hover {
  background: rgba(130, 160, 10, 1);
}

.faq .sec_1 .content {
  display: flex;
  gap: 1.28rem;
  margin-top: .8rem;
  align-items: flex-start;
}

.faq .sec_1 .content .sidebar {
  width: 3.46rem;
  flex-shrink: 0;
}

.faq .sec_1 .content .sidebar .cate-item {
  display: block;
  padding: .24rem 0;
  line-height: 1.4;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: color .3s ease;
  letter-spacing: -0.01em;
}

.faq .sec_1 .content .sidebar .cate-item+.cate-item {
  border-top: 1px solid #E2E2E2;
}

.faq .sec_1 .content .sidebar .cate-item:hover,
.faq .sec_1 .content .sidebar .cate-item.on {
  color: rgba(150, 180, 20, 1);
}

.faq .sec_1 .content .sidebar .cate-item span {
  display: block;
}

.faq .sec_1 .content .right {
  flex: 1;
  min-width: 0;
}

.faq .sec_1 .content .right .group+.group {
  margin-top: 1rem;
}

.faq .sec_1 .content .right .group .group-title {
  line-height: 1.46;
  color: #000;
  margin-bottom: .2rem;
}

.faq .sec_1 .content .right .list {
  display: flex;
  flex-direction: column;
  gap: .24rem;
}

.faq .sec_1 .content .right .list .li {
  padding: .3rem .4rem;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.faq .sec_1 .content .right .list .li .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .2rem;
  color: #000;
  line-height: 1.63;
}

.faq .sec_1 .content .right .list .li .arrow {
  width: .44rem;
  height: .44rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.faq .sec_1 .content .right .list .li .arrow img {
  width: .24rem;
  height: .24rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.faq .sec_1 .content .right .list .li .arrow img.normal,
.faq .sec_1 .content .right .list .li.on .arrow img.active {
  opacity: 1;
}

.faq .sec_1 .content .right .list .li.on .arrow img.normal,
.faq .sec_1 .content .right .list .li .arrow img.active {
  opacity: 0;
}

.faq .sec_1 .content .right .list .li .box {
  max-height: 0;
  overflow: hidden;
  transition: all .0s ease-in-out;
}

.faq .sec_1 .content .right .list .li.on .box {
  max-height: 100vh;
  transition: all .5s ease-in-out;
}

.faq .sec_1 .content .right .list .li .box .box_desc {
  margin-top: .24rem;
  padding-top: .24rem;
  border-top: 1px solid rgba(226, 226, 226, 1);
  color: rgba(102, 102, 102, 1);
  line-height: 1.55;
}


/* ========================================
   download.html — Download Center 页面
   Figma: 古顶新能源 #1456:3323
   ======================================== */

.download {
  position: relative;
}

.download .sec_1 {
  position: relative;
  padding: .52rem 1.2rem 1.8rem 1.2rem;
  background: rgba(242, 245, 245, 1);
}

.download .sec_1 .crumb {
  padding: 0;
}

.download .sec_1 .title {
  line-height: 1.28;
  color: #000;
  text-align: center;
  margin-top: .68rem;
}

.download .sec_1 .search-bar {
  display: flex;
  align-items: center;
  max-width: 12rem;
  height: .88rem;
  margin: .54rem auto 0 auto;
  background: #fff;
  border-radius: .99rem;
  padding: .05rem .05rem .05rem .3rem;
}

.download .sec_1 .search-bar input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #666;
}

.download .sec_1 .search-bar input::placeholder {
  color: #666;
}

.download .sec_1 .search-bar .btn {
  height: .78rem;
  padding: 0 .6rem;
  background: rgba(150, 180, 20, 1);
  border: none;
  border-radius: .99rem;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  line-height: .78rem;
  transition: background .3s ease;
}

.download .sec_1 .search-bar .btn:hover {
  background: rgba(130, 160, 10, 1);
}

.download .sec_1 .content {
  display: flex;
  gap: 1.28rem;
  margin-top: .8rem;
  align-items: flex-start;
}

.download .sec_1 .content .sidebar {
  width: 3.46rem;
  flex-shrink: 0;
}

.download .sec_1 .content .sidebar .cate-item {
  display: block;
  padding: .24rem 0;
  line-height: 1.4;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: color .3s ease;
  letter-spacing: -0.01em;
  position: relative;
}

.download .sec_1 .content .sidebar .cate-item+.cate-item {
  border-top: 1px solid #E2E2E2;
}

.download .sec_1 .content .sidebar .cate-item:hover {
  color: rgba(150, 180, 20, 1);
}

.download .sec_1 .content .sidebar .cate-item.on {
  color: rgba(150, 180, 20, 1);
}

.download .sec_1 .content .right {
  flex: 1;
  min-width: 0;
}

.download .sec_1 .content .right .top {
    position: relative;
    width: 100%;
}

.download .sec_1 .content .right .tabs {
    display: flex;
    gap: .8rem;
    align-items: center;
    position: relative;
    
    padding-bottom: .21rem;
    width: 100%;
    overflow-x: auto;
    /*padding-right: 30%;*/
}

.download .sec_1 .content .right .tabs::-webkit-scrollbar {
    height: 2px;
}
.download .sec_1 .content .right .tabs::-webkit-scrollbar-thumb {
    background: rgba(150, 180, 20, 1);
}
.download .sec_1 .content .right .tabs::-webkit-scrollbar-track {
    background: rgba(229, 229, 229, 1);
}

.download .sec_1 .content .right .tabs .tab {
    color: rgba(0, 0, 0, 1);
    line-height: 1.5;
    transition: all .3s;
    white-space: nowrap;
}

.download .sec_1 .content .right .tabs .tab:hover,
.download .sec_1 .content .right .tabs .tab.on {
    color: rgba(150, 180, 20, 1);
}

.download .sec_1 .content .right .top .btns {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: .2rem;
    
    
}

.download .sec_1 .content .right .top .btns .btn {
    width: .44rem;
    height: .44rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(150, 180, 20, 1);
    border-radius: 50%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    position: relative;
}

.download .sec_1 .content .right .top .btns .btn:hover {
  background: #96B414;
}
.download .sec_1 .content .right .top .btns .btn img {
  width: .13rem;
  height: auto;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out;
}

.download .sec_1 .content .right .top .btns .btn img.normal,
.download .sec_1 .content .right .top .btns .btn:hover img.active {
  opacity: 1;
}

.download .sec_1 .content .right .top .btns .btn:hover img.normal,
.download .sec_1 .content .right .top .btns .btn img.active {
  opacity: 0;
}

.download .sec_1 .content .right .list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin: .6rem 0 0 0;
}

.download .sec_1 .content .right .list .down-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .4rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.64) 100%);
  border: 1px solid rgba(128, 130, 133, 0.2);
  border-radius: .2rem;
}

.download .sec_1 .content .right .list .down-item .btns {
    display: flex;
    align-items: center;
    gap: .2rem;
}

.download .sec_1 .content .right .list .down-item .down-icon {
  width: .45rem;
  height: .45rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download .sec_1 .content .right .list .down-item .down-icon img {
  width: .3rem;
  height: .4rem;
  object-fit: contain;
  display: block;
}

.download .sec_1 .content .right .list .down-item .down-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .06rem;
  min-width: 0;
}

.download .sec_1 .content .right .list .down-item .down-info .date {
  color: rgba(128, 130, 133, 1);
  line-height: 1.25;
}

.download .sec_1 .content .right .list .down-item .down-info .name {
  color: #000;
  line-height: 1.5;
}

.download .sec_1 .content .right .list .down-item .down-btn {
  width: .38rem;
  height: .28rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s ease;
}

.download .sec_1 .content .right .list .down-item:hover .down-btn {
  opacity: 1;
}

.download .sec_1 .content .right .list .down-item .down-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service_form1 {
  position: relative;
  background: #F2F5F5;
  max-width: 19.2rem;
  margin: 0 auto;
  padding: 1.3rem 1.2rem 1.8rem 1.2rem;
}

.service_form1 .crumb {
  padding: 0;
  width: 100%;
  max-width: 19.2rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.service_form1 .page_title {
  text-align: center;
  margin-top: 1rem;
}

.service_form1 .page_title .title {
  color: #000;
  line-height: 1.28;
}

.service_form1 .page_title .subtitle {
  max-width: 12rem;
  margin: 0.4rem auto 0 auto;
  color: #666;
  line-height: 1.5;
}

.service_form1 .form_card {
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
  background: #fff;
  border-radius: 0.2rem;
  padding: 1rem 1.2rem 1rem 1.2rem;
  box-sizing: border-box;
}

.service_form1 .form_card .section_title {
  color: #000;
  line-height: 1.46;
}

.service_form1 .form_card .section_title~.section_title {
  margin-top: 0.8rem;
}

.service_form1 .form_card .form_inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.41rem;
  row-gap: 0.36rem;
  margin-top: 0.5rem;
}

.service_form1 .form_card .form_inner .form_item {
  width: calc((100% - 0.82rem) / 3);
  display: flex;
  flex-direction: column;
}

.service_form1 .form_card .form_inner .form_item.full {
  width: 100%;
}

.service_form1 .form_card .form_inner .label {
  display: block;
  line-height: 1.64;
  color: #666;
  margin-bottom: 0.16rem;
}

.service_form1 .form_card .form_inner .label .required {
  color: #FF0000;
}

.service_form1 .form_card .form_inner input,
.service_form1 .form_card .form_inner textarea {
  width: 100%;
  height: 0.72rem;
  background: #F2F5F5;
  border-radius: 0.2rem;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 0 0.2rem;
  font-family: Montserrat, sans-serif;
  line-height: 1.78;
  color: #333;
}

.service_form1 .form_card .form_inner input::placeholder,
.service_form1 .form_card .form_inner textarea::placeholder {
  color: #999;
  font-family: Montserrat, sans-serif;
  line-height: 1.78;
}

.service_form1 .form_card .form_inner textarea {
  height: 1.44rem;
  resize: none;
  padding: 0.2rem;
}

.service_form1 .form_card .form_inner .form_item.full:last-of-type textarea {
  height: 2.8rem;
}

.service_form1 .form_card .submit_wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.service_form1 .form_card .submit_wrap .p_btn {
  background: #96B414;
  color: #fff;
  width: 1.82rem;
  height: 0.58rem;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.service_form1 .form_card .submit_wrap .p_btn .icon {
  background: #fff;
}

.service_form1 .form_card .submit_wrap .p_btn .icon .normal {
  opacity: 0;
}

.service_form1 .form_card .submit_wrap .p_btn .icon .active {
  opacity: 1;
}

.service_form1 .form_card .submit_wrap .p_btn:hover {
  background: #7e9612;
}


/* ========================================
   service_form2.html — Service Center
   Figma: 古顶新能源 #1358:3808
   ======================================== */

.service_form2 {
  position: relative;
  background: #F2F5F5;
  max-width: 19.2rem;
  margin: 0 auto;
  padding: 1.3rem 1.2rem 1.8rem 1.2rem;
}

.service_form2 .crumb {
  padding: 0;
}

.service_form2 .page_title {
  text-align: center;
  margin-top: 1rem;
}

.service_form2 .page_title .title {
  color: #000;
  line-height: 1.28;
}

.service_form2 .form_card {
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
  background: #fff;
  border-radius: 0.2rem;
  padding: 1rem 1.2rem 1rem 1.2rem;
  box-sizing: border-box;
}

.service_form2 .form_card .p_form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.41rem;
  row-gap: 0.36rem;
}

.service_form2 .form_card .p_form .form_item {
  width: calc((100% - 0.82rem) / 3);
  display: flex;
  flex-direction: column;
}

.service_form2 .form_card .p_form .form_item.half {
  width: calc((100% - 0.41rem) / 2);
}

.service_form2 .form_card .p_form .form_item.full {
  width: 100%;
}

.service_form2 .form_card .p_form .form_item .ck.ck-editor {
  border-radius: .2rem;
  overflow: hidden;
}

.service_form2 .form_card .p_form .form_item .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content {
  border-style: none;
}

.service_form2 .form_card .p_form .form_item .ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable) {
  border-style: none;
}

.service_form2 .form_card .p_form .form_item .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
  border-style: none;
}

.service_form2 .form_card .p_form .form_item .ck.ck-editor__main>.ck-editor__editable {
  background: #F2F5F5;
  font-size: .18rem;
}

.service_form2 .form_card .p_form .form_item .ck.ck-toolbar {
  background: #F2F5F5;
}

.service_form2 .form_card .p_form .label {
  display: block;
  color: #666;
  line-height: 1.64;
  margin-bottom: 0.16rem;
}

.service_form2 .form_card .p_form .label .required {
  color: #FF0000;
}

.service_form2 .form_card .p_form input,
.service_form2 .form_card .p_form textarea {
  width: 100%;
  height: 0.72rem;
  background: #F2F5F5;
  border-radius: 0.2rem;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 0 0.2rem;
  font-family: Montserrat, sans-serif;
  line-height: 1.78;
  color: #333;
}

.service_form2 .form_card .p_form input::placeholder,
.service_form2 .form_card .p_form textarea::placeholder {
  color: #999;
  font-family: Montserrat, sans-serif;
  line-height: 1.78;
}

.service_form2 .form_card .p_form .select-wrap {
  position: relative;
  width: 100%;
}

.service_form2 .form_card .p_form .select-wrap input {
  cursor: pointer;
}

.service_form2 .form_card .p_form .select-wrap .select-arrow {
  position: absolute;
  right: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.15rem;
  height: 0.07rem;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.service_form2 .form_card .p_form .select-wrap .select-arrow.open {
  transform: translateY(-50%) rotate(180deg);
}

.service_form2 .form_card .p_form .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.06rem;
  z-index: 10;
  display: none;
  max-height: 2rem;
  overflow-y: auto;
}

.service_form2 .form_card .p_form .dropdown-list.show {
  display: block;
}

.service_form2 .form_card .p_form .dropdown-item {
  padding: 0.1rem 0.15rem;
  font-size: 0.16rem;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease;
}

.service_form2 .form_card .p_form .dropdown-item:hover {
  background: #F5F5F5;
}

.service_form2 .form_card .p_form .desc_helper {
  line-height: 1.56;
  color: #666;
  margin: 0 0 0.12rem 0;
}

.service_form2 .form_card .p_form .desc_body {
  background: #F2F5F5;
  border-radius: 0.2rem;
  overflow: hidden;
}

.service_form2 .form_card .p_form .desc_body .ck.ck-editor {
  border: none;
  max-width: 100%;
}

.service_form2 .form_card .p_form .desc_body .ck.ck-editor .ck-toolbar {
  border: none;
  border-bottom: 1px solid #EBEBEB;
  background: #F2F5F5;
}

.service_form2 .form_card .p_form .desc_body .ck.ck-editor .ck-content {
  min-height: 2.5rem;
  padding: 0.2rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.16rem;
  line-height: 1.78;
  color: #333;
  border: none;
  background: #F6F7F9;
}

.service_form2 .form_card .p_form .desc_body .ck.ck-editor .ck-editor__editable_inline {
  border: none;
  padding: 0.2rem;
}

.service_form2 .form_card .p_form .desc_body .ck.ck-editor .ck-placeholder {
  color: #a0aec0;
}

.service_form2 .form_card .p_form .desc_body .ck.ck-editor .ck-editor__editable.ck-focused {
  border-color: #e2e8f0;
  box-shadow: none;
}

/* --- 编辑器视觉风格覆盖 --- */
.service_form2 .ck-editor__editable {
  background-color: #f6f7f9;
  min-height: 2.5rem;
  color: #333;
}

.service_form2 .ck-editor__editable .ck-placeholder {
  color: #a0aec0;
}

.service_form2 .ck-editor__editable.ck-focused {
  border-color: #e2e8f0;
  box-shadow: none;
}

.service_form2 .form_card .p_form .upload_zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.8rem;
  background: #F2F5F5;
  border-radius: 0.2rem;
  cursor: pointer;
  box-sizing: border-box;
  gap: 0.08rem;
}

.service_form2 .form_card .p_form .upload_zone .upload_icon {
  width: 0.8rem;
  height: 0.8rem;
}

.service_form2 .form_card .p_form .upload_zone .upload_icon img {
  width: 100%;
  height: 100%;
}

.service_form2 .form_card .p_form .upload_zone .upload_text {
  color: #96B414;
  line-height: 1.6;
}

.service_form2 .form_card .p_form .upload_zone .upload_hint {
  line-height: 1.78;
  color: #999;
}

.service_form2 .form_card .p_form .upload_zone.drag-over {
  border: 2px solid #96B414;
}

.service_form2 .form_card .p_form .upload_zone .file_list {
  width: 100%;
  margin-top: 0.08rem;
}

.service_form2 .form_card .p_form .upload_zone .file_list .file_item {
  line-height: 1.5;
  color: #666;
  padding: .2rem;
  margin: .2rem .2rem 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.06rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service_form2 .form_card .p_form .upload_zone .file_list .file_item .file_remove {
  cursor: pointer;
  color: #999;
  font-size: 0.16rem;
  line-height: 1;
}

.service_form2 .form_card .p_form .upload_zone .file_list .file_item .file_remove:hover {
  color: #FF0000;
}

.service_form2 .form_card .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
}

.service_form2 .form_card .btn-wrap .p_btn {
  background: #96B414;
  color: #fff;
  width: 1.82rem;
  height: 0.58rem;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.service_form2 .form_card .btn-wrap .p_btn .icon {
  background: #fff;
}

.service_form2 .form_card .btn-wrap .p_btn .icon .normal {
  opacity: 0;
}

.service_form2 .form_card .btn-wrap .p_btn .icon .active {
  opacity: 1;
}

.service_form2 .form_card .btn-wrap .p_btn:hover {
  background: #7e9612;
}

.search {
    padding: 1.6rem 1.2rem 1.8rem 1.2rem;
}
.search .search-box {

  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.search .search-box .search_form {
  margin: 0 auto;
  display: flex;
  align-items: center;
  /*border: .01rem solid rgba(223, 223, 223, 1);*/
  width: 10rem;
  height: .54rem;
  padding: 0 .13rem 0 .2rem;
  border-radius: .35rem;
  background: rgba(248, 248, 248, 1);
}

.search .search-box .search_form input {
  flex: 1;
  background: transparent;
}

.search .search-box .search_form input::placeholder {
  font-size: .18rem;
  font-weight: 400;
  color: rgba(51, 51, 51, .5);
}

.search .search-box .search_form .search-icon {
    width: .16rem;
    height: .16rem;
    margin-right: .14rem;
}
.search .search-box .search_form .search-icon img {
    width: 100%;
}

.search .search-box .search_form .search-btn {
  width: .34rem;
  height: .34rem;
  background: rgba(150, 180, 20, 1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: none;
  cursor: pointer;
}

.search .search-box .search_form .search-btn img {
  width: .13rem;
}

.search .main {
  background: #fff;
  margin-top: .82rem;
}

.search .main .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 .2rem 0;
  border-bottom: .01rem solid rgba(223, 223, 223, 1);
  margin-bottom: .6rem;
}

.search .main .top .tabs {
  display: flex;
  gap: .5rem;
}

.search .main .top .tabs .tab {
  line-height: 1.3;
  color: rgba(153, 153, 153, 1);
  transition: all .5s;
  cursor: pointer;
  position: relative;
}

.search .main .top .tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -.2rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(150, 180, 20, 1);
}

.search .main .top .tabs .tab.active {
  color: rgba(150, 180, 20, 1);
}

.search .main .list_product {
    display: flex;
    flex-wrap: wrap;
    gap: .24rem;
    margin: .2rem 0 0 0;
}

.search .main .list_product .li {
  width: calc((100% - .48rem) / 3);
  padding: .12rem .47rem .4rem .47rem;
  background: linear-gradient(180deg, #F8F8F8 0%, #FCFCFC 105.4%);
  border-radius: .2rem;
  cursor: pointer;
}

.search .main .list_product .li .img_box {
  width: 2.9rem;
  height: 2.9rem;
  position: relative;
  margin: 0 auto;
}

.search .main .list_product .li .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .3s ease-in-out;
}

.search .main .list_product .li:hover .img_box img {
  transform: scale(1.05);
}



.search .main .list_product .li .title {
  color: #000;
  line-height: 1.33;
  text-align: center;
  margin-top: .2rem;
}

.search .main .list_news {
    display: flex;
      flex-wrap: wrap;
      gap: .95rem .3rem;
}

.search .main .list_news .exhibition-card {
  width: calc((100% - .6rem) / 3);
  height: 5.05rem;
  /* background: #fff; */
  border-radius: .2rem;
  overflow: hidden;
  padding: 0;
  transition: all .3s ease;
  position: relative;
}

.search .main .list_news .exhibition-card .card-img {
  width: 100%;
  height: 3.56rem;
  overflow: hidden;
  border-radius: .2rem;
}

.search .main .list_news .exhibition-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}

.search .main .list_news .exhibition-card:hover .card-img img {
  transform: scale(1.05);
}

.search .main .list_news .exhibition-card .card-date-row {
  display: flex;
  align-items: center;
  margin-top: .34rem;
  padding: 0;
}

.search .main .list_news .exhibition-card .card-date {
  color: rgba(128, 130, 133, 1);
  line-height: 1.25;
  margin-right: .2rem;
}

.search .main .list_news .exhibition-card .card-location-icon {
  width: .18rem;
  height: .18rem;
  flex-shrink: 0;
}

.search .main .list_news .exhibition-card .card-location {
  color: rgba(51, 51, 51, 1);
  line-height: 1.25;
}

.search .main .list_news .exhibition-card .card-title {
  color: #000;
  line-height: 1.46;
  margin-top: .25rem;
  transition: all .3s ease;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search .main .list_news .exhibition-card:hover .card-title {
  color: rgba(150, 180, 20, 1);
}

.search .main .list_case {
    display: flex;
  flex-wrap: wrap;
  gap: .8rem .4rem;
  margin: .2rem 0 0 0;
}

.search .main .list_case .li {
  width: calc((100% - .5rem) / 2);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  border-radius: .2rem;
  overflow: hidden;
  box-shadow: 0 .2rem .338rem 0 rgba(0, 0, 0, 0.03);
}

.search .main .list_case .li .img_box {
  width: 3.7rem;
  height: 2.51rem;
  position: relative;
  overflow: hidden;
  border-radius: .2rem;
}

.search .main .list_case .li .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.search .main .list_case .li:hover .img_box img {
  transform: scale(1.05);
}

.search .main .list_case .li .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding-right: .2rem;
}

.search .main .list_case .li .title {
  color: #000;
  line-height: 1.5;
  text-align: start;

  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search .main .list_case .li .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .27rem;
}

.search .main .list_case .li .btns .tag {
  line-height: 1.28;
  color: #000;
}

.search .main .list_case .li .btns .btn {
  width: .46rem;
  flex-shrink: 0;
  height: .46rem;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search .main .list_case .li .btns .btn img {
  width: .2rem;
}



.search .main .list_download {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.search .main .list_download .down-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .4rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.64) 100%);
  border: 1px solid rgba(128, 130, 133, 0.2);
  border-radius: .2rem;
  transition: all .3s;
}
.search .main .list_download .down-item:hover {
    box-shadow: 0 .04rem .6rem 0 rgba(124, 124, 124, 0.10);
    border: 1px solid #96B414;
}

.search .main .list_download .down-item .down-icon {
  width: .45rem;
  height: .45rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search .main .list_download .down-item .down-icon img {
  width: .3rem;
  height: .4rem;
  object-fit: contain;
  display: block;
}

.search .main .list_download .down-item .down-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .06rem;
  min-width: 0;
}

.search .main .list_download .down-item .down-info .date {
  color: rgba(128, 130, 133, 1);
  line-height: 1.25;
}

.search .main .list_download .down-item .down-info .name {
  color: #000;
  line-height: 1.5;
  transition: all .3s;
}
.search .main .list_download .down-item:hover .down-info .name {
    color: #96B414;
}

.search .main .list_download .down-item .btns {
    display: flex;
    align-items: center;
    gap: .2rem;
}


.search .main .list_download .down-item .down-btn {
  width: .38rem;
  height: .28rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s ease;
}

.search .main .list_download .down-item:hover .down-btn {
  opacity: 1;
}

.search .main .list_download .down-item .down-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.search .pagination {
    margin-top: .8rem;
}




@media screen and (orientation: portrait) {

  .index .banner .info {
    width: 100%;
    padding: 20px 20px 0 20px;
  }
  .index .banner .info .item {
      left: 20px;
  }


  .index .banner .content {
    height: 144vw;
  }

  .index .sec_1 {
    height: 100vw;
  }

  .index .sec_1 .content {
    flex-direction: column;
    padding: 60px 20px;
  }

  .index .sec_1_m {
    display: block;
    position: relative;

  }

  .index .sec_1_m .box {
    position: relative;
    padding: 60px 20px;
  }

  .index .sec_1_m .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .index .sec_1_m .box .bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.20) 42.02%);
    pointer-events: none;
    z-index: 10;
  }

  .index .sec_1_m .box:nth-child(2n) .bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, .2) 42.02%);
    pointer-events: none;
    z-index: 10;
  }

  .index .sec_1_m .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .index .sec_1_m .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    align-items: start;
    z-index: 1;
    color: #fff;
    text-align: start;
  }

  .index .sec_1_m .box:nth-child(2n) .content {
    align-items: end;
    text-align: end;
  }

  .index .sec_1_m .content .title {
    font-size: 18px;
    line-height: 1.28;
    width: 100%;
  }


  .index .sec_1_m .content .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 20px;
    width: 100%;
  }

  .index .sec_1_m .content .p_btn {
    margin-top: 30px;

  }


  .index .sec_2 {
    height: auto;
  }

  .index .sec_2 .bg .earth {
    top: 3.74rem;
  }

  .index .sec_2 .content {
    flex-direction: column;
    padding: 60px 20px;
    gap: 8rem;
  }

  .index .sec_3 {
    padding: 0 20px 60px 20px;
  }

  .index .sec_3 .content .item .btns .address img {
    width: 13px;
  }

  .index .sec_3 .content .item .btns .btn img {
    width: 13px;
  }



  .index .sec_4 .content {
    flex-direction: column;
  }

  .index .sec_4 .content .left {
    width: 100%;
  }

  .index .sec_4 .content .left .img_box {
    width: 100%;
  }

  .index .sec_4 {
    padding: 60px 20px;
  }

  .index .sec_4 .content .left {
    height: 6.2rem;
  }

  .index .sec_4 .content .left .info .item .name {
    font-size: 16px;
  }

  .index .sec_4 .content .right {
    height: auto;
  }

  .index .sec_4 .content .right .item .name {
    height: 50px;
    font-size: 16px;
  }

  .index .sec_5 {
    height: auto;
    padding: 60px 20px;
  }

  .index .sec_5 .label {
    width: 100%;
  }


  .about .sec_1 {
    padding: 20px;
  }

  .about .sec_1 .content {
    width: 100%;
  }

  .about .sec_1 .content .title {
    margin-top: 25px;
  }

  .about .sec_1 .content .sub_title {
    margin-top: 20px;
  }

  .about .sec_1 .boxs {
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
  }

  .about .sec_1 .boxs .box {
    width: calc((100% - 30px) / 2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about .sec_1 .boxs .box .nums strong {
    font-size: 30px;
  }

  .about .sec_1 .img_box {
    width: 100%;
    height: 42vw;
  }

  .about .sec_2 {
    padding: 40px 20px;
  }

  .about .sec_2 .content {
    margin-top: 20px;
  }

  .about .sec_3 .content .swiper_2 {
    padding: 30px 0 60px 0;
  }

  .about .sec_3 .content .item .img_box {
    height: 46vw;
  }

  .about .sec_4 {
    padding: 40px 0 60px 0;
  }

  .about .sec_4 .content .boxs {
    margin: 30px 20px 0 20px;
    min-height: 5rem;
  }

  .about .sec_4 .content .swiper_3 {
    padding-left: 20px;
  }

  .about .sec_4 .content .boxs .box {
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
  .about .sec_4 .content .boxs .box .info {
      padding: 0;
  }

  .about .sec_4 .content .time {
    font-size: 24px;
  }

  .about .sec_4 .content .time.on {
    font-size: 30px;
  }

  .about .sec_4 .content .boxs .btns {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .about .sec_4 .content .boxs .box .img_box {
    width: 100%;
    height: 60vw;
  }

  .about .sec_4 .content .btns .btn {
    width: 32px;
    height: 32px;
  }

  .about .sec_5 {
    padding: 20px;
  }
  
  .about .sec_5 .m_btns {
      display: flex;
      align-items: start;
      /*flex-direction: column;*/
      gap: 10px;
      overflow-y: auto;
      padding-bottom: 10px;
      flex-wrap: wrap;
      margin: 20px 0 0 0;
      width: 100%;
  }
  .about .sec_5 .m_btns .label {
      font-size: 16px;
      width: 100%;
      font-weight: 500;
      padding-bottom: 10px;
      color: rgba(150, 180, 20, 1);
      position: relative;
      
      
  }
  .about .sec_5 .m_btns .label span {
      position: relative;
  }
  .about .sec_5 .m_btns .label span::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: rgba(150, 180, 20, 1);
  }
  .about .sec_5 .m_btns .label.on {
      color: #378a93;
  }
  .about .sec_5 .m_btns .label.on span::after {
      background: #378a93;
      
  }
  /*.about .sec_5 .m_btns .label span {*/
  /*    border-radius: 99px;*/
  /*    padding: 10px 15px;*/
  /*    white-space: nowrap;*/
  /*    background: rgba(150, 180, 20, 1);*/
  /*    color: #fff;*/
  /*    display: block;*/
  /*    width: fit-content;*/
  /*}*/
  
  .about .sec_5 .m_btns .btn {
      border-radius: 99px;
      padding: 10px 15px;
      background: #f5f5f5;
      white-space: nowrap;
      font-size: 12px;
      width: 48%;
  }
  
  .about .sec_5 .m_btns .btn.on {
      background: rgba(150, 180, 20, 1);
      color: #fff;
  }
  
  .about .sec_5 .m_sec {
      display: flex;
      flex-direction: column;
  }

  .about .sec_5 .map {
    width: 100%;
    /*flex: 60;*/
    height: 35vw;
  }

  .about .sec_5 .map .point {
    width: 12px;
    height: 12px;
    /*opacity: 0;*/
    transition: opacity .3s;
  }
  .about .sec_5 .map .point.on {
      opacity: 1;
  }

  .about .sec_5 .map .point span {
    font-size: 10px;
    opacity: 0;
  }

  .about .sec_5 .map .point3 {
    width: 60px;
    height: 60px;
  }

  .about .sec_5 .tags {
      display: none;
  }
  .about .sec_5 .tags .tag {
    font-size: 10px;
  }

  .about .sec_5 .tags .tag img {
    width: 12px;
    height: 12px;
  }


  .about .sec_6 {
    padding: 40px 20px;
  }
  
  .about .sec_6 .bg::before {
      background: linear-gradient(180deg, rgba(0, 119, 146, 0.30) 0%, rgba(0, 119, 146, 0.00) 105.02%);
  }

  .about .sec_6 .content .desc {
    width: 100%;
  }

  .about .sec_6 .content .box .swiper_4 {
    min-height: 6.59rem;
  }

  .about .sec_6 .content .box .btns .btn {
    width: 32px;
    height: 32px;
  }




  .news .crumb {
    padding: 20px 20px 0 20px;
  }

  .news .news-title-row {
    margin-top: 20px;
    padding: 0 20px;
    flex-direction: column;
    gap: 10px;
  }

  .news .news-tabs {
    gap: .3rem;
  }

  .news .news-list {
    padding: 20px;
  }

  .news .news-list .news-row {
    flex-direction: column;
    align-items: center;
    padding: 0 0 .5rem 0;
  }

  .news .news-featured {
    padding: 0 20px;
  }

  .news .news-featured .featured-card .item {
    flex-direction: column;
  }

  .news .news-featured .featured-card .featured-img {
    width: 100%;
    height: 50vw;
  }

  .news .news-featured .featured-card .featured-info {
    padding: 20px;
  }

  .news .news-list .news-row .row-text {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    padding: 0;
    transform: unset;
    margin-top: 20px;
  }

  .news .news-list .news-row .row-date {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .news .news-list .news-row .row-img {
    width: 100%;
    margin: 0;
    height: 54vw;
  }

  .news .exhibition-grid {
    padding: 0 20px;
  }

  .news .exhibition-grid .exhibition-card {
    width: 100%;
  }

  .news .exhibition-grid .exhibition-card .card-img {
    height: 50vw;
  }

  .news-detail .crumb {
    padding: 20px;
  }

  .news-detail .detail-title {
    padding: 0 20px;
  }

  .news-detail .detail-date {
    padding: 0 20px;
  }

  .news-detail .detail-divider {
    margin: 30px 20px 0 20px;
  }

  .news-detail .detail-body {
    flex-direction: column;
    padding: 0 20px;
    gap: 60px;
    margin-top: 30px;
  }

  .news-detail .detail-content {
    margin: 0;
    width: 100%;
  }
  
  .news-detail .detail-content img {
      width: 100%;
      height: auto;
  }

  .news-detail .detail-sidebar {
    width: 100%;
    position: relative;
    top: unset;
  }

  .news-detail .detail-share {
    align-items: start;
    margin: 0;
  }

  .news-detail .detail-share .share-icons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }

  .news-detail .detail-share .share-line {
    display: none;
  }

  .news-detail .detail-share .share-label {
    margin-right: 10px;
  }

  .news-detail .detail-share .icon-3,
  .news-detail .detail-share .icon-1,
  .news-detail .detail-share .icon-2 {
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .news-detail .detail-share .share-back .icon {
    width: 13px;
    height: 13px;
  }

  .product {
    padding: 20px;
  }

  .product .content {
    flex-direction: column;
  }

  .product .content .left {
    position: relative;
    top: unset;
    width: 100%;
  }

  .product .content .left .list .li .label .icon {
    width: 10px;
    height: 10px;
  }

  .product .content .right .box .list .li {
    width: 100%;
  }

  .product .content .case_box .box .list .li {
    width: 100%;
  }

  .product .content .case_box .box .list .li .img_box {
    width: 100%;
    height: 60vw;
  }

  .product-detail .pd-advantages {
    padding: 60px 20px;
  }

  .product-detail .pd-hero {
    flex-direction: column;
    height: auto;
  }

  .product-detail .pd-hero .left {
    width: 100%;
    padding: 20px;
  }

  .product-detail .crumb {
    flex-wrap: wrap;
  }

  .product-detail .pd-hero .right .img_box {
    width: 50vw;
    height: 70vw;
  }

  .product-detail .pd-advantages .advantages-grid {
    gap: .3rem;
    flex-direction: column;
    padding: 7.06rem 0 0 0;
  }

  .product-detail .pd-advantages .advantage-item .adv-text {
    max-width: 100%;
  }

  .product-detail .pd-advantages .advantage-item.right-aligned {
    text-align: start;
    align-items: flex-start
  }

  .product-detail .pd-advantages .adv-col {
    gap: .3rem;
  }
  
  .product-detail .pd-advantages .adv-col:nth-child(1) .advantage-item {
      align-items: flex-start;
      text-align: start;
  }

  .product-detail .pd-specs {
    padding: 40px 20px;
  }

  .product-detail .pd-specs .specs-content {
    flex-direction: column;
  }

  .product-detail .pd-specs .specs-content .img_box {
    margin: 0 auto;
  }

  .product-detail .pd-specs .specs-content {
    gap: .3rem;
  }

  .product-detail .pd-specs .specs-content .info .box_btn.prev {
    left: 0;
  }

  .product-detail .pd-specs .specs-content .info .box_btn.next {
    right: 0;
  }

  .product-detail .pd-specs .specs-content .info {
    padding: .97rem .7rem 0 .7rem;
    width: 100%;
  }

  .product-detail .pd-specs .specs-content .info .box {
    max-height: unset;
  }

  .product-detail .pd-downloads {
    padding: 40px 20px;
  }

  .product-detail .pd-downloads .download-item {
    width: 100%;
    height: 1.54rem;
  }

  .product-detail .pd-downloads .downloads-grid {
    padding: 0;
    max-width: 100%;
  }



  .pd2 .pd2-hero .crumb {
    left: 20px;

  }

  .pd2 .pd2-hero .hero-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .pd2 .pd2-features {
    padding: 40px 20px;
  }

  .pd2 .pd2-features .features-grid {
    margin: .87rem 0 0 0;
  }

  .pd2 .pd2-features .feature-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    flex: unset;
    opacity: 0;
    padding: 0 20px 20px;

  }

  .pd2 .pd2-features .feature-card.on {
    opacity: 1;
  }

  .pd2 .pd2-features .feature-card .card-label {
    display: none;
  }

  .pd2 .pd2-features .feature-card .card-p {
    max-height: unset;
    opacity: 1;
    transform: unset;
    width: 100%;
  }

  .m-features-grid-label {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    gap: 20px;

  }

  .m-features-grid-label .label {
    font-size: 14px;
    cursor: pointer;
    padding-bottom: .2rem;
    position: relative;
    transition: all .3s ease-in-out;
  }

  .m-features-grid-label .label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #96B414;
    transition: all .3s ease-in-out;
  }

  .m-features-grid-label .label.on::after {
    width: 100%;
  }



  .pd2 .pd2-ai {
    padding: 0 20px 40px 20px;
  }

  .pd2 .pd2-ai .ai-item {
    flex-direction: column;
  }

  .pd2 .pd2-ai .ai-item:nth-child(2n) {
    flex-direction: column;
  }

  .pd2 .pd2-ai .ai-item .ai-img {
    width: 100%;
    height: 50vw;
  }

  .pd2 .pd2-cloud {
    padding: 40px 20px;
    height: auto;
  }

  .pd2 .pd2-cloud .cloud-content {
    width: 100%;
    padding: 20px;
  }

  .pd2 .pd2-cloud .cloud-content .cloud-content-box {
    padding: 0;
  }

  .pd2 .pd2-cloud .cloud-content .cloud-item .name {
    font-size: 14px;
  }

  .service .content .crumb {
    margin: 20px 20px 0 20px;
  }



  .service .content .sec_1 {
    padding: 0 20px;
  }

  .service .content .sec_1 .title {
    max-width: 100%;
  }

  .service .content .sec_1 .sub_title {
    max-width: 100%;
  }

  .service .content .sec_1 .top_desc {
    max-width: 100%;
  }

  .service .content .sec_1 .box {
    flex-direction: column;
  }

  .service .content .sec_1 .box .img_box {
    width: 100%;
    height: 66vw;
  }

  .service .content .sec_1 .box .info .list_box .item {
    width: 100%;
    align-items: center;
    flex-direction: unset;
  }

  .service .content .sec_2 {
    padding: 2.2rem 20px 1.8rem 20px;
  }

  .service .content .sec_2 .bg {
    height: 40vw;
  }

  .service .content .sec_2 .card {
    padding: 20px;
  }
  
  .contact .sec_1 .crumb {
    padding: 0 20px;
  }

  .contact .sec_1 .content {
    padding: 40px 20px;
    height: 200vw;
  }

  .contact .sec_1 .content .bg {
    height: 50%;
    top: unset;
    bottom: 0;
  }

  .contact .sec_1 .content .boxs {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .contact .sec_1 .content .boxs .box {
    min-width: unset;
    width: 100%;
  }


  .contact .sec_2 {
    padding: 60px 20px;
  }

  .contact .sec_2 .form .form_item {
    width: 100%;
  }

  .contact .sec_2 .form .form_item.half {
    width: 100%;
  }

  .contact .sec_2 .form input {
    height: 40px;
  }

  .contact2 .sec_1 {
    padding: 20px;
  }

  .contact2 .sec_1 .content .boxs {
    gap: 20px;
  }

  .contact2 .sec_1 .content .boxs .box {
    width: 100%;
  }
  
  .contact2 .sec_1 .content .boxs .box .name {
      height: auto;
  }

  .joinus .sec_1 {
    padding: 20px;
  }

  .joinus .sec_1 .content .form .form_item {
    width: 100%;
  }

  .joinus .sec_1 .content .form .search {
    width: 100%;
  }

  .joinus .sec_1 .content .form .form_item input {
    height: 40px;
  }

  .joinus .sec_1 .content .form .search input {
    height: 36px;
  }

  .joinus .sec_1 .content .list .li.on .box {
    max-height: 100rem;
    overflow-y: auto;
  }

  .faq .sec_1 {
    padding: 20px 20px 60px;
  }
  .faq .sec_1 .content {
    flex-direction: column;
  }
  .faq .sec_1 .content .sidebar {
    width: 100%;
  }

  .download .sec_1 {
    padding: 20px 20px 60px;
  }
  .download .sec_1 .content {
    flex-direction: column;
  }
  .download .sec_1 .content .sidebar {
    width: 100%;
  }
  .download .sec_1 .content .right {
      flex: unset;
      width: 100%;
  }
  .download .sec_1 .content .right .list .down-item .down-btn {
    opacity: 1;
  }
  .service_form1 {
    padding: 60px 20px;
  }
  .service_form1 .form_card {
    padding: 30px 20px;
  }
  .service_form1 .form_card .form_inner .form_item {
    width: 100%;
  }
  .service_form1 .form_card .form_inner .label {
    line-height: 1.28;
  }

  .service_form2 {
    padding: 60px 20px;
  }
  .service_form2 .form_card {
    padding: 30px 0;
  }
  .service_form2 .form_card .p_form .form_item {
    width: 100%;
  }
  .service_form2 .form_card .p_form .form_item.half {
    width: 100%;
  }
  .service_form2 .form_card .p_form .label {
    line-height: 1.28;
  }
  .service_form2 .form_card .p_form .form_item .ck.ck-editor__main>.ck-editor__editable {
    font-size: 14px;
  }
  .service_form2 .form_card .p_form .dropdown-item {
    font-size: 12px;
  }
  
  .search {
      padding: 60px 20px;
  }
  .search .search-box .search_form {
      width: 100%;
  }
  .search .search-box .search_form input::placeholder {
      font-size: 12px;
  }
  
  .search .search-box .search_form .search-icon {
      width: 14px;
      height: auto;
  }
  .search .search-box .search_form .search-btn {
      width: 20px;
      height: 20px;
  }
  
  .search .search-box .search_form .search-btn img {
      width: 12px;
  }
  
  .search .main .list_product .li {
      width: 100%;
  }
  .search .main .list_news .exhibition-card {
      width: 100%;
  }
  .search .main .list_news .exhibition-card .card-img {
      height: 50vw;
  }
  .search .main .list_case .li {
      width: 100%;
      flex-direction: column;
  }
  .search .main .list_case .li .img_box {
      width: 100%;
      height: 62vw;
  }



}