.navBox .nav .globalnav-item > a .txt,
.navBox .nav .globalnav-item > a i {
  color: #333;
}

/*导航下拉*/
.header {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/*语言*/
.lag {
  color: #333;
}
.lag img {
  filter: grayscale(100%) brightness(100%);
}

.sub-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  height: 28vw;
  padding-top: 3.8vw;
}

.sub-banner .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.sub-banner-title {
  font-size: 2.4vw;
  color: #fff;
  position: relative;
  z-index: 1;
}

.sub-banner-subtitle {
  margin-top: 2vw;
  font-size: 1vw;
  color: #fff;
  position: relative;
  z-index: 1;
}

#ac-localnav .ac-ln-menu {
  float: none;
}
#ac-localnav .ac-ln-menu-tray {
  float: none;
  display: flex;
  justify-content: center;
}
#ac-localnav .ac-ln-menu-item {
  margin: 0 40px;
  position: relative;
}

#ac-localnav .ac-ln-menu-item.active a {
  font-weight: bold;
  color: var(--main_color);
}

.about-page .mod {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-top: 120px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
}
.about-page .mod-hd {
  margin-bottom: 6vh;
}

/*===================新闻列表================*/
.news_tit {
  position: relative;
  text-align: center;
  margin-top: 0.6rem;
  border-bottom: solid 1px #ddd;
  padding-bottom: 0.2rem;
  margin-bottom: 0.5rem;
}
.news_tit h2 {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 1.6vw;
}
.news_tit li {
  display: inline-block;
  margin: 0 0.1rem;
  position: relative;
}
.news_tit li select {
  border: solid 1px #ddd;
  height: 0.46rem;
  padding: 0 20px;
  width: 2.4rem;
  border-radius: 0.6rem;
  display: inline-block;
  font-size: 16px;
  color: #888;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
}
select::-ms-expand {
  display: none;
}
.news_tit li i {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .news_tit {
    margin-top: 60px;
    padding-bottom: 20px;
    margin-bottom: 15px;
    text-align: left;
  }
  .news_tit h2 {
    position: absolute;
    left: 0;
    top: -36px;
    font-size: 16px;
  }
  .news_tit li {
    margin: 0 5px 0 0;
  }
  .news_tit li select {
    height: 32px;
    padding: 0 15px;
    width: 125px;
    border-radius: 32px;
    font-size: 14px;
  }
}

/*新闻列表*/
.news-list-content {
  margin-bottom: 0.3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-list-content .month {
  width: 15%;
}
.news-list-content .month h5 {
  font-size: 0.25rem;
  display: inline-block;
  border-bottom: solid 3px var(--main_color);
  height: 0.36rem;
}
.news-list {
  width: 85%;
}

.news-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid var(--border-color-base);
}

.news-list-item-meta {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
}

.news-list-item-meta-avatar {
  margin-inline-end: 0.4rem;
  width: 3rem;
  height: 2rem;
  overflow: hidden;
}

.news-list-item-meta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-list-item-meta-content {
  flex: 1 0;
  width: 0;
}

.news-list-item-meta-title {
  color: rgba(0, 0, 0, 0.88);
  font-size: 1vw;
  padding-top: 0.08rem;
}

.news-list-item-meta-title > a {
  color: rgba(0, 0, 0, 0.88);
  transition: all 0.3s;
}

.news-list-item-meta-title > a:hover {
  color: var(--main_color);
}

.news-list-item-meta-description {
  line-height: 1.8;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  overflow: hidden;
}

.news-list-item-meta-date {
  color: rgba(153, 153, 153, 1);
  margin: 0.2rem 0;
}
.news-list-item-meta-date .fa-solid {
  margin-right: 5px;
}
.news-list-item-meta-more {
  width: 1.25rem;
  line-height: 0.36rem;
  text-align: center;
  border-radius: 0.6rem;
  background: var(--main_color);
  color: #fff;
  display: inline-block;
  transition: 0.3s all;
}

.news-list-item-meta-more:hover {
  background: var(--second_color);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .news-list-content .month {
    width: 100%;
    margin-bottom: 15px;
  }
  .news-list-content .month h5 {
    font-size: 20px;
    border-bottom: solid 3px var(--main_color);
    height: 30px;
  }
  .news-list-content .news-list {
    width: 100%;
  }
  .news-list-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .news-list-item-meta-avatar {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
    margin-inline-end: 0;
  }
  .news-list-item-meta-avatar a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .news-list-item-meta-content {
    width: 100%;
  }
  .news-list-item-meta-title {
    font-size: 16px;
    line-height: 1.5;
    padding-top: 0;
  }
  .news-list-item-meta-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0.2rem;
  }
  .news-list-item-meta-date {
    margin: 10px 0;
  }
  .news-list-item-meta-more {
    width: 30%;
    line-height: 30px;
    border-radius: 38px;
    font-size: 12px;
  }
}
.float-btn {
  display: block;
}
@media only screen and (max-width: 833px) {
  .float-btn {
    display: none;
  }
}

.about-page .float-btn {
  display: none;
}

.investor-page .content {
  background-color: rgba(250, 250, 250, 1);
}
.investor-page .h {
  color: #e10f0f;
}
.investor-page .row1 {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
}
.investor-page .col-left,
.investor-page .col-right {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 1);
  border-radius: var(--border-radius-base);
}

.investor-page .col-left {
  width: calc(100% - 3.9rem);
}

.investor-page .col-right {
  width: 3.5rem;
  padding: 0.4rem;
}
.investor-page .stock-box {
  line-height: 1.5;
}

.investor-page .stock-hd {
  display: flex;
  align-items: center;
  font-size: 0.28rem;
  color: var(--main_color);
}
.investor-page .stock-hd h3 {
  font-weight: bold;
}

