/* pc  */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  /* h5端导航背景色 */
  --h5-nav-bg: #fafafa;
  /* h5端导航文字色 */
  --h5-nav-color: #222;
  margin-top: 0.1rem;
}
@media screen and (max-width: 768px) {
  header {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    /* h5端导航背景色 */
    --h5-nav-bg: #fafafa;
    /* h5端导航文字色 */
    --h5-nav-color: #222;
    margin-top: 0;
  }
}
.header {
  position: relative;
  top: 0;
  transition: 1s ease;
  background-color: #fff;
  border-radius: 80px;
  /* padding: 0.1rem; */
  margin: 0rem 1rem 0 1rem;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .com-header .header {
    margin: 0;
    width: 100%;
    border-radius: 0;
    /* margin-top: 0; */
  }
}
.header-box {
  display: flex;
  justify-content: space-between;
  padding: 0 0.4rem 0 0.7rem;
}
@media screen and (max-width: 768px) {
  .header-box {
    padding: 0.2rem 0.7rem 0.2rem 0.7rem;
  }
}
.header-logo-pc {
  padding: 0.1rem 0;
}
.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-logo-h5 {
  display: none;
}
.header-logo-h5 img {
  width: 50px;
  height: 40px;
}
.header-center {
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.header-center .nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
}
.header-center .nav li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0rem 0.5rem;
  cursor: pointer;
}
.header-center .nav .on {
  color: #ffdf00;
}
.header-center-content {
  height: 100%;
  flex: 1;
  align-content: center;
}
.header-center-content-icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-center .nav-a {
  position: relative;
  color: #222;
  font-size: var(--font-size-18);
  white-space: nowrap;
}
/* .header-right-he{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
} */
@media (min-width: 768px) {
  .header-center .nav-a:hover {
    text-shadow: 0 0 1px #fff;
    cursor: pointer;
    color: #ffdf00;
  }
}

.header-center .nav li::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  content: '';
  transition: 0.5s ease;
  transform: translateX(-50%);
  background-color: #fff;
}
@media (min-width: 768px) {
  .header-center .nav li .pc_ul_nei_nav {
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: max(8px, 0.08rem);
    min-width: 220px;
  }
  .header-center .pc_ul_nei_nav .pc_ul_nei_nav_a {
    text-align: center;
  }
  .header-center .nav li:hover::after {
    width: 100%;
    content: '';
  }
  /* .header-center .nav li:hover .nav-a {
    color: #fff;
    font-weight: 600;
  } */
  .header-center .nav li.on::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 2px;
    content: '';
    transform: translateX(-50%);
    background-color: #fff;
  }
  .header.active .header-center .nav li.on::after {
    background-color: #fff;
  }
  .header-center .nav li:hover .pc_ul_nei_nav {
    display: block;
    animation: fadeshow 1s forwards;
  }
}

