html {
  overflow-x: hidden;
}
body {
  background-color: #FFF;
}
.headerWarpper {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: all 1s;
  background-color: #00000052;

}
.headerWarpper:hover {
  background-color: #fff;
  transition: all 1s;
}
.headerWarpper:hover .Warpper .logo {
  display: none;
}
.headerWarpper:hover .Warpper .logo2 {
  display: block;
}
.headerWarpper:hover .Warpper .navList ul a {
  color: #000;
  transition: all 0.5s;
}
.headerWarpper .Warpper {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px #333 solid;
  padding-top: 0.5vw;
}
.headerWarpper .Warpper .logo {
  flex: 0 8%;
  display: flex;
  justify-content: flex-start;
  margin-left: 0.5vw;
  align-items: center;
}
.headerWarpper .Warpper .logo .imgWarpper {
  /*width: 2.8vw;*/
  min-width: 40px;
   max-width: 50px;
}
.headerWarpper .Warpper .logo .imgWarpper img {
  width: 100%;
  
}
.headerWarpper .Warpper .logo2 {
  flex: 0 8%;
  display: flex;
  justify-content: flex-start;
  margin-left: 0.5vw;
  align-items: center;
  display: none;
}
.headerWarpper .Warpper .logo2 .imgWarpper {
  /*width: 2.8vw;*/
   min-width: 40px;
   max-width: 50px;
}
.headerWarpper .Warpper .logo2 .imgWarpper img {
  width: 100%;
}
.headerWarpper .Warpper .navList {
  flex: 0 40vw;
}
.headerWarpper .Warpper .navList ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.headerWarpper .Warpper .navList ul li {
    
  flex: auto;
  border-bottom: rgba(255, 0, 0, 0) 1px solid;
}
.headerWarpper .Warpper .navList ul li a {
  display: block;
  color: #fff;
  line-height: 1.5;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3vw;
  text-align: center;
  text-decoration: none;
}
.headerWarpper .Warpper .navList ul li .sub {
  display: none;
  position: absolute;
  top:90px;
  width: 100%;
  height: 100vh;
  left: 0;
  background-color: #fff;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox {
  display: flex;
  width: 80vw;
  margin: 0 auto;
  margin-top: 2vw;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd {
  flex: 0 30%;
  background-color: #fff;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul {
  display: flex;
  flex-direction: column;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul li {
  width: 70%;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul li a {
  color: #192134;
  font-size: 16px;
  line-height: 1.5;
  padding: 20px 0;
  height: auto;
  width: 100%;
  display: flex;
  font-weight:bold;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul li a span {
  display: none;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul .on {
  width: 70%;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul .on a {
  font-weight: bold;
  text-decoration: none;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul .on a span {
  display: block;
  margin-left: 2%;
  font-size: 16px;
  font-weight: bold;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd {
  flex: 0 70%;
  margin-top: 1vw;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd .right_pro .pro_list {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd .right_pro .pro_list .list {
  flex: 0 33%;
  margin-bottom: 2vw;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd .right_pro .pro_list .list a {
  display: block;
  color: #000;
  display: flex;
  height: auto;
  font-size: 0.85vw;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd .right_pro .pro_list .list a .imgWarpper {
  width: 10vw;
  height: 10vw;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd .right_pro .pro_list .list a .imgWarpper img {
  width: 100%;
  height: 100%;
}
.headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd .right_pro .pro_list .list a .name {
  margin-left: 1vw;
  font-size: 14px;
  line-height:1.5;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.headerWarpper .Warpper .navList ul li:hover {
  border-bottom: red 1px solid;
}
.headerWarpper .Warpper .searWarpper {
  flex: 0 10vw;
  box-shadow: 2px 2px 5px #979797;
  border-radius: 10px;
}
.headerWarpper .Warpper .searWarpper .search {
  width: 100%;
  float: right;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  padding: 2px;
  box-shadow: 2px 2px 5px #979797 inset;
  box-sizing: border-box;
}
.headerWarpper .Warpper .searWarpper .search .searchtxt {
  border: none;
  padding-left: 5%;
  border-radius: 10px;
  background-color: transparent;
  width: 73%;
}
.headerWarpper .Warpper .searWarpper .search .icon-sousuo {
  cursor: pointer;
  background-image: url('/wp-content/themes/hello-elementor/img/search.png');
  background-size:cover;
  width: 25px;
  background-color: transparent;
    border: 0;
}
.headerWarpper .Warpper .searWarpper .search .icon-sousuo:hover {
  color: red;
}
.sj-header {
  display: none;
  background-color: #161920;
    position: fixed;
    z-index: 99;
    width: 100%;
}
.sj-header .sj-warpper {
  display: flex;

  width: 95vw;
  height: 18vw;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.sj-header .sj-warpper .sj-icon {
  flex: 0 20vw;
}
.sj-header .sj-warpper .sj-icon .iconfont {
  color: #fff;
  font-size: 6vw;
}
.sj-header .sj-warpper .sj-icon .navwarpper {
  position: fixed;
  background-color: #161920;
  padding-top: 5vw;
  z-index: 999;
  top: 0;
  left: -2.5vw;
  width: 50vw;
  height: 100vh;
  transform: translateX(-51vw);
  transition: all 0.5s;
}
.sj-header .sj-warpper .sj-icon .navwarpper .icon-guanbi1 {
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 20px;
}
.sj-header .sj-warpper .sj-icon .navwarpper .sj-nav {
  box-sizing: border-box;
  width: 100%;
  height: 80vh;
  padding-top: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sj-header .sj-warpper .sj-icon .navwarpper .sj-nav li {
    flex: 0 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}
.sj-header .sj-warpper .sj-icon .navwarpper .sj-nav li a {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.sj-header .sj-warpper .sj-icon .navwarpper .sj-nav li .sub-Warpper {
  height: 100vh;
  position: absolute;
  top: 0;
  right: -35vw;
  background-color: #192134;
  width: 40vw;
  display: none;
}
.sj-header .sj-warpper .sj-icon .navwarpper .sj-nav li .sub-Warpper .sj-sub {
  padding-top: 10vw;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.sj-header .sj-warpper .sj-icon .navwarpper .sj-nav li .sub-Warpper .sj-sub li {
  flex: auto;
}
.sj-header .sj-warpper .sj-icon .navwarpper .sj-nav li .sub-Warpper .sj-sub li a {
  font-size: 14px;
}
.sj-header .sj-warpper .sj-logo {
  padding: 1vw 0;
}
.sj-header .sj-warpper .sj-search {
  flex: 0 20vw;
}
.sj-header .sj-warpper .sj-search .iconfont {
  color: #fff;
  font-size: 6vw;
  float: right;
  transition: all 0.5s;
}
.sj-header .sj-warpper .sj-search .form {
  position: absolute;
  top: 19vw;
  z-index: 9;
  right: 0;
  opacity: 0;
  transition: all 0.5s;
}
.sj-header .sj-warpper .sj-search .form input {
  border: none;
  padding: 2vw 2vw;
  border-radius: 0.8vw;
  box-sizing: border-box;
}
.sj-header .sj-warpper .sj-search .form input:last-of-type {
  background-color: #192134;
  color: #fff;
}
.sj-header .sj-warpper .sj-search:hover .iconfont {
  color: red;
}
.sj-header .sj-warpper .sj-search:hover .form {
  opacity: 1;
}
.bannerWarpper {
  position: relative;
  width: 100%;
  /*height: 100vh;*/
  overflow: hidden;
}
.bannerWarpper video {
  width: 100%;
  /*height: 100vh;*/
  object-fit: cover;
}
.bannerWarpper .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #00000012;
  top: 0;
  display: flex;
  align-items: center;
}
.bannerWarpper .mask p {
  width: 100%;
  text-align: center;
  font-size: 5vw;
  font-weight: bold;
  color: #fff;
}
.content .content_banner {
  padding-top: 1vw;
  background-color: #000;
}
.content .content_banner .swiper {
  width: 100%;
  position: relative;
}
.content .content_banner .swiper .swiper-slide .imgWarpper {
  width: 100%;
}
.content .content_banner .swiper .swiper-slide .imgWarpper img {
  width: 100%;
}
.content .content_banner .swiper .swiper-button-prev {
  left: 2vw;
}
.content .content_banner .swiper .swiper-button-prev::after {
  color: #fff;
  font-size: 40px;
}
.content .content_banner .swiper .swiper-button-next {
  right: 3vw;
}
.content .content_banner .swiper .swiper-button-next::after {
  color: #fff;
  font-size: 40px;
}
.content .productWarpper {
  padding-top: 1.5vw;
}
.content .productWarpper .Warpper {
  width: 97vw;
  margin: 0 auto;
}
.content .productWarpper .Warpper .proList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content .productWarpper .Warpper .proList li {
  flex: 0 48vw;
  overflow: hidden;
  margin-bottom: 1.5vw;
}
.content .productWarpper .Warpper .proList li a {
  display: block;
  position: relative;
}
.content .productWarpper .Warpper .proList li a .imgWarpper {
  width: 48vw;
  height: 36vw;
}
.content .productWarpper .Warpper .proList li a .imgWarpper:hover img {
  transform: scale(1.1);
  transition: all 0.7s;
}
.content .productWarpper .Warpper .proList li a .imgWarpper img {
  width: 100%;
  height: 100%;
  transition: all 0.7s;
}
.content .productWarpper .Warpper .proList li a .info {
  position: absolute;
  top: 0;
  padding: 2vw;
  color: #18150b;
}
.content .productWarpper .Warpper .proList li a .info h3 {
  font-size: 2vw;
}
.content .productWarpper .Warpper .proList li a .info p {
  font-size: 1vw;
}
.content .NewsWarpper .News {
  width: 90vw;
  margin: 0 auto;
  position: relative;
}
.content .NewsWarpper .News .Newstitle {
  position: absolute;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}
.content .NewsWarpper .News .NewBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content .NewsWarpper .News .NewBox .hd {
  flex: 0 44vw;
}
.content .NewsWarpper .News .NewBox .hd ul li {
  border-bottom: 1px solid #4d515b;
  position: relative;
}
.content .NewsWarpper .News .NewBox .hd ul li:hover::after {
  color: red;
  transition: all 0.7s;
}
.content .NewsWarpper .News .NewBox .hd ul li:hover a {
  color: red;
  transition: all 0.7s;
}
.content .NewsWarpper .News .NewBox .hd ul li::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 20px;
  color: #fff;
  transition: all 0.7s;
}
.content .NewsWarpper .News .NewBox .hd ul li a {
  text-decoration: none;
  display: block;
  width: 37vw;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #fff;
  font-size: 1vw;
  line-height: 2;
  padding: 10px 0;
  transition: all 0.7s;
}
.content .NewsWarpper .News .NewBox .bd {
  flex: 0 42vw;
}
.content .NewsWarpper .News .NewBox .bd .imgWarpper {
  width: 41.5vw;
  height: 22vw;
}
.content .NewsWarpper .News .NewBox .bd .imgWarpper img {
  width: 100%;
  height: 100%;
}
.content .NewsWarpper .News .more a {
  display: block;
  position: relative;
  bottom: 3vw;
  font-size: 1vw;
  color: #fff;
  transition: all 0.7s;
  text-decoration: none;
}
.content .NewsWarpper .News .more a:hover {
  color: red;
  transition: all 0.7s;
}
.content .appWarpper {
  background-color: #192134;
  padding-bottom: 3vw;
  width: 100%;
}
.content .appWarpper .Warpper {
  width: 97vw;
  margin-left: 1vw;
}
.content .appWarpper .Warpper .app_title {
  padding-top: 4vw;
  width: 100%;
  text-align: center;
}
.content .appWarpper .Warpper .app_title h3 {
  font-size: 2.6vw;
  color: #fff;
}
.content .appWarpper .Warpper .imgList {
  margin-top: 3vw;
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.content .appWarpper .Warpper .imgList .Warp {
  overflow: hidden;
}
.content .appWarpper .Warpper .imgList .Warp img {
  transition: all 0.8s;
}
.content .appWarpper .Warpper .imgList .Warp:hover img {
  transform: scale(1.1);
  transition: all 0.8s;
}
.content .appWarpper .Warpper .imgList .list1 {
  flex: 0 18.5vw;
  display: flex;
  padding-top: 15vw;
}
.content .appWarpper .Warpper .imgList .list1 .listimg {
  position: relative;
  width: 18.5vw;
  height: 28.5vw;
}
.content .appWarpper .Warpper .imgList .list1 .listimg img {
  width: 100%;
  height: 100%;
}
.content .appWarpper .Warpper .imgList .list2 {
  flex: 0 18.5vw;
  display: flex;
  flex-direction: column;
  padding-top: 8vw;
}
.content .appWarpper .Warpper .imgList .list2 .listimg1 {
  margin-bottom: 1vw;
  width: 18.5vw;
  height: 28.5vw;
}
.content .appWarpper .Warpper .imgList .list2 .listimg1 img {
  width: 100%;
  height: 100%;
}
.content .appWarpper .Warpper .imgList .list2 .listimg2 {
  width: 18.5vw;
  height: 12vw;
}
.content .appWarpper .Warpper .imgList .list2 .listimg2 img {
  width: 100%;
  height: 100%;
}
.content .appWarpper .Warpper .imgList .list3 {
  flex: 0 18.5vw;
  display: flex;
  flex-direction: column;
}
.content .appWarpper .Warpper .imgList .list3 .listimg3 {
  margin-bottom: 1vw;
  width: 18.5vw;
  height: 28.5vw;
}
.content .appWarpper .Warpper .imgList .list3 .listimg3 img {
  width: 100%;
  height: 100%;
}
.content .appWarpper .Warpper .imgList .list3 .listimg4 {
  width: 18.5vw;
  height: 24.5vw;
}
.content .appWarpper .Warpper .imgList .list3 .listimg4 img {
  width: 100%;
  height: 100%;
}
.content .appWarpper .Warpper .imgList .list4 {
  flex: 0 18.5vw;
  display: flex;
  flex-direction: column;
  padding-top: 8vw;
}
.content .appWarpper .Warpper .imgList .list4 .listimg5 {
  margin-bottom: 1vw;
  width: 18.5vw;
  height: 14vw;
}
.content .appWarpper .Warpper .imgList .list4 .listimg5 img {
  width: 100%;
  height: 100%;
}
.content .appWarpper .Warpper .imgList .list4 .listimg6 {
  width: 18.5vw;
  height: 28.5vw;
}
.content .appWarpper .Warpper .imgList .list4 .listimg6 img {
  width: 100%;
  height: 100%;
}
.content .appWarpper .Warpper .imgList .list5 {
  flex: 0 18.5vw;
  display: flex;
  padding-top: 15vw;
}
.content .appWarpper .Warpper .imgList .list5 .listimg7 {
  position: relative;
  width: 18.5vw;
  height: 23.5vw;
}
.content .appWarpper .Warpper .imgList .list5 .listimg7 img {
  width: 100%;
  height: 100%;
}
.footerWarpper .Warpper {
  padding-top: 3vw;
  width: 70vw;
  margin: 0 auto;
}
.footerWarpper .Warpper .footernav {
  border-bottom: 1px solid #b2b2b2;
  display: flex;
  /*align-items: center;*/
  justify-content: space-around;
  padding-bottom: 1vw;
}
.footerWarpper .Warpper .footernav .footerList {
  flex: 0 10vw;
}
.footerWarpper .Warpper .footernav .footerList h3 {
  font-size: 0.95vw;
  color: #fff;
  font-weight: normal;
}
.footerWarpper .Warpper .footernav .footerList ul {
  padding-top: 0.5vw;
}
.footerWarpper .Warpper .footernav .footerList ul li a {
  text-decoration: none;
  color: #999;
  font-size: 0.8vw;
  line-height: 1.5vw;
}
.footerWarpper .Warpper .footernav .footerList ul li:hover a {
  color: red;
}
.footerWarpper .Warpper .footernav .footerInfo {
  flex: 0 22vw;
}
.footerWarpper .Warpper .footernav .footerInfo h3 {
  color: #fff;
  font-size: 0.95vw;
  font-weight: normal;
}
.footerWarpper .Warpper .footernav .footerInfo .info {
  padding-top: 0.5vw;
}
.footerWarpper .Warpper .footernav .footerInfo .info div {
  margin-bottom: 0.4vw;
  font-size: 0.75vw;
  color: #999;
}
.footerWarpper .Warpper .footernav .footerSearch {
  flex: 0 14vw;
}
.footerWarpper .Warpper .footernav .footerSearch input {
  border: none;
  width: 12vw;
  border-radius: 10px;
  height: 1.8vw;
  padding-left: 0.5vw;
  font-size: 0.8vw;
}
.footerWarpper .Warpper .footernav .footerSearch .logos {
  display: flex;
  margin-top: 1vw;
  justify-content: flex-start;
}
.footerWarpper .Warpper .footernav .footerSearch .logos li {
  margin-right: 0.5vw;
  width: 40px;
  height: 40px;
  background-color: #535353;
  border-radius: 0.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerWarpper .Warpper .footernav .footerSearch .logos li:hover {
  background-color: #fff;
}
.footerWarpper .Warpper .footernav .footerSearch .logos li a {
  display: block;
  text-decoration: none;
}
.footerWarpper .Warpper .footernav .footerSearch .logos li a .iconfont {
  font-size: 24px;
  color: #161920;
}
.footerWarpper .Warpper .company a {
  line-height: 2;
  font-size: 14px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #999;
}
.sj-footer {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: #161920;
  padding: 1vw 0;
  box-sizing: border-box;
  z-index: 999;
}
.sj-footer ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sj-footer ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}
.sj-footer ul li a .iconfont {
  font-size: 25px;
}
.sj-footer ul #f-logo .imgWarp {
  width: 15vw;
}
.sj-footer ul #f-logo .imgWarp img {
  width: 100%;
}

@media screen and (max-width: 1400px){
    .headerWarpper{
    width: 100%;
    }
    .headerWarpper .Warpper .navList ul li .sub .slideTxtBox{
        width: 90vw;
    }
    .content .NewsWarpper .News .NewBox .hd{
        margin-top: 40px;
    }
    .NewsWarpper{
        padding: 40px 0;
    }
    .content .NewsWarpper .News .more a{
        bottom: -10px;
        font-size: 16px;
    }
    .content .NewsWarpper .News .NewBox .hd ul li a{
        font-size: 16px;
    }
    .headerWarpper .Warpper .searWarpper{
        flex: 0 150px;
    }
    .content .productWarpper .Warpper .proList li a .info h3{
        font-size: 24px
        
    }
    .content .productWarpper .Warpper .proList li a .info p{
        font-size: 16px;
    }
    .footerWarpper .Warpper{
        width: 90vw;
    }
    .footerWarpper .Warpper .footernav .footerList ul li a{
        font-size: 14px;
    }
    .footerWarpper .Warpper .footernav .footerInfo h3{
        font-size: 16px;
    }
    .footerWarpper .Warpper .footernav .footerInfo .info div{
        font-size: 14px;
    }
    .footerWarpper .Warpper .footernav .footerList h3{
        font-size: 16px;
    }
    .footerWarpper .Warpper .footernav .footerList ul li{
        padding: 3px 0;
    }
    .headerWarpper .Warpper .navList ul li a{
        font-size: 16px;
    }
    .headerWarpper .Warpper .searWarpper .search form{
        width: 100%;
        display: flex;
        align-items: center;
    }
    
}
@media screen and (max-width: 1200px){
    .headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul li a{
        font-size: 16px;
        
    }
    .headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd .right_pro .pro_list .list a .name{
        font-size: 14px;
    }
}
@media screen and (max-width: 950px) {
  .headerWarpper .Warpper {
    width: 90vw;
  }
  .headerWarpper .Warpper .navList {
    flex: 0 60vw;
  }
  .headerWarpper .Warpper .navList ul li .sub .slideTxtBox {
    width: 100vw;
  }
  .headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd {
    flex: 0 30vw;
  }
  .headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul li {
    width: 80%;
  }
  .headerWarpper .Warpper .navList ul li .sub .slideTxtBox .hd ul .on {
    width: 80%;
  }
  .headerWarpper .Warpper .navList ul li .sub .slideTxtBox .bd {
    flex: 0 60vw;
  }
  .headerWarpper .Warpper .searWarpper .search .icon-sousuo {
    margin-right: 2vw;
  }
  .footerWarpper .Warpper {
    width: 95vw;
  }
  .footerWarpper .Warpper .footernav {
    align-items: flex-start;
  }
  .footerWarpper .Warpper .footernav .footerList {
    flex: 0 10vw;
  }
  .footerWarpper .Warpper .footernav .footerList2 {
    flex: 0 20vw;
  }
  .footerWarpper .Warpper .footernav .footerInfo {
    flex: 0 50vw;
  }
  .footerWarpper .Warpper .footernav .footerSearch {
    display: none;
  }
}
@media screen and (max-width: 640px) {
    .content .appWarpper .Warpper .app_title h3{
        font-size: 20px;
    }
  .headerWarpper {
    display: none;
  }
  .bannerWarpper{
      padding-top: 18vw;
  }
  .sj-header {
    display: block;
  }
  .content {
    margin-bottom: 17vw;
    width: 100%;
  }
  .content .NewsWarpper {
    padding-bottom: 2vw;
  }
  .content .NewsWarpper .News {
    width: 98vw;
  }
  .content .NewsWarpper .News .Newstitle {
    position: static;
    
  }
  .content .NewsWarpper .News .NewBox {
    flex-direction: column;
  }
  .content .NewsWarpper .News .NewBox .hd {
    width: 98vw;
    flex: auto;
  }
  .content .NewsWarpper .News .NewBox .hd ul {
    width: 100%;
  }
  .content .NewsWarpper .News .NewBox .hd ul li a {
    width: 90vw;
  }
  .content .NewsWarpper .News .NewBox .bd {
    margin-top: 2vw;
  }
  .content .NewsWarpper .News .NewBox .bd .imgWarpper {
    width: 100%;
    height: auto;
  }
  .content .NewsWarpper .News .more {
    margin-top: 2vw;
  }
  .content .NewsWarpper .News .more a {
    position: static;
  }
  .footerWarpper {
    display: none;
  }
  .sj-footer {
    display: block;
  }
  .content .productWarpper .Warpper .proList{
      flex-direction: column;
  }
  .content .productWarpper .Warpper .proList li{
      flex: 0 auto;
  }
  .content .productWarpper .Warpper .proList li a .imgWarpper{
      width: auto;
      height: auto;
  }
  .bannerWarpper .mask{
      padding-top: 18vw;
  }
  
}