.investor-page .stock-bd {
  padding-bottom: 0.2rem;
}
.investor-page .stock-bd ul {
  display: flex;
  flex-wrap: wrap;
}
.investor-page .stock-bd li {
  width: 50%;
  margin: 0.2rem 0;
}
.investor-page .stock-bd li h3 {
  font-size: 0.18rem;
  color: #555555;
  font-weight: normal;
}
.investor-page .stock-bd li .stock-value {
  font-size: 0.28rem;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.investor-page .stock-meta {
  padding: 0.3rem 0;
}

.investor-page .stock-meta .stock-value {
  font-size: 0.52rem;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.investor-page .stock-meta .suffix {
  font-size: 0.18rem;
  color: #555;
}

.investor-page .stock-meta .line2 {
  font-size: 0.2rem;
}
.investor-page .stock-meta .line2 .down {
  transform: rotateX(180deg);
}
.investor-page .stock-meta .line2 span {
  margin: 0 0.2rem 0 0.1rem;
}
.investor-page .stock-ft {
  line-height: 2;
}

.inv-contact {
  height: 3rem;
  background: url(../images/invbg02.jpg) center no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding-top: 0.5rem;
}

.inv-contact h3.tit {
  font-size: 0.36rem;
  color: #fff;
  font-weight: bold;
  line-height: 0.48rem;
}
.inv-contact ul {
  margin-top: 0.4rem;
  display: flex;
}
.inv-contact li {
  width: 33.33%;
  padding-right: 0.2rem;
  color: #fff;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.inv-contact li a {
  color: #fff;
}

/*视频列表*/
.video_list {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.video_list li {
  width: 30%;
  margin: 0.25rem 1%;
  text-align: center;
}
.video_list li .pic {
  margin-bottom: 0.2rem;
  position: relative;
  overflow: hidden;
  background: #000;
}
.video_list li .pic > img {
  width: 100%;
  display: block;
  transition: 0.5s all;
}
.video_list li:hover .pic > img {
  transform: scale(1.1);
  opacity: 0.8;
}
.video_list li .txt {
  font-size: 0.18rem;
}
.video_list li .pic .play_btn {
  width: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -30px;
  transform: scale(0.7);
  opacity: 0;
  transition: 0.5s all;
  z-index: 2;
}
.video_list li .pic .play_btn img {
  width: 100%;
  display: block;
}
.video_list li:hover .pic .play_btn {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 768px) {
  .video_list li {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .video_list li .pic {
    margin-bottom: 10px;
  }
  .video_list li .txt {
    font-size: 15px;
  }
}

/*新闻内容*/
.show_news {
  margin: 0.6rem auto 1rem auto;
}
.page_main {
  width: calc(100% - 4.5rem);
}
.page_side {
  width: 3.6rem;
}
.tj_news {
  background: #f3f4f8;
  padding: 0.4rem 0.35rem;
}
.tj_news h2 {
  font-size: 0.25rem;
  margin-bottom: 0.3rem;
}
.tj_news li {
  position: relative;
  padding-left: 0.2rem;
  border-bottom: solid 2px #e2e5ed;
  padding-bottom: 0.15rem;
  margin-bottom: 0.25rem;
}
.tj_news li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--main_color);
}
.tj_news li .time {
  background: #e3e8ee;
  font-size: 12px;
  color: var(--main_color);
  border-radius: 20px;
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 0.1rem;
}
.tj_news li p {
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .page_main {
    width: 100%;
    overflow-x: hidden;
  }
  .page_side {
    display: none;
  }
}

/*内容页*/
.art_tit {
  border-left: solid 3px var(--main_color);
  padding-left: 0.2rem;
  margin-bottom: 0.5rem;
}
.art_tit h1 {
  font-size: 0.25rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 0.15rem;
}
.art_tit .info {
  margin-bottom: 25px;
  color: #888;
  padding-bottom: 0.06rem;
}
.art_tit .info li {
  margin-right: 25px;
  font-size: 12px;
  color: var(--main_color);
}
.art_tit .info li i {
  margin-right: 0.1rem;
}

/*正文*/
#art_box {
  text-align: justify;
  font-size: 16px;
  line-height: 2;
  border-bottom: solid 1px #e8e8e8;
  padding-bottom: 0.3rem;
  margin-bottom: 0.2rem;
}
#art_box p {
  margin-bottom: 15px;
}
#art_box img {
  max-width: 100%;
}
#art_box table {
  border: 1px solid #eff3f8;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
#art_box table tr:nth-child(1) {
  font-size: 14px;
  background: #eff3f8;
  font-weight: bold;
}
#art_box table td {
  padding: 5px 10px;
  border: 1px solid #d5dfec;
}
#art_box table td:nth-child(2) {
  text-align: left;
}
#art_box a {
  color: #2343b2;
}

#art_box video {
  max-width: 100%;
}

.pre_next li {
  line-height: 2;
}
.pre_next li i {
  margin-right: 0.1rem;
}
.pre_next .box {
  width: calc(100% - 2rem);
}
.pre_next .btn {
  width: 1.6rem;
}
.pre_next .btn a {
  width: 100%;
  line-height: 0.5rem;
  background: #f1f1f1;
  text-align: center;
  display: block;
  transition: 0.3s all;
}
.pre_next .btn a:hover {
  background: var(--main_color);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .art_tit h1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #art_box {
    font-size: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .pre_next .box {
    width: 100%;
  }
  .pre_next .btn {
    width: 50%;
    margin: 15px auto 0;
  }
  .pre_next .btn a {
    line-height: 36px;
  }
}

.nav3 {
  text-align: center;
  margin-bottom: 0.3rem;
}

.nav3 a {
  min-width: 160px;
  box-sizing: border-box;
  text-align: center;
  margin: 0 10px;
  display: inline-block;
}

.nav3 a span {
  display: block;
  line-height: 46px;
  border-radius: 46px;
  border: solid 1px var(--main_color);
  font-size: 16px;
  color: var(--main_color);
  transition: 0.3s all;
}
.nav3 a:hover span,
.nav3 a.on span {
  background: var(--main_color);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .down_list {
    margin-top: 12px;
  }
}

