
@import url("module.css");
* {
  background-repeat: no-repeat;
}

.aside {
  position: fixed;
  right: 0;
  top: 60%;
  transition: all 0.5s;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  z-index: 100;
}
.aside .item {
  padding: 12px;
  color: #fff;
  background-color: var(--logoColor);
  transition: all 0.5s;
  position: relative;
}
.aside .item.hover {
  padding-right: 191px;
}
.aside .item .phone {
  width: 180px;
  height: 100%;
  position: absolute;
  right: 0%;
  border-left: 1px solid #ffffff47;
  top: 0;
  transform: translateX(180px);
  transition: all 0.5s;
}
.aside .item.hover .phone {
  transform: translateX(0);
}
.aside .item .icon {
  width: 30px;
  margin-bottom: 8px;
}
/* PC端 */
.p_page .left {
  float: left;
  width: 23.28vw;
  min-height: 100vh;
  padding: 7.81vw 0;
  box-shadow: 0 1.04vw 1.25vw rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
}
.p_page .left .tab {
  height: calc(100vh - 16.09vw);
  overflow: auto;
  padding-top: 1.04vw;
  position: relative;
}
.p_page .left .first {
  margin-bottom: 0.52vw;
}
.p_page .left .first > .name {
  width: 100%;
  height: 3.13vw;
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 7.29vw;
  background-color: rgba(103, 120, 134, 0.1);
  color: var(--fontColor);
  cursor: pointer;
}
.p_page .left .first > .name i {
  width: 0.83vw;
  height: 0.83vw;
  display: block;
  background-image: url("../img/padd.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  right: 1.56vw;
  transform: translateY(-50%);
}
.p_page .left .first.act > .name,
.p_page .left .first > .name:hover {
  color: #fff;
  background-color: var(--logoColor);
}
.p_page .left .first.act > .name i,
.p_page .left .first > .name:hover i {
  background-image: url("../fonts/pdes.svg");
}

.p_page .left .first .second {
  display: none;
  padding-left: 7.29vw;
  padding-top: 1.3vw;
}
.p_page .left .first .second.act {
  display: block;
}
.p_page .left .first .second > .name {
  display: block;
  padding-left: 1.04vw;
  position: relative;
  margin-bottom: 1.3vw;
  transition: all 0.5s;
}
.p_page .left .first .second > .name.act,
.p_page .left .first .second > .name:hover {
  color: var(--logoColor);
}
.p_page .left .first .second > .name::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.21vw;
  height: 100%;
  background-color: var(--logoColor);
  border-radius: 0 1.26vw 0 1.26vw;
  transition: all 0.5s;
  opacity: 0;
}
.p_page .left .first .second > .name:hover::after,
.p_page .left .first .second > .name.act::after {
  opacity: 1;
}
.p_page .right {
  float: right;
  width: 62.97vw;
  padding-top: 7.5vw;
  margin-right: 7.08vw;
  padding-bottom: 8.33vw;
}
.p_page .right > .title {
  color: var(--fontColor);
  border-bottom: 1px solid rgba(103, 120, 134, 0.4);
  margin-bottom: 4.17vw;
}
.p_page .right > .title span {
  padding-bottom: 1.46vw;
  position: relative;
  display: inline-block;
}
.p_page .right > .title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.52vw;
  border-radius: 0.13vw 0 0.13vw 0;
  background-color: var(--logoColor);
}
.p_page .right .plist {
}
.p_page .right .plist .item {
  margin-right: 2.24vw;
  width: calc(100% / 3 - 1.51vw);
  margin-bottom: 4.17vw;
  padding-bottom: 4.17vw;
  position: relative;
}
.p_page .right .plist .item .img {
  width: 100%;
  height: 18.75vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.51vw;
  background-color: rgba(103, 120, 134, 0.08);
  border-radius: 1.04vw;
}
.p_page .right .plist .item .img img {
  max-height: 90%;
}
.p_page .right .plist .item .tit {
  margin-bottom: 0.89vw;
  color: var(--fontColor);
}
.p_page .right .plist .item .con {
  color: var(--fontColorGray);
}
.p_page .right .plist .item .more {
  position: absolute;
  bottom: 0;
  left: 0;
}
.pagination {
}
.pagination .pitem {
  width: 2.6vw;
  height: 2.6vw;
  margin: 0 0.52vw;
  background-color: rgba(103, 120, 134, 0.1);
  transition: all 0.5s;
  border-radius: 0.21vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .pitem.act,
.pagination .pitem:hover {
  color: #fff;
  background-color: var(--logoColor);
}
.pagination .pitem.prev {
  background-image: url("../fonts/prev.svg");
  background-size: 0.42vw 0.83vw;
  background-position: center center;
  background-repeat: no-repeat;
}
.pagination .pitem.prev:hover {
  background-image: url("../fonts/preva.svg");
}
.pagination .pitem.next {
  background-image: url("../fonts/next.svg");
  background-size: 0.42vw 0.83vw;
  background-position: center center;
  background-repeat: no-repeat;
}
.pagination .pitem.next:hover {
  background-image: url("../fonts/nexta.svg");
}
.pd_page.p_page .left {
  margin-top: 4.69vw;
  padding-top: 0;
  top: 4.69vw;
}
.pd_page .top {
  height: 11.25vw;
  background-color: var(--fontColor);
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 7.29vw;
}
.pd_page .top .title {
  padding-top: 2.08vw;
  position: relative;
}
.pd_page .top .title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--logoColor);
  width: 3.13vw;
  height: 0.52vw;
  border-radius: 0.13vw 0 0.13vw 0;
}
.p_page.pd_page .right {
  padding-top: 8.7vw;
  width: calc(100% - 23.28vw);
  margin-right: 0;
  padding-bottom: 0;
}
.pd_page .part1 {
  padding-bottom: 4.58vw;
  padding-left: 6.61vw;
  padding-right: 7.29vw;
}
.pd_page .part1 .swiper_box {
  float: left;
  position: sticky;
  top: 8.7vw;
  width: 29.38vw;
}
.pd_page .part1 .swiper {
  width: 100%;
}
.pd_page .part1 .swiper .swiper-slide {
  height: 26.61vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.04vw;
  background-color: rgba(103, 120, 134, 0.08);
}
.pd_page .part1 .swiper .swiper-slide img {
  width: 90%;
  object-fit: contain;
  max-height: 90%;
}
.pd_page .part1 .swiper .swiper-pagination {
  position: initial;
  margin-top: 1.67vw;
}
.pd_page .part1 .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1.09vw;
  height: 0.21vw;
  opacity: 0.3;
  background-color: var(--fontColorGray);
  border-radius: 1.5px 0 1.5px 0;
  transition: all 0.5s;
}
.pd_page .part1 .swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--logoColor);
}
.pd_page .part1 .txt {
  float: right;
  width: 29.79vw;
  padding-top: 2.5vw;
}
.pd_page .part1 .txt .name {
  margin-bottom: 2.08vw;
  color: var(--fontColor);
}
.pd_page .part1 .txt .desc {
  margin-bottom: 3.13vw;
  line-height: 2;
  color: var(--fontColorGray);
}
.pd_page .part1 .txt .feat {
  margin-bottom: 2.08vw;
}
.pd_page .part1 .txt .feat .ftit {
  margin-bottom: 0.94vw;
  color: var(--fontColor);
}
.pd_page .part1 .txt .feat .flist {
  display: flex;
}
.pd_page .part1 .txt .feat .fitem {
  margin-right: 1.56vw;
}
.pd_page .part1 .txt .feat .fitem .img {
  width: 5.63vw;
  height: 5.63vw;
  margin-bottom: 0.42vw;
}
.pd_page .part1 .txt .feat .fitem .con {
  color: var(--fontColorGray);
  text-align: center;
}
.pd_page .part1 .txt .feat .fcon {
  color: var(--fontColorGray);
  line-height: 2;
}
.pd_page .part1 .txt .feat .fcon p {
  position: relative;
  padding-left: 0.83vw;
}
.pd_page .part1 .txt .feat .fcon p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68vw;
  width: 0.31vw;
  height: 0.31vw;
  background-color: var(--logoColor);
  transition: all 0.5s;
  border-radius: 50%;
}
.pd_page .part2 {
  padding: 4.43vw 7.29vw 5.63vw 6.61vw;
  background-image: url("../img/pd21.jpg");
  background-size: cover;
}
.pd_page .part2 .title {
  text-align: center;
  margin-bottom: 2.55vw;
}
.pd_page .part2 .item {
  flex: 1;
  padding: 2.29vw 1.15vw 0;
  height: 15.63vw;
  margin-right: 2.19vw;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 0.52vw;
  transition: all 0.5s;
}
.pd_page .part2 .item:hover {
  transform: translateY(-10%);
}
.pd_page .part2 .item:last-child {
  margin-right: 0;
}
.pd_page .part2 .item .icon {
  width: 2.86vw;
  height: 2.86vw;
  margin-bottom: 1.56vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd_page .part2 .item .tit {
  margin-bottom: 0.94vw;
  color: var(--fontColor);
}
.pd_page .part2 .item .con {
  color: var(--fontColorGray);
  line-height: 1.75;
}
.pd_page .part3 {
  padding: 4.95vw 7.29vw 5.21vw 6.61vw;
}
.pd_page .part3 .title {
  text-align: center;
  margin-bottom: 3.13vw;
}
.pd_page .part3 .text {
  width: 29.64vw;
}
.pd_page .part3 .text .name {
  margin-bottom: 2.03vw;
  color: var(--fontColor);
}
.pd_page .part3 .text .litem {
  margin-bottom: 2.03vw;
}
.pd_page .part3 .text .tit {
  color: var(--fontColor);
  margin-bottom: 0.94vw;
}
.pd_page .part3 .text .con {
  color: var(--fontColorGray);
  line-height: 1.75;
}
.pd_page .part3 .img {
  width: 28.7vw;
  height: 17.84vw;
  background-color: #f4f5f6;
}
.pd_page .part4 {
  padding: 4.43vw 7.29vw 4.69vw 6.61vw;
  background-color: #f7f8f9;
}
.pd_page .part4 .title {
  text-align: center;
  margin-bottom: 2.03vw;
}
.pd_page .part4 table {
  width: 100%;
  /*border-bottom: 1px solid rgba(103, 120, 134,.21);*/
  border-left: 1px solid rgba(103, 120, 134, 0.21);
  border-collapse: collapse;
}
.pd_page .part4 table tr.firstRow {
  background-color: #677886;
  color: #fff;
  font-size: 18px;
  font-family: hb;
}
.pd_page .part4 table tr.firstRow td {
  border-right: 1px solid rgba(255, 255, 255, 0.21);
}
.pd_page .part4 table tr {
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
}
.pd_page .part4 table tr td {
  border-bottom: 1px solid rgba(103, 120, 134, 0.21);
  border-right: 1px solid rgba(103, 120, 134, 0.21); 
  vertical-align: middle;
  line-height: 1.5;
}

.pd_page .part4 table tr td:nth-child(1) {
  background-color: rgba(103, 120, 134, 0.14);
}
.pd_page .part5 {
  padding: 5.21vw 7.29vw 5.21vw 6.61vw;
}
.pd_page .part5 .title {
  text-align: center;
  margin-bottom: 2.55vw;
}
.pd_page .part5 .swiper_box {
  position: relative;
}
.pd_page .part5 .swiper-slide {
  background-color: #f7f8f9;
  padding: 1.46vw 2.08vw;
  border-radius: 1.04vw;
  transition: all 0.5s;
  overflow: hidden;
}
.pd_page .part5 .swiper-slide .name {
  margin-bottom: 1.04vw;
}
.pd_page .part5 .swiper-slide .img {
  width: 100%;
}
.pd_page .part5 .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.16vw;
  background-color: var(--logoColor);
  transition: all 0.5s;
}
.pd_page .part5 .swiper-slide:hover {
  background-color: #eff1f3;
}
.pd_page .part5 .swiper-slide:hover::after {
  width: 100%;
}
.pd_page .part5 .btn {
  width: 70.1vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pd_page .part6 {
  padding: 4.95vw 7.29vw 6.25vw 6.61vw;
  background-color: #f7f8f9;
}
.pd_page .part6 .title {
  text-align: center;
  margin-bottom: 2.55vw;
}
.pd_page .part6 .plist .item .img {
  background-color: #fff;
}
.pd_page.float {
  position: fixed;
  width: 100vw;
  height: 100vh;
  right: 0;
  top: 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 99;
  background-color: #fff;
  pointer-events: none;
}
.pd_page.float.act {
  opacity: 1;
  pointer-events: initial;
}

.pd_page.float .right .pback {
  position: absolute;
  right: 7.29vw;
  top: 7.29vw;
  display: flex;
  align-items: center;
  color: var(--fontColorGray);
  cursor: pointer;
}
.pd_page.float .right .pback img {
  width: 0.83vw;
  margin-right: 0.52vw;
}
.pd_page.float .right .part1 {
}
.pd_page.float .right .part1 .swiper_box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26.61vw;
  background-color: rgba(103, 120, 134, 0.08);
}
.pd_page.float .right .part1 .swiper_box img {
  width: 80%;
  max-height: 90%;
  object-fit: contain;
}
.pd_page.float .right .part1 .txt {
  height: calc(100vh - 8.7vw);
  overflow: auto;
}
.pd_page.float .right .part1 .txt::-webkit-scrollbar {
  width: 0;
}
.pd_page.float .right .part1 .block {
  display: none;
}
.pd_page.float .right .part1 .block.act {
  display: block;
}
.tabbar {
  position: sticky;
  top: 0.85rem;
  z-index: 99;
  width: 100%;
  height: 4.69vw;
  background-color: #eff1f3;
  padding: 0 7.29vw;
}
.tabbar .pup {
  position: absolute;
  left: 0;
  top: 0;
  width: 7.29vw;
  height: 100%;
  cursor: pointer;
}
.tabbar .list {
}
.tabbar .list .item {
  padding: 0 3.33vw;
  height: 100%;
  color: var(--fontColorGray);
  position: relative;
  transition: all 0.5s;
}
.tabbar .list .item span {
  position: relative;
  z-index: 2;
}
.tabbar .list .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 0.21vw;
  background-color: var(--logoColor);
  transition: all 0.5s;
}
.tabbar .list .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0%;
  height: 100%;
  opacity: 1;
  background-color: #fff;
  transition: all 0.5s;
}
.tabbar .list .item.act,
.tabbar .list .item:hover {
  color: var(--logoColor);
}
.tabbar .list .item.act::before,
.tabbar .list .item.act::after,
.tabbar .list .item:hover::before,
.tabbar .list .item:hover::after {
  width: 100%;
}
.tabbar .pback {
  color: var(--fontColorGray);
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.5s;
}
.tabbar .pback:hover {
  opacity: 1;
}
.tabbar .pback img {
  width: 0.83vw;
  margin-right: 0.52vw;
}
.n_page {
  padding: 7.29vw 7.29vw 11.25vw;
}
.n_page .item {
  display: flex;
  align-items: center;
  height: 16.67vw;
  margin-bottom: 3.13vw;
  border-radius: 1.04vw 0 1.04vw 0;
  overflow: hidden;
  background-color: rgba(103, 120, 134, 0.1);
  color: var(--fontColor);
  transition: all 0.5s;
}
.n_page .item.suggest {
  height: 25.1vw;
  background-color: var(--fontColor);
  margin-bottom: 4.17vw;
}
.n_page .item.suggest:hover .txt {
  background-color: transparent;
}
.n_page .item.suggest .txt::after {
  display: none;
}
.n_page .item .bgimg {
  width: 23.59vw;
  height: 100%;
}
.n_page .item.suggest .bgimg {
  width: 44.79vw;
}
.n_page .item .txt {
  width: 61.82vw;
  height: 100%;
  padding: 2.6vw 3.85vw;
  position: relative;
  transition: all 0.5s;
}
.n_page .item .txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--logoColor);
  transition: all 0.5s;
}
.n_page .item:hover .txt::after {
  width: 100%;
}
.n_page .item:hover {
  box-shadow: 0 0 66px rgba(0, 0, 0, 0.1);
}
.n_page .item:hover .txt {
  background-color: #fff;
}
.n_page .item .txt .con {
  line-height: 2;
  color: var(--fontColorGray);
}
.n_page .item .txt .tit {
  margin-bottom: 1.56vw;
}
.n_page .item .time {
  color: var(--fontColorGray);
}
.n_page .item.suggest .txt {
  width: 40.63vw;
}
.n_page .item.suggest .txt .tit {
  color: #fff;
}
.n_page .item.suggest .txt .con {
  color: #fff;
  opacity: 0.5;
}
.n_page .item.suggest .more {
  color: #fff;
}
.n_page .item.suggest .time {
  color: #fff;
  opacity: 0.5;
}
.n_page .item .btm {
  position: absolute;
  bottom: 2.6vw;
  left: 0;
  width: 100%;
  padding: 0 3.85vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.n_page .pagination {
  margin-top: 4.69vw;
}

.nd_page {
  padding: 8.54vw 7.29vw 4.53vw;
  background-color: #f9fbff;
}
.nd_page .inner {
  background-color: #fff;
  padding: 3.65vw 11.46vw 6.77vw;
}
.nd_page .bread {
  color: var(--fontColorGray);
  margin-bottom: 4.38vw;
  line-height: 1.5;
}
.nd_page .bread a {
  color: var(--fontColorGray);
}
.nd_page .title {
  margin-bottom: 2.08vw;
  width: 45.63vw;
}
.nd_page .con {
  padding: 3.13vw 0 4.17vw;
  border-top: 1px solid rgba(103, 120, 134, 0.1);
  margin-top: 2.6vw;
  line-height: 2;
  color: var(--fontColorGray);
}
.nd_page .con span,
.nd_page .con p {
  font-size: 16px !important;
  font-family: hr !important;
  color: var(--fontColorGray) !important;
}
.nd_page .con img {
  display: inline-block;
}
.nd_page .btm a {
  border-top: 1px solid rgba(45, 50, 53, 0.1);
  padding: 1.51vw 0;
  color: var(--fontColor);
  transition: all 0.5s;
}
.nd_page .btm a:hover {
  color: var(--logoColor);
}
.nd_page .more {
  margin: 4.69vw auto 0;
}

/* 新闻分享 */

.nd_page .share .item {
  width: 2.08vw;
  height: 2.08vw;
  position: relative;
}

.nd_page .share .sitem > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: initial;
}
.nd_page .share .sitem > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.nd_page .share .sitem > img.act_img {
  display: none;
}
.nd_page .share .sitem:hover > img.comm_img {
  display: none;
}
.nd_page .share .sitem:hover > img.act_img {
  display: block;
}

