@charset "utf-8";
/*@import './mixin.less';*/

/* reset */
html { height: 100%; }
body { min-height: 100% ;color: #222222;font-family: 'Noto Sans SC';}
body { _height: 100% }
body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, iframe, pre, code, fieldset, legend, form, input, select, textarea, button, p, blockquote, th, td, figure { margin: 0; padding: 0 }
body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, iframe, pre, code, fieldset, legend, form, p, blockquote, figure, header, footer, nav, article, section, aside, address, figcaption {zoom:1}
li { list-style-type: none }
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: inherit; }
iframe, frame, fieldset, img { border: 0 none }
img { vertical-align: top }
input[type=button], input[type=submit], input[type=reset] { cursor: pointer }
input[type="reset"]::-moz-focus-inner,input[type="button"]::-moz-focus-inner,input[type="submit"]::-moz-focus-inner,input[type="file"] > input[type="button"]::-moz-focus-inner{border:none;padding:0;margin:0; }
button { cursor: pointer }
input, textarea, button { -webkit-border-radius: 0; -webkit-appearance: none }
input[type=radio] { -webkit-border-radius: 100%; -webkit-appearance: radio }
input[type=checkbox] { -webkit-appearance: checkbox }
input[type=search] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; -ms-box-sizing: content-box; -o-box-sizing: content-box; box-sizing: content-box }
textarea { overflow: auto; resize: none }
blockquote, q { quotes: none }
blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none }
table { border-collapse: collapse; border-spacing: 0 }
caption, th { text-align: left }
th { font-weight: normal }
em, cite, address,i { font-style: normal }
sup { vertical-align: text-top }
sub { vertical-align: text-bottom }
body { line-height: 1.5 }
a:link,
a:visited,
a:active,
a { text-decoration: none;}
a * { cursor:pointer }
:focus { outline: none } 
*{
  box-sizing: border-box;
}

img{
  -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    border:0;
    display: inline-block;
}


