@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    font-size: 14px;
    font-family: "Microsoft YaHei","Arial","黑体","宋体",sans-serif;
    line-height: 1;
    background-color: #fff;
}
button{
    border: none;
    outline: none;
}
button[type=submit]{
    border: none;
    outline: none;
}
input{
    padding: 0;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}
a{
    color: #000;
    text-decoration: none;
}
img{
    vertical-align: middle;
    border-style: none;
}
/* 公共样式 */
.clearLeft{
    float: left;
}
.clearRight{
    float: right;
}
.clear:after{
    content: "";
    clear: both;
    display: block;
    zoom: 1;
    visibility:hidden;
    height:0
}
.width1280{
    width: 1197px;
    margin-left: auto;
    margin-right: auto;
}
.width1197{
    width: 1197px;
    margin-left: auto;
    margin-right: auto;
}
/* flex布局 */
/* 单行溢出-->需要设置width */
.one-txt-cut {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/* 多行溢出 手机端使用---webkit-line-clamp单独添加 */
.txt-cut {
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    /*-webkit-line-clamp: 2;*/
}
/* flex--column布局 */
.flex-direction-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
}
.flex-direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.flex-wrap {
    -webkit-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
}
.column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.flex-center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
    /* 水平居中 */
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -webkit--moz-box-pack: center;
    box-pack: center;
}
.flex-between {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
    /* 水平居中 */
    -webkit-justify-content: space-between;
    justify-content: space-between;
    /*-moz-box-pack: space-between;*/
    -webkit--moz-box-pack: space-between;
    box-pack: space-between;
}
.flex-around {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
    /* 水平居中 */
    -webkit-justify-content: space-around;
    justify-content: space-around;
    /*-moz-box-pack: space-around;*/
    -webkit--moz-box-pack: space-around;
    box-pack: space-around;
}
.flex-items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
    /* 垂直居中 */
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}
.flex-center-Acenter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
    /* 水平居中 */
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -webkit--moz-box-pack: center;
    box-pack: center;
    /* 水平居中 */
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}
.flex-between-Acenter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
    /* 水平居中 */
    -webkit-justify-content: space-between;
    justify-content: space-between;
    /*-moz-box-pack: space-between;*/
    -webkit--moz-box-pack: space-between;
    box-pack: space-between;
    /* 水平居中 */
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}
.flex-around-Acenter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
    /* 水平居中 */
    -webkit-justify-content: space-around;
    justify-content: space-around;
    /*-moz-box-pack: space-around;*/
    -webkit--moz-box-pack: space-around;
    box-pack: space-around;
    /* 水平居中 */
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}
.column-center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
    /* 水平居中 */
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -webkit--moz-box-pack: center;
    box-pack: center;
}
.column-between {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
    /* 水平居中 */
    -webkit-justify-content: space-between;
    justify-content: space-between;
    /*-moz-box-pack: space-between;*/
    -webkit--moz-box-pack: space-between;
    box-pack: space-between;
}
.column-around {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
    /* 水平居中 */
    -webkit-justify-content: space-around;
    justify-content: space-around;
    /*-moz-box-pack: space-around;*/
    -webkit--moz-box-pack: space-around;
    box-pack: space-around;
}
.column-items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
    /* 水平居中 */
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}
.column-center-Acenter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
    /* 水平居中 */
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -webkit--moz-box-pack: center;
    box-pack: center;
    /* 水平居中 */
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}
.column-between-Acenter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
    /* 水平居中 */
    -webkit-justify-content: space-between;
    justify-content: space-between;
    /*-moz-box-pack: space-between;*/
    -webkit--moz-box-pack: space-between;
    box-pack: space-between;
    /* 水平居中 */
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}
.column-around-Acenter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
    /* 水平居中 */
    -webkit-justify-content: space-around;
    justify-content: space-around;
    /*-moz-box-pack: space-around;*/
    -webkit--moz-box-pack: space-around;
    box-pack: space-around;
    /* 水平居中 */
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}