.social-share .social-share-icon {
  border: none !important;
}

.social-share .icon-weibo:hover,
.social-share .icon-qq:hover,
.social-share .icon-wechat:hover {
  background-color: transparent !important;
}

.social-share .icon-weibo:before,
.social-share .icon-qq:before,
.social-share .icon-wechat:before {
  opacity: 0 !important;
}
.inv_1 {
  padding: 6.77vw 7.29vw;
}
.esg_page .inv_1 {
  padding: 6.77vw 0;
}
.inv_1 .title {
  margin-bottom: 4.01vw;
  text-align: center;
}
.title span {
  position: relative;
  padding-bottom: 0.16vw;
}
.title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.52vw;
  border-radius: 0.13vw 0 0.13vw 0;
  background-color: var(--logoColor);
  transition: all 0.5s;
}

.inv_1 .item {
  background-color: #f6f7f8;
  margin-bottom: 1.67vw;
  display: flex;
  border-radius: 1.04vw 0 1.04vw 0;
  position: relative;
  transition: all 0.5s;
  overflow: hidden;
}
.inv_1 .item:hover {
  background-color: #fff;
  box-shadow: 0 0 3.44vw rgba(103, 120, 134, 0.18);
}
.inv_1 .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--logoColor);
  transition: all 0.5s;
}
.inv_1 .item:hover::after {
  width: 100%;
}
.inv_1 .item .txt {
  padding: 3.39vw 4.17vw;
  width: calc(100% - 14.27vw);
}
.inv_1 .item .txt .name {
  margin-bottom: 0.94vw;
}
.inv_1 .item .down {
  width: 14.27vw;
  border-left: 1px solid rgba(103, 120, 134, 0.1);
  color: var(--logoColor);
}
.inv_1 .item .down > div {
  height: 50%;
  border-bottom: 1px solid rgba(103, 120, 134, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inv_1 .item .down > div:last-child {
  border-bottom: none;
}
.inv_1 .item .down span {
  margin-left: 0.52vw;
  margin-top: 5px;
}
.inv_1 .pagination {
  margin-top: 4.17vw;
}
.inv_2 {
  padding: 8.49vw 7.29vw 5.21vw;
  background-image: url("../img/inv2bg.jpg");
  background-size: 100% auto;
  background-position: top center;
}
.inv_2 .title {
  margin-bottom: 2.08vw;
}
.inv_2 .desc {
  width: 27.4vw;
  color: var(--fontColorGray);
  line-height: 1.75;
  margin-bottom: 16.15vw;
}
.inv_2 .inner {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  border-radius: 1.04vw 0 1.04vw 0;
}
.inv_2 .inner .left {
  padding: 3.85vw 0 5.21vw 5.47vw;
  border-right: 1px solid rgba(103, 120, 134, 0.15);
  width: calc(100% - 24.53vw);
}
.inv_2 .inner .left .top {
  position: relative;
  margin-bottom: 1.3vw;
}
.inv_2 .inner .left .top .name {
  margin-right: 1.04vw;
  padding-right: 1.56vw;
  border-right: 1px solid rgba(103, 120, 134, 0.5);
}
.inv_2 .inner .left .top .stock {
  color: var(--fontColorGray);
}
.inv_2 .inner .left .top .stock span {
  color: var(--fontColor);
}
.inv_2 .inner .left .top::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 1px;
  height: 100%;
  top: 0;
  background-color: var(--logoColor);
}
.inv_2 .inner .left .degree {
  margin-bottom: 2.71vw;
}
.inv_2 .inner .left .icon {
  width: 1.46vw;
  height: 1.46vw;
  margin-right: 0.52vw;
}
.inv_2 .inner .left .item {
  margin-right: 3.65vw;
}
.inv_2 .inner .left .item .tit {
  margin-bottom: 0.36vw;
  color: var(--fontColor);
  opacity: 0.5;
}
.inv_2 .inner .left .item .con {
  color: var(--fontColor);
}
.inv_2 .inner .right {
  width: 24.53vw;
}
.inv_2 .inner .right .tit {
  margin-top: 1.04vw;
  text-align: center;
  line-height: 1.5;
}
.esg_page {
  background-image: url("../img/esg1bg.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 7.14vw 7.29vw 0;
}
.esg_1 .title {
  margin-bottom: 3.75vw;
}
.esg_1 .desc {
  line-height: 1.75;
  width: 27.6vw;
}
.esg_1 .right {
  margin-top: 4.69vw;
  width: 41.67vw;
  border: 1px solid rgba(45, 50, 53, 0.26);
  padding: 3.02vw 0 2.45vw;
  border-radius: 1.04vw 0 1.04vw 0;
  position: relative;
  text-align: center;
}
.esg_1 .right::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.94vw;
  width: 2.6vw;
  height: 1.82vw;
  background-image: url("../img/yh1.png");
  background-size: 100% 100%;
  transition: all 0.5s;
}
.esg_1 .right::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.15vw;
  width: 2.6vw;
  height: 1.82vw;
  background-image: url("../img/yh2.png");
  background-size: 100% 100%;
  transition: all 0.5s;
}
.esg_2{
    padding-bottom: 6.77vw;
}
.esg_2 .list {
  margin-top: 10.42vw;
}
.esg_2 .list .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 9.38vw;
}
.esg_2 .list .item:last-child {
  margin-bottom: 0;
}
.esg_2 .list .item:nth-child(4n) {
  flex-direction: row-reverse;
}
.esg_2 .list .item .bgimg {
  width: 42.71vw;
  border-radius: 1.04vw 0 1.04vw 0;
}
.esg_2 .list .item .txt {
  width: 34.58vw;
}
.esg_2 .list .item .txt .top {
  margin-bottom: 3.65vw;
  display: flex;
  align-items: flex-end;
}
.esg_2 .list .item .txt .tit {
  line-height: 2;
}
.esg_2 .list .item .txt .num {
  margin-left: 3.65vw;
  padding-left: 8.91vw;
  position: relative;
  line-height: 1;
  color: var(--logoColor);
}
.esg_2 .list .item .txt .num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1.3vw;
  width: 8.91vw;
  height: 1px;
  background-color: var(--logoColor);
  transition: all 0.5s;
}
.esg_2 .list .item .txt .con {
  color: var(--fontColorGray);
  line-height: 1.75;
}
.s_1 {
  padding: 7.29vw;
}
.s_1 .title {
  margin-bottom: 2.97vw;
  text-align: center;
}
.s_1 .top {
  padding: 0.94vw;
  background-color: #bbc5d1;
  border-radius: 1.04vw 1.04vw 0 0;
  overflow: hidden;
}
.s_1 .img {
  border-radius: 1.04vw;
  overflow: hidden;
}
.s_1 .two {
  /*height: 16.93vw;*/
  background-color: var(--fontColorGray);
  display: flex;
}
.s_1 .swiperl_box {
  padding: 4.17vw 5.78vw;
  width: 31.56vw;
  background-image: url("../img/s1bg.png");
  background-size: 100% 100%;
}
.s_1 .swiperl {
  height: 8.56vw;
  color: #fff;
}
.s_1 .swiperl .swiper-slide {
  height: fit-content;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.s_1 .swiperl .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1vw;
  width: 0.94vw;
  height: 0.94vw;
  background-image: url("../img/yuan.png");
  background-size: 100% 100%;
  transition: all 0.5s;
}
.s_1 .swiperl .swiper-slide svg {
  width: 0.94vw;
  height: 0.94vw;
  margin-top: 0.1vw;
  transform: rotate(-90deg);
}
.s_1 .swiperl .swiper-slide .circle1 {
  stroke: #d80c1e;
  stroke-dasharray: 0 339;
}
.s_1 .swiperl .swiper-slide-active .circle1 {
  -webkit-animation: svgCircleAnmi 6s linear forwards;
  animation: svgCircleAnmi 6s linear forwards;
}
@-webkit-keyframes svgCircleAnmi {
  0% {
    stroke-dasharray: 0 339;
  }
  to {
    stroke-dasharray: 339 339;
  }
}
@keyframes svgCircleAnmi {
  0% {
    stroke-dasharray: 0 339;
  }
  to {
    stroke-dasharray: 339 339;
  }
}
.s_1 .swiperl .swiper-slide .tit {
  width: calc(100% - 1.98vw);
  margin-left: 1.04vw;
}
.s_1 .swiperr {
  width: 33.02vw;
  margin-left: 7.24vw;
  color: #fff;
}
.s_1 .swiperr .swiper-slide {
  padding: 3.23vw 0.5vw 4.23vw;
  transition: all 0.5s;
  background-color: var(--fontColorGray);
  height: auto;
}
.s_1 .swiperr .swiper-slide .con {
  width: 100%;
  margin-top: 1.61vw;
  line-height: 2.5;
}