input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {color: #3a4645;opacity: .5}
input:-moz-placeholder, textarea:-moz-placeholder {color: #3a4645;opacity: .5}
input::-moz-placeholder, textarea::-moz-placeholder {color: #3a4645;opacity: .5}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {color: #3a4645;opacity: .5}
/*按钮*/
.common_btn{
    background: none;
    width: 130px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: #fff !important;
    cursor: pointer;
    background: #f00000;
    position: relative;
    overflow: hidden;
    border: none;
}
.common_btn::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 0;
    height: 0;
    transition: all 0.5s;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    opacity: 0;
}
.common_btn span{
    position: relative;
    z-index: 2;
}
.common_btn:hover::after{
    width: 140px;
    height: 140px;
    opacity: 1;
}
/*暂无数据*/
.tips{
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tit{
        line-height: 1.1 !important;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
}
.tit a{
  color: #222222;
  transition: all 0.5s;
}
.tit a:hover{
  color: #f00000;
}
.w1440{
  width: 1440px;
  margin: auto;
}
.more{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f00000;
    transition: all 0.5s;
}


.more img {
  will-change: transform;
}

@keyframes continuous-slide {
  0% { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0px); opacity: 1; }
}

.more:hover img {
  animation: continuous-slide 0.5s ease-in-out;
}

.sw_clk{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.sw_clk path{
    transition: all 0.5s;
}
.sw_clk.swiper-button-disabled{
  opacity: 0.4;
}
.sw_clk:not(.swiper-button-disabled){
  cursor: pointer;
}
.sw_clk:not(.swiper-button-disabled):hover path{
    fill: #f00000;
}




.clk_btn{
  display:flex;
}
.clk_btn div{
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  background: #fff;
  width: 60px;
  height: 60px;
}
.clk_btn svg path{
  transition: all 0.5s;
}
.clk_btn div.swiper-button-disabled{
        opacity: 0.4;
}
.clk_btn div:not(.swiper-button-disabled):hover{
  cursor: pointer;
  background: #f00000;
}
.clk_btn div:not(.swiper-button-disabled):hover svg path{
  fill:#fff
}
/*common_title*/
.common_title {
  line-height: 1.125;
  font-weight: bold;
}
.common_title .common_title_color {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.common_title .common_title_color span {
  width: 30px;
  height: 8px;
}
.common_title .common_title_color span:nth-child(1) {
  background: #000000;
}
.common_title .common_title_color span:nth-child(2) {
  background: #e50012;
}
.common_title .common_title_color span:nth-child(3) {
  background: #f4cc00;
}
/*banner*/
.relative{
  position: relative;
}
.banner{
  overflow: hidden;
  position: relative;
}
.banner img{
  width: 100%;
}
.banner .banner_txt{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.brand{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    padding: 30px 0;
    color: #fff;
    background-image: linear-gradient(transparent,rgba(0,0,0,0.4));
}
.brand .flx{
  display: flex;
  line-height: 1;
  align-items: center;
}
.brand svg{
  margin-right: 14px;
}
.brand span{
  margin: 0 14px;
}
.brand a{
  color: #fff;
  transition: all 0.5s;
}
.brand a:hover{
  color: #f00000;
}
.column{
  border-bottom: 1px solid #eeeeee;
}
.column .flx{
  display: flex;
  justify-content: space-between;
}
.column .flx div{
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
}
.column a{
  color: #222;
  transition: all 0.5s;
}
.column a:hover{
  color: #f00000;
}
.column .flx .act::after{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f00000;
}
.many{
  border-bottom: 1px solid #eeeeee;
}
.many .swiper-wrapper{
    justify-content: space-between;
}
.many .swiper-slide{
  width: auto;
  height: 70px;
  display: flex;
  align-items: center;
}
.many .swiper-slide a{
  color: #222;  
  transition: all 0.5s;
}
.many .swiper-slide a:hover{
    color: #f00000;
}
.many .act::after{
  content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f00000;
}

/*common_top*/
.common_top{
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.common_top .sort{
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #eeeeee;
}
.common_top .sort a{
  color: #222222;
            transition: all 0.5s;
}
.common_top .sort a:hover{
  color: #f00000;
}
.common_top .sort div{
  height: 58px;
            display: flex;
            align-items: center;
            position: relative;
            margin-right: 80px;
}
.common_top .sort div:last-child{
  margin-right: 0;
}
.common_top .sort .act::after{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #f00000;
}
/*common_search*/
.common_search{
  display: flex;
        justify-content: space-between;
        align-items: center;
        
}
.common_search .search{
  width: 280px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #eeeeee;
            padding:0 14px;
}
.common_search svg{
  cursor: pointer;
}
.common_search .search_input{
  border: none;
            background: none;
            width: calc(100% - 30px);
}
.point{
  display: flex;
}
.point span{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #888888;
}
.point .swiper-pagination-bullet-active{
    background: #f00000;
}

/*分页page*/
#page{
    margin-top: 60px;
}
#page div{
    display: flex;
    justify-content: center;
}
#page span{
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: #f00000;
    color: #fff;
    padding: 0;
    margin: 0 5px;
}
#page a{
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid #dddddd;
    color: #666666;
    padding: 0;
    margin: 0 5px;
}
@media screen and (max-width: 1600px){
  .w1440{width: 80%;}
  .clk_btn div{
    width: 50px;
    height: 50px;
  }
  .more{
    width: 50px;
    height: 50px;
  }
  .common_title .common_title_color {
    margin-top: 15px;
  }
  .common_top .sort div{
    height: 44px;
    margin-right: 44px;
  }
  #page {
    margin-top: 40px;
}
}
@media screen and (max-width: 1200px){
  .w1440{width: 90%;}
  /*.common_title {
    text-align: center;
  }
  .common_title .common_title_color {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }*/
  .many .swiper-slide{
      height: 60px;
  }
  .relative{
    margin-top: 60px;
  }
  .column .flx div{
    height: 60px;
  }
  #page {
    margin-top: 30px;
}
}
@media screen and (max-width: 768px){
    .brand{
        display: none;
    }
  .clk_btn div{
    width: 40px;
    height: 40px;
  }

  /*.banner .common_title{
    text-align: left;
  }
  .common_title{
    text-align: center;
  }
*/
  .common_title .common_title_color {
    margin-top: 10px;
    /*justify-content: center;*/
}
  .common_top{
    flex-direction: column;
    /*align-items: center;*/
  }
  .common_top .sort{
    margin-top: 12px;
    width: 100%;
  }
  .common_top .sort div {
      height: 34px;
      margin-right: 0px;
  }
  .common_search .search{
      width: 230px;
  }
  .more {
    width: 40px;
    height: 40px;
}
.more img{
  width: 20px;
}
.common_title .common_title_color span {
  width: 20px;
  height: 4px;
}
.honor .box {
  margin-top: 15px;
}
#page {
    margin-top: 25px;
}
#page span{
    width: 30px;
    height: 30px;
    margin: 0 4px;
}
#page a{
    width: 30px;
    height: 30px;
    margin: 0 4px;
}
}

@media screen and (max-width: 600px){
  .brand{
    padding: 20px 0;
  }
  .column .flx div{
    height: 50px;
  }
    .many .swiper-slide{
      height: 50px;
  }
  .banner img{
    width: auto;
    height: 300px;
  }
  .brand span {
    margin: 0 8px;
  }
  
}
