@charset "UTF-8";
/*
  样式规范表
*/
/* ****首页**** */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/* ******** */
/* 通用字体混入 */
/* 不同板块标题字体混入 */
/* 通用按钮混入 */
/* 通用按钮混入选中 */
/* PC端下内容容器 */
body {
  overflow-x: hidden;
}

.index .banner {
  width: 100%;
  height: 100vh;
}

.index .banner .banner_content {
  height: 100%;
  position: relative;
}

.index .banner .banner_content .swiper-banner {
  height: 100%;
}

.index .banner .banner_content .swiper-banner .swiper-wrapper {
  height: 100%;
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide {
  height: 100%;
  background: url("../../images/index/banner-1.png") center no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container {
  width: 100%;
  /* width: $width; */
  /* max-width: $min-width; */
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1800px) {
  .index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container {
    width: 92%;
    /* max-width: 95%; */
    /* padding: $padding; */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 800px) {
  .index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container {
    width: 100%;
    /* max-width: auto;
        padding: $padding; */
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce {
  position: relative;
  margin-left: 235px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce .banner_title {
  margin-bottom: 22px;
  color: white;
  font-size: 58px;
  line-height: 1.3;
  font-weight: bold;
  font-family: "Microsoft YaHei";
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce .banner_remark {
  margin-bottom: 50px;
  color: white;
  font-size: 20px;
  line-height: 1.8;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce .banner_link {
  padding: 17px 37px;
  border: solid 1px white;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce .banner_link img {
  margin-left: 20px;
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_pull {
  z-index: 3;
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 47px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_pull:hover {
  bottom: 43px;
}

.index .banner .banner_content .swiper-pagination-banner {
  z-index: 9;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .banner .banner_content .swiper-pagination-banner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.502);
  margin: 20px 0;
  opacity: 1;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.index .banner .banner_content .swiper-pagination-banner .swiper-pagination-bullet:after {
  content: '';
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width .3s, height .3s;
  transition: width .3s, height .3s;
}

.index .banner .banner_content .swiper-pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.index .banner .banner_content .swiper-pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  width: 21px;
  height: 21px;
  border: solid 1px #fff;
}

.index .brand {
  padding: 150px 0;
}

.index .brand .brand_content {
  /* width: $width; */
  /* max-width: $min-width; */
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1800px) {
  .index .brand .brand_content {
    width: 92%;
    /* max-width: 95%; */
    /* padding: $padding; */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 800px) {
  .index .brand .brand_content {
    width: 100%;
    /* max-width: auto;
        padding: $padding; */
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.index .brand .brand_content .brand_pic {
  width: 50%;
}

.index .brand .brand_content .brand_pic img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.index .brand .brand_content .brand_introduce {
  width: 50%;
  padding: 0 50px 0 110px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .brand .brand_content .brand_introduce .brand_top {
  position: relative;
  margin-bottom: 15px;
}

.index .brand .brand_content .brand_introduce .brand_top .brand_title {
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
  color: black;
  font-size: 42px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .brand .brand_content .brand_introduce .brand_top .brand_title:after {
  content: '';
  width: 40px;
  height: 4px;
  display: block;
  background-color: #158141;
  position: absolute;
  bottom: 0;
  left: 0;
}

.index .brand .brand_content .brand_introduce .brand_top .brand_text {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}

.index .brand .brand_content .brand_introduce .brand_middle {
  margin-bottom: 20px;
}

.index .brand .brand_content .brand_introduce .brand_middle .brand_remark {
  color: #666666;
  font-size: 18px;
  line-height: 2.4;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .brand .brand_content .brand_introduce .brand_bottom a {
  border-radius: 40px;
  border: solid 1px #929292;
  padding: 16px 40px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666666;
  font-size: 15px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .brand .brand_content .brand_introduce .brand_bottom a img {
  margin-left: 14px;
}

.index .product {
  background: url("../../images/index/product-back.png") center no-repeat;
  background-size: cover;
  padding: 120px 0 120px 0;
}

.index .product .product_content {
  /* width: $width; */
  /* max-width: $min-width; */
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media screen and (max-width: 1800px) {
  .index .product .product_content {
    width: 92%;
    /* max-width: 95%; */
    /* padding: $padding; */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 800px) {
  .index .product .product_content {
    width: 100%;
    /* max-width: auto;
        padding: $padding; */
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.index .product .product_content .plate_introduce {
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .product .product_content .plate_introduce .plate_title {
  position: relative;
  margin-bottom: 25px;
}

.index .product .product_content .plate_introduce .plate_title p {
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .product .product_content .plate_introduce .plate_title p:after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  left: 5px;
  bottom: 0;
}

.index .product .product_content .plate_introduce .plate_title img {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}

.index .product .product_content .plate_introduce .plate_remark {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .product .product_content .swiper-product {
  width: 100%;
  overflow: hidden;
}

.index .product .product_content .swiper-product .swiper-wrapper {
  width: 100%;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide:hover .product_main_pic {
  border-color: rgba(0, 0, 0, 0.2);
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide:hover .product_main_introduce {
  background-color: rgba(0, 0, 0, 0.2);
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide:hover .product_main_introduce .product_main_text .product_main_title {
  color: #fff;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide:hover .product_main_introduce .product_main_text .product_main_remark {
  color: #fff;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide:hover .product_main_introduce .product_main_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_pic {
  width: 100%;
  height: 350px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #e6e6e6;
  border-bottom: solid 1px transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_pic img {
  max-width: 90%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce {
  width: 100%;
  height: 129px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px 30px 0 27px;
  background-color: #fafafa;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce .product_main_text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce .product_main_text .product_main_title {
  margin-bottom: 15px;
  color: #333333;
  font-size: 20px;
  line-height: 1.4;
  font-weight: normal;
  font-family: "Microsoft YaHei";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce .product_main_text .product_main_remark {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #666666;
  font-size: 15px;
  line-height: 1.4;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce .product_main_more {
  display: none;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  min-width: 43px;
  margin-left: 10px;
  height: 43px;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index .product .product_content .pagation_product {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.index .product .product_content .pagation_product .swiper-nav-product {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: transparent;
  border: solid 1px #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.index .product .product_content .pagation_product .swiper-nav-product:first-child {
  margin-right: 50px;
}

.index .product .product_content .pagation_product .swiper-nav-product:after {
  content: '';
  width: 17px;
  height: 14px;
  display: block;
  background: url("") center no-repeat;
  background-size: contain;
}

.index .product .product_content .pagation_product .swiper-nav-product.swiper-button-disabled {
  opacity: 0.8;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.4);
}

.index .product .product_content .pagation_product .swiper-nav-product.swiper-button-disabled.swiper-button-prev-product:after {
  background-image: url("../../images/index/icon-left.png");
}

.index .product .product_content .pagation_product .swiper-nav-product.swiper-button-disabled.swiper-button-next-product:after {
  background-image: url("../../images/index/icon-right.png");
}

.index .product .product_content .pagation_product .swiper-nav-product.swiper-button-prev-product:after {
  background-image: url("../../images/index/icon-left-1.png");
}

.index .product .product_content .pagation_product .swiper-nav-product.swiper-button-next-product:after {
  background-image: url("../../images/index/icon-right-1.png");
}

.index .news {
  padding: 152px 0 126px 0;
}

.index .news .news_content {
  /* width: $width; */
  /* max-width: $min-width; */
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media screen and (max-width: 1800px) {
  .index .news .news_content {
    width: 92%;
    /* max-width: 95%; */
    /* padding: $padding; */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 800px) {
  .index .news .news_content {
    width: 100%;
    /* max-width: auto;
        padding: $padding; */
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.index .news .news_content .plate_introduce {
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .news .news_content .plate_introduce .plate_title {
  position: relative;
  margin-bottom: 25px;
}

.index .news .news_content .plate_introduce .plate_title p {
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 42px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .news .news_content .plate_introduce .plate_title p:after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: #eb0909;
  position: absolute;
  left: 5px;
  bottom: 0;
}

.index .news .news_content .plate_introduce .plate_title img {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}

.index .news .news_content .plate_introduce .plate_remark {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .news .news_content .news_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.index .news .news_content .news_main .news_pic {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 105px;
}

.index .news .news_content .news_main .news_pic img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.index .news .news_content .news_main .news_container {
  position: relative;
  top: 15px;
  width: 50%;
  padding-right: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .news .news_content .news_main .news_container .news_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .news .news_content .news_main .news_container .news_top .mews_title {
  color: #1a1a1a;
  font-size: 24px;
  line-height: 1.2;
  font-weight: normal;
  font-family: "Microsoft YaHei";
  margin-bottom: 15px;
}

.index .news .news_content .news_main .news_container .news_top .news_time {
  margin-bottom: 24px;
  color: #999999;
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .news .news_content .news_main .news_container .news_top .news_remark {
  margin-bottom: 35px;
  color: #666666;
  font-size: 14px;
  line-height: 2;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .news .news_content .news_main .news_container .news_top .news_more {
  margin-bottom: 30px;
  width: 137px;
  height: 41px;
  border-radius: 40px;
  border: solid 1px rgba(0, 0, 0, 0.102);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666666;
  font-size: 20px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .news .news_content .news_main .news_container .news_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .news .news_content .news_main .news_container .news_list .news_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.102);
  overflow: hidden;
}

.index .news .news_content .news_main .news_container .news_list .news_item:hover .news_item_introduce .news_item_more {
  right: 0;
}

.index .news .news_content .news_main .news_container .news_list .news_item .news_item_time {
  padding: 24px 47px 24px 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: solid 1px rgba(0, 0, 0, 0.102);
}

.index .news .news_content .news_main .news_container .news_list .news_item .news_item_time p {
  min-width: 70px;
  color: #d9d9d9;
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  font-family: "Microsoft YaHei";
}

.index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce .news_item_text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce .news_item_text .news_item_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 15px;
  color: #333333;
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce .news_item_text .news_item_remark {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #999999;
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce .news_item_more {
  position: relative;
  right: -100px;
  cursor: pointer;
  margin-left: 20px;
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 1px #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .6s;
  transition: all .6s;
}

.index .case {
  height: 200px;
  background-color: #f7f7f7;
}

.index .case .case_content {
  /* width: $width; */
  /* max-width: $min-width; */
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 0;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 1800px) {
  .index .case .case_content {
    width: 92%;
    /* max-width: 95%; */
    /* padding: $padding; */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 800px) {
  .index .case .case_content {
    width: 100%;
    /* max-width: auto;
        padding: $padding; */
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.index .case .case_content .swiper-case {
  overflow: hidden;
  height: 100%;
}

.index .case .case_content .swiper-case .swiper-wrapper {
  height: 100%;
}

.index .case .case_content .swiper-case .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index .case .case_content .swiper-nav-case {
  z-index: 3;
  cursor: pointer;
  width: 11px;
  height: 20px;
  display: block;
  background: url("") center no-repeat;
  background-size: cover;
  position: absolute;
  left: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.index .case .case_content .swiper-nav-case.swiper-button-disabled {
  cursor: not-allowed;
}

.index .case .case_content .swiper-nav-case.swiper-button-prev-case {
  left: 0;
  background-image: url("../../images/index/icon-prev.png");
}

.index .case .case_content .swiper-nav-case.swiper-button-next-case {
  right: 0;
  background-image: url("../../images/index/icon-next.png");
}

@media screen and (max-width: 1400px) {
  .index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce {
    margin-left: 10%;
  }
  .index .news {
    padding: 152px 0 126px 0;
  }
  .index .news .news_content .news_main .news_pic {
    width: 55%;
    padding-right: 50px;
  }
  .index .news .news_content .news_main .news_container {
    width: 45%;
    padding-right: 0;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_time {
    padding: 24px 37px 24px 19px;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce {
    padding: 0 15px 0 40px;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce .news_item_more {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

@media screen and (max-width: 1300px) {
  .index .brand .brand_content .brand_pic {
    width: 55%;
  }
  .index .brand .brand_content .brand_introduce {
    width: 45%;
    padding: 0 0 0 60px;
  }
}

@media screen and (max-width: 996px) {
  .index .brand .brand_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .index .brand .brand_content .brand_pic {
    width: 100%;
  }
  .index .brand .brand_content .brand_introduce {
    margin-bottom: 50px;
    width: 100%;
    padding: 0;
  }
  .index .news .news_content .news_main {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .index .news .news_content .news_main .news_pic {
    width: 90%;
    padding-right: 0;
    margin: 0 auto;
  }
  .index .news .news_content .news_main .news_container {
    width: 100%;
    top: 0;
    margin-bottom: 40px;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_time {
    padding: 24px 47px 24px 29px;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce {
    padding: 0 15px 0 60px;
  }
}

@media screen and (max-width: 800px) {
  .index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce {
    margin-left: 0;
  }
  .index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce .banner_title {
    font-size: 10vw;
  }
  .index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce .banner_remark {
    font-size: 3.8vw;
  }
  .index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_container .banner_introduce .banner_link {
    padding: 15px 30px;
    font-size: 3.8vw;
  }
  .index .banner .banner_content .swiper-banner .swiper-wrapper .swiper-slide .banner_pull {
    display: none;
  }
  .index .banner .banner_content .swiper-pagination-banner {
    top: auto;
    bottom: 47px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .index .banner .banner_content .swiper-pagination-banner .swiper-pagination-bullet {
    margin: 0 10px;
  }
  .index .brand {
    padding: 90px 0;
    padding-top: 120px;
  }
  .index .brand .brand_content .brand_introduce .brand_top .brand_title {
    font-size: 10vw;
  }
  .index .brand .brand_content .brand_introduce .brand_middle .brand_remark {
    font-size: 3.2vw;
  }
  .index .brand .brand_content .brand_introduce .brand_bottom a {
    font-size: 3.8vw;
  }
  .index .product {
    padding: 90px 0 176px 0;
  }
  .index .product .product_content .plate_introduce .plate_title p {
    font-size: 10vw;
  }
  .index .product .product_content .plate_introduce .plate_remark {
    font-size: 3.8vw;
  }
  .index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce {
    background-color: #eb0909;
  }
  .index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce .product_main_text .product_main_title {
    font-size: 5vw;
    color: #fff;
  }
  .index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce .product_main_text .product_main_remark {
    font-size: 3.8vw;
    color: #fff;
  }
  .index .product .product_content .swiper-product .swiper-wrapper .swiper-slide .product_main_introduce .product_main_more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .index .product .product_content .pagation_product {
    z-index: 4;
    top: auto;
    right: auto;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
  .index .news {
    padding: 90px 0;
    padding-top: 120px;
  }
  .index .news .news_content .plate_introduce .plate_title p {
    font-size: 10vw;
  }
  .index .news .news_content .plate_introduce .plate_remark {
    font-size: 3.8vw;
  }
  .index .news .news_content .news_main .news_pic {
    width: 100%;
  }
  .index .news .news_content .news_main .news_container {
    margin-bottom: 50px;
  }
  .index .news .news_content .news_main .news_container .news_top .mews_title {
    font-size: 6vw;
  }
  .index .news .news_content .news_main .news_container .news_top .news_time {
    font-size: 3.8vw;
  }
  .index .news .news_content .news_main .news_container .news_top .news_remark {
    font-size: 3.8vw;
  }
  .index .news .news_content .news_main .news_container .news_top .news_more {
    font-size: 5vw;
    margin-bottom: 10px;
    vertical-align: middle;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_time {
    padding: 10px 0;
    margin-bottom: 10px;
    border: none;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_time p {
    white-space: nowrap;
    font-size: 5vw;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce {
    padding: 0;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce .news_item_text .news_item_title {
    font-size: 4.267vw;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce .news_item_text .news_item_remark {
    font-size: 3.8vw;
  }
  .index .news .news_content .news_main .news_container .news_list .news_item .news_item_introduce .news_item_more {
    margin-left: 15px;
    right: 0;
  }
}
/*# sourceMappingURL=index.css.map */