.s_2 {
  padding: 5.21vw 0 8.07vw 7.29vw;
  background-image: url("../img/s21.jpg");
  background-size: 100%;
  min-height: 32.92vw;
}
.s_2 .title {
  margin-bottom: 4.53vw;
}
.s_2 .inner {
  margin-left: auto;
  width: 54.37vw;
  background-color: var(--fontColor);
  display: flex;
  border-radius: 1.04vw 0 0 1.04vw;
}
.s_2 .inner .tab {
  width: 19.79vw;
  padding: 3.65vw 0 4.64vw 4.17vw;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.s_2 .inner .tab .item {
  display: flex;
  color: #fff;
  align-items: center;
  margin-bottom: 1.51vw;
  cursor: pointer;
}
.s_2 .inner .tab .item .tit {
  width: calc(100% - 3.65vw);
  position: relative;
  padding-right: 2.6vw;
}
.s_2 .inner .tab .item .tit::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--logoColor);
  transition: all 0.5s;
  display: none;
}
.s_2 .inner .tab .item.act .tit::after {
  display: block;
}
.s_2 .inner .tab .item .num {
  width: 2.6vw;
  height: 2.6vw;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.04vw;
}
.s_2 .inner .tab .item.act .num {
  background-color: #fff;
  color: var(--logoColor);
}
.s_2 .inner .tab .item .tit {
  opacity: 0.3;
}
.s_2 .inner .tab .item.act .tit {
  opacity: 1;
}
.s_2 .inner .list {
  width: calc(100% - 19.79vw);
  padding: 3.65vw 4.17vw 9.38vw;
  background-image: url("../img/s2bg.png");
  background-size: 30.42vw 7.81vw;
  background-position: right bottom;
  position: relative;
}
.s_2 .inner .list .item {
  width: 23.13vw;
  color: #fff;
  opacity: 0;
  position: absolute;
  top: 4.65vw;
  left: 4.17vw;
  transition: all 0.5s;
}
.s_2 .inner .list .item.act {
  display: block;
  top: 3.65vw;
  opacity: 1;
}
.s_2 .inner .list .item .hicon {
  width: 3.13vw;
  height: 3.13vw;
  margin-bottom: 1.98vw;
}
.s_2 .inner .list .item .tit {
  margin-bottom: 1.61vw;
}
.s_2 .inner .list .item .con {
  line-height: 2;
  opacity: 0.8;
}
.s_3 {
  padding: 0 7.29vw 9.38vw;
}
.s_3 .title {
  margin-bottom: 3.65vw;
  text-align: center;
}
.s_3 .bgimg {
  width: 50%;
  height: 39.58vw;
}
.s_3 .form {
  width: 50%;
  padding: 6.25vw 2.6vw 0;
  border: 1px solid rgba(103, 120, 134, 0.2);
  border-radius: 0 1.04vw 1.04vw 0;
  height: 39.58vw;
}
.s_3 .form .tit {
  margin-bottom: 1.46vw;
}
.s_3 .form .tit span {
  color: var(--logoColor);
}
.s_3 .form .item {
  margin-bottom: 2.55vw;
}
.s_3 .form .item2 {
  width: calc(100% / 2 - 1.3vw);
}
.s_3 .form .item1 {
  width: 100%;
}
.s_3 .form .item input {
  width: 100%;
  height: 3.13vw;
  border: 1px solid rgba(103, 120, 134, 0.2);
  border-radius: 0.31vw;
  padding-left: 0.83vw;
}
.s_3 .form .item textarea {
  width: 100%;
  height: 5.1vw;
  border: 1px solid rgba(103, 120, 134, 0.2);
  border-radius: 0.31vw;
  padding: 0.94vw 0.83vw;
}
.s_3 .form button {
  width: 9.95vw;
  height: 2.4vw;
  background-color: var(--logoColor);
  color: #fff;
  margin: 0.73vw auto 0;
  display: block;
  border: none;
  border-radius: 0.16vw;
  cursor: pointer;
}

