@charset "utf-8";
html {
  background: #f7f7f7;
}
body {
  overflow-x: hidden;
}
/*顶部*/
header {
  border-bottom: 3px solid var(--dominant-color);
  z-index: 10;
  width: 100%;
  transition: all 0.5s;
  max-width: 1920px;
  margin: auto;
}
header .header-menu {
  transition: all 0.5s ease;
  position: relative;
}
header .header-menu .header-box {
  width: 100%;
  margin: auto;
  height: 60px;
  z-index: 2;
  box-sizing: border-box;
}
header .header-menu .header-box .logo img {
  transition: all 0.5s;
  width: 70px;
}
@media screen and (max-width: 768px) {
  header .header-menu .header-box .logo img {
    width: 40%;
  }
}
header .header-menu .header-box .search {
  position: relative;
  flex-basis: 24px;
  cursor: pointer;
}
header .menu-box {
  height: 60px;
  transition: all 0.5s;
  z-index: 1;
  position: relative;
  top: 0;
}
header .menu-box .phone-show {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}
header .menu-box .menu-list {
  display: flex;
  align-items: center;
  color: #fff;
  height: 100%;
  position: relative;
  /* padding-right: 60px; */
  width: 100%;
  /* margin-left: auto; */
  max-width: 1200px;
  justify-content: space-between;
}
header .menu-box .menu-list .firstItem {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  transition: all 0.5s;
  width: 100%;
}
header .menu-box .menu-list .firstItem:hover {
  background: #ce2720;
}
header .menu-box .menu-list .firstItem.active .firstItem-title a {
  color: #fff;
}
header .menu-box .menu-list .firstItem.active .firstItem-title a::after {
  background: #fff;
}
header .menu-box .menu-list .firstItem .firstItem-title {
  width: 100%;
  position: relative;
  /* display: flex; */
  align-items: center;
  line-height: 60px;
  text-align: center;
}
header .menu-box .menu-list .firstItem .firstItem-title a {
  color: #9b9b9b;
  font-size: 16px;
  transition: all 0.5s;
  position: relative;
  height: 60px;
  display: block;
}
header .menu-box .menu-list .firstItem .firstItem-title:hover a {
  color: #fff;
}
header .menu-box .menu-list .firstItem > a {
  font-size: 14px;
  height: 80px;
  line-height: 80px;
}
header .menu-box .menu-list .firstItem .second-box {
  position: absolute;
  top: 60px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  transition: top 0.5s;
  border-radius: 0 0 8px 8px;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list {
  background: #eee;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-box-list {
    margin-top: 0;
    padding-left: 10%;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item {
  position: relative;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item a {
  color: #9b9b9b;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ccc;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item a:hover {
  color: #fff;  background: var(--dominant-color);
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item .three-box {
  display: none;
  position: absolute;
  left: calc(100%);
  top: -10px;
  background: var(--dominant-color);
  width: max-content;
  padding: 10px 0;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item .three-box a {
  padding: 0 20px;
  margin-top: 10px;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item:hover .three-box {
  display: block;
}
header .menu-box .menu-list .firstItem .second-box a {
  transition: all 0.5s;
  color: #fff;
  display: block;
  text-align: left;
  padding: 10px 30px;
}
header .menu-box .menu-list .firstItem .second-box a:last-child {
  margin-bottom: 0;
}
header .menu-box .menu-list .language {
  display: none;
  margin-top: 50px;
  padding: 0 5%;
}
header .menu-box .menu-list .language .language-click {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
}
header .menu-box .menu-list .language a {
  margin-right: 10px;
}
header .menu-box .menu-list .language img {
  width: 40px;
}
header .header-top {
  position: relative;
  height: 250px;
  overflow: hidden;
}
header .header-top .scale-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  animation: scale 5s ease-in-out infinite alternate;
}
header .header-top .header-top-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1100px;
  width: 90%;
  height: fit-content;
  color: #fff;
}
header .header-top .header-top-text .top {
  margin-bottom: 20px;
}
header .header-top .header-top-text .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
header .header-top .header-top-text .bottom .button {
  width: 134px;
  height: 40px;
  border-radius: 5px;
  background: var(--dominant-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@keyframes scale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*首页*/
.banner {
  position: relative;
  width: 100%;
  height: 450px;
  max-width: 1920px;
  margin: auto;
  z-index: 0;
}
.banner .swiper-slide {
  height: 450px;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-slide-active .title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-slide-active .summary {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.banner .swiper-slide-active .banner-more {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-button-prev {
  left: 0;
}
.banner .swiper-button-next {
  right: 0;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  background: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  color: #fff;
}
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
  font-size: 16px;
}
.banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 60px;
  width: 90%;
  max-width: 1720px;
  margin: auto;
  left: 0;
  right: 0;
  text-align: left;
}
.banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: transparent;
  opacity: 0.8;
  --swiper-pagination-bullet-width: 25px;
  --swiper-pagination-bullet-height: 25px;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  position: relative;
}
.banner .swiper-pagination-bullet::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  opacity: 0.8;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-color: transparent;
  background: url('../images/img22.png') no-repeat center / 22px;
  opacity: 1;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: var(--dominant-color);
  opacity: 0;
}
.index-title {
  text-align: center;
  height: 50px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
  background: var(--dominant-color);
  color: #fff;
}
.index-title .title {
  font-size: 18px;
  background: url('../images/img2.png') no-repeat center left;
  padding-left: 40px;
}
.index-title .more {
  font-size: 18px;
  color: #fff;
}
.index1 {
  margin: 20px auto 5px;
}
.index1 .item-list {
  display: flex;
}
.index1 .item-list:nth-child(2) .item {
  background: #f7c6bb;
  color: var(--dominant-color);
}
.index1 .item-list .item {
  flex-basis: calc((100% - 150px) / 11);
  margin-right: 15px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dominant-color);
  color: #fff;
  margin-bottom: 15px;
}
.index1 .item-list .item:first-child {
  border: 1px solid var(--dominant-color);
  background: #fff;
  color: #333;
  font-weight: 600;
}
.index1 .item-list .item:nth-child(11n) {
  margin-right: 0;
}
.index1 .bottom {
  display: flex;
  justify-content: space-between;
}
.index1 .bottom .left {
  flex-basis: calc(100% - 380px);
}
.index1 .bottom .right {
  flex-basis: 360px;
}
.index2 .swiper-button-prev {
  left: 0;
}
.index2 .swiper-button-next {
  right: 0;
}
.index2 .swiper-button-prev,
.index2 .swiper-button-next {
  background: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  color: #fff;
}
.index2 .swiper-button-prev::after,
.index2 .swiper-button-next::after {
  font-size: 16px;
}
.index3 .scroll-box {
  padding: 20px;
  background: #fff;
}
.index3 .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  /*之前是ease-out*/
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.index3 .swiper-slide .item .img {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 75%;
}
.index3 .swiper-slide .item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index3 .swiper-slide .item .text {
  margin: 10px 20px 20px;
}
.index4 {
  display: flex;
  justify-content: space-between;
}
.index4 .banner {
  padding: 20px;
  background: #fff;
  height: auto;
}
.index4 .banner .swiper-slide {
  height: auto;
}
.index4 .left,
.index4 .right {
  background: #fff;
  width: calc((100% - 20px) / 2);
}
.news-box {
  background: #fff;
  padding: 20px;
}
.news-box.no-time .item:first-child {
  height: 45px;
  align-items: center;
}
.news-box.no-time .item .title-box {
  flex-basis: 100%;
}
.news-box.no-time .item .title {
  flex-basis: 100%;
  padding-right: 30px;
}
.news-box .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  border-bottom: 1px solid #eee;
}
.news-box .item:first-child {
  align-items: flex-start;
  height: auto;
}
.news-box .item:first-child .img {
  flex-basis: 250px;
  height: 160px;
  margin-right: 30px;
}
.news-box .item:first-child .text {
  flex-basis: calc(100% - 280px);
}
.news-box .item:first-child .text .summary {
  margin-top: 10px;
  opacity: 0.8;
}
.news-box .item .title-box {
  flex-basis: calc(100% - 150px);
  display: flex;
  justify-content: flex-start;
}
.news-box .item .title-box .title {
  font-size: 16px;
}
.news-box .item .title-box .hot {
  background: var(--dominant-color);
  color: #fff;
  font-size: 12px;
  margin-left: 5px;
  padding: 3px 6px;
  border-radius: 5px;
  transform: scale(0.8);
  transform-origin: center left;
}
.news-box .item .time {
  color: #969696;
  font-size: 12px;
  flex-basis: 120px;
}
.bottom-img {
  display: flex;
  margin-top: 20px;
}
.bottom-img .item {
  flex-basis: calc((100% - 40px) / 3);
  margin-right: 20px;
}
.bottom-img .item:nth-child(3n) {
  margin-right: 0;
}
.index2-banner {
  margin: 20px auto;
  max-width: 1920px;
}
.small-img {
  padding: 20px;
  background: #fff;
}
.index5 {
  margin: 20px auto;
}
.footer {
  padding: 30px 0 100px;
  background: #fff;
}
.footer .footer-top {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}
.footer .footer-top a {
  color: #333;
  font-size: 16px;
  text-align: center;
  padding: 0 10px;
}
.footer .footer-top a:hover {
  background: var(--dominant-color);
  color: #fff;
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom .left p,.footer .footer-bottom .right p{ font-size:16px;    color: #696969; line-height:2}
.footer .footer-bottom .left,
.footer .footer-bottom .right {
  flex-basis: 30%;
}
.footer .footer-bottom .mid {
  flex-basis: 35%;
  display: flex;
  justify-content: center;
}
.footer .footer-bottom .mid .item {
  max-width: 100px;
  margin: 0 10px;
}
.footer .footer-bottom .mid .item img {
  max-width: 100%;
}
.footer .footer-bottom .right {
  text-align: right;
}
.goTop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  right: 5%;
  bottom: 10%;
  transition: all 0.5s;
  z-index: 1000;
  display: none;
}
/*内页*/
/*内页通用*/
/*响应式*/
@media screen and (max-width: 1024px) {
  /*header*/
  header .header-menu .header-box-bg .header-box {
    height: 80px;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child span {
    display: inline-block;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child img {
    display: none;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child .firstItem-title {
    border: none;
  }
  .pageBanner .banner-box .text {
    top: 0;
    left: 0;
    width: 90%;
  }
  .pageBanner .banner-box .text .summary {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  /*默认*/
  .banner .text .title {
    font-size: 20px;
  }
  .banner .text .summary {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .pager {
    margin-top: 50px;
  }
  .pager .number {
    width: 30px;
    height: 30px;
    font-size: 12px !important;
    margin: 0 5px;
  }
  .pagePadding {
    padding: 50px 0;
  }
  .pagePaddingT {
    padding: 50px 0 0;
  }
  .page-title-box {
    margin-bottom: 20px;
  }
  .page-title-box .page-title {
    font-size: 20px;
  }
  .page-title-box .page-summary {
    font-size: 12px;
    margin-top: 0;
  }
  .pageBanner {
    height: 300px;
  }
  .pageBanner .page-title-box {
    max-width: 90%;
    margin: auto;
  }
  .bottom-img {
    flex-direction: column;
  }
  .bottom-img .item {
    width: 100%;
    margin: 10px auto;
  }
  .bottom-img .item img {
    width: 100%;
  }
  .index4 {
    flex-direction: column;
  }
  .index4 .left,
  .index4 .right {
    width: 100%;
  }
  .index4 .right {
    margin-top: 20px;
  }
  .news-box .item:first-child .text {
    flex-basis: calc(100% - 160px);
  }
  .news-box .item:first-child .img {
    flex-basis: 150px;
    height: 150px;
    margin-right: 10px;
    margin-bottom: 20px;
  }
  .news-box .item:first-child .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .small-img img {
    width: 100%;
  }
  .index1 .bottom {
    flex-direction: column;
  }
  .news-box .item .title-box .title {
    font-size: 14px;
  }
  .index-title .title{
    font-size: 20px;
  }
.index-title .more {
    font-size: 14px;
  }
  .index-title .title {
    background-size: 15px;
    padding-left: 30px;
  }
  .footer .footer-top {
    display: none;
  }
  .footer .footer-bottom {
    flex-direction: column;
  }
  .footer .footer-bottom .right {
    text-align: left;
  }
  .footer .footer-bottom .mid {
    margin: 20px 0;
    justify-content: flex-start;
  }
  .index1 .item-list .item {
    flex-basis: calc((100% - 45px) / 4);
  }
  .index1 .item-list .item .index1 .item-list .item:nth-child(11n) {
    margin-right: 15px;
  }
  .index1 .item-list .item:nth-child(4n) {
    margin-right: 0;
  }
  .index1 .item-list {
    flex-wrap: wrap;
  }
  .news-box .item .time {
    display: none;
  }
  .news-box .item .title-box {
    flex-basis: 100%;
  }
  header .header-menu .header-box {
    padding: 0;
    height: 60px;
  }
  header .header-menu .header-box .logo {
    margin-left: 5%;
    position: relative;
    z-index: 100;
  }
  header .header-menu .header-box .menu-box {
    background: none;
    display: flex;
    align-items: center;
    height: 60px;
    position: absolute;
    z-index: 10000;
    top: 0 !important;
    width: 100%;
    justify-content: flex-end;
  }
  header .header-menu .header-box .menu-box .phone-click {
    cursor: pointer;
    width: 22px;
    height: 16px;
    display: flex;
    align-items: center;
    position: relative;
    right: 5%;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line {
    height: 2px;
    background: var(--dominant-color);
    width: 100%;
    transition: all 0.5s;
    overflow: hidden;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::before,
  header .header-menu .header-box .menu-box .phone-click .phone-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--dominant-color);
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::before {
    top: 0;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::after {
    bottom: 0;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line {
    background: rgba(255, 255, 255, 0);
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line::before {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(7px) rotate(45deg);
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line::after {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(-7px) rotate(-45deg);
  }
  header .header-menu .header-box .menu-box .phone-show {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    top: 60px;
    height: 100vh;
    z-index: 10;
    left: 0;
    margin-left: 0;
    padding-top: 30px;
  }
  header .header-menu .header-box .menu-box .menu-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list .language {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #eee;
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem.active .firstItem-title a {
    color: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem.active .firstItem-title a::after {
    background: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title {
    height: 50px;
    width: 100%;
    padding: 0;
    position: relative;
    line-height: 50px;
    padding-left: 30px;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a {
    color: #2a2a2a;
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: left;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a:hover {
    color: #fff;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a:hover::after {
    background: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i.active {
    transform: rotate(45deg);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i::before {
    content: '';
    width: 16px;
    position: absolute;
    height: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i::after {
    content: '';
    height: 16px;
    position: absolute;
    width: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title::after {
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box {
    top: 0 !important;
    border-top: none;
    box-shadow: none;
    position: relative;
    left: 0;
    font-size: 12px;
    transform: translateX(0);
    width: 100%;
    margin-left: 20px;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box .second-box-list {
    margin-top: 0;
    padding: 2px;
    background: none;
    justify-content: flex-start;
    flex-direction: column;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box .second-box-list::after {
    left: 20px;
    right: auto;
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box a {
    text-align: left;
    margin-bottom: 10px;
    color: #333;
    padding: 0;
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box a:hover {
    color: #333;
    text-decoration: underline;
  }
  header .header-menu .header-box .menu-box .menu-list-phone {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    position: absolute;
    height: 100vh;
    left: 0;
    width: 100%;
    top: 50px;
    padding: 20px;
    display: none;
    z-index: 10;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-list-box {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside {
    border-right: 1px solid #e1e3e6;
    height: 100%;
    overflow: hidden;
    width: 120px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 10px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item a {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item.active::after {
    content: '';
    width: 4px;
    height: 15px;
    background: var(--dominant-color);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content {
    flex: auto;
    width: calc(100% - 120px);
    padding: 0 10px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-content {
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-content.active {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list {
    display: flex;
    flex-wrap: wrap;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .title {
    font-size: 12px;
    color: #666;
    text-align: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .summary {
    font-size: 12px;
    text-align: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .imgBox {
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .news-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .news-title {
    text-align: center;
    font-size: 12px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .second-item-support-link a {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 10px;
  }
  header .information {
    margin-top: 30px;
    margin-left: 20px;
  }
  .phone-search-click {
    position: fixed;
    top: 0;
    right: calc(5% + 50px);
    display: flex;
    bottom: 0;
    align-items: center;
    width: 20px;
    z-index: 100;
    cursor: pointer;
    height: 80px;
  }
  .header-top {
    display: none;
  }
  header .header-menu .header-box .logo {
    height: 60px;
    display: flex !important;
    align-items: center;
  }
}
header .header-menu .header-box .logo {
  display: none;
}
.index3 .scroll-box .swiper1 {
  height: 540px;
}

.index3 .scroll-box .swiper1 .swiper-slide{
  height: auto;
}
@media screen and (max-width: 768px) {
  .index3 .scroll-box .swiper1 {
    height: auto;
  }
  .index3 .scroll-box .swiper1 .swiper-slide{
    height: 100%;
  }
}