.header {
  background-color: var(--textColor);
  height: var(--headerHeight);
  width: 100%;
  position: fixed;
  overflow: hidden;
  top: 0;
  z-index: 111;
}
.header .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  width: 1.2rem;
}
.header .logo img {
  width: 100%;
  object-fit: contain;
}
.header .head-right {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.2rem;
}
.header .ul {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .ul li {
  height: 100%;
}
.header .ul li a {
  display: block;
  height: 100%;
  padding: 0 0.2rem;
  color: #fff;
  transition: 0.3s ease;
}
.header .ul li a span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.header .ul li a span::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: 0.3s ease;
}
.header .ul li.active a {
  background-color: var(--themeColor);
  font-family: Bold;
}
.header .ul li.active a span::after {
  transform: translateX(-50%) scaleX(1);
}
.header .ul li:hover a {
  background-color: var(--themeColor);
}
.header .ul li:hover a span::after {
  transform: translateX(-50%) scaleX(1);
}
.header .search {
  max-width: 0.8rem;
}
.header .search img {
  width: 100%;
}
.header .search-box {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  border-bottom: 1px solid #999;
  transition: 0.5s ease;
  transform: translateY(-100%);
}
.header .search-box.search-boxs {
  transform: translateY(0%);
}
.header .search-box .logo {
  position: absolute;
  left: var(--container_margin);
  top: 50%;
  transform: translateY(-50%);
}
.header .search-box .input {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  border-radius: 0.36rem;
  position: relative;
  border: 1px solid var(--themeColor);
  overflow: hidden;
  height: 0.36rem;
}
.header .search-box .input input {
  width: 100%;
  height: 100%;
  padding: 0 0.5rem 0 0.2rem;
}
.header .search-box .input .btn {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0.36rem;
  background: linear-gradient(134deg, #3975EF 0%, #5089FF 100%);
  color: #fff;
  height: 100%;
  min-width: 0.66rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .search-box .close {
  max-width: 0.8rem;
  position: absolute;
  top: 50%;
  right: var(--container_margin);
  transform: translateY(-50%);
}
.header .search-box .close img {
  width: 100%;
}
.footer {
  border-top: 3px solid #F3F3F3;
  padding: 0.5rem 0;
}
.footer .foot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.footer .foot-top .foot-left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7rem;
}
.footer .foot-top .foot-left .logo {
  width: 2.6rem;
}
.footer .foot-top .foot-left .logo img {
  width: 100%;
  object-fit: contain;
}
.footer .foot-top .foot-left .a-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.2rem;
}
.footer .foot-top .foot-left .a-box a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.footer .foot-top .foot-left .a-box a span{
    line-height: 1.5;
}
.footer .foot-top .foot-left .a-box a img {
  width: 24px;
  margin-right: 10px;
}
.footer .foot-top .foot-right .menu {
  display: flex;
  justify-content: flex-end;
  gap: 0.36rem;
}
.footer .foot-top .foot-right .menu a {
  transition: 0.3s ease;
  white-space: nowrap;
}
.footer .foot-top .foot-right .menu a:hover {
  color: var(--themeColor);
}
.footer .foot-bto {
  padding: 0.08rem 0;
  text-align: center;
  color: #777777;
}
.banner {
  position: relative;
  margin-top: var(--headerHeight);
}
.banner .swiper-slide {
  position: relative;
}
.banner .swiper-slide .slide-txt {
  position: absolute;
  top: 50%;
  left: var(--container_margin);
  transform: translateY(-50%);
  color: #fff;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.page a {
  height: 35px;
  min-width: 35px;
  padding: 10px;
  border: 1px solid rgba(66, 66, 66, 0.2);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.page a .iconfont {
  color: var(--themeColor);
  transition: 0.3s ease;
}
.page a.active {
  color: #fff;
  background-color: var(--themeColor);
}
.page a:hover {
  color: #fff;
  background-color: var(--themeColor);
}
.page a:hover .iconfont {
  color: #fff;
}
.page .allpage {
  height: 35px;
  min-width: 35px;
  padding: 10px;
  border: 1px solid rgba(66, 66, 66, 0.2);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.home {
  padding-bottom: 1.2rem;
  margin-top: var(--headerHeight);
}
.home .page1 {
  padding-top: 0.42rem;
  margin-bottom: 0.8rem;
}
.home .page1 .page1_top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.36rem;
  margin-bottom: 0.36rem;
}
.home .page1 .page1_top > div {
  width: calc(50% - 0.18rem);
}
.home .page1 .page1_top .page1-swiper {
  overflow: hidden;
}
.home .page1 .page1_top .page1-swiper .swiper-wrapper {
  height: 100%;
}
.home .page1 .page1_top .page1-swiper .swiper-slide {
  height: 100%;
}
.home .page1 .page1_top .page1-swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home .page1 .page1_top .page1-right h1 {
  line-height: 1.5;
  margin-bottom: 0.09rem;
}
.home .page1 .page1_top .page1-right .txt-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.12rem;
  column-gap: 0.45rem;
}
.home .page1 .page1_top .page1-right .txt-box a {
  line-height: 1.2;
  transition: 0.3s ease;
}
.home .page1 .page1_top .page1-right .txt-box a:hover {
  color: var(--themeColor);
}
.home .page1 .page1_bto {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.36rem;
}
.home .page1 .page1_bto > div {
  width: calc(50% - 0.18rem);
  overflow: hidden;
}
.home .page1 .page1_bto > div .swiper-wrapper {
  height: 100%;
}
.home .page1 .page1_bto > div .swiper-slide {
  height: 100%;
}
.home .page1 .page1_bto > div .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home .page2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.5rem;
  column-gap: 0.35rem;
  margin-bottom: 1rem;
}
.home .page2 .item {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.home .page2 .item:nth-of-type(4n-1) {
  flex-direction: row-reverse;
}
.home .page2 .item:nth-of-type(4n) {
  flex-direction: row-reverse;
}
.home .page2 .item:hover .img img {
  transform: scale(1.2);
}
.home .page2 .item:hover .img .txt {
  transform: translateY(0);
}
.home .page2 .item .img {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}
.home .page2 .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.home .page2 .item .img .txt {
  position: absolute;
  transition: 0.5s ease;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #737373 100%);
  transform: translateY(100%);
}
.home .page2 .item .box {
  flex: 0 0 50%;
  background: linear-gradient(90deg, rgba(57, 117, 239, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 0.16rem;
}
.home .page2 .item .box a {
  display: block;
  margin-bottom: 0.1rem;
  line-height: 1.5;
  transition: 0.3s ease;
}
.home .page2 .item .box a:hover {
  color: var(--themeColor);
}
.home .page3 h1 {
  margin-bottom: 0.28rem;
}
.home .page3 .page3-swiper {
  overflow: hidden;
  padding: 0.2rem 0.9rem;
  position: relative;
  margin-bottom: 0.7rem;
}
.home .page3 .page3-swiper .swiper-slide {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 0.16rem 0.33rem;
  text-align: center;
}
.home .page3 .page3-swiper .swiper-slide .img {
  border: 4px solid #3975EF;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.08rem;
}
.home .page3 .page3-swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home .page3 .page3-swiper .swiper-button-prev,
.home .page3 .page3-swiper .swiper-button-next {
  background-color: rgba(57, 117, 239, 0.1);
  height: calc(100% - 0.4rem);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  background-size: 50%;
}
.home .page4 .page4-swiper {
  overflow: hidden;
}
.home .page4 .page4-swiper .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.news {
  background-color: #F3F3F3;
  padding: 0.35rem 0 0.7rem;
}
.news .news-top {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}
.news .news-top .item {
  padding: 0.3rem 0.5rem;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.news .news-top .item:hover h6 {
  color: var(--themeColor);
}
.news .news-top .item:hover img {
  transform: scale(1.2);
}
.news .news-top .item .span {
  margin-bottom: 0.05rem;
}
.news .news-top .item h6 {
  margin-bottom: 0.08rem;
  transition: 0.3s ease;
}
.news .news-top .item .img {
  overflow: hidden;
  margin-bottom: 0.15rem;
}
.news .news-top .item .img img {
  width: 100%;
  transition: 0.5s ease;
}
.news .news-top .item p {
  margin-bottom: 0.15rem;
}
.news .news-top .item .btn {
  cursor: pointer;
  padding: 8px 20px;
}
.news .news-box {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.news .news-box .item-a {
  padding: 0.4rem 0.5rem;
  background: #FFFFFF;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  gap: 0.75rem;
}
.news .news-box .item-a:hover .txt-box h6 {
  color: var(--themeColor);
}
.news .news-box .item-a:hover .more .line::before {
  width: 100%;
  transition: 0.3s ease;
}
.news .news-box .item-a:hover .more .yuan::before {
  width: 100%;
  transition: 0.5s ease 0.3s;
}
.news .news-box .item-a span {
  color: var(--themeColor);
}
.news .news-box .item-a .txt-box {
  max-width: 60%;
}
.news .news-box .item-a .txt-box h6 {
  margin-bottom: 0.15rem;
  transition: 0.3s ease;
}
.news .news-box .item-a .more {
  color: var(--themeColor);
  position: absolute;
  top: 50%;
  right: 0.3rem;
}
.news .news-box .item-a .more span {
  line-height: 1;
  border-bottom: 1px solid var(--themeColor);
}
.news .news-box .item-a .more .line {
  position: absolute;
  right: calc(100% + 0.31rem);
  width: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: #D9D9D9;
}
.news .news-box .item-a .more .line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: 0.3s ease 0.3s;
  background-color: var(--themeColor);
}
.news .news-box .item-a .more .yuan {
  position: absolute;
  right: calc(100% + 0.31rem);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #D9D9D9;
  top: 50%;
  transform: translateY(-50%);
}
.news .news-box .item-a .more .yuan::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 50%;
  background-color: var(--themeColor);
  transition: 0.3s ease;
}
.news .page {
  margin-top: 0.7rem;
}
.detail {
  padding-bottom: 1.2rem;
}
.detail .nav {
  margin: 0.17rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.detail .title {
  margin-bottom: 0.45rem;
}
.detail .title h1 {
  margin-bottom: 8px;
}
.detail .text-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}
.detail .text-box .rich {
  flex: 0 0 60%;
}
.detail .text-box .recom {
  flex: 1;
  overflow: hidden;
}
.detail .text-box .recom h5 {
  margin-bottom: 0.25rem;
}
.detail .text-box .recom .recom-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 0.5rem;
}
.detail .text-box .recom .recom-swiper .swiper-slide .aslide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.3rem;
}
.detail .text-box .recom .recom-swiper .swiper-slide .aslide:last-of-type {
  margin-bottom: 0;
}
.detail .text-box .recom .recom-swiper .swiper-slide .aslide:hover img {
  transform: scale(1.1);
}
.detail .text-box .recom .recom-swiper .swiper-slide .aslide:hover .txt h6 {
  color: var(--themeColor);
}
.detail .text-box .recom .recom-swiper .swiper-slide .aslide .img {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.detail .text-box .recom .recom-swiper .swiper-slide .aslide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.detail .text-box .recom .recom-swiper .swiper-slide .aslide .txt {
  line-height: 1.5;
  overflow: hidden;
}
.detail .text-box .recom .recom-swiper .swiper-slide .aslide .txt h6 {
  font-weight: normal;
  transition: 0.3s ease;
}
.detail .text-box .recom .recom-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.detail .text-box .recom .recom-swiper .my-bullet {
  width: 13px;
  height: 3px;
  background-color: #D9D9D9;
  border-radius: 10px;
  display: block;
}
.detail .text-box .recom .recom-swiper .my-bullet.my-bullet-active {
  width: 33px;
  height: 3px;
  background-color: var(--themeColor);
}
.download {
  padding: 0.8rem 0 1.3rem;
}
.download h6 {
  text-align: center;
  margin-bottom: 0.17rem;
}
.download .time {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 0.15rem;
}
.download .time .J-datepicker-day {
  display: inline-block;
  height: 36px;
  width: 215px;
  border-radius: 50px;
  border: 1px solid var(--themeColor);
  overflow: hidden;
  position: relative;
}
.download .time img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.download .time #datepicker {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
}
.download .down-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.1rem;
  row-gap: 0.17rem;
}
.download .down-box .down-item {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download .down-box .down-item .left span {
  opacity: 0.7;
}
.download .down-box .down-item .btn {
  padding: 8px 20px;
}
.brand {
  padding: 0.8rem 1.2rem;
}
.brand h1 {
  text-align: center;
  margin-bottom: 0.7rem;
}
.brand .brand-box {
  max-width: 9.8rem;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.brand .brand-box a {
  padding: 0.24rem 0.33rem 0.12rem;
  background-color: #fff;
  text-align: center;
}
.brand .brand-box a:nth-of-type(odd) {
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.brand .brand-box a:nth-of-type(even) {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.brand .brand-box a .img {
  margin-bottom: 10px;
}
.brand .brand-box a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact {
  padding: 0.8rem 1.2rem;
}
.contact h1 {
  text-align: center;
  margin-bottom: 0.7rem;
}
.contact .box {
  background-color: #F4F4F4;
  padding: 0.6rem 0.9rem 1rem;
  display: flex;
  gap: 1.24rem;
  align-items: stretch;
}
.contact .box h6 {
  margin-bottom: 15px;
}
.contact .box .left {
  flex: 1;
  position: relative;
}
.contact .box .left .input {
  min-height: 0.58rem;
  padding: 0.15rem 0.23rem;
  margin-bottom: 0.2rem;
  background-color: #fff;
  border-radius: 6px;
}
.contact .box .left .input:last-of-type {
  margin-bottom: 0;
}
.contact .box .left .input input {
  width: 100%;
}
.contact .box .left .input textarea {
  height: 1.8rem;
  width: 100%;
}
.contact .box .left .btn {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: -20px;
  transform: translateY(100%);
  padding: 0.08rem 0.3rem;
}
.contact .box .right {
  flex: 0 0 6rem;
}
.contact .box .right #map {
  flex: 1;
  height: 3.75rem;
}
@media (max-width: 600px) {
  .header {
    overflow: initial;
  }
  .header .logo {
    width: 120px;
  }
  .header .search {
    width: 40px;
    max-width: none;
  }
  .header .search-box .logo {
    width: 80px;
  }
  .header .search-box .input {
    height: 35px;
    width: 220px;
    left: 100px;
    transform: translateY(-50%);
    border-radius: 30px;
  }
  .header .search-box .input .btn {
    border-radius: 30px;
    width: 60px;
  }
  .header .ul {
    position: absolute;
    flex-direction: column;
    width: 100%;
    height: 0;
    top: var(--headerHeight);
    left: 0;
    overflow: hidden;
    justify-content: flex-start;
    background-color: #fff;
    z-index: 111;
    transition: 0.8s ease;
  }
  .header .ul.uls {
    height: calc(100vh - var(--headerHeight));
  }
  .header .ul li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--textColor);
  }
  .header .ul li.active a {
    color: #fff;
  }
  .header .ul li a {
    padding: 10px 0;
    text-align: center;
    color: var(--textColor);
  }
  .header .ul li a span::after {
    opacity: 0;
  }
  .header .head_m {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .head_m.showmenu p span:first-of-type {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(670deg);
  }
  .header .head_m.showmenu p span:nth-child(2) {
    top: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) rotate(720deg);
  }
  .header .head_m.showmenu p span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateX(-50%) translateY(-50%) rotate(768deg);
  }
  .header .head_m p {
    width: 60%;
    height: 40%;
    position: relative;
  }
  .header .head_m p span {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #fff;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s ease;
  }
  .header .head_m p span:first-of-type {
    top: 0;
  }
  .header .head_m p span:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  .header .head_m p span:nth-child(3) {
    bottom: 0;
  }
  .footer .foot-top .foot-right {
    display: none;
  }
  .footer .foot-top .foot-left {
    flex-direction: column;
  }
  .banner {
    height: 120px;
  }
  .home .page1 .page1_top {
    flex-direction: column;
  }
  .home .page1 .page1_top > div {
    width: 100%;
  }
  .home .page1 .page1_top .page1-right h1 {
    line-height: 1.2;
    margin-bottom: 15px;
  }
  .home .page1 .page1_bto {
    flex-direction: column;
  }
  .home .page1 .page1_bto > div {
    width: 100%;
  }
  .home .page2 {
    grid-template-columns: 1fr;
  }
  .home .page2 .item {
    flex-direction: column !important;
  }
  .home .page2 .item .box {
    flex: 0;
  }
  .home .page2 .item .box a {
    margin-bottom: 5px;
  }
  .home .page3 .swiper-button-prev,
  .home .page3 .swiper-button-next {
    display: none !important;
  }
  .news .news-top {
    grid-template-columns: 1fr;
  }
  .news .news-box .item-a {
    flex-direction: column;
    gap: 0;
  }
  .news .news-box .item-a span {
    color: var(--textColor);
    font-size: 0.28rem;
  }
  .news .news-box .item-a .moblie {
    margin-bottom: 5px;
  }
  .news .news-box .item-a .txt-box {
    max-width: 100%;
  }
  .news .news-box .item-a .more {
    position: static;
    background-color: var(--themeColor);
    display: block;
    padding: 8px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 20px;
    overflow: hidden;
  }
  .news .news-box .item-a .more span {
    color: #fff;
  }
  .news .news-box .item-a .more .line,
  .news .news-box .item-a .more .yuan {
    display: none;
  }
  .detail .text-box {
    flex-direction: column;
  }
  .detail .text-box .recom {
    flex: none;
    width: 100%;
  }
  .brand {
    padding: 0.8rem 0;
  }
  .brand .brand-box {
    max-width: var(--container);
    grid-template-columns: repeat(3, 1fr);
  }
  .download .down-box {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .contact {
    padding: 0.8rem 0;
  }
  .contact .box {
    padding: 0.6rem 10px;
    align-items: center;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .contact .box > div {
    flex: none !important;
    width: 100%;
  }
  .contact .box .right #map {
    height: 200px;
  }
  .contact .box .left .input textarea {
    min-height: 120px;
    height: auto;
  }
  .contact .box .left .btn {
    position: relative;
    transform: none;
    margin-top: 15px;
    overflow: hidden;
    right: auto;
    bottom: auto;
  }
}