.b_1 {
  margin-top: 4.69vw;
  padding: 10.42vw 7.29vw 12.5vw;
  background-image: url("../img/bbg.png");
  background-size: 100%;
  background-color: #f6f7f8;
}
.b_1 .title {
  margin-bottom: 4.38vw;
  position: relative;
}
.b_1 .title::after {
  content: "";
  position: absolute;
  top: -1.82vw;
  left: 0;
  height: 0.52vw;
  width: 3.13vw;
  border-radius: 0.13vw 0 0.13vw 0;
  background-color: var(--logoColor);
}
.b_1 .form {
  border-radius: 1.04vw;
  background-color: #fff;
  overflow: hidden;
}
.b_1 .form .tab {
  display: flex;
  height: 5.21vw;
  background-color: var(--fontColor);
  color: #fff;
}
.b_1 .form .tab .item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.5s;
  cursor: pointer;
}
.b_1 .form .tab .item.act,
.b_1 .form .tab .item:hover {
  background-color: var(--logoColor);
}
.b_1 .form .tab .hicon {
  width: 1.56vw;
  height: 1.56vw;
  margin-right: 0.73vw;
}
.b_1 .form form {
  display: none;
}
.b_1 .form form.act {
  display: block;
}
.b_1 .form .tit {
  margin-bottom: 1.04vw;
}
.b_1 .form .tit span {
  color: var(--logoColor);
}
.b_1 .form .list {
  padding: 5.21vw 7.29vw;
}
.b_1 .form .list .item {
  margin-bottom: 3.13vw;
}
.b_1 .form .item3 {
  width: calc(100% / 3 - 2.45vw);
  margin-right: 3.65vw;
}
.b_1 .form .item1 {
  width: 100%;
}
.b_1 .form .item select,
.b_1 .form .item input {
  width: 100%;
  height: 2.55vw;
  border: 1px solid rgba(103, 120, 134, 0.2);
  border-radius: 0.31vw;
  padding: 0 0.83vw;
  background-color: #f6f7f8;
  color: rgba(103, 120, 134, 0.6);
}
.b_1 .form .item .select {
  position: relative;
}

.b_1 .form .item .select .sel {
  position: absolute;
  right: 0.83vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0.57vw;
  height: 0.57vw;
  transition: all 0.5s;
}
.b_1 .form .item input::placeholder {
  color: rgba(103, 120, 134, 0.6);
}
.b_1 .form .item textarea {
  width: 100%;
  height: 5.1vw;
  border: 1px solid rgba(103, 120, 134, 0.2);
  border-radius: 0.31vw;
  padding: 0.94vw 0.83vw;
  background-color: #f6f7f8;
  color: rgba(103, 120, 134, 0.6);
}
.b_1 .form button {
  width: 9.95vw;
  height: 2.4vw;
  background-color: var(--logoColor);
  color: #fff;
  margin: 0.73vw auto 0;
  display: block;
  border: none;
  border-radius: 0.16vw;
}

.b_1 .form button.hid{
    pointer-events: none;
}