@keyframes fadeshow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header-center .pc_ul_nei_nav {
  position: absolute;
  z-index: -1;
  top: 100%;
  display: none;
  overflow: hidden;
  width: fit-content;
  padding-top: 10px;
  transition: 1s;
}
.header-center .pc_ul_nei_nav .pc_ul_nei_nav_a {
  display: block;
  padding: 0.1rem 0.2rem;
  transition: 0.6s;
  white-space: nowrap;
  color: #666;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .header-center .pc_ul_nei_nav .pc_ul_nei_nav_a {
    padding: 0.3rem 0.2rem;
  }
}
.header-center .pc_ul_nei_nav .pc_ul_nei_nav_a:hover {
  color: #222;
}
.header-right-phone {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.header-right-phone-img {
  width: calc(20px + 0.2rem);
  height: calc(20px + 0.2rem);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #979797;
}
.header-right-phone-btn {
  padding: max(0.18rem, 4px) max(0.24rem, 12px);
  background-color: #ffdf00;
  font-size: var(--font-size-18);
  border-radius: calc(40px + 0.4rem);
  line-height: 1;
  cursor: pointer;
}
.header-right-phone-btn .contact {
  cursor: pointer;
}
@media (max-width: 768px) {
  .header-right-phone-btn {
    padding: max(0.28rem, 4px) max(0.24rem, 12px);
  }
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0 0.1rem;
}
.header-right-launguage {
  position: relative;
  display: flex;
  align-items: center;
}
.header-right-launguage-icon img {
  transform: rotate(90deg);
}
/* .header.active {
  background-color: #000;
} */
.header-right-launguage-list-content {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  display: none;
}
.header-right-launguage-text {
  color: #fff;
}
.header-right-launguage-list {
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
.header-right-launguage-list-item {
  background-color: #fff;
  display: block;
  padding: 6px 12px;
}
.header-right-launguage-list-item:hover {
  color: #000;
}
.header-right-launguage:hover .header-right-launguage-list-content {
  display: block;
  animation: fadeshow 1s forwards;
}
@media (min-width: 768px) and (max-width: 1038px) {
  .header-right {
    justify-content: space-between;
  }
}
@keyframes navfade {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@media (min-width: 768px) {
  .header-center-content-icon {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-logo-h5 {
    display: flex;
    width: 80px;
    height: 50px;
    align-items: center;
  }
  .header-logo-pc {
    display: none;
  }
  .header-center {
    order: 3;
  }
  .header-center-content-icon {
    position: relative;
    z-index: 2;
    width: 18px;
  }
  .header-center-content-status {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 80%;
    display: none;
    background-color: var(--h5-nav-bg);
  }
  .header-center-content-status.active {
    display: block;
    animation: leftfade 1s forwards;
  }
  @keyframes leftfade {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  .header-center .nav li.on::after {
    display: none;
  }
  .header-center .nav {
    display: block;
    height: auto;
    width: auto;
    padding: 0.4rem;
    padding-top: max(40px, 0.4rem);
    min-width: auto;
    color: var(--h5-nav-color);
    background-color: var(--h5-nav-bg);
  }
  .header-center .nav li {
    height: auto;
    display: block;
    padding: 0;
    /* border-bottom: 1px solid #ececec; */
  }
  .header-center .pc_ul_nei_nav {
    position: static;
    display: block;
    background-color: transparent;
    width: 0;
    height: 0;
    padding-top: 6px;
  }
  .header-center .nav li.active .pc_ul_nei_nav {
    width: auto;
    height: auto;
  }
  .header-center .pc_ul_nei_nav::after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    right: 0;
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
    transition: 0.6s;
    background-image: url(../img/common/language-arrow.png);
  }
  .header-center .nav li.active .pc_ul_nei_nav::after {
    transform: rotate(180deg);
  }
  .header-center .nav-a {
    color: inherit;
    line-height: 1;
    font-size: 16px;
    font-family: var(--font-medium);
    padding: 10px 0;
    display: block;
    z-index: 1;
  }

  .header-center .pc_ul_nei_nav .pc_ul_nei_nav_a {
    background-color: transparent;
    font-size: 14px;
    margin-bottom: 0.1rem;
  }

  .header-center-content-icon img:last-child {
    display: none;
  }
  .header-center-content-icon.active img:last-child {
    display: block;
  }
  .header-center-content-icon.active img:first-child {
    display: none;
  }
}

/* 底部  */
/* 底部footer */
.footer {
  padding-top: 1rem;
  background-color: #222;

  background-size: 3.51rem 3.54rem;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.footer-left-img-desc {
  margin-top: 0.1rem;
  color: #fff;
  font-size: var(--font-size-24);
}
.footer-top {
  display: flex;
  justify-content: flex-end;
  padding: 0.14rem 0;
  gap: 0.2rem;
}
.footer-right {
  display: flex;
  justify-content: space-between;
  gap: 0.1rem;
  padding-top: 0.2rem;
}
.footer-sh .footer-img img {
  width: 110px;
  height: 140px;
  margin-left: 15px;
}
@media (max-width: 882px) {
  .footer-center-ul:nth-child(2) {
    margin-top: 15px;
  }
  .footer-right {
    display: flex;
    justify-content: left;
    margin-left: 15px;
  }
}
.footer-right-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.footer-title {
  font-size: var(--font-size-24);
  color: #fff;
  font-family: var(--font-medium);
  /* font-size: max(0.24rem, 16px);
    color: #fff; */
  margin-bottom: 0.3rem;
  position: relative;
  width: fit-content;
}
.footer-title::before {
  width: 55px;
  height: 52px;

  background-size: 100% 100%;
  content: '';
  position: absolute;
  right: -15px;
  top: -10px;
  mix-blend-mode: difference;
}
.footer-title:hover::before {
  width: 55px;
  height: 52px;
  /* background: url(https://api-zhangshi-en.ctmon.com./static/images/arrow4.png) no-repeat center center; */
  background-size: 100% 100%;
  content: '';
  position: absolute;
  right: -15px;
  top: -10px;
  mix-blend-mode: difference;
}
.footer-right-item:hover .footer-right-item-desc {
  display: block;
}
/* .footer-right-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: max(0.13rem, 10px);
} */
.footer-right-item-img:hover {
  background-color: #ffdf00;
}

.footer-right-item-img {
  background-color: #ffffff;
  border: solid 2px #222222;
  border-radius: 100%;
  width: max(0.41rem, 30px);
  height: max(0.38rem, 30px);
  padding: 0.1rem 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-right-item-img img {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .footer-right-item-img img {
    width: 10px;
    height: 10px;
  }
}

.footer-right-item-desc {
  display: none;
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
}
.splice-line {
  margin-bottom: 0.6rem;
  border-bottom: 1px solid #494949;
}
.footer-center {
  display: flex;
  gap: 0.2rem;
}
.footer-center-content {
  display: flex;
  flex: 1.141;
  /* min-width: 478px; */
  justify-content: space-between;
  gap: 0.8rem;
}
.footer-center-third-party {
  flex: 1;
}
.footer-center-contact {
  color: #fff;
  font-size: var(--font-size-p);
  margin-bottom: 0.42rem;
}
.footer-center-contact-phone {
  font-family: var(--font-bold);
  font-size: var(--font-size-30);
  color: #fff;

  margin-bottom: 0.2rem;
}
.footer-center-contact-desc {
  color: #999;
  font-size: var(--font-size-p);
  margin-bottom: 0.1rem;
}
.footer-center-ul .footer-center-ul-title {
  margin-bottom: 0.48rem;
  color: #222;
  font-family: var(--font-bold);
  font-size: var(--font-size-18);
}
.footer-center-ul li {
  margin-bottom: 0.18rem;
}
.footer-center-ul li a {
  color: #666;
}
.footer-center-ul li a:hover {
  color: #fff;
}
.footer-center-ul-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
}
.footer-center-ul-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30px + 0.3rem);
  height: calc(30px + 0.3rem);
  border-radius: 50%;
  background-color: #2e2e2e;
}
.footer-bottom-three {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-center-third-party .footer-center-ul-title {
  margin-bottom: 0.44rem;
  color: #fff;
  font-family: var(--font-medium);
  font-size: var(--font-size-18);
}
.footer-bottom {
  margin-top: 0.4rem;
}
.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem;
  padding: 0.4rem 0;
}
.footer-bottom-text {
  color: #666;
  margin-left: 15px;
}
.footer-bottom-content .footer-bottom-text:hover {
  color: #fff;
}
.footer-bottom-text:hover {
  color: #222;
}
@media (max-width: 1100px) {
  .footer-left {
    display: none;
  }
  .footer-right {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer-bottom-three {
    display: none;
  }
}
.index-s2 {
  position: relative;
  padding-bottom: 0.5rem;
}
.index-s5 {
  position: relative;
  padding-bottom: 0.5rem;
}
.index-s7 {
  position: relative;
  padding-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .index-s2 {
    padding-bottom: 1rem;
  }
  .index-s5 {
    padding-bottom: 1rem;
  }
  .index-s7 {
    padding-bottom: 1.3rem;
  }
  .index-s7 .swiper-pagination {
    padding-bottom: 0.2rem;
  }
}
/* 头部询盘弹窗 */
.popupBox.on {
  /*todo 产品列表多次点击出现*/
  display: block !important;
}
.popupBox .formBox {
  position: relative;
  padding: 0.6rem 0 1.85rem 0;
  overflow: hidden;
}

.popupBox .formBox .list {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 0.75rem 3rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 84px 0px rgba(204, 204, 204, 0.58);
  box-shadow: 0px 0px 84px 0px rgba(204, 204, 204, 0.58);
  border-radius: 10px;
}

.popupBox .formBox .list::after {
  content: '';
  position: absolute;
  width: 9.39rem;
  height: 13.27rem;
  right: -5.8rem;
  bottom: -8.25rem;
  background: url(https://www.mushroomsolar.com/images/pro-bgm2.png) no-repeat center;
  background-size: cover;
  z-index: -1;
}

.popupBox .formBox .ul {
  margin-top: 35px;
}

.popupBox .formBox .liBox {
  /* -ms-flex-wrap: wrap; */
  flex-wrap: wrap;
}

.popupBox .formBox .li {
  position: relative;
  width: 100%;
  margin-top: 25px;
}
.flexce {
  display: flex;
  justify-content: center;
}
.popupBox .formBox .li input,
.popupBox .formBox .li textarea {
  position: relative;
  display: block;
  /* padding: 15px 20px; */
  width: 100%;
  background-color: #f7f7f7;
  color: #222;
  overflow: hidden;
  border-radius: 6px;
  border: none;
}
.popupBox .formBox .li:last-child {
  margin-right: 0px;
}

.popupBox .formBox .li input,
.popupBox .formBox .li textarea {
  position: relative;
  display: block;
  padding: 15px 20px;
  width: 100%;
  height: 56px;
  background-color: #f7f7f7;
  color: #222;
  overflow: hidden;
  border-radius: 6px;
}

.popupBox .formBox .li textarea {
  height: 168px;
}

.popupBox .formBox .sub {
  width: auto;
  margin-top: 35px;
  padding: 10px 50px;
  line-height: 1;
  background-color: #999;
  color: white;
  font-size: 18px;
  cursor: pointer;
  border-radius: 30px;
}
.popupBox .formBox .sub:hover {
  background-color: #ffdf00;
  color: #222;
}
.liBox .button {
  cursor: pointer;
}
.liBox .span {
  cursor: pointer;
}
.popupBox .formBox .more span {
  background: transparent;
}
.formBox .more {
  height: 60px;
  border: 1px solid var(--complementary-colors);
  position: relative;
  overflow: hidden;
}
.formBox .more span {
  width: 110px;
  position: relative;
  z-index: 10;
  color: #fff;
  font-family: WixMadeforDisplay-Medium;
  font-size: 18px;
  display: block;
  /* background-color: var(--complementary-colors); */
  transition: all 0.5s;
}
.popupBox .formBox .more::after {
  display: none;
  width: 0;
}

/* .popupBox .formBox .sub:hover {
      background-color: #1bb228;
  } */

.popupBox .formBox label.error {
  padding: 0 20px;
  color: #f00;
}

.popupBox .formBox .placeholder {
  position: absolute;
  top: 0px;
  left: 0;
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  color: #666666;
}

.popupBox .formBox .placeholder::after {
  content: '*';
  color: #f5af27;
}

.popcont {
  position: relative;
  padding: 0.5rem 0.7rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 3px 87px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 3px 87px 0px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  overflow: hidden;
}

.popupBox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  z-index: 999;
  display: none;
}

.popupBox.on {
  display: block;
}

.popupBox .poplist {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popupBox .poplist .ul {
  margin-top: 0px;
  padding: 0 0.6rem;
}
/* .icon-close::before {
          content: "\e621";
      } */
.poplist-img {
  width: fit-content;
}
.popupBox .close {
  position: absolute;
  top: -3%;
  right: 5%;
  z-index: 9999;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #ffdf00;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popupBox .popcont {
  margin: 0 auto;
  width: fit-content;
  /* padding: 0.5rem 0 0.6rem 0; */
  background: #fff;
  border-radius: 15px;
  padding: 5%;
}
.tyheaddb {
  margin-bottom: 0px;
}
.tyheadh {
  text-align: center;
  /* margin-bottom: 60px; */
}
.tyhead-bt {
  font-size: 32px;
  font-family: var(--font-bold);
}
.tyhead-des {
  color: #666666;
  font-size: 17px !important;
  margin-top: 20px !important;
  font-family: var(--font-bold);
}
.popupBox .popcont .popcont_tit {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 15%;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.48rem;
  line-height: 1.25;
  transform: translate(-50%, -50%);
}

.popupBox .shadow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.popupBox::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.qh {
  position: relative;
}
.qhjsdy {
  position: absolute;
  height: 100%;
  left: 0;
  width: 25%;
  z-index: 999;
  text-align: center;
  background-color: #ffe600;
  border-top-left-radius: 6px;
  /* border-top-right-radius: 24px; */
  /* border-bottom-right-radius: 24px; */
  border-bottom-left-radius: 6px;
  cursor: pointer;
}
.qhjsdy p {
  color: white;
  line-height: 3;
  height: 100%;
  font-size: 18px;
  font-family: var(--font-bold);
}
.qhjsdy ul {
  background-color: white;
  padding: 15px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
  box-sizing: border-box;
  position: absolute;
  width: 240px;
  left: 0;
  z-index: 999;
  bottom: 50px;
  max-height: 200px;
  overflow-x: auto;
  display: none;
}
.qhjsdy ul li {
  font-size: 15px;
  margin-bottom: 10px;
  text-align: left;
  color: #666666;
  background-color: rgb(158 158 158 / 8%);
}
.qhjsdy ul li span {
  /* margin: 0 3px; */
  background-color: #9e9e9e;
  padding: 5px;
  width: 50px;
  text-align: center;
  display: inline-block;
  margin-right: 5px;
  color: white;
}
.popupBox .formBox {
  position: relative;
  /* padding: 0.6rem 0 1.85rem 0; */
  overflow: hidden;
}
.iconfont {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.qh input {
  padding-left: 28% !important;
}
@media screen and (max-width: 1279px) {
  .popupBox .popcont {
    width: 70%;
  }

  .popupBox .formBox .li input {
    height: 42px;
  }

  .qhjsdy p {
  }

  .popupBox .formBox .li textarea {
    height: 140px;
  }

  .popupBox .close {
    right: 13.5%;
  }
}

@media screen and (max-width: 1151px) {
  .popupBox .popcont {
    padding: 25px 15px;
    width: 95%;
  }

  .popupBox .formBox .li textarea {
    height: 120px;
  }

  .popupBox .formBox .placeholder {
    font-size: 15px;
    padding: 10px 15px;
  }

  .popupBox .formBox .sub {
    margin-top: 20px;
    padding: 6px 10px;
    font-size: 16px;
    height: 40px;
  }

  .popupBox .close {
    right: 3.5%;
  }

  .banner-nc2 {
    top: 35%;
  }
}
/* 询盘弹窗 */

/* 客服挂件 */
@media screen and (min-width: 768px) {
  .seek-box {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 66;
  }
}
.seek {
  padding: 0.28rem 0.16rem;
  background-color: #fff;
  box-shadow: -8px -6px 17px 1px rgba(201, 190, 190, 0.31);
  border-radius: max(0.1rem, 10px);
  width: max(2.42rem, 140px);
}

.seek-close {
  border: 2px solid var(--theme-color);
  background-color: #fff;
  color: var(--theme-color);
  border-radius: 50%;
  width: max(0.26rem, 16px);
  height: max(0.26rem, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 4px;
  position: absolute;
  right: 0.1rem;
  top: 0.1rem;
  cursor: pointer;
}
.seek-img {
  width: 1.1rem;
  margin: auto;
}
.seek-desc {
  font-family: var(--font-bold);
  color: #222;
  margin: 0.2rem 0;
  text-align: center;
}
.seek-btn {
  background-color: #f2f2f2;
  color: #222;
  border-radius: max(0.24rem, 24px);
  font-size: var(--font-size-18);
  padding: 0.16rem 0.31rem;
  display: block;
  margin: auto;
  width: fit-content;
}
.seek-btn:hover {
  background-color: var(--theme-color);
}
/* .swiper-s1-0{
  position: relative;
} */
.swiper-index-1-v {
  position: relative;
  padding-bottom: 0.5rem;
}
/* 客服挂件 end */


/* 2025-4-18 修改 */
/* .footer-bottom-three{
	gap: 1.1rem
} */
.footer-center-ul li a{
  color: #fafafa;
}
@media screen and (max-width:882px){
	.footer-center-ul:nth-child(2){
		margin-top: 0px;
	}
}

/* 2025/04/21 */
.header-center .nav-a{
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width:768px){
  .header-center .nav-a{
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.index-s8-content-two-title-line-two-vido-img{
  position: relative;
  height: 0px;
  overflow: hidden;
  padding-bottom: 66%;
}
.index-s8-content-two-title-line-two-vido-img > iframe{
  position: absolute;
  left: 0px;
  top: 0px;
}
@media screen and (max-width:768px) {
  .footer-bottom-three{
    display: block;
  }
  
.footer-bottom-three {
  width: 100%;
  display: block;
}
.footer-center-content{
  flex-wrap: wrap;
}
.footer-title{
  font-size: 24px;
  color: #ffcb2f;
}
.footer-center-ul{
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-center-ul li{
  width: 48%;
}
.footer-center-ul li:nth-child(1){
  width: 100%;
}
}
@media screen and (max-width:450px) {
  .footer-center-ul li{
    width: 100%;
  }
}
/* 2025-4-23 移动修改 */

.accsssories-s3-imges{
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/other/After-s1-11.png);
  padding-top: 4%;
  padding-bottom: 4%;
}
.accsssories-s3-content{
  position: relative;
  width: 54%;
  left:30%;
}
@media screen and (max-width:1450px) {
  .accsssories-s3-content{
    position: relative;
    width: 70%;
    left:20%;
  }
  .accsssories-s3-content-left{
    width: 100%;
  }
  .accsssories-s3-content-left-text1{
    max-width: 100%;
  }
}
@media screen and (max-width:1100px) {
  .accsssories-s3-content{
    width: 80%;
    left: 6%;
  }
}
@media screen and (max-width:768px) {
  .accsssories-s3-imges{
    display: block;
    padding: 10px 0px;
  }
  .accsssories-s3-content{
    width: 100%;
    left: 0px;
    background: transparent;
  }
}
/* 2025-4-18 */
.accsssories-s3-content-left-imge{
 min-width: 50px;
 max-width: 50px;
}
.li_box.tea textarea{
  width: 100%;
  height: 100px;
  border: 0px;
  z-index: 1;
  background: transparent;
  padding: 0.3rem;
}
.li_box.tea .li_box-text{
  top: 14%
}
.header-center .nav li .nav-a.on  {
  position: relative;

}
.header-center .nav li .nav-a.on::before{
  content: "";
  width: 100%;
  height: 2px;
  background: #ffdb00;
  position: absolute;
  bottom: 0px;
}
.footer-right-item-img{
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  height: 40px;
  padding: 0px;
  img{
    width: 20px !important;
    height: 20px !important;
    border-radius: 0px;
  }
}