/*下载列表*/
.down_list {
  margin-bottom: 1rem;
}
.down_list li {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}
.down_list li a {
  display: inline-block;
  width: 100%;
  border: solid 1px #f6f7f8;
  padding: 0.25rem;
  box-sizing: border-box;
  background: #f6f7f8;
  transition: 0.3s all;
}
.down_list li a:hover {
  background: var(--second_color);
  border: solid 1px var(--second_color);
  color: #fff;
}

.down_list li a:hover .time {
  color: #fff;
}
.down_list li .tit {
  display: flex;
  align-items: center;
}
.down_list li .tit h5 {
  font-size: 0.88vw;
  font-weight: normal;
}
.down_list .time {
  font-size: 1.2vw;
  color: var(--main_color);
}
@media screen and (max-width: 768px) {
  .down_list li {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
  }
  .down_list li .tit h5 {
    font-size: 14px;
    line-height: 1.5;
    width: calc(100% - 32px);
    margin: 5px 0;
  }
  .down_list .time {
    font-size: 14px;
  }
}

/*画册下载列表*/
.hc_down_list {
  text-align: center;
  margin-bottom: 1rem;
}
.hc_down_list .li {
  border: solid 1px #ddd;
  width: 3.6rem;
  text-align: center;
  display: inline-block;
}
.hc_down_list .li .pic {
  text-align: center;
}
.hc_down_list .li .pic img {
  width: 100%;
}
.hc_down_list .li .tit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.25rem;
}
.hc_down_list .li .tit img {
  margin-right: 0.15rem;
}
.hc_down_list .li .tit i {
  margin-right: 0.15rem;
  font-size: 0.36rem;
  color: var(--main_color);
}
.hc_down_list .li .tit h5 {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .hc_down_list .li {
    width: 100%;
  }
  .hc_down_list .li .pic img {
    width: 56%;
  }
}

/*================关于我们全球网络=====================*/
.index_05 .main {
  position: relative;
}
.index_05 .map {
  position: relative;
  max-width: 68vw;
  margin: auto;
}
.index_05 .map img {
  width: 100%;
}
.index_05 .txt {
  position: absolute;
  left: 0;
  bottom: 0vh;
}