.j_1 {
  padding: 7.03vw 7.29vw 7.94vw;
  background-image: url("../img/j1.jpg");
  background-size: 100% auto;
  background-position: bottom left;
}
.j_1 .title {
  margin-bottom: 3.07vw;
  text-align: center;
}
.j_1 .desc {
  margin-bottom: 2.14vw;
  text-align: center;
}
.j_1 .desc span {
  color: var(--logoColor);
}
.j_1 .con {
  text-align: center;
  line-height: 2;
}
.j_1 .more {
  margin: 0.4rem auto 0;
}
.j_2 {
  padding: 7.03vw 7.29vw 8.33vw;
}
.j_2 .title {
  margin-bottom: 3.07vw;
  text-align: center;
}
.j_2 .item {
  width: calc(100% / 6 - 0.91vw);
  margin-right: 1.09vw;
  margin-bottom: 1.09vw;
  background-color: #f6f7f8;
  border-radius: 1.04vw 0 1.04vw 0;
  padding: 2.97vw 1.04vw;
  transition: all 0.5s;
}
.j_2 .item:hover {
  background-color: #fff;
  box-shadow: 0 1.77vw 2.92vw rgba(103, 120, 134, 0.15);
  color: var(--logoColor);
}
.j_2 .item .icon {
  margin-bottom: 1.51vw;
  width: 2.6vw;
  height: 2.86vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.j_3 {
  padding: 7.03vw 7.29vw 8.33vw;
  height: 38.91vw;
  background-image: url("../img/j3.jpg");
  background-size: cover;
  color: #fff;
}
.j_3 .title {
  margin-bottom: 2.14vw;
  text-align: center;
}
.j_3 .desc {
  margin-bottom: 3.13vw;
  text-align: center;
}
.h_1 {
  padding: 8.07vw 7.29vw 5.21vw;
}
.h_1 .left {
  width: 38.02vw;
}
.h_1 .title {
  margin-bottom: 3.28vw;
}
.h_1 .con {
  line-height: 1.75;
  color: var(--fontColorGray);
}
.h_1 .bgimg {
  width: 42.71vw;
}
.h_2 {
  padding: 7.55vw 7.29vw 3.13vw;
  background-color: #f6f7f8;
}
.h_2 .title {
  margin-bottom: 3.49vw;
}
.h_2 .desc {
  width: 52.08vw;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 4.17vw;
  line-height: 1.75;
  color: var(--fontColorGray);
}
.h_2 .item {
  position: relative;
  margin-bottom: 6.25vw;
}
.h_2 .item .bgimg {
  width: 56.3vw;
  height: 31.61vw;
}
.h_2 .item .txt {
  position: absolute;
  right: 0;
  top: 3.54vw;
  background-image: url("../img/h2bg.jpg");
  border-radius: 1.04vw;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 34.53vw;
  padding: 2.71vw 5.47vw;
  color: #fff;
}
.h_2 .item .txt .top {
  position: relative;
}
.h_2 .item .txt .top::after {
  content: "";
  position: absolute;
  width: 2.45vw;
  height: 2.19vw;
  right: 0;
  top: 0;
  background-image: url("../img/yh.png");
  background-size: 100% 100%;
}
.h_2 .item .txt .num {
  margin-bottom: 0.83vw;
}
.h_2 .item .txt .name {
  margin-bottom: 1.98vw;
}
.h_2 .item .txt .feat p {
  margin-bottom: 0.94vw;
  position: relative;
  padding-left: 2.19vw;
  line-height: 1.4;
}
.h_2 .item .txt .feat p::after {
  content: "";
  position: absolute;
  width: 1.15vw;
  height: 1.15vw;
  left: 0;
  top: 0;
  background-image: url("../fonts/dui.svg");
  background-size: 100% 100%;
}
.h_2 .item:nth-child(2n) .bgimg {
  margin-left: auto;
}
.h_2 .item:nth-child(2n) .txt {
  left: 0;
}
.q_3 {
  padding: 5.78vw 7.29vw 7.29vw;
}
.q_3 .title {
  margin-bottom: 3.49vw;
}
.q_3 .desc {
  width: 59.43vw;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 4.22vw;
  line-height: 1.75;
  color: var(--fontColorGray);
}
.q_3 .list{
    width: 11.25rem;
}
.q_3 .list .item {
  width: 28.65vw;
  height: 18.13vw;
  position: relative;
  margin-bottom: 1.46vw;
  transition: all 0.5s;
}
.q_3 .right .item {
  width: 25.10vw;
  height: 37.71vw;
  position: relative;
  margin-left: 1.51vw;
}
.q_3 .item {
  border-radius: 1.04vw;
  overflow: hidden;
}
.q_3 .item img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.q_3 .item .txt {
    position: relative;
  z-index: 2;
  color: #fff;
  padding: 2.14vw 2.14vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.q_3 .item,hover .txt,
.q_3 .item:hover .txt{
    transform: translateY(0)!important;
}
.q_3 .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#ffffff00, #292929bb);
  transition: all 0.5s;
  z-index: 2;
}
.q_3 .item.hover::before,
.q_3 .item:hover::before{
  opacity: 0;
}
.q_3 .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background-color: #1d2024c7;
  transition: all 0.5s;
  opacity: 0;
}
.q_3 .item.hover::after,
.q_3 .item:hover::after{
  opacity: 1;
}
.q_3 .item .txt .tit {
  position: relative;
  z-index: 2;
  transition: all 0.5s;
  font-size: 0.28rem;
}
.q_3 .item .txt .tit::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1.77vw;
  width: 1.72vw;
  height: 0.42vw;
  background-color: var(--logoColor);
  border-radius: 0.13vw 0 0.13vw 0;
  opacity: 0;
}
.q_3 .item.hover .txt .tit::after,
.q_3 .item:hover .txt .tit::after{
  opacity: 1;
}
.q_3 .item .txt .con {
  position: relative;
  z-index: 2;
  padding-top: 1.35vw;
  line-height: 2;
  transition: all 0.5s;
  opacity: 0; 
}  
.q_3 .item.hover .txt .con,
.q_3 .item:hover .txt .con{
    opacity: 1;
}
.h_3 {
  padding: 7.55vw 7.29vw 3.13vw;
  background-image: url("../img/h3bg.jpg");
  background-size: cover;
}
.h_3 .title {
  margin-bottom: 3.49vw;
}
.h_3 .desc {
  width: 52.08vw;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 4.17vw;
  line-height: 1.75;
  color: var(--fontColorGray);
}
.h_3 .more {
  color: var(--logoColor);
  opacity: 0;
}
.h_3 .item:hover .more {
  opacity: 1;
}
.h_3 .more:hover {
  color: #fff;
}
.h_3 .more span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.h_3 .more .hicon {
  width: 1.2vw;
  height: 1.04vw;
  margin-right: 0.42vw;
}
.h_3 .item {
  /*width: 18.85vw;*/
  width: 11.45vw;
  margin-right: 3.23vw;
  margin-bottom: 3.23vw;
}
.h_3 .item .img {
  width: 100%;
  height: 13.49vw;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background-color: #fff;*/
  margin-bottom: 1.98vw;
}
.h_3 .item .img img {
  max-height: 90%;
}
.h_3 .item .tit {
  margin-bottom: 1.56vw;
  transition: all 0.5s;
}
.h_3 .item:hover .tit {
  color: var(--logoColor);
}
.h_3 .more_list {
  display: none;
}
.h_3 .viewmore {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.h_3 .viewmore img {
  width: 0.42vw;
  margin-left: 0.52vw;
  transform: translateY(-0.1vw);
  cursor: pointer;
}
.h_3 .viewmore.act img {
  transform: translateY(0.1vw) rotate(180deg);
}
.a_1 {
  padding: 15.36vw 7.29vw 7.29vw;
  background-image: url("../img/a1bg.png");
  background-size: auto 14rem;
}
.a_1 > img {
  margin-top: 2.6vw;
}
.a_1 .left {
  width: 30.89vw;
  font-size: 4.22vw;
  color: var(--fontColorGray);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.a_1 .left > img {
  margin-bottom: 0.52vw;
}
.a_1 .left > div {
  width: fit-content;
}
.a_1 .right {
  width: 42.71vw;
  padding-top: 3.65vw;
}
.a_1 .right .title {
  margin-bottom: 3.13vw;
  line-height: 1.4;
}
.a_1 .right .title span::after {
  display: none;
}
.a_1 .right .title > div {
  display: inline;
  color: var(--logoColor);
}
.a_1 .right .con {
  color: var(--fontColorGray);
  line-height: 1.75;
}
.a_1 .right .con strong {
  color: var(--fontColor);
  font-family: hb;
}
.a_2 {
  height: 48.96vw;
  position: relative;
}
.a_2 .imgs {
  position: relative;
  height: 100%;
}
.a_2 .imgs .bgimg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.a_2 .imgs .bgimg.act {
  opacity: 1;
}
.a_2 .txt {
  position: absolute;
  top: 5.63vw;
  left: 0;
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
}
.a_2 .txt .item {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.a_2 .txt .item.act {
  opacity: 1;
}
.a_2 .title {
  margin-bottom: 4.43vw;
}
.a_2 .con {
  line-height: 1.4;
}
.a_2 .tab {
  position: absolute;
  bottom: 0;
  left: 7.29vw;
  text-align: center;
  color: #fff;
  z-index: 2;
  height: 9.38vw;
  width: calc(100% - 14.58vw);
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 1.04vw 1.04vw 0 0;
  overflow: hidden;
}
.a_2 .tab .item {
  flex: 1;
  padding-top: 2.45vw;
  transition: all 0.5s;
  position: relative;
  cursor: pointer;
}
.a_2 .tab .item::after {
  content: "";
  position: absolute;
  height: 48.96vw;
  width: 1px;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0.2;
}
.a_2 .tab .item:last-child::after {
  display: none;
}
.a_2 .tab .item.act,
.a_2 .tab .item:hover {
  background-color: var(--logoColor);
}
.a_2 .tab .hicon {
  width: 2.08vw;
  height: 2.08vw;
  margin-bottom: 0.99vw;
}
.a_3 {
  padding: 9.11vw 0 19.9vw;
  background-image: url("../img/a3bg.png");
  background-size: 100% auto;
  position: relative;
}
.a_3 .title {
  margin-bottom: 7.81vw;
  text-align: center;
}
.a_3 .swiperl_box {
  width: 26.04vw;
  overflow: hidden;
  background-image: url("../fonts/cizi.svg");
  background-position: -3.59vw 4.27vw;
  background-size: 111.56vw;
}
.a_3 .swiperl {
  margin-left: 5.89vw;
  width: 16.41vw;
  height: 11.2vw;
}
.a_3 .swiperr {
  width: calc(100% - 31.3vw);
  /* background-color: #e00; */
  background-image: url("../img/cizi.png");
  background-position: -0.21vw 4.27vw;
  background-size: 111.56vw;
  overflow: hidden;
  height: 11.2vw;
}
.a_3 .swiper-slide .point {
  width: 0.99vw;
  height: 0.99vw;
  border-radius: 50%;
  position: relative;
  background-color: #fff;
  margin-top: 5.1vw;
  transform: translateX(-0.47vw);
}
.a_3 .swiper-slide-next .point .year {
  color: var(--logoColor);
}
.a_3 .swiper-slide:nth-child(2n) .point .year {
  position: absolute;
  top: 1.51vw;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.a_3 .swiper-slide:nth-child(2n) .point .tit {
  position: absolute;
  top: -2.86vw;
  left: 50%;
  transform: translateX(-50%);
  width: 13.54vw;
  text-align: center;
}
.a_3 .swiper-slide:nth-child(2n-1) .point .year {
  position: absolute;
  top: -5.2vw;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.a_3 .swiper-slide:nth-child(2n-1) .point .tit {
  position: absolute;
  top: 2.51vw;
  left: 50%;
  transform: translateX(-50%);
  width: 13.54vw;
  text-align: center;
}
.a_3 .swiper-slide .point::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.47vw;
  height: 0.47vw;
  background-color: var(--fontColor);
  transition: all 0.5s;
  border-radius: 50%;
}
.a_3 .swiper-slide-next .point::before {
  background-color: var(--logoColor);
}
.a_3 .swiperr .swiper-slide::after {
  content: "";
  position: absolute;
  left: calc(0.52vw + 100%);
  top: 50%;
  transform: translateY(-50%);
  width: 0%;
  height: 1px;
  background-color: var(--logoColor);
  transition: all 0.5s;
  border-radius: 50%;
}
.a_3 .swiperr .swiper-slide-active::after {
  width: 95%;
  transition: all 0s;
}
.a_3 .swiperr .swiper-slide-next::after {
  width: 95%;
  transition: all 5s linear;
}
.a_3 .btn {
  width: 22.92vw;
  height: 2.08vw;
  position: absolute;
  left: 40.89vw;
  bottom: 13.13vw;
  display: flex;
  cursor: pointer;
}
.a_3 .btn span {
  position: relative;
  z-index: 2;
  color: #fff;
}
.a_3 .btn > div {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(103, 120, 134, 0.5);
  transition: all 0.5s;
  position: relative;
}
.a_3 .btn > div::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 100%;
  background-image: linear-gradient(-90deg, #e70012, #e6e6e6);
  transition: all 0.5s;
}
.a_3 .btn > div:hover::after {
  width: 100%;
}
.a_3 .list {
  position: absolute;
  top: 15.42vw;
  left: 14.17vw;
  width: 27.6vw;
  min-height: 23.52vw;
  background-color: #fff;
  border-radius: 0.52vw;
  box-shadow: 0 0 3.44vw rgba(103, 120, 134, 0.3);
  z-index: 9;
}
.a_3 .list .item {
  display: none;
  padding: 0.73vw 0.89vw;
}
.a_3 .list .item .bgimg {
  height: 14.69vw;
  margin-bottom: 1.56vw;
}
.a_3 .list .item.act {
  display: block;
}
.a_3 .list .item p {
  position: relative;
  line-height: 2;
  padding-left: 0.83vw;
  color: var(--fontColorGray);
}
.a_3 .list .item p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63vw;
  width: 0.31vw;
  height: 0.31vw;
  background-color: var(--fontColorGray);
  border-radius: 50%;
  transition: all 0.5s;
}
.a_4 {
  padding: 4.79vw 7.29vw 11.98vw;
  background-image: url("../img/mfbj1.jpg");
  background-size: 100% auto;
}
.a_4 .title {
  margin-bottom: 3.39vw;
  text-align: center;
}
.a_4 .top {
  margin-bottom: 2.6vw;
}
.a_4 .top .item {
  margin: 0 2.45vw;
  display: flex;
  position: relative;
}
.a_4 .top .item .num {
  position: relative;
}
.a_4 .top .item .num span {
}
.a_4 .top .item .num span:nth-child(2) {
  position: absolute;
  top: 60%;
  left: 0;
  transform: rotateX(180deg);
  background-image: linear-gradient(
    rgba(103, 120, 134, 0),
    rgba(103, 120, 134, 0.13)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.a_4 .top .item .unit {
  position: relative;
  display: flex;
  align-items: flex-end;
  line-height: 3;
  margin-left: 0.31vw;
  color: var(--fontColorGray);
}
.a_4 .top .item .unit span {
  position: absolute;
  line-height: 1;
  top: 0;
  left: 0;
  color: var(--fontColor);
}
.a_4 .tab {
  padding: 2.24vw;
  background-color: #fff;
  box-shadow: 0 1.04vw 1.25vw rgba(0, 0, 0, 0.03);
  border-radius: 0.52vw;
  margin-bottom: 0.89vw;
}
.a_4 .tab .item {
  padding: 0.68vw 2.29vw;
  margin: 0 0.78vw;
  border: 1px solid rgba(103, 120, 134, 0.26);
  border-radius: 1.56vw;
  transition: all 0.5s;
  cursor: pointer;
}
.a_4 .tab .item.act,
.a_4 .tab .item:hover {
  background-color: var(--fontColor);
  color: #fff;
}
.a_4 .inner {
  position: relative;
}
/* .a_4 .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  transition: all 0.5s;
  z-index: 9;
  cursor: pointer;
} */
.a_4 .block {
  display: none;
}
.a_4 .block.act {
  display: flex;
  justify-content: space-between;
}
.a_4 .left {
  background-color: #fff;
  box-shadow: 0 1.04vw 1.25vw rgba(0, 0, 0, 0.03);
  border-radius: 0.52vw;
  width: 53.23vw;
  height: 28.33vw;
  overflow: hidden;
  padding: 0.36vw 0;
}
.a_4 .left .item {
  padding: 1.82vw;
  padding-left: 6.15vw;
  position: relative;
  width: 50%;
  border-bottom: 1px solid #e7e7e7;
}
.a_4 .left .item:nth-child(2n)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 3.13vw);
  background-color: #e7e7e7;
  transition: all 0.5s;
}
.a_4 .left .item::after {
  content: "";
  position: absolute;
  left: 2.6vw;
  top: 1.56vw;
  width: 1.15vw;
  height: 1.46vw;
  background-image: url("../fonts/awards.svg");
  background-size: 100% 100%;
}
.a_4 .left .item .tit {
  margin-bottom: 1.04vw;
}
.a_4 .left .item img {
  height: 9.95vw;
}
.a_4 .left::-webkit-scrollbar-track,
.a_4 .right::-webkit-scrollbar-track {
  background-color: transparent;
}
.a_4 .left::-webkit-scrollbar-thumb,
.a_4 .right::-webkit-scrollbar-thumb {
  border-radius: 0.78vw;
  background-color: var(--fontColorGray);
}
.a_4 .right {
  background-color: #fff;
  box-shadow: 0 1.04vw 1.25vw rgba(0, 0, 0, 0.03);
  border-radius: 0.52vw;
  width: 31.09vw;
  height: 28.33vw;
  overflow: hidden;
  padding: 1.67vw 0;
}
.a_4 .right a {
  padding-top: 1.15vw;
  padding-bottom: 1.25vw;
  border-bottom: 1px solid #e7e7e7;
  display: block;
  padding-left: 6.15vw;
  color: var(--fontColorGray);
  position: relative;
}
.a_4 .right a::after {
  content: "";
  position: absolute;
  left: 2.6vw;
  top: 0.89vw;
  width: 1.15vw;
  height: 1.46vw;
  background-image: url("../img/awards.png");
  background-size: 100% 100%;
}
.c_1 {
  padding: 5.21vw 0 9.69vw;
  overflow: hidden;
}
.c_1 .title {
  transform: translateY(100%);
  text-align: center;
}
.c_1 .map_box {
  position: relative;
}
.c_1 .map_box .big {
  width: 100%;
}
.c_1 .map_box .small {
  position: absolute;
  top: 11.67vw;
  right: 11.46vw;
  width: 28.91vw;
  z-index: 9;
}
.c_1 .map_box .float {
  position: absolute;
  top: 22.24vw;
  left: 7.29vw;
  display: flex;
}
.c_1 .map_box .float .icon img {
  width: 2.14vw;
  margin-right: 1.04vw;
}
.c_1 .map_box .float .tit {
  margin-top: 0.42vw;
}
.c_1 .map_box .float .num_box {
  display: flex;
  align-items: flex-end;
}
.c_1 .map_box .float .unit {
  line-height: 2;
  margin-left: 0.52vw;
}
.c_1 .map_box .points .item.act {
  background-color: transparent;
  background-image: url("../fonts/cpoint.svg");
  background-size: 100% 100%;
}
.c_1 .map_box .points .fix .item {
  z-index: 10;
  border-radius: 0%;
  opacity: 0;
  cursor: pointer;
  width: 2.14vw;
  height: 2.14vw;
}
.c_1 .map_box .points .item {
  position: absolute;
  width: 0.31vw;
  height: 0.31vw;
  background-color: var(--logoColor);
  border-radius: 50%;
}
.c_1 .map_box .points .item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.14vw;
  height: 2.14vw;
  background-color: rgba(231, 0, 18, 0.04);
  transition: all 0.5s;
  border-radius: 50%;
  animation: boderM 3s 0.75s infinite;
}
.c_1 .map_box .points .item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.14vw;
  height: 2.14vw;
  background-color: rgba(231, 0, 18, 0.04);
  transition: all 0.5s;
  border-radius: 50%;
  animation: boderM 3s infinite;
}

.c_1 .tab{
    margin-left: auto;
    display: flex;
    padding: 2.45vw 7.29vw 0;
}
.c_1 .tab .item{
    display: block;
    width: 1.6rem;
    line-height: 0.48rem;
    border: 0.01rem solid rgba(103,120,134,0.26);
    margin-left: 0.3rem;
    border-radius: 0.25rem;
    text-align: center;
    font-family: hm;
    color: #2C3235;
    transition: all 0.5s;
}
.c_1 .tab .item:hover,
.c_1 .tab .item.act{
    border-color: transparent;
    background-color: #2C3235;
    color: #fff;
}
 
.c_1 .swiper {
  margin-top: 2.45vw;
  padding: 0 7.29vw;
  overflow: initial;
  display: none;
}
.c_1 .swiper.act{
    display: block;
}
.c_1 .swiper .btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 0.5rem;
  z-index: 10;
}
.c_1 .swiper .swiper-slide {
  box-shadow: 0 1.56vw 3.13vw rgba(103, 120, 134, 0.16);
  height: auto;
  padding: 2.92vw 3.18vw;
  border-radius: 0.52vw; 
}
.c_1 .swiper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background-image: url("../img/c1bg.png");
  background-size: 100% 100%;
  opacity: 0;
  transition: all 0.5s;
}
.c_1 .swiper .swiper-slide.act::after,
.c_1 .swiper .swiper-slide:hover::after {
  opacity: 1;
}
.c_1 .swiper .swiper-slide.act .name,
.c_1 .swiper .swiper-slide:hover .name {
  color: var(--logoColor);
}
.c_1 .swiper .swiper-slide .name {
  margin-bottom: 1.61vw;
  transition: all 0.5s;
}
.c_1 .swiper .swiper-slide .item {
  margin-bottom: 1.46vw;
  display: flex;
  align-items: flex-start;
}
.c_1 .swiper .swiper-slide .item .icon img {
  width: 1.09vw;
  height: 1.09vw;
  margin-right: 0.52vw;
}
.c_1 .swiper .swiper-slide .item .left {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.c_1 .swiper .swiper-slide .item .con {
  width: 16.77vw;
  color: var(--fontColorGray);
  line-height: 1.5;
}
.c_1 .swiper .swiper-slide .more {
  margin-top: 1.67vw;
}
.c_1 .swiper .swiper-slide .more {
  color: var(--logoColor);
}
.c_1 .swiper .swiper-slide .more:hover {
  color: #fff;
}
.c_1 .swiper .swiper-slide .more span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c_1 .swiper .swiper-slide .more .hicon {
  width: 1.2vw;
  height: 1.04vw;
  margin-right: 0.42vw;
}
.cta_page .s_3 {
  background-color: #f6f7f8;
}
.cta_page .s_3 .form {
  background-color: #fff;
}
/* 适配 */
@media (max-width: 1680px) {
}
@media (max-width: 1560px) {
}
@media (max-width: 1440px) {
}
@media (max-width: 1366px) {
}
@media (max-width: 1280px) {
}
/* 移动端 */
@media (max-width: 1024px) {
  /*  */
  .aside .item .icon{
      width: 20px;
      margin-bottom: 0;
  }
  
  .aside .item .tit{
      font-size: 14px;
      display: none;
  }
  .aside .item .phone{
      width: 130px;
      font-size: 14px;
  }
  .aside .item.hover{
      padding-right: 141px;
  }
  .pd_page.p_page .left,
  .p_page .left {
    /*display: none;*/
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 100;
    min-height: auto;
    width: auto;
    margin: 0;
    padding: 0;
  }
  .p_page .left .btn{
    padding: 10px 5px;
    writing-mode: vertical-lr;
    font-size: 14px;
    word-spacing: 9px;
    background: #e70012;
    color: #fff;
    position: relative;
  }
  .p_page .left .tab{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    height: auto;
    padding-top: 0;
    overflow: initial;
    padding-right: 33px;
    opacity: 0;
    pointer-events: none;
  }
  .pd_page .top{
      display: none;
  }
  .p_page .left.act .tab{
      opacity: 1;
      pointer-events: initial;
  }
  .p_page .left .tab::after{
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: calc(100% - 33px); 
      height: 100%;
      background-color: #fff;
      transition: all 0.5s;
  }
  .p_page .left .tab .close{
      position: absolute;
      right: 0;
      top: 0;
      width: 33px;
    height: 33px;
    background-color: #FFF;
    z-index: 99999;
    border-radius: 0 6px 6px 0;
      box-shadow: 0 0 30px rgba(0,0,0,.1);
      display: flex!important;
  }
  .p_page .left .tab .close img{
      width: 23px;
  }
  .p_page .left .first{
    margin-bottom: 0;
    width: 60vw;
    background: #fff;
    position: relative;
    z-index: 2;
  }
  .p_page .left .first .second > .name::after{
      width: 1px;
      height: 20px;
      border-radius:none;
  }
  .p_page .left .first > .name{
      height: 45px;
      font-size: 16px;
  }
  .p_page .left .first .second > .name{
      height: 32px;
    font-size: 14px;
    line-height: 30px;
    padding-left: 15px;
    margin-bottom: 0;
  }
  .p_page .left .first > .name i{
      width: 9px;
      height: 9px;
      right: 15px;
  }
  .p_page .right {
    float: none;
    width: 100%;
    padding: 40px 20px;
  }
  .p_page .right > .title {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .p_page .right > .title span::after{
      bottom: -1.7px;
  }
  .p_page .right .plist {
    justify-content: space-between;
  }
  .p_page .right .plist .item {
    width: 48%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .p_page .right .plist .item .img {
    height: 60vw;
    margin-bottom: 20px;
  }
  .p_page .right .plist .item .tit {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .p_page .right .plist .item .con {
    font-size: 14px;
  }
  .p_page .right .plist .item .more {
    display: none;
  }
  .pagination .pitem {
    width: 20px;
    height: 20px;
    font-size: 12px;
    margin: 0 5px;
  }
  .pagination .pitem.next,
  .pagination .pitem.prev {
    background-size: 5px 8px;
  }
  .p_page.pd_page .right {
    width: 100%;
    padding: 90px 0 0;
  }
  .pd_page .part1 {
    padding: 0 20px ;
  }
  .pd_page .part1 .swiper_box {
    position: initial;
    width: 100%;
    float: none;
  }
  .pd_page .part1 .swiper .swiper-slide {
    height: 90vw;
  }
  .pd_page .part1 .swiper .swiper-pagination {
    margin-top: 20px;
  }
  .pd_page .part1 .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 4px 0 4px 0;
  }
  .pd_page.float .right .part1 .txt{
      height: auto;
  }
  .pd_page .part1 .txt {
    float: none;
    width: 100%;
    padding-top: 40px;
  }
  .pd_page .part1 .txt .name {
    font-size: 24px;
  }
  .pd_page .part1 .txt .desc {
    font-size: 14px;
    margin-bottom: 37.5px;
  }
  .pd_page .part1 .txt .feat .ftit {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .pd_page .part1 .txt .feat .fcon {
    font-size: 14px;
  }
  .pd_page .part1 .txt .feat .fitem {
    margin-right: 20px;
  }
  .pd_page .part1 .txt .feat .fitem .img {
    width: 21.63vw;
    height: 21.63vw;
    margin-bottom: 10px;
  }
  .pd_page .part1 .txt .feat .fitem .con {
    font-size: 13px;
  }
  .pd_page .part1 .txt .feat {
    margin-bottom: 37.5px;
  }
  .pd_page .part1 .txt .feat .fcon p {
    padding-left: 20px;
  }
  .pd_page .part1 .txt .feat .fcon p::after {
    width: 6px;
    height: 6px;
    margin-top: 6px;
  }
  .pd_page .part2 {
    padding: 60px 20px;
  }
  .pd_page .part2 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .pd_page .part2 .list {
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: initial;
  }
  .pd_page .part2 .item {
    width: 100%;
    flex: initial;
    margin-right: 0;
    height: auto;
    margin-bottom: 20px;
    padding: 20px;
  }
  .pd_page .part2 .item .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
  .pd_page .part2 .item .tit {
    font-size: 16px;
  }
  .pd_page .part2 .item .con {
    font-size: 13px;
  }
  .pd_page .part3 {
    padding: 60px 20px 0;
  }
  .pd_page .part3 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .pd_page .part3 .inner {
    flex-direction: column-reverse;
  }
  .pd_page .part3 .bgimg {
    width: 100%;
    height: 50vw;
    margin-bottom: 20px;
  }
  .pd_page .part3 .text {
    width: 100%;
  }
  .pd_page .part3 .text .name {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .pd_page .part3 .text .tit {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .pd_page .part3 .text .con {
    font-size: 14px;
  }
  .pd_page .part4 {
    padding: 60px 20px;
  }
  .pd_page .part4 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .pd_page .part4 table tr td{
     padding: 0 10px;
     font-size: 14px;
  }
  .pd_page .part5 {
    padding: 60px 20px;
  }
  .pd_page .part5 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .pd_page .part6 {
    padding: 60px 20px;
  }
  .pd_page .part6 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .pd_page .part5 .swiper-slide {
    height: auto;
    padding: 20px;
  }
  .pd_page .part5 .swiper-slide .name {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .pd_page.float .right .pback {
    font-size: 13px;
  }
  .pd_page.float .right .pback {
    right: 20px;
    top: 62px;
  }
  .pd_page.float .right .pback img {
    width: 12px;
    margin-right: 5px;
  }
  .pd_page.float .right .part1 .swiper_box {
    height: 90vw;
  }
  .pd_page.float .right .part1 {
    padding-right: 0;
  }
  .pd_page.float .right .part1 .block.act {
    overflow: auto;
    height: calc(100vh - 90px);
    padding-right: 20px;
  }
  .tabbar {
    overflow: auto;
    height: auto;
  }
  .tabbar .pup {
    width: 60px;
  }
  .tabbar .list {
    margin-left: 33px;
  }
  .tabbar .list .item {
    font-size: 16px;
    white-space: nowrap;
    padding: 20px;
  }
  .tabbar .list .item::after {
    display: none;
  }
  .tabbar .pback {
    font-size: 16px;
    white-space: nowrap;
    padding: 20px;
  }
  .n_page {
    padding: 60px 20px;
  }
  .n_page .item.suggest,
  .n_page .item {
    display: block;
    height: auto;
    margin-bottom: 35px;
  }
  .n_page .item .bgimg,
  .n_page .item.suggest .bgimg {
    height: 50vw;
    width: 100%;
  }
  .n_page .item .txt,
  .n_page .item.suggest .txt {
    width: 100%;
    padding: 20px 20px 80px;
  }
  .n_page .item .txt .tit {
    font-size: 16px;
    margin-bottom: 12.5px;
  }
  .n_page .item .txt .con {
    font-size: 13px;
  }
  .n_page .item .more {
    font-size: 13px;
  }
  .n_page .item .time {
    font-size: 13px;
  }
  .n_page .item .btm {
    bottom: 20px;
    padding: 0 20px;
  }
  .nd_page {
    padding: 70px 20px 60px;
  }
  .nd_page .inner {
    padding: 20px 20px 60px;
  }
  .nd_page .bread {
    font-size: 12px;
  }
  .nd_page .title {
    width: 100%;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .nd_page .info,
  .nd_page .info .time {
    font-size: 12px;
  }
  .nd_page .con {
    font-size: 13px;
    margin-top: 20px;
    padding: 20px 0;
  }
  .nd_page .con span, .nd_page .con p{
      font-size: 14px!important;
  }
  .nd_page .btm {
    font-size: 13px;
  }
  .nd_page .btm a {
    padding: 20px 0;
    display: block;
    line-height: 2;
  }
  .nd_page .btm a span:nth-child(1) {
    width: calc(100% - 48px);
  }
  .nd_page .btm a span:nth-child(2) {
    white-space: nowrap;
  }
  .h_1 {
    display: block;
    padding: 60px 20px;
  }
  .h_1 .bgimg {
    width: 100%;
  }
  .h_1 .left {
    width: 100%;
  }
  .h_1 .title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .h_1 .con {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .h_2 {
    padding: 60px 20px;
  }
  .h_2 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .h_2 .desc {
    font-size: 16px;
    margin-bottom: 20px;
    width: 100%;
  }
  .h_2 .item {
    margin-bottom: 20px;
  }
  .h_2 .item .bgimg {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  .h_2 .item .txt {
    position: relative;
    width: 100%;
    top: 0;
    border-radius: 0;
    background-color: #22262d;
    padding: 20px;
  }
  .h_2 .item .txt .num {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .h_2 .item .txt .name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .h_2 .item .txt .feat p {
    font-size: 14px;
    padding-left: 20px;
    line-height: 2;
  }
  .h_2 .item .txt .feat p::after {
    width: 10px;
    height: 10px;
    top: 9px;
  }
  .q_3 {
    padding: 60px 20px;
  }
  .q_3 .inner{
      display: block;
  }
  .q_3 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .q_3 .desc {
    font-size: 14px;
    margin-bottom: 20px;
    width: 100%;
  }
  .q_3 .list{
      width: 100%;
  }
  .q_3 .list .item{
      height: 70vw;
      width: 100%;
      margin-bottom: 20px;
  }
  .q_3 .right .item{
      height: 70vw;
      width: 100%;
      margin-left: 0;
  }
  .q_3 .item .txt{
      padding: 20px;
      /*transform: translateY(0)!important;*/
  }
  .q_3 .item .txt .tit{
      
      font-size: 20px;
  }
  .q_3 .item .txt .tit::after{
      top: -15px;
    width: 16px;
    height: 2px;
    /*opacity: 1;*/
  }
  .q_3 .item .txt .con{
      padding-top: 12px;
      line-height: 1.75;
      font-size: 13px;
      /*opacity: 1;*/
  }
  .q_3 .item::before{
      /*display: none;*/
  }
  .q_3 .item::after{
      /*opacity: 1;*/
  }
  .h_3 {
    padding: 60px 20px;
  }
  .h_3 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .h_3 .desc {
    font-size: 14px;
    margin-bottom: 20px;
    width: 100%;
  }
  .h_3 .list {
    justify-content: space-between;
  }
  .h_3 .item {
    width: 48%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .h_3 .item .tit {
    font-size: 13px;
    height: 39px;
  }
  .h_3 .item .img {
    height: 30vw;
  }
  .h_3 .more {
    opacity: 1;
  }
  .h_3 .more .hicon{
      width: 13px;
      height: auto;
  }
  .h_3 .viewmore {
    font-size: 13px;
  }
  .h_3 .viewmore img {
    width: 7px;
    transform: translateY(-2px);
  }
  .esg_page{
      padding: 60px 20px 0;
  }
  .esg_1 {
    display: block;
  }
  .esg_1 .title {
    font-size: 24px;
  }
  .esg_1 .desc {
    width: 100%;
    font-size: 16px;
  }
  .esg_1 .right {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
  .esg_1 .right::before,
  .esg_1 .right::after {
    width: 20px;
    height: 15px;
  }
  
    .esg_2{
        padding-bottom: 60px;
    }
  .esg_2 .list .item {
    display: block;
    margin-bottom: 40px;
  }
  .esg_2 .list .item .bgimg {
    width: 100%;
  }
  .esg_2 .list .item .txt {
    width: 100%;
    margin-top: 20px;
  }
  .esg_2 .list .item .txt .top {
    align-items: center;
  }
  .esg_2 .list .item .txt .tit {
    font-size: 20px;
  }
  .esg_2 .list .item .txt .num {
    font-size: 24px;
    margin-left: auto;
    display: none;
  }
  .esg_2 .list .item .txt .con {
    font-size: 14px;
  }
  .inv_1 {
    padding: 60px 20px;
  }
  .inv_1 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .inv_1 .item {
    margin-bottom: 20px;
  }
  .inv_1 .item .txt .name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .inv_1 .item .time {
    font-size: 12px;
  }
  .inv_1 .item .down {
    font-size: 12px;
    width: 25.27vw;
  }
  .inv_1 .item .down .top img {
    width: 24px;
  }
  .inv_1 .item .down span{
      margin-top: 0;
  }
  .inv_1 .item .down .btm {
    font-size: 12px;
  }
  .inv_1 .item .down .btm img{
      width: 13px;
  }
  .inv_2 {
    padding: 60px 20px calc(13vw + 60px);
    background-size: cover;
    margin-bottom: -13vw;
  }
  .inv_2 .title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .inv_2 .desc {
    font-size: 14px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  .inv_2 .inner {
    display: block;
    padding: 20px;
  }
  .inv_2 .inner .left {
    width: 100%;
    padding: 0;
    border: none;
  }
  .inv_2 .inner .left .top {
    display: block;
    margin-bottom: 20px;
  }
  .inv_2 .inner .left .top::after {
    display: none;
  }
  .inv_2 .inner .left .top .name {
    font-size: 20px;
    border: none;
    margin-bottom: 20px;
  }
  .inv_2 .inner .left .top .stock {
    font-size: 14px;
  }
  .inv_2 .inner .left .top .stock span {
    font-size: 16px;
  }
  .inv_2 .inner .left .degree {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .inv_2 .inner .left .list {
    font-size: 13px;
    display: block;
  }
  .inv_2 .inner .left .item {
    margin-bottom: 20px;
    margin-right: 0;
    align-items: center;
  }
  .inv_2 .inner .left .item .txt{
      display: flex;
      align-items: center;
  }
  .inv_2 .inner .right {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .inv_2 .inner .right img {
    width: 80px;
  }
  .inv_2 .inner .right .tit {
    font-size: 13px; 
    margin-top: 10px;
  }
  .inv_2 .inner .left .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  .j_1 {
    padding: 60px 20px 145px;
  }
  .j_1 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .j_1 .desc {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .j_1 .con {
    font-size: 14px;
  }
  .j_2 {
    padding: 60px 20px;
  }
  .j_2 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .j_2 .item {
    width: calc(100% / 3 - 6.66px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .j_2 .item:nth-child(3n) {
    margin-right: 0;
  }
  .j_2 .item .icon {
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
  }
  .j_2 .item .tit {
    font-size: 13px;
    text-align: center;
  }
  .c_1 {
    padding: 60px 0;
  }
  .c_1 .map_box .float {
    display: none;
  }
  .c_1 .swiper .swiper-slide .name {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .c_1 .swiper .swiper-slide .item {
    display: block;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .c_1 .swiper .swiper-slide .item .con {
    width: 100%;
  }
  .c_1 .swiper .swiper-slide::after {
    display: none;
  }
  .c_1 .title {
    font-size: 24px;
    transform: initial;
  }
  .c_1 .tab{
      padding:20px 20px 0;
      justify-content: center;
  }
  .c_1 .tab .item{
    padding: 5px 20px;
    display: flex;
    font-size: 13px;
     white-space: initial; 
    margin-left: 0;
    margin-right: 10px;
    border-radius: 45px;
    align-items: center;
    text-align: center;
    line-height: 1.33;
    min-width:initial;
    width: auto;
  }
  .c_1 .tab .item:last-child{
      margin-right: 0;
  }
  
  .c_1 .tab .item:hover{
      background-color:transparent;
      color: #2C3235;
      border: 0.01rem solid rgba(103,120,134,0.26);
  }
  
    .c_1 .tab .item.act{
        border-color: transparent;
        background-color: #2C3235;
        color: #fff;
    }
  .c_1 .swiper {
    padding: 0;
      margin: 20px 20px 0;
  }
  .c_1 .swiper .swiper-slide {
    padding: 20px;
  }
  .c_1 .swiper .swiper-slide .more .hicon {
    width: 12px;
    height: 12px;
    margin-right: 5px;
  }
  .c_1 .swiper .swiper-slide .item .left .icon img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .c_1 .swiper .swiper-slide .item .left {
    margin-bottom: 10px;
  }
  .b_1 {
    padding: 60px 20px;
    margin-top: 0;
  }
  .b_1 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .b_1 .form .tab {
    height: auto;
    overflow: auto;
  }
  .b_1 .form .tab .item {
    padding: 10px 20px;
  }
  .b_1 .form .tab .hicon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .b_1 .form .tab .con {
    font-size: 14px;
    white-space: nowrap;
  }
  .b_1 .form .list {
    padding: 40px 20px;
  }
  .b_1 .form .tit {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .b_1 .form .list .item {
    margin-bottom: 20px;
  }
  .b_1 .form .item .select .sel{
      width: 11px;
      right: 14px;
      pointer-events: none;
  }
  .b_1 .form .item3 {
    width: 100%;
    margin-right: 0;
  }
  .b_1 .form .item select,
  .b_1 .form .item input {
    height: 40px;
    font-size: 13px;
    padding: 0 12px;
  }
  .b_1 .form .item textarea {
    height: 120px;
    padding: 15px 12px;
    font-size: 13px;
  }
  .b_1 .form button {
    width: 120px;
    height: 30px;
    font-size: 13px;
  }
  .a_1 {
    background-size: cover;
  }
  .a_1 > div {
    display: block;
  }
  .a_1 .left {
    width: 100%;
    font-size: 11vw;
    justify-content: flex-start;
  }
  .a_1 .left > img {
    margin-bottom: 3.2vw;
  }
  .a_1 .right {
    width: 100%;
  }
  .a_1 .right .title {
    font-size: 24px;
  }
  .a_1 .right .con {
    font-size: 14px;
  }
  .a_2 {
    height: 79vw;
  }
  .a_2 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .a_2 .con {
    font-size: 16px;
  }
  .a_2 .tab .item .name {
    font-size: 13px;
  }
  .a_2 .tab {
    width: calc(100% - 40px);
    left: 20px;
    height: auto;
  }
  .a_2 .tab .item {
    padding: 10px 0;
  }
  .a_2 .tab .hicon {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }
  .a_3 {
    padding: 60px 20px;
    overflow: hidden;
  }
  .a_3 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .a_3 .two{
    display: none;
  }
  .a_3 .list {
    position: relative;
    display: none;
  }
  .a_3 .swiperm .swiper{
      overflow: initial;
  }
  .a_3 .swiperm .swiper-slide{
      height: auto;
      box-shadow: 0 0 30px rgba(0,0,0,.1);
  }
  .a_3 .swiperm .bgimg{
      height: 38vw;
  }
  .a_3 .swiperm .txt{
      padding: 20px;
  }
  .a_3 .swiperm .tit{
      font-size: 16px;
      margin-bottom: 20px;
  }
  .a_3 .swiperm .con{
      font-size: 13px;
      line-height: 2;
      height: 130px;
      overflow: auto;
  }
  .a_3 .swiper_time{
      margin-top: 40px;
  }
  .a_3 .swiper_time .swiper-slide{
      width: auto;
      text-align: center;
      font-size: 16px;
      padding: 0 20px;
  }
  .a_3 .swiper_time .swiper-slide-active{
      color: var(--logoColor);
  }
  .a_4 {
    padding: 60px 20px;
    background-size: cover;
  }
  .a_4 .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .a_4 .top .item {
    margin: 0 15px;
    display: block;
  }
  .a_4 .top .item .unit{
      line-height: 1;
      position: initial;
  }
  .a_4 .top .item .num {
    font-size: 30px;
  }
  .a_4 .top .item .num span:nth-child(2) {
    top: 40%;
  }
  .a_4 .top .item .unit span {
    font-size: 16px;
    left: 36px;
  }
  .a_4 .top .item .unit .tit {
    font-size: 12px;
    line-height: 1.5;
  }
  .a_4 .tab {
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .a_4 .tab .item {
    font-size: 13px;
    border-radius: 20px;
    margin: 0 5px;
    padding: 6px 17px;
    text-align: center;
  }
  .a_4 .inner {
    font-size: 13px;
  }
  .a_4 .left {
    height: 300px;
    overflow: auto;
  }
  .a_4 .left .item {
    width: 100%;
    padding: 15px;
    padding-left: 40px;
  }
  .a_4 .left .item::after {
    width: 14px;
    height: 18px;
    left: 15px;
    top: 15px;
  }
  .a_4 .left .item:nth-child(2n)::before {
    display: none;
  }
  .a_4 .left .item:last-child {
    border-bottom: none;
  }
  .a_4 .left .item .tit {
    margin-bottom: 10px;
  }
  .a_4 .left .item img {
    height: 66px;
  }
  .a_4 .right {
    height: 300px;
    overflow: auto;
    width: 33vw;
    padding: 0;
  }
  .a_4 .right a {
    padding: 15px;
    padding-left: 40px;
  }
  .a_4 .right a::after {
    width: 14px;
    height: 18px;
    left: 15px;
    top: 15px;
  }
  .s_1{
    padding: 60px 20px;
  }
  .s_1 .top{
    padding: 20px;
  }
  .s_1 .img{
      height: 50vw;
  }
  .s_1 .swiperr{
    width: calc(100vw - 40px);
    margin: 0;
  }
  .s_1 .swiperr .swiper-slide{
    padding: 20px;
  }
  .s_1  .tit{
    font-size: 20px;
  }
  .swiperr_box{
    padding-bottom: 40px;
    position: relative;
  }
  .s_1 .swiper-pagination{
    bottom: 20px;
  }
  .s_1 .swiper-pagination-bullet-active{
    background-color: var(--logoColor);
  }
  .s_1 .swiperr .swiper-slide .con{
    font-size: 13px;
    margin-top: 10px;
    line-height: 2;
  }
  .s_1 .title{
    margin-bottom: 20px;
    font-size: 24px;
  }
  .s_2{
    padding: 60px 0 ;
    background-position-y:117px;
  }
  .s_2 .title{
    margin-bottom: calc(35px + 33vw);
    font-size: 24px;
    padding: 0 20px;
    text-align: center;
  }
  .s_2 .inner,
  .s_1 .two .swiperl_box{
    display: none;
  }
  .s_2 .swiper{
    background-color: var(--fontColor);
    color: #fff; 
    margin-top: 40px;
  }
  .s_2 .swiper .swiper-slide{
    padding:60px 20px;
  }
  .s_2 .swiper .hicon{
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
  }
  .s_2 .swiper .tit{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .s_2 .swiper .con{
    font-size: 14px;
    line-height: 1.5;
  }
  .s_2 .swiper-pagination{
    bottom: 40px;
  }
  .s_1 .swiper-pagination-bullet,
  .s_2 .swiper-pagination-bullet{
    width: 10px;
    height: 5px;
    border-radius: 10px;
    transition: all .5s;
  }
  .s_1 .swiper-pagination-bullet-active,
  .s_2 .swiper-pagination-bullet-active{
    background-color: var(--logoColor);
    width: 20px;
  }
  .s_3{
    padding: 60px 20px;
  }
  .s_3 .title{
    margin-bottom: 20px;
    font-size: 24px;
  }
  .s_3 .inner{
    display: block;
  }
  .s_3 .bgimg{
    width: 100%;
    height: auto;
  }
  .s_3 .form{
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }
  .s_3 .form .item2{
    width: 100%;
    margin-bottom: 20px;
  }
  .s_3 .form .tit{
    margin-bottom: 10px;
    font-size: 13px;
  }
  .s_3 .form .item input{
    height: 40px;
    font-size: 13px;
    padding: 0 12px;
  }
  .s_3 .form .item textarea {
    height: 120px;
    padding: 15px 12px;
    font-size: 13px;
  }
  .s_3 .form button {
    width: 120px;
    height: 30px;
    font-size: 13px;
    margin: 20px auto 0;
  }
}
@media (max-width: 960px) {
}
@media (max-width: 768px) {
}
@media (max-width: 414px) {
}
@media (max-width: 375px) {
}
@media (max-width: 320px) {
}