/* 背景色渐变 */
.gradient{
    background: -moz-linear-gradient(right, #00eff1, #1966ff);
    background: -webkit-gradient(linear, left left, left right, color-stop(#00eff1), color-stop(#1966ff));
    background: -webkit-linear-gradient(right, #00eff1,#1966ff);
    background: -o-linear-gradient(right, #00eff1,#1966ff);
    background: -ms-linear-gradient(right, #00eff1,#1966ff);
    background: linear-gradient(to right, #00eff1,#1966ff);
}
:root .gradient{
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#00eff1', endColorstr='#1966ff');
}
/* 头部 */
.header{
    min-width: 1197px;
    height: 30px;
    background: #f5f5f5;
}
.header .header-container{
}
.header .no-login{
    display: block;
}
.header .yes-login{
    display: block;
}
.header-container .header-left{
    height: 100%;
    line-height: 30px;
}
.header-container .header-right{}
.header-left .header-left-text{
    font-size: 12px;
    color: #666;
}
.header-right .header-r-list{
    min-width: 80px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    margin-right: 9px;
}
.header-right .header-r-list-name{
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    height: 100%;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.header-right .header-r-list:last-child{
    margin-right: 0;
}
.header-r-list .header-a{
    color: #666;
}
.header-r-list .header-r-line{
    position: relative;
    top: -.06em;
    display: inline-block;
    width: 1px;
    height: 1.1em;
    margin: 0 4px;
    vertical-align: middle;
    background: #666;
}
.header-r-list .header-r-img{
    width: 24px;
    height: 24px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    overflow: hidden;
    position: relative;
    top: 3px;
}
.header-r-list .header-r-name{
    height: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.header-r-list .header-r-con{
    height: 100%;
}
.header-r-con-zhang{
    position: absolute;
    top: 25px;
    width: 100%;
    height: 15px;
    transition: all 0.3s;
}
.header-r-img img{
    font-size: 0;
    width: 100%;
    height: 100%;
    vertical-align: top;
}
.header-r-name .header-r-n-text{
    font-size: 12px;
    font-weight: 400;
    color: #298df2;
    line-height: 28px;
    margin: 0 12px;
    max-width: 150px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
    /* 头部下拉重写 */
.header-r-list.layui-nav{
    position: relative;
    padding: 0 0;
    background: none;
    color: inherit;
    border-radius: 0;
    font-size: 0;
    box-sizing: border-box;
}
.header-r-list.layui-nav>span{
    display: none;
}
.header-r-list.layui-nav .layui-nav-child{
    top: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    border: none;
}
.header-r-list.layui-nav .layui-nav-child a{
    color: rgba(0,0,0,.65);
    font-size: 14px;
}
.header-r-list.layui-nav .layui-nav-child a:hover{
    background-color: #e6f2ff;
}
/* 搜索 */
.search-container{
    min-width: 1197px;
}
.search-container .search-list{}
.search-list .search-list-left{}
.search-list .search-list-right{
    margin-left: 60px;
}
.search-list-left .search-list-l-a{
    display: block;
    height: 80px;
    font-size: 36px;
    font-weight: 700;
    color: #111;
    line-height: 80px;
}
.search-list-l-a .search-list-l-a-img{
    height: 60px;
    width: auto;
}
.search-list-right .search-list-right-input{

}
.search-list-right-input .search-list-right-i-pro{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 540px;
    height: 44px;
    background: #fff;
    border: 1px solid #298cf2;
    text-indent: 1em;
    font-size: 14px;
    border-radius: 0;
    text-overflow: ellipsis;
    padding: 6px 11px;
    margin: 0;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: "tnum";
    position: relative;
    transition: all .3s;
    line-height: 1.5;
    box-sizing: border-box;
}
.search-list-right-input .search-list-right-i-pro:not([type=range]){
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
.search-list-right-input .search-list-right-button{
    /*border-top-left-radius: 0;*/
    /*border-bottom-left-radius: 0;*/
    width: 100px!important;
    height: 44px;
    background: #1259f8;
    font-size: 16px;
    -webkit-appearance: button;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 0 rgba(0,0,0,.045);
    /*border-radius: 4px;*/
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 0 15px;
    outline: 0;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    touch-action: manipulation;
    border: 1px solid #1259f8;
    text-transform: none;
    overflow: visible;

}

/* 导航栏 */
.nav-list{
    min-width: 1197px;
    line-height: 85px;
    height: 85px;
    background-color:#ffffff;
}
.nav-list .nav-l-container{}
.nav-l-container .nav-logo{
    height: 85px;
    width: 25%;
}
.nav-l-container .nav-l-pro{
    height: 85px;
    width: 105px;
    text-align: center;
    margin-right: 23px;
    font-size: 18px;
    color: #333;
    line-height: 88px;
}
.nav-l-container .nav-l-pro:last-child{
    margin-right: 0;
}
.nav-l-container .nav-l-pro-active{
    background: #f80012;
    color: #fff;
}
.nav-l-pro .nav-l-pro-a{
    display: block;
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    transition: color .3s;
}
.nav-l-pro-a .nav-l-pro-a-span{
    color: inherit;
}

/* 轮播图 */
.swiper-list-pro{
    min-width: 1197px;
}
.swiper-list-pro .swiper-img{
    width: 100%;
    font-size: 0;
    position: relative;
}
.swiper-list-pro .swiper-img .swiper-img-pro{
    width: 100%;
    height: auto;
}
.swiper-list-pro .swiper-img img[src='']{
    display: none;
}
.swiper-list-pro .swiper-img .swiper-img-rule{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 180px;
    height: auto;
    cursor: pointer;
}
.swiper-list-pro .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.8;
}
.swiper-list-pro .swiper-pagination-bullet-active{
    background: #1259f8;
}

/* 回到顶部 */
.back-container{
    box-shadow: 0 2px 3px 0 hsla(0,0%,51.4%,.24);
    position: fixed;
    bottom: 110px;
    right: 125px;
    z-index: 100;
    font-size: 0;
}
.back-page{
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    display: block;
    text-align: center;
    background: #fff;
    border: 1px solid #d8d8d8;
    color: #1259f8;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: color .3s;
    line-height: 1.5;
}
.back-page2{
    border: solid 1px #1259f8;
    background: #1259f8;
}
.back-page#back-top{
    display: none;
    width: 60px;
    height: 60px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 3px 0 hsla(0,0%,51.4%,.24);
    /*border: 1px solid #d8d8d8;*/
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    font-feature-settings: "tnum";
    position: fixed;
    right: 125px;
    bottom: 50px;
    cursor: pointer;
    z-index: 100;
}
.back-page .back-page-img{
    width: 20px;
    height: auto;
    margin-top: 8px;
    text-align: center;
}
.back-page .back-page-span{
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-top: 3px;
    text-align: center;
}
.back-page2 .back-page-span{
    color: #fff;
}



/* 数据列表 */
.data-list{
    min-width: 1197px;
}
.data-list .data-title-list{}
.data-title-list .swiper-select-list{
    width: 100%;
}
.data-title-list .swiper-button-prev{
    background-image: url('../images/left.png');
    position: absolute;
    left: -8px;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -30px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 40px 40px;
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
    background-position: center;
    background-repeat: no-repeat;
}
.data-title-list .swiper-button-next{
    background-image: url('../images/right.png');
    position: absolute;
    right: -8px;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -30px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 40px 40px;
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-select-list .swiper-select-list-a{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 118px;
    text-align: center;
    margin-left: 15px;
    margin-bottom: 20px;
    height: 47px;
    background: #fff;
    border: 1px solid #d8d8d8;
    box-shadow: 0 2px 3px 0 hsla(0,0%,51.4%,.24);
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 47px;
    border-radius: 0;
    padding: 0;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
}
.swiper-select-list .swiper-select-list-a-active{
    background: #1259f8;
    box-shadow: 0 4px 6px 0 rgba(18,89,248,.3);
    color: #fff;
    border: none;
}
.swiper-select-list .swiper-select-list-a:first-child{
    margin-left: 7px;
}
.data-list .swiper-button-next.swiper-button-disabled, .data-list .swiper-button-prev.swiper-button-disabled{
    display: none;
}

/* 筛选 */
.data-screen-container{
    min-width: 1197px;
    margin-top: 30px;
    margin-bottom: 14px;
}
.data-screen{

}
.data-screen .data-screen-left{

}
.data-screen .data-screen-center{
    margin-left: 35px;
}
.data-screen .data-screen-right{
    margin-left: 35px;
}
.data-screen-left span{
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}
.data-screen-left .data-screen-span1{
    margin-left: 8px;
}
.data-screen-left input{
    width: 120px;
    height: 36px;
    border: 1px solid #d8d8d8;
    padding: 0;
    margin-left: 7px;
    border-radius: 0;
    /*text-indent: 1em;*/
}
.data-screen-left input:not([type=range]){
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
.data-screen-left input[type=text]{
    -webkit-appearance: none;
    box-sizing: border-box;
    margin: 0;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: "tnum";
    position: relative;
    display: inline-block;
    /*width: 120px;*/
    height: 32px;
    padding: 4px 11px;
    color: rgba(0,0,0,.65);
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: all .3s;
    overflow: visible;
}
.data-screen-left input:focus[type=text]{
    -webkit-box-shadow: 0 0 10px rgba(18,89,248, 0.6);
    -moz-box-shadow: 0 0 10px rgba(18,89,248, 0.6);
    box-shadow: 0 0 10px rgba(18,89,248, 0.6);
}
.data-screen-center .data-screen-button{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 12px;
    width: 120px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #d8d8d8;
    font-size: 18px;
    color: #333;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
}
.data-screen-center .data-screen-active{
    background: #1259f8;
    box-shadow: 0 4px 6px 0 rgba(18,89,248,.3);
    color: #fff;
}
.data-screen-right .data-screen-form{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 12px;
    width: 120px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #d8d8d8;
    font-size: 18px;
    color: #333;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
}


/* 排序 */
.sort-list-container{
    min-width: 1197px;
}
.sort-list{
    height: 50px;
    line-height: 50px;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    font-size: 18px;
    color: #333;
}
.sort-list .sort-list-title{
    margin-left: 8px;
    margin-right: 17px;
}
.sort-list .sort-list-kiss{

}
.sort-list-kiss .sort-list-pro{
    cursor: pointer;
    margin-right: 32px;
    font-size: 18px;
    color: #333;
}
.sort-list-kiss .sort-list-pro-active{
    color: #e34610;
}
.sort-list-pro span{
    color: inherit;
}
.sort-list-pro img{
    display: none;
}
.sort-list-pro-active img{
    display: inline-block;
}

/* 商品数据 */
.goods-data-container{
    min-width: 1197px;
    padding-bottom: 30px;
}
.goods-data-list{
    position: relative;
    min-height: 525px;
}
.goods-data-list .goods-data-message-container{
    display: none;
}
.goods-data-list .goods-data-message{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0;
    color: rgba(0,0,0,.25);
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}
.goods-data-list .goods-data-loading{
    display: none;
}
.goods-data-message .goods-data-message-svg{
    height: 40px;
    margin-bottom: 8px;
}
.goods-data-message .goods-data-message-p{

}

.goods-data-num{
    width: 100%;
}
.goods-data-num .goods-data-num-a{
    display: block;
    width: 280px;
    height: 530px;
    background: #fff;
    /*padding-bottom: 15px;*/
    overflow: hidden;
    border: 1px solid #eee;
    margin-top: 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.5;
    color: rgba(0,0,0,.65);
    margin-right: 25px;
}
.goods-data-num .goods-data-num-a:nth-child(4n){
    margin-right: 0;
}
.goods-data-num-a .goods-data-num-a-img{
    position: relative;
    width: 100%;
    height: 278px;
    overflow: hidden;
    display: block;
}
.goods-data-num-a-img .goods-data-num-a-i-c{
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all .8s
}
.goods-data-num-a-img .goods-data-num-a-i-c:hover{
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.goods-data-num-a-img .goods-data-num-a-i-li{
    position: absolute;
    width: 50px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    background: #1259f8;
    font-size: 12px;
    font-family: Source Han Sans SC;
    font-weight: 700;
    color: #fff;
    top: 0;
    left: 0;
}
.goods-data-num-a-img .goods-data-num-a-i-time{
    position: absolute;
    bottom: 0;
    width: 220px;
    height: 34px;
    background: #000;
    opacity: .5;
    border-radius: 0 30px 0 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 34px;
    box-sizing: border-box;
}
.goods-data-num-a-img .goods-data-num-a-i-list{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: rgba(0,0,0,.6);
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 289px;
}
.goods-data-num-a-i-list .goods-data-num-a-i-l-img{
    width: 130px;
    height: auto;
}
.goods-data-num-a-container{
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.5;
}
.goods-data-num-a-container .goods-data-num-a-container-title{
    height: 50px;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    margin: 10px 13px 5px;
    -webkit-line-clamp: 2;
    display: block;
}
.goods-data-num-a-container .goods-data-num-a-container-coupon{
    /*width: 100%;*/
    margin: 0 13px;
}
.goods-data-num-a-container-coupon .goods-data-num-a-c-c-left{
    max-width: 156px;
    overflow: hidden;
    font-size: 16px;
    color: #333;
}
.goods-data-num-a-container-coupon .goods-data-num-a-c-c-right{
    width: 75px;
    height: 24px;
    background: #e34610;
    display: block;
}
.goods-data-num-a-c-c-left .goods-data-num-a-c-c-l-money{
    font-size: 20px;
    color: #e34610;
    font-weight: 700;
}
.goods-data-num-a-c-c-right .goods-data-num-a-c-c-r-text{
    width: 25px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}
.goods-data-num-a-c-c-right .goods-data-num-a-c-c-r-mo{
    width: 49px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: #fff;
    font-size: 14px;
    color: #333;
    position: relative;
    top: 1px;
}
.goods-data-num-a-c-number{
    margin: 0 13px;
}
.goods-data-num-a-c-number .goods-data-num-a-c-left{
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.goods-data-num-a-c-number .goods-data-num-a-c-right{
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.goods-data-num-a-c-left .goods-data-num-a-c-l-m, .goods-data-num-a-c-right .goods-data-num-a-c-l-m{
    font-weight: 500;
    font-size: 20px;
    color: #e34610;
}
.goods-data-num-a-c-left .goods-data-num-a-c-span, .goods-data-num-a-c-right .goods-data-num-a-c-span{
    text-decoration: line-through;
}
.goods-data-num-a-container-bu{
    display: block;
    width: 90px;
    height: 30px;
    background: #1259f8;
    box-shadow: 0 4px 6px 0 rgba(18,89,248,.3);
    float: right;
    color: #fff;
    padding: 0;
    text-align: center;
    line-height: 28px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    margin-right: 11px;
    margin-top: 10px;
    /*-webkit-appearance: button;*/
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    overflow: visible;
}
.goods-data-num-a-container-bu:hover{
    color: #fff;
}
.goods-data-num-a-container-bu-focus{
    cursor: not-allowed;
}
.goods-data-l-page .goods-data-l-page-div{
    padding-top: 80px;
    margin-right: 40px;
}
.goods-data-text{
    clear: both;
    margin: 0 auto;
    padding: 20px 0;
    width: 255px;
    font-size: 14px;
    color: #333;
    line-height: 20px;
}
.goods-data-text .goods-data-text-span{
    color: inherit;
}
.goods-data-ani{
    width: 278px;
    transition: all .2s ease-in-out;
}
.goods-data-ani:hover{
    height: auto;
    z-index: 9999;
    position: absolute;
    background: #fff;
    /*border: 1px solid #eee;*/
    box-shadow: 0 5px 20px 0 hsla(0,0%,51.4%,.4);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

/* 加载动画 */
@keyframes antSpinMove {
    to {
        opacity: 1;
    }
}
@keyframes antRotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.con-load{
    width: 100%;
    /*height: 515px;*/
    position: absolute;
    /*top: 50px;*/
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    /*display: none;*/
}
.con-load .con-load-back{
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.con-load .con-load-icon{
    position: absolute;
    left: 50%;
    top: 140px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    animation: antRotate 1.2s infinite linear;

}
.con-load .con-load-icon i{
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: #1890ff;
    transform: scale(0.75);
    display: block;
    position: absolute;
    opacity: 0.3;
    animation: antSpinMove 1s infinite linear alternate;
    transform-origin: 50% 50%;
}
.con-load .con-load-icon i:nth-child(1){
    left: 0;
    top: 0;
}
.con-load .con-load-icon i:nth-child(2){
    right: 0;
    top: 0;
    animation-delay: 0.4s;
}
.con-load .con-load-icon i:nth-child(3){
    right: 0;
    bottom: 0;
    animation-delay: 0.8s;
}
.con-load .con-load-icon i:nth-child(4){
    left: 0;
    bottom: 0;
    animation-delay: 1.2s;
}

/* 尾部 */
.footer{
    min-width: 1100px;
    height: auto;

    border-top: 1px solid #ddd;
    padding-top: 0;
    background-image: linear-gradient(
            #121212,
            #121212),
    linear-gradient(
            #eeeeee,
            #eeeeee);
    background-blend-mode: normal,
    normal;
}
.footer .footer-top{
    min-width: 1100px;
}
.footer .footer-bottom{
    min-width: 1100px;
    background-color: #ffffff;
}
.footer-top .footer-top-container{
    width: 1197px;
    margin: 0 auto;
}
.footer-top-container .footer-top-left{
    width: 75%;
    margin-top: 3%;
}
.footer-top-container .footer-top-right{
    width: 25%;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}
.footer-top-left .footer-top-l-list{
    /*margin-top: 40px;*/
    width: 100px;
    font-size: 14px;
    color: #777;
    box-sizing: border-box;
    line-height: 1.5;
}
.footer-top-l-list .footer-top-l-title{
    width: 100px;
    font-family: SourceHanSansCN-Bold;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    color: #ffffff;

}

.footer-top-l-list .footer-top-l-a{
    display: block;
    color: #ffffff;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
    font-size: 15px;
    font-weight: normal;
}
.footer-top-l-list .footer-top-l-a:hover{
    color: #575cd8;
}
.footer-top-l-list .footer-top-l-a2{
    display: block;
    color: #777;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
    cursor: inherit;
}
.footer-bottom .footer-center{
    width: 1100px;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
    height: 77px;
    line-height: 24px;
}

.qrcode{
    width: 50%;
    font-size: 15px;
    text-align: left;

}
.qrcode p {
    color: #ffffff;
    text-align: left;
    padding-left: 8%;
}
.footer-top-right img{
    width: 100px;
    margin-bottom:15px;

}
.footer-top-right .phone{
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 55px;
    letter-spacing: 2px;
    color: #f80012;
}
.footer-top-right .phonetip{
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 15px;
    letter-spacing: 1px;
    color: #ffffff;
}
.footer-top-bottom {
    width: 100%;
    margin: 2%;
    float: right;
}
.footer-top-bottom span{
    color: #ffffff;
    font-size: 15px;
    padding: 4px;
}
.footer-top-bottom span a{
    color: #ffffff;
    font-size: 15px;
    padding: 4px;
}
.footer-top-bottom span a:hover{
    color: #575cd8;
}
.footer-bottom a{
    color: #9e9e9e;
    margin-left: 14px;
    margin-right: 20px;
}
.footer-bottom a p{
    display: inline;
}

/* 弹出窗 */
.eject{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
}
.eject .eject-back{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.2);
}
.eject .eject-con{
    max-width: 800px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    vertical-align: top;
}
.eject-con .eject-img{
    max-width: 750px;
    height: auto;
}
.eject-con svg{
    display: none;
    font-size: 30px;
    color: #fff;
    margin-left: 10px;
}