.index_05 .item {
  margin-top: 0.15rem;
  width: 4rem;
}
.index_05 .item h3 {
  font-size: 0.8vw;
  color: #fff;
  margin-bottom: 10px;
  background: url(../images/bg_001.svg) no-repeat left center;
  line-height: 20px;
  padding-left: 46px;
  margin-bottom: 0.1rem;
}
.index_05 .item .col_2 li {
  width: 50%;
}
.index_05 .item li {
  font-size: 0.63vw;
  color: #666;
  position: relative;
  padding-left: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.index_05 .item li i {
  margin-right: 3px;
}
.index_05 .item li span {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  color: #fff;
}
.index_05 .item li.red i {
  color: #f00;
}
.index_05 .item li.blue i {
  color: #41bae9;
}
.index_05 .item li.green i {
  color: #8fcd88;
}
.index_05 .item li.blue span {
  background: #41bae9;
}
.index_05 .item li.orange i {
  color: orange;
}
.index_05 .item li.orange span {
  background: orange;
}

@media screen and (max-width: 768px) {
  .index_05 {
    padding-top: 0px;
  }
  .index_05 .map {
    max-width: 100vw;
    margin: auto;
  }
  .index_05 .txt {
    position: relative;
    left: auto;
    bottom: 0;
  }
  .index_05 .item {
    margin-top: 8px;
    width: 100%;
  }
  .index_05 .item h3 {
    font-size: 14px;
    margin-bottom: 0;
  }
  .index_05 .item li {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 5px;
  }
}

.career-main {
  width: 100%;
}
.careerMenu {
  width: 100%;
}
.career-tit {
  height: 40px;
  line-height: 40px;
  background: #0766b9;
  color: #fff;
  border-radius: 4px;
  font-size: 1vw;
  margin-top: 20px;
}
.careerMenu h3 {
  height: 35px;
  background: #f0f0f0;
  cursor: pointer;
  color: #282828;
  margin-top: 23px;
  line-height: 35px;
  font-size: 0.9vw;
}
.careerMenu .td {
  width: 17%;
  float: left;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.careerMenu .tit01 {
  width: 24%;

  text-indent: 35px;
  text-align: left;
}

@media only screen and (max-width: 833px) {
  .careerMenu .td {
    width: 16%;
  }
  .careerMenu .tit01 {
    width: 22%;
  }
}

.careerMenu h3 em {
  float: right;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin-right: 20px;
  line-height: 30px;
}
.careerMenu h3 em img {
  width: 24px;
  height: 24px;
}
.careerMenu h3.on em {
  background-position: center bottom;
}
.careerMenu h3.on em img {
  transform: translateX(8800px);
  filter: drop-shadow(#0867b9 -8800px 0px 0px);
}
.careerMenu .nwms {
  background: #fff;
  padding: 33px 100px 10px 38px;
  border: 1px solid #c4c4c4;
  position: relative;
  font-size: 13px;
  line-height: 18px;
  color: #8c8c8c;
  font-weight: 300;
  margin-top: 20px;
  display: none;
}
.careerMenu .nwms div,
.careerMenu .nwms span,
.careerMenu .nwms p {
  font-size: 13px !important;
  line-height: 18px !important;
  color: #8c8c8c !important;
  font-weight: 300 !important;
}
.btn_ljyp {
  background: #0a5aa9;
  display: block;
  margin: 10px auto 0 auto;
  color: #fff;
  width: 120px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
}
.btn_ljyp:hover {
  background: #0a5aa9;
  color: #fff;
}
.careerMenu .nwms .xz {
  width: 200px;
  position: absolute;
  right: 10px;
  color: #0766b9 !important;
  font-size: 18px !important;
  top: 15px;
  text-align: center;
}
.careerMenu .nwms:before {
  content: "";
  display: block;
  top: -9px;
  left: 65px;
  position: absolute;
  width: 14px;
  height: 9px;
  background: url(../images/arr05.png) center top no-repeat;
}

.career_item {
  border: 1px solid #cacaca;
  background: #fff;
  padding: 10px 17px 20px 17px;
  border-radius: 8px;
  margin-bottom: 13px;
}
.career_item .zw-info {
  display: none;
}
.career_item .row-tit {
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  cursor: pointer;
}
.career_item .row-tit .name {
  font-size: 18px;
  color: #000;
}
.career_item .row-tit .xz {
  color: #0766b9;
  font-size: 18px;
  float: right;
}
.career_item .row-tit img {
  vertical-align: top;
  margin-top: 10px;
  margin-right: 10px;
}
.career_item .row-flag {
  padding-left: 20px;
  font-size: 14px;
  color: #c4c4c4;
  margin-top: 15px;
}
.career_item .row-flag .date {
  float: right;
  width: auto;
  background: none;
  color: #c4c4c4;
  margin-right: 0;
}
.career_item .row-flag em {
  width: 64px;
  text-indent: 10px;
  display: inline-block;
  background: #c4c4c4;
  color: #fff;
  margin-right: 15px;
}
.career_item.focus {
  border-color: #0766b9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.career_item.focus .zw-info {
  display: block;
}
.career_item.focus .row-flag em {
  display: none;
}
.career_item.focus .row-flag em.dz {
  display: inline-block;
}
.career_item .zw-info {
  margin-top: 18px;
  color: #8c8c8c;
  font-size: 10px;
}
.career_item .btn_ljyp {
  font-size: 12px;
}
.career_item .btn_ljyp:hover {
  background: #0a5aa9;
  color: #fff;
}

.list-paddingleft-2,
.list-paddingleft-2 li {
  list-style: decimal;
}
@media only screen and (max-width: 1024px) {
  .careers_container {
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}
@media only screen and (max-width: 768px) {
  .careers_container .left {
    width: 100%;
    float: inherit;
  }
  .careers_container .right {
    width: 100%;
    float: inherit;
  }
  .careers-search em {
    width: 100px;
    font-size: 16xp;
  }
  .careers-search .serch-q {
    width: calc(100% - 170px);
    font-size: 16px;
  }
  .careers-search .serch-q::placeholder {
    font-size: 16px;
  }
}
@media only screen and (max-width: 450px) {
  .careerMenu .td {
    width: 20%;
  }
  .careerMenu .tit01 {
    text-indent: 3px;
  }
  .careerMenu h3 em {
    display: none;
  }
}

.cp_list-center .swiper-wrapper {
  justify-content: center;
}

.cp_list-center .swiper-wrapper .swiper-slide {
  padding: 0 16px;
}

.about-page .index_05 .mod-hd {
}
.about-page .index_05 .mod-bd {
  position: relative;
  width: 100%;
  margin-top: -90px;
}

.pro-page .float-btn {
  display: none;
}

.pro-page .swiper-slide {
  position: relative;
}

.pro-page .swiper-slide .bg {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.pro-page .swiper-slide .bg.hidden-desktop {
  background-position: 50% 0;
  background-size: 100% auto;
  background-color: #000;
}

.pro-page .swiper-slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pro-page .wrapper {
  max-width: 100%;
  padding: 0;
  width: 80%;
  margin: 0 auto;
  position: relative;
  height: 100%;
  display: flex;
  box-sizing: border-box;
}

.pro-page .card {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgba(255, 255, 255, 1);
}

.pro-page .card-hd {
  margin-bottom: 0.1rem;
}

.pro-page .card-hd-title {
  font-size: 1.68vw;
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
}

.pro-page .card-bd {
  max-width: 1200px;
  color: rgba(255, 255, 255, 1);
  text-align: justify;
  line-height: 2.6;
  font-size: 0.16rem;
}

.pro-page .more,
.pro-page .more2 {
  margin: 0.4rem 0 0.6rem;
  display: inline-block;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s;
  padding: 12px 24px;
  font-size: 0.16rem;
  border: 1px solid rgba(255, 255, 255, 1);
}

.pro-page .more:hover,
.pro-page .more2:hover {
  background-color: rgba(255, 255, 255, 1);
  color: var(--main_color);
}

.pro__powerStation .pro_index2 {
  /* background-color: #000; */

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* 硅片 */

.pro__guiliao .swiper-slide .wrapper,
.pro__zhuangbei .swiper-slide .wrapper,
.pro__siliconSlice .swiper-slide .wrapper {
  padding-top: 60px;
}

.pro__zhuangbei .wrapper,
.pro__siliconSlice .wrapper {
  align-items: center;
}

.pro__siliconSlice .card {
  width: 70%;
}
.pro__siliconSlice .col-right {
  width: 30%;
}

.pro__zhuangbei .col-right .pic img,
.pro__siliconSlice .col-right .pic img {
  width: 100%;
}

.pro__zhuangbei .card {
  width: 60%;
  box-sizing: border-box;
  padding-right: 10%;
}
.pro__zhuangbei .col-right {
  box-sizing: border-box;
  width: 40%;
  position: relative;
}

.pro__zhuangbei .z-pro-title {
  font-size: 1vw;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  left: 50%;
  margin-left: -5vw;
  padding-left: 12px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
}
.pro__zhuangbei .z-pro-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
}

.pro__zhuangbei .z-pro-title1 {
  top: 1vw;
}

.pro__zhuangbei .z-pro-title2 {
  bottom: 4vw;
}

.slice-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -3vw;
  margin-right: -2vw;
}
.slice-list li {
  width: 33.33%;
  padding-right: 3.5vw;
  box-sizing: border-box;
  margin-top: 3vw;
}

.slice-list li .item-wrap {
  display: flex;
  flex-direction: column;
}

.slice-list .meta-icon {
  margin-bottom: 0.08rem;
  width: 2.8vw;
}

.slice-list .meta-title {
  font-size: 0.8vw;
  color: rgba(255, 255, 255, 1);
}

.slice-list .meta-desc {
  border-top: 1px solid #d8d8d8;
  line-height: 1.5;
  font-size: 1vw;
  padding-top: 0.08rem;
  color: rgba(255, 255, 255, 1);
}

.battery-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 46vw;
  margin-left: -10px;
  margin-right: -10px;
}
.battery-list li {
  width: 50%;
  margin-bottom: 1.8vw;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}

.battery-list li .item-wrap {
  display: flex;
  align-items: center;
}

.battery-list .meta-icon {
  margin-right: 1vw;
  width: 3vw;
  text-align: center;
}

.battery-list .meta-icon img {
  max-width: 96%;
}

.battery-list .meta-title {
  font-size: 1vw;
  color: rgba(255, 255, 255, 1);
}

.battery-card .battery-card-head {
  margin-bottom: 0.6rem;
}

.battery-card .battery-card-head-title {
  font-size: 2.2vw;
  color: rgba(255, 255, 255, 1);
}

.battery-card {
  margin: 0.2rem 0;
}
.battery-card1 .battery-list li {
  width: 33.33%;
}

.z-card-bd {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.z-list {
}
.z-list li {
  margin-bottom: 4vw;
}

.z-list li:last-child {
  margin-bottom: 0;
}

.z-list li .item-wrap {
  display: flex;
  align-items: center;
}

.z-list .meta-icon {
  width: 3.2vw;
  margin-right: 0.08rem;
}

.z-list .meta-icon img {
  max-width: 90%;
}

.z-list .meta-title {
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
}

.z-list2 .pic {
  max-width: 10vw;
}

.z-list2 .pic img {
  width: 100%;
}

.white-circle {
  position: relative;
  width: 12.5vw;
  height: 12.5vw;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 60px 10px rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.white-circle-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.1rem;
  box-sizing: border-box;
}

.white-circle-title {
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0.2rem;
  color: #0dd2ba;
  font-size: 1.2vw;
}

.pro__guiliao .wrapper {
  max-width: 1500px;
}
.g-box {
  width: 50%;
  display: flex;
  height: 100%;
  align-items: center;
  box-sizing: border-box;
}

.left-area {
  background-image: url("../images/product/2/left-line.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 60px;
}

.right-area {
  background-image: url("../images/product/2/right-line.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  justify-content: flex-end;
  padding-right: 60px;
}

.g-list {
  width: 220px;
  position: relative;
  height: 380px;
}

.left-area .g-list {
  margin-right: 3vw;
}

.g-list li {
  font-size: 1vw;
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
  width: 100%;
  position: absolute;
  transition: all 0.3s;
}

.g-list li:hover {
  color: rgba(255, 255, 255, 1);
}

.left-area .g-list li:nth-child(1) {
  left: 0;
  top: 0;
}

.left-area .g-list li:nth-child(2) {
  left: -30px;
  top: 103px;
}

.left-area .g-list li:nth-child(3) {
  left: -30px;
  top: 204px;
}

.left-area .g-list li:nth-child(4) {
  left: 8px;
  top: 353px;
}

.right-area .g-list {
  margin-left: 3vw;
}
.right-area .g-list li {
  text-align: right;
}
.right-area .g-list li:nth-child(1) {
  right: 0;
  top: 0;
}

.right-area .g-list li:nth-child(2) {
  right: -30px;
  top: 103px;
}

.right-area .g-list li:nth-child(3) {
  right: -30px;
  top: 204px;
}

.right-area .g-list li:nth-child(4) {
  right: 8px;
  top: 353px;
}

.pro__guiliao .pro_index1 {
  background-color: rgba(249, 249, 249, 1);
}
.pro__guiliao .card {
  width: 40%;
}
.pro__guiliao .card-hd-title {
  color: var(--main_color);
}
.pro__guiliao .card-bd {
  color: var(--main_color);
}

.pro__guiliao .more {
  color: var(--main_color);
  border-color: var(--main_color);
}

.pro__guiliao .more:hover {
  background-color: var(--main_color);
  color: rgba(255, 255, 255, 1);
}
.pro__guiliao .pro_index1 .pic-area {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  padding-top: 3.8vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.pro__guiliao .pro_index1 .pic {
  position: relative;
  height: 36vw;
  width: 100%;
}

.pro__guiliao .pro_index1 .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pro__guiliao .pro_index1 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: url("../images/product/2/mask.png") 0 50% no-repeat;
  background-size: cover;
}

.guiliao-list {
  margin-top: -0.6rem;
}
.guiliao-list li {
  margin-top: 0.4rem;
}

.guiliao-list li .item-wrap {
  position: relative;
  padding-top: 4vw;
}

.guiliao-list .meta-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 6.25vw;
  height: 6.25vw;
}

.guiliao-list .meta-icon img {
  width: 100%;
  height: 100%;
}

.guiliao-list .meta-title {
  font-size: 1vw;
  font-weight: bold;
  color: rgba(0, 0, 0, 1);

  padding-left: 24px;
  background-image: url("../images/product/2/arrico.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
}

.guiliao-list .meta-desc {
  border-top: 1px dotted rgba(0, 0, 0, 1);
  line-height: 1.5;
  font-size: 0.8vw;
  padding-top: 0.08rem;
  color: rgba(0, 0, 0, 1);
}

.pro__zhuangbei .big-circle-wrap {
  width: 20vw;
  height: 20vw;
  position: relative;
}

.pro__zhuangbei .big-circle-bg {
  width: 100%;
}
.pro__zhuangbei .big-circle-bg img {
  width: 100%;
  height: auto;
  /* height: 100%;
  object-fit: cover;
  display: block; */
}

.pro__zhuangbei .big-circle {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translateX(-50%);
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1.8vw 1.5vw 1.2vw;
}

.pro__zhuangbei .big-circle .big-circle-title {
  color: rgba(255, 255, 255, 1);
  font-size: 3vw;
  font-weight: bold;
  height: 50%;
  display: flex;
  align-items: center;
}

.pro__zhuangbei .big-circle .big-circle-desc {
  width: 100%;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 1);
  padding-top: 0.8vw;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  font-size: 1vw;
}

.bc-list-wrap {
  margin-top: -12vw;
  position: relative;
  width: 44vw;
  height: 20vw;
}

.bc-list-wrap .line {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("../images/product/1/line2.svg") 50% 100% no-repeat;
}

.bc-list {
  width: 100%;
  height: 100%;
  position: relative;
}

.bc-list li {
  position: absolute;
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  box-sizing: border-box;
  background: #55aead;
  border: 1vw solid rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-list li:nth-child(1) {
  top: 0;
  left: 0;
}
.bc-list li:nth-child(2) {
  bottom: 0;
  left: 10vw;
  background: #37a89a;
}
.bc-list li:nth-child(3) {
  bottom: 0;
  right: 10vw;
  background: #959bc2;
}
.bc-list li:nth-child(4) {
  top: 0;
  right: 0;
  background: #6fb1d4;
}
.bc-list .meta-icon {
  width: 50%;
}
.bc-list li:nth-child(1) .meta-icon {
  width: 60%;
}
.bc-list .meta-icon img {
  width: 100%;
}

.bc-list .meta-desc {
  position: absolute;
  font-size: 1vw;
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
  width: 18vw;
}

.pro__zhuangbei .pro_index2 .wrapper {
  flex-direction: column;
  padding-top: 10vw;
}

.bc-list li:nth-child(1) .meta-desc {
  top: 50%;
  transform: translateY(-50%);
  left: -20vw;
  text-align: right;
}
.bc-list li:nth-child(2) .meta-desc {
  bottom: 0;
  left: -20vw;
  text-align: right;
}
.bc-list li:nth-child(3) .meta-desc {
  bottom: 0;
  right: -20vw;
}
.bc-list li:nth-child(4) .meta-desc {
  top: 50%;
  transform: translateY(-50%);
  right: -20vw;
}

.pro-page .nav3 {
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.pro-page .nav3 a.active span {
  background-color: var(--main_color);
  color: #fff;
}

.g-list li,
.battery-list .meta-title,
.bc-list .meta-desc,
.z-list .meta-title {
  font-size: 0.16rem;
}

.about-page {
}

.about-page .company-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.about-page .company-list .company-item {
  width: 33.33%;
  height: 34vh;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.about-page .company-list .company-item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.about-page .company-list .company-item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-page .company-list .company-item .grid01 {
  position: relative;
  width: 100%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2.4vw;
  box-sizing: border-box;
}

.about-page .company-list .company-item .grid01::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: all 0.3s;
}

.about-page .company-list .company-item .txt01 {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.12);
  font-weight: bold;
  font-size: 1.2vw;
  line-height: 1.5;
  position: relative;
  z-index: 3;
  transition: all 0.3s;
}

.about-page .company-list .company-item .txt01 .c-location {
  opacity: 0;
  transition: all 0.3s;
  font-weight: normal;
  font-size: 1vw;
  padding: 0.1rem 0;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 24px;
  background: url("../images/location.svg") 0 50% no-repeat;
  background-size: 20px auto;
}
.about-page .company-list .company-item:hover .grid01::after {
  background-color: rgba(0, 0, 0, 0);
}

.about-page .company-list.on .company-item .grid01::after {
  background-color: rgba(0, 0, 0, 0);
}
.about-page .company-list .company-item .cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.5s;
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(13, 210, 186, 0.6),
    rgba(0, 76, 153, 0.6)
  );
  background: rgba(9, 107, 207, 1);
  padding: 3vw;
  box-sizing: border-box;
}

.about-page .company-list .company-item .cover .txt02 {
  display: none;
}

@media only screen and (min-width: 769px) {
  .about-page .company-list .company-item:hover .cover {
    top: 0;
  }
  .about-page .company-list .company-item:hover .txt01 {
    font-size: 1.3vw;
  }

  .about-page .company-list .company-item:hover .txt01 .c-location {
    opacity: 1;
  }
}
.video-play-icon {
  position: absolute;
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ctitle%3EPlay_40x40%3C%2Ftitle%3E%3Cpath%20d%3D%22M20%20.833a19.167%2019.167%200%201%200%2019.167%2019.167%2019.167%2019.167%200%200%200-19.167-19.167z%22%20opacity%3D%22.6%22%2F%3E%3Cpath%20d%3D%22M20%202a18%2018%200%201%201-18%2018%2018.02%2018.02%200%200%201%2018-18m0-2a20%2020%200%201%200%2020%2020%2020%2020%200%200%200-20-20zm8.072%2020.9a1.671%201.671%200%200%201-.513.513l-9.99%206.357a1.671%201.671%200%200%201-2.569-1.413v-12.715a1.671%201.671%200%200%201%202.569-1.41l9.99%206.358a1.671%201.671%200%200%201%20.513%202.31z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E);
  background-position: -50px 0;
  height: 50px;
  width: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* pointer-events: none; */
  z-index: 1;
  cursor: pointer;
}

.about_01 .mod .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100% auto;
}

@media only screen and (max-width: 1299px) {
}

.about_01 .mod .main {
  position: relative;
}

.about_01 .mod-bd {
  width: 70%;
}
.about_01 .company-info {
  line-height: 2;
  font-size: 0.9vw;
  text-align: justify;
  margin-bottom: 8vh;
}
.about_01 .statistic-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.about_01 .statistic-list li {
  width: 20%;
  margin-bottom: 6vh;
  position: relative;
}
.about_01 .statistic {
  box-sizing: border-box;
  position: relative;
  padding-left: 1vw;
}
.about_01 .statistic::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(9, 107, 207, 1);
}
.about_01 .statistic-title {
  margin-top: 0.4vw;
  color: rgba(9, 107, 207, 1);
  font-size: 0.8vw;
  height: 1vw;
  line-height: 1.3;
}
.about_01 .statistic-content {
  color: rgba(9, 107, 207, 1);
}
.about_01 .statistic-content-value {
  display: inline-block;
  direction: ltr;
  font-size: 1.68vw;
  font-size: 2vw;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.about_01 .statistic-content-prefix,
.about_01 .statistic-content-suffix {
  display: inline-block;
  font-size: 0.8vw;
}
.about_01 .statistic-content-prefix {
  margin-inline-end: 4px;
}
.about_01 .statistic-content-suffix {
  margin-inline-start: 4px;
}

@media only screen and (max-width: 768px) {
  .about-page .mod {
    padding-top: 13vh;
  }
  .about-page .mod-hd {
    margin-bottom: 40px;
  }
  .about-page .index_05 .mod-bd {
    margin-top: -24px;
  }
  .about-page .company-list {
    background-image: none !important;
    margin: 0 -5px;
  }
  .about-page .company-list .company-item {
    width: calc(50% - 10px);
    margin: 0 5px 15px;
    height: 18vh;
  }
  .about-page .company-list .company-item .txt01 {
    font-size: 14px;
  }

  .about-page .company-list .company-item .txt01 .c-location {
    opacity: 1;
    font-size: 12px;
    background-size: 16px auto;
    padding: 0;
    background: none;
  }

  .about-page .company-list .company-item .grid01 {
    display: flex;
    align-items: flex-end;
    padding: 0 10px 10px;
  }
  .about-page .company-list .company-item .grid01::after {
  }
  .about-page .company-list .company-item .bg {
    display: block;
  }
  .about-page .about_01 .mod {
    background-size: auto 36%;
  }
  .about_01 .mod-bd {
    width: 100%;
  }
  .about_01 .company-info {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .about_01 .statistic {
    padding-left: 10px;
  }
  .about_01 .statistic-list li {
    margin-bottom: 12px;
  }
  .about_01 .statistic-list li:nth-child(n) {
    width: 60%;
  }
  .about_01 .statistic-list li:nth-child(2n) {
    width: 33.33%;
  }
  .about_01 .statistic-title {
    margin-top: 8px;
    height: auto;
    font-size: 2.4vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .about_01 .statistic-content-value {
    font-size: 18px;
  }

  .about_01 .statistic-content-prefix,
  .about_01 .statistic-content-suffix {
    font-size: 12px;
  }
  .about_01 .statistic-content-suffix {
    margin-inline-start: 0;
  }
  .sub-banner {
    height: 240px;
    padding-top: 60px;
  }

  .sub-banner-title {
    font-size: 20px;
  }
  .sub-banner-subtitle {
    margin-top: 20px;
    font-size: 12px;
  }

  .career-tit {
    font-size: 14px;
  }
  .careerMenu h3 {
    font-size: 12px;
  }
  .careerMenu .td {
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
  }
  .careerMenu .nwms {
    padding: 20px;
  }

  .investor-page .row1 {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .investor-page .col-left {
    width: 100%;
    margin-top: 20px;
  }
  .investor-page .col-right {
    width: 100%;
    padding: 0.4rem;
  }
  .investor-page .stock-hd {
    font-size: 24px;
  }

  .investor-page .stock-meta .stock-value {
    font-size: 32px;
  }
  .investor-page .stock-meta .suffix {
    font-size: 12px;
  }
  .investor-page .stock-meta .line2,
  .investor-page .stock-bd li h3 {
    font-size: 14px;
  }
  .investor-page .stock-bd li .stock-value {
    font-size: 20px;
  }

  .inv-contact ul {
    flex-wrap: wrap;
  }
  .inv-contact li {
    width: 100%;
    padding-right: 0;
    line-height: 1.8;
    font-size: 14px;
  }
  .inv-contact {
    height: auto;
    padding: 20px 0;
  }
  .investor-page .row1 {
    padding: 20px 0;
  }

  .pro-page .wrapper {
    flex-direction: column;
    box-sizing: border-box;
    padding: 60px 20px 0;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .pro__zhuangbei .card {
    width: 100%;
    padding-right: 0;
    height: auto;
  }

  .pro-page .card-hd-title {
    font-size: 20px;
  }

  .pro-page .card-hd {
    position: relative;
    margin-bottom: 40px;
  }

  .pro-page .more {
    padding: 12px 24px;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
  }

  .pro-page .more2 {
    padding: 12px 24px;
    font-size: 14px;
  }

  .z-list li {
    margin-bottom: 30px;
  }

  .z-list li .item-wrap {
    display: flex;
    align-items: center;
  }

  .z-list .meta-icon {
    width: 30px;
    margin-right: 0.08rem;
  }

  .z-list .meta-icon img {
    max-width: 90%;
  }

  .z-list .meta-title {
    font-size: 14px;
  }

  .z-list2 .pic {
    max-width: 80px;
    margin-bottom: 20px;
  }

  .pro-page .card-bd {
    margin-top: 10px;
  }

  .pro__zhuangbei .col-right {
    margin: 6vh auto 20px;
    width: 50%;
  }

  .pro__zhuangbei .z-pro-title1 {
    top: -10px;
    margin-left: -20px;
  }
  .pro__zhuangbei .z-pro-title2 {
    bottom: -2px;
    margin-left: -30px;
  }
  .pro__zhuangbei .z-pro-title {
    font-size: 14px;
  }

  .pro__zhuangbei .big-circle-wrap {
    width: 200px;
    height: 200px;
  }

  .pro__zhuangbei .big-circle {
    width: 160px;
    height: 160px;
    padding: 20px;
  }

  .pro__zhuangbei .big-circle .big-circle-title {
    font-size: 20px;
  }

  .pro__zhuangbei .big-circle .big-circle-desc {
    padding-top: 10px;
    font-size: 12px;
  }

  .bc-list-wrap {
    margin: 20px auto 0;
    width: 70%;
    height: 186px;
  }

  .bc-list-wrap .line {
    display: none;
  }

  .bc-list li {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 1);
  }

  .bc-list li .meta-desc {
    width: 40vw;
    height: auto !important;
    left: 50% !important;
    top: 100% !important;
    transform: translateX(-50%) !important;
    font-size: 12px !important;
    text-align: center !important;

    bottom: auto !important;
    right: auto !important;
    margin-top: 10px;
  }

  .bc-list li:nth-child(1) {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
  }
  .bc-list li:nth-child(2) {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
  }
  .bc-list li:nth-child(3) {
    bottom: 0;
    left: 0;
    top: auto;
    right: auto;
  }
  .bc-list li:nth-child(4) {
    bottom: 0;
    right: 0;
    left: auto;
    top: auto;
  }
  .pro__zhuangbei .pro_index2 .wrapper {
    padding-top: 0;
  }

  .cp_list .swiper-slide {
    width: 100%;
  }

  .nav3 {
    margin-bottom: -5px;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .nav-big.nav3 {
    flex-wrap: wrap;
  }
  .nav-big.nav3 a {
    min-width: 120px;
  }
  .nav3 a {
    margin: 5px;
    min-width: 100px;
  }

  .nav3 a span {
    line-height: 30px;
    border-radius: 30px;
    font-size: 12px;
    padding: 0 15px;
  }
}

.timeline-item-content-pic {
  width: 14vw;
  height: 8vw;
  flex-shrink: 0;
}
.timeline-item-content-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 768px) {
  .timeline-item-content-pic {
    width: 100%;
    height: auto;
  }
  .timeline-item-content-pic img {
    width: 100%;
    height: auto;
    object-fit: none;
  }
  .pro__guiliao .pro_index1 .wrapper {
    padding-bottom: 200px;
  }
  .pro__guiliao .pro_index2 .wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pro__guiliao .pro_index1 .pic-area {
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    width: 100%;
    height: 24vh;
    padding-top: 0;
  }

  .pro__guiliao .pro_index1 .pic {
    height: 100%;
    width: 100%;
  }

  .pro__guiliao .card {
    width: 100%;
  }

  .guiliao-list {
    margin-top: -40px;
  }
  .guiliao-list li {
    margin-top: 20px;
  }

  .guiliao-list li .item-wrap {
    padding-top: 30px;
  }

  .guiliao-list .meta-icon {
    width: 60px;
    height: 60px;
  }

  .guiliao-list .meta-title {
    font-size: 14px;
  }

  .guiliao-list .meta-desc {
    font-size: 12px;
    padding-top: 8px;
  }

  .pro__siliconSlice .card {
    width: 100%;
  }

  .pro__siliconSlice .col-right {
    width: 50%;
    margin: -20px auto 0;
  }

  .slice-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .slice-list li {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
    margin-top: 0;
  }
  .slice-list li .item-wrap {
    padding-left: 48px;
    position: relative;
  }
  .slice-list .meta-icon {
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 4px;
    width: 32px;
    height: 32px;
  }

  .slice-list .meta-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .pro-page .card {
    height: auto;
  }

  .pro-page .pro_index2_battery .card {
    height: 100%;
    width: 100%;
  }

  .slice-list .meta-title {
    font-size: 12px;
  }
  .slice-list .meta-desc {
    font-size: 12px;
    text-align: left;
  }

  .battery-list {
    max-width: 100%;
  }
  .battery-list li {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  .battery-list li .item-wrap {
    display: flex;
    align-items: center;
  }

  .battery-list .meta-icon {
    margin-right: 10px;
    width: 32px;
    text-align: center;
    display: none;
  }

  .battery-list .meta-icon img {
    max-width: 96%;
  }

  .battery-list .meta-title {
    font-size: 12px;
    line-height: 1.5;
    background: url(../images/product/4/arrico.png) 0 50% no-repeat;
    background-size: 12px auto;
    padding-left: 20px;
  }

  .battery-card .battery-card-head {
    margin-bottom: 0.6rem;
  }

  .battery-card .battery-card-head-title {
    font-size: 20px;
  }

  .battery-card {
    margin: 20px 0;
  }
  .battery-card1 .battery-list {
    margin: 0 -10px;
    width: 70%;
  }
  .battery-card1 .battery-list li {
    width: 50%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }

  .pro-page .card-bd {
    font-size: 12px;
  }

  .g-box {
    width: 100%;
    justify-content: space-between;
  }

  .left-area {
    background-image: none;
    justify-content: space-between;
    padding-left: 60px;
  }

  .right-area {
    background-image: none;
    justify-content: space-between;
    flex-direction: row-reverse;

    padding-right: 0;
  }
  .white-circle {
    width: 120px;
    height: 120px;
    box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.9);
  }

  .white-circle-title {
    margin-top: 0.2rem;
    font-size: 12px;
  }

  .white-circle-title img {
    width: 48px;
    height: auto;
  }
  .g-list {
    width: 50%;
    height: auto;
  }
  .left-area {
    padding-left: 0;
  }
  .left-area .g-list {
    margin-right: 0;
  }

  .g-list li {
    font-size: 12px;
    width: 100%;
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 20px 0;
    background-image: url(../images/product/2/arrico.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding-left: 18px;
    background-size: 6px auto;
  }

  .right-area .g-list {
    margin-left: 0;
  }
  .right-area .g-list li {
    text-align: left;
  }
}

#ac-localnav .ac-ln-background:after {
  margin-left: 0;
  left: 0;
  width: 100%;
  background: #ddd;
}
#ac-localnav .ac-ln-menu-link {
  opacity: 1;
  font-family: "苹方", "微软雅黑", arial;
}

@media only screen and (min-width: 1024px) {
  #ac-localnav .ac-ln-title {
    display: none;
  }
  #ac-localnav .ac-ln-menu-link {
    font-size: 0.9vw;
  }
  #ac-localnav {
    height: 60px;
  }
  #ac-localnav .ac-ln-menu {
    margin-top: 5px;
  }
}

@media only screen and (max-width: 1023px) {
  #ac-ln-menustate:checked ~ .medium-ac-ln-collapsible#ac-localnav .ac-ln-menu-link,
  #ac-ln-menustate:target ~ .medium-ac-ln-collapsible#ac-localnav .ac-ln-menu-link {
    opacity: 1;
    font-size: 14px;
  }
}

@media only screen and (max-height: 667px) {
  .about-page .index_05 .mod-bd {
    margin-top: -30px;
  }
  .index_05 .map {
    max-width: 80vw;
  }
  .about-page .mod-hd {
    margin-bottom: 30px;
  }
  .about_01 .mod .bg {
    opacity: 0.4;
  }
}
