body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

body {
    background: #f3f3f3;
    color: #666;
    font-size: 14px;
    min-width: 1200px;
    font-family: 'Microsoft Yahei', '\5FAE\8F6F\96C5\9ED1', Arial, 'Hiragino Sans GB', '\5B8B\4F53';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

td,
th,
caption {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: normal;
}

a {
    color: #666;
    text-decoration: none;
    transition: background-color .2s linear, color .2s linear;
    -webkit-transition: background-color .2s linear, color .2s linear;
    -moz-transition: background-color .2s linear, color .2s linear;
    -o-transition: background-color .2s linear, color .2s linear;
}

li {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

a:hover {
    text-decoration: none;
}

img {
    border: none;
}

ol,
ul,
li {
    list-style: none;
}

input,
textarea,
select,
button {
    font: 14px Helvetica, Tahoma, Arial, STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", sans-serif;
}

table {
    border-collapse: collapse;
}

html {
    overflow-y: scroll;
}

/* flex 弹性布局
------------------------------- */
.l-flex {
    display: -webkit-box;
    /* Chrome 和 Safari */
    display: -moz-box;
    /* Firefox */
    display: box;
    /* 较老版本的 Flexbox */
    display: -ms-flexbox;
    /* IE10 */
    display: -webkit-flex;
    /* Safari 6.1+ */
    display: flex;
    /* 标准 */
    justify-content: space-between;
    align-items: center;
}

.l-wrap {
    flex-wrap: wrap;
}

.l-justify {
    justify-content: flex-start;
}

.l-align-start {
    align-items: flex-start;
}

.l-grow0 {
    flex-grow: 0;
    flex-shrink: 0;
}

.l-grow1 {
    flex-shrink: 2;
    flex-grow: 1;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix-block:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}

.cf {
    color: #fff;
}

.c3 {
    color: #333;
}

.c9 {
    color: #999;
}

.c6 {
    color: #666;
}

/* 模切之家高亮颜色 */
.reg {
    color: #e1251b !important;
}

.font-b {
    font-weight: bold;
}

.img-100 {
    width: 100%;
    height: 100%;
}



/*css3 动画过度时间*/
.all-2 {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.all-3 {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .2s ease-in-out;
}

.all-4 {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

/*动画*/
@-webkit-keyframes fadeInTop {
    0% {
        -webkit-transform: translate3d(0, 6px, 0);
        -ms-transform: translate3d(0, 6px, 0);
        transform: translate3d(0, 6px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInTop {
    0% {
        -webkit-transform: translate3d(0, 6px, 0);
        -ms-transform: translate3d(0, 6px, 0);
        transform: translate3d(0, 6px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}



/*自动隐藏文字*/

.lee-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lee-ellipsis-1 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.lee-ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lee-ellipsis-3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/*水平线*/

.lee-hr {
    width: 100%;
    position: relative;
    border-top: 1px solid #dddddd;
    height: 1px;
}


/*文字对齐*/

.lee-text-left {
    text-align: left !important;
}

.lee-text-center {
    text-align: center !important;
}

.lee-text-justify {
    text-align: justify !important;
}

.lee-text-right {
    text-align: right !important;
}


/*文字字体大小*/

.lee-font-size-12 {
    font-size: 12px !important;
}

.lee-font-size-14 {
    font-size: 14px !important;
}

.lee-font-size-16 {
    font-size: 16px !important;
}

.lee-font-size-18 {
    font-size: 18px !important;
}

.lee-font-size-20 {
    font-size: 20px !important;
}

.lee-font-size-22 {
    font-size: 22px !important;
}

.lee-font-size-24 {
    font-size: 24px !important;
}

.lee-font-size-26 {
    font-size: 26px !important;
}

.lee-font-size-28 {
    font-size: 28px !important;
}

.lee-font-size-30 {
    font-size: 30px !important;
}

.lee-font-size-32 {
    font-size: 32px !important;
}





/*主题字体颜色和背景颜色*/

.lee-color-zuti {
    color: #e1251b !important;
}

.lee-bg-zuti {
    background-color: #e1251b !important;
}

.bgfff {
    background-color: #fff;
}

.bgf2 {
    background-color: #f2f2f2;
}

/*  */
.float {
    display: block;
}

.float:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.fc {
    clear: both;
}

/*对齐,显示，隐藏等*/

.lee-pull-right {
    float: right !important;
}

.lee-pull-left {
    float: left !important;
}

.lee-pull-clear {
    clear: both !important;
}

.lee-hide {
    display: none !important;
}

.lee-show {
    display: block !important;
}

.lee-invisible {
    visibility: hidden;
}

.lee-inline {
    display: inline-block;
    vertical-align: top;
}


/*内外边距类*/

.lee-padded-0 {
    padding: 0px !important;
}

.lee-padded-10 {
    padding: 10px !important;
}

.lee-padded-14 {
    padding: 14px !important;
}

.lee-padded-20 {
    padding: 20px !important;
}

.lee-padded-30 {
    padding: 30px !important;
}

.lee-padded-t-0 {
    padding-top: 0px !important;
}

.lee-padded-t-10 {
    padding-top: 10px !important;
}

.lee-padded-t-14 {
    padding-top: 14px !important;
}

.lee-padded-t-20 {
    padding-top: 20px !important;
}

.lee-padded-r-0 {
    padding-right: 0px !important;
}

.lee-padded-r-10 {
    padding-right: 10px !important;
}

.lee-padded-r-14 {
    padding-right: 14px !important;
}

.lee-padded-r-20 {
    padding-right: 20px !important;
}

.lee-padded-b-0 {
    padding-bottom: 0px !important;
}

.lee-padded-b-10 {
    padding-bottom: 10px !important;
}

.lee-padded-b-14 {
    padding-bottom: 14px !important;
}

.lee-padded-b-20 {
    padding-bottom: 20px !important;
}

.lee-padded-l-0 {
    padding-left: 0px !important;
}

.lee-padded-l-10 {
    padding-left: 10px !important;
}

.lee-padded-l-14 {
    padding-left: 14px !important;
}

.lee-padded-l-20 {
    padding-left: 20px !important;
}

.lee-margin-0 {
    margin: 0px !important;
}

.lee-margin-10 {
    margin: 10px !important;
}

.lee-margin-14 {
    margin: 14px !important;
}

.lee-margin-20 {
    margin: 20px !important;
}

.lee-margin-t-0 {
    margin-top: 0px !important;
}

.lee-margin-t-10 {
    margin-top: 10px !important;
}

.lee-margin-t-14 {
    margin-top: 14px !important;
}

.lee-margin-t-20 {
    margin-top: 20px !important;
}

.lee-margin-r-0 {
    margin-right: 0px !important;
}

.lee-margin-r-10 {
    margin-right: 10px !important;
}

.lee-margin-r-14 {
    margin-right: 14px !important;
}

.lee-margin-r-20 {
    margin-right: 20px !important;
}

.lee-margin-b-0 {
    margin-bottom: 0px !important;
}

.lee-margin-b-10 {
    margin-bottom: 10px !important;
}

.lee-margin-b-14 {
    margin-bottom: 14px !important;
}

.lee-margin-b-20 {
    margin-bottom: 20px !important;
}

.lee-margin-b-24 {
    margin-bottom: 24px !important;
}

.lee-margin-b-28 {
    margin-bottom: 28px !important;
}

.lee-margin-l-0 {
    margin-left: 0px !important;
}

.lee-margin-l-10 {
    margin-left: 10px !important;
}

.lee-margin-l-14 {
    margin-left: 14px !important;
}

.lee-margin-l-20 {
    margin-left: 20px !important;
}


/*宽度*/

.lee-col-xs-1,
.lee-col-xs-2,
.lee-col-xs-3,
.lee-col-xs-4,
.lee-col-xs-5,
.lee-col-xs-6,
.lee-col-xs-7,
.lee-col-xs-8,
.lee-col-xs-9,
.lee-col-xs-10,
.lee-col-xs-11,
.lee-col-5 {
    position: relative;
    float: left;
}

.lee-col-xs-12 {
    width: 100%;
    position: relative;
}

.lee-col-xs-11 {
    width: 91.66666667%;
}

.lee-col-xs-10 {
    width: 83.33333333%;
}

.lee-col-xs-9 {
    width: 75%;
}

.lee-col-xs-8 {
    width: 66.66666667%;
}

.lee-col-xs-7 {
    width: 58.33333333%;
}

.lee-col-xs-6 {
    width: 50%;
}

.lee-col-xs-5 {
    width: 41.66666667%;
}

.lee-col-xs-4 {
    width: 33.33333333%;
}

.lee-col-xs-3 {
    width: 25%;
}

.lee-col-xs-2 {
    width: 16.66666667%;
}

.lee-col-xs-1 {
    width: 8.33333333%;
}

.lee-col-5 {
    width: 20%;
}

/* layui按钮 */
.layui-btn-zu {
    background-color: #e1251b;
    height: 34px;
    line-height: 34px;
}



/*基本容器*/
.lee-center {
    width: 1200px;
    height: auto;
    margin: 0 auto;
}


/* 页面头部-顶部导航栏-页面导航栏-开始 */
#header {
    width: auto;
    height: auto;
    background: #fff;
}

#header .ie8 {
    padding: 10px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

#header .ie8 a {
    color: #fff;
    margin: 0 5px;
}

#header .ie8 a:hover {
    text-decoration: revert;
}

#header .ie8 .lee-center i {
    margin-right: 5px;
}

#header .erp-top-bgImg a{
	display: block;
	width: 100%;
	height: 68px;
	background-image: url("/static/index/img/top-erp.jpg");
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center top;
}

#header .loginbar {
    width: auto;
    height: 30px;
    line-height: 30px;
    background-color: #333;
    color: #fff;
    font-size: 12px;
}

#header .loginbar span {
    margin-left: 10px;
}

#header .loginbar span a {
    color: #fff;
}

#header .loginbar span a:hover {
    color: #e1251b;
}

#header .loginbar img {
    position: relative;
    top: -2px;
}

#header .loginbar .web-nav {
    display: flex;
    height: 12px;
    line-height: 12px;
    margin-top: 9px;
}

#header .loginbar .web-nav li {
    float: left;
    margin-left: 16px;
}

#header .loginbar .web-nav li.login-ulr {
    padding-right: 16px;
    border-right: 1px solid #ccc;
}

#header .loginbar .web-nav li.login-ulr .zhuce {
    margin-left: 16px;
}

#header .loginbar .web-nav li a {
    color: #fff;
}

#header .loginbar .web-nav li a:hover {
    color: #e1251b;
}

#header .luoge-box {
    display: flex;
    width: 1200px;
    height: 62px;
    align-items: center;
    padding: 22px 0;
}

#header .luoge-box .logo {
    float: left;
}

#header .luoge-box .logo a h1 {
    display: none;
}

#header .luoge-box .search {
    float: left;
    width: 506px;
    margin-left: 160px;
}

#header .luoge-box .search .choice {
    display: flex;
    width: auto;
}

#header .luoge-box .search .choice li {
    float: left;
    width: 42px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    text-align: center;
    color: #333;
    cursor: pointer;
}

#header .luoge-box .search .choice li.layui-this {
    background-color: #e1251b;
    color: #fff;
}

#header .luoge-box .search .search-form {
    width: auto;
    height: 40px;
}

#header .luoge-box .search .search-form .layui-input {
    width: 416px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #e1251b;
    border-radius: 0;
    color: #999;
}

#header .luoge-box .search .search-form .layui-btn {
    width: 90px;
    height: 40px;
    line-height: 40px;
    background-color: #e1251b;
    font-size: 18px;
    color: #fff;
    border-radius: 0;
    border: 0px none !important;
}

#header .luoge-box .channel {
    display: flex;
    float: right;
    width: auto;
    height: 36px;
    margin: 20px 0 0 126px;
}

#header .luoge-box .channel .all-4 {
    float: left;
    position: relative;
    width: 36px;
    height: 36px;
    background: url(../img/icon/wx-icon.png) no-repeat center center;
    margin-left: 15px;
    cursor: pointer;
}

#header .luoge-box .channel .i1:hover {
    background-image: url(../img/icon/wx-hov-icon.png);
}

#header .luoge-box .channel .i2 {
    background-image: url(../img/icon/wb-icon.png);
}

#header .luoge-box .channel .i2:hover {
    background-image: url(../img/icon/wb-hov-icon.png);
}

#header .luoge-box .channel .i3 {
    background-image: url(../img/icon/app-icon.png);
}

#header .luoge-box .channel .i3:hover {
    background-image: url(../img/icon/app-hov-icon.png);
}

#header .luoge-box .channel .all-4 .number {
    display: none;
    position: absolute;
    top: 26px;
    right: -65px;
    z-index: 9;
    -webkit-animation: fadeInTop 0.1s ease-in;
    animation: fadeInTop 0.15s ease-in;
}

#header .luoge-box .channel .all-4:hover .number {
    display: block;
}

#header .luoge-box .channel .all-4 .number .fuwuh {
    display: flex;
    position: relative;
    width: auto;
    height: 154px;
    background: #fff;
    margin-top: 14px;
    padding: 20px 0 20px 20px;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

#header .luoge-box .channel .all-4 .number .fuwuh .sjiao {
    position: absolute;
    top: -14px;
    left: 47%;
}

#header .luoge-box .channel .i3 .number .fuwuh .sjiao {
    left: initial;
    right: 75px;
}

#header .luoge-box .channel .all-4 .number .fuwuh dl {
    display: inline-block;
    margin-right: 20px;
    text-align: center;
}

#header .luoge-box .channel .all-4 .number .fuwuh dl dd {
    font-size: 14px;
    margin: 10px 0 5px 0;
}

#header .nav {
    width: auto;
    height: 42px;
    top: -90px;
}

#header .nav .nav-left {
    position: relative;
    width: 210px;
    height: 42px;
}

#header .nav .nav-left .all-cate {
    display: block;
    height: 42px;
    line-height: 42px;
    background-color: #e1251b;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

#header .nav .nav-left .list {
    position: absolute;
    top: 42px;
    left: 0;
    width: 210px;
    height: 480px;
    background: #333;
    z-index: 9;
    padding: 1px 0;
}

#header .nav .nav-left .list li {
    width: auto;
    height: auto;
    padding: 14px 10px 11px 0;
}

#header .nav .nav-left .list li:hover {
    background-color: #fff;
}

#header .nav .nav-left .list li:last-child {
    border-bottom: 0 none;
}

#header .nav .nav-left .list li .nav-left-title {
    font-size: 15px;
    font-weight: bold;
    color: #e1251b;
    margin: 0 0 8px 10px;
}

#header .nav .nav-left .list li .nav-left-sort {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -5px;
}

#header .nav .nav-left .list li .clearfix:after {
    width: 56px;
}

#header .nav .nav-left .list li .nav-left-sort a {
    position: relative;
    display: block;
    float: left;
    height: 16px;
    line-height: 14px;
    color: #fff;
    margin: 8px 0 0 10px;
}

#header .nav .nav-left .list li:hover .nav-left-sort a {
    color: #333;
}

#header .nav .nav-left .list li .nav-left-sort a:hover {
    color: #e1251b;
}

#header .nav .nav-left .list li .nav-left-sort a:after {
    position: absolute;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    clear: both;
    transition: background-color .2s linear, color .2s linear;
    -webkit-transition: background-color .2s linear, color .2s linear;
    -moz-transition: background-color .2s linear, color .2s linear;
    -o-transition: background-color .2s linear, color .2s linear;
}

#header .nav .nav-left .list li .nav-left-sort a:hover:after {
    background-color: #e1251b;
}

#header .nav .nav-left .list li .product-wrap {
    display: none;
    position: absolute;
    top: 0px;
    left: 210px;
    width: 743px;
    height: 420px;
    padding: 30px 6px 30px 30px;
    background-color: #fff;
    border: 1px solid #333;
    border-left: 0 none;
}

#header .nav .nav-left .list li .product-wrap .overflow-box {
    height: 100%;
    overflow: scroll;
    overflow-x: hidden;
    padding-right: 6px;
}

#header .nav .nav-left .list li .product-wrap .overflow-box::-webkit-scrollbar {
    width: 6px;
}

#header .nav .nav-left .list li .product-wrap .overflow-box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

#header .nav .nav-left .list li .product-wrap .overflow-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

#header .nav .nav-left .list li .product-wrap .overflow-box .br {
    position: absolute;
    top: 0;
    right: 236px;
    width: auto;
    height: 100%;
    border-left: 1px solid #EEE;
}


.product-wrap .overflow-box .secondary {
    width: 475px;
}

.product-wrap .overflow-box .secondary dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #E5E5E5;
    margin: 0 0 10px -19px;
    padding-bottom: 2px;
}

.product-wrap .overflow-box .secondary dl:last-child {
    border: 0 none;
    margin-bottom: 0;
}

.product-wrap .overflow-box .secondary dl dt {
    float: left;
    width: 100%;
    height: 14px;
    line-height: 14px;
    margin: 0 0px 12px 19px;
    border-left: 3px solid #e1251b;
    padding-left: 8px;
}

.product-wrap .overflow-box .secondary dl dt a {
    color: #333;
    font-size: 15px;
}

.product-wrap .overflow-box .secondary dl dd {
    float: left;
    height: 12px;
    line-height: 12px;
    font-size: 13px;
    margin: 0 0px 10px 19px;
}

.product-wrap .overflow-box .secondary dl dd a {
    color: #666;
}

.product-wrap .overflow-box .secondary dl a:hover {
    color: #e1251b;
}


.product-wrap .overflow-box .nav-ad {
    position: relative;
    top: 0;
    right: 0;
    width: 178px;
    height: auto;
    background-color: #fff;
    margin-right: 20px;
}

.product-wrap .overflow-box .nav-ad .ad-img {
    width: 178px;
    margin-bottom: 10px;
}

.product-wrap .overflow-box .nav-ad .ad-img:last-child {
    margin-bottom: 0;
}

.product-wrap .overflow-box .nav-ad .ad-img img {
    width: 178px;
}


#header .nav .nav-logo {
    display: none;
}


#header .nav-right {
    height: 42px;
    display: flex;
    align-items: center;
    background-color: #fff !important;
    padding: 0;
    margin-left: 30px;
}

/* #header .nav-right{height: 42px;display: flex;align-items:center;background-color:#fff !important;padding: 0;margin-left: 60px;} */
#header .nav-right .layui-nav-child {
    width: 130px;
    top: 42px;
    left: -30px;
    border: 0 none;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

/* #header .nav-right li{width: auto;margin-right: 30px;} */
#header .nav-right li {
    width: auto;
    margin-right: 30px;
}

#header .nav-right li:last-of-type {
    margin-right: 0;
}

#header .nav-right li .xq-hot {
    position: absolute;
    top: 0;
    right: -22px;
}

#header .nav-right li a {
    font-size: 16px;
    color: #333;
    padding: 0;
    line-height: 42px;
}

#header .nav-right li.layui-this a {
    color: #e1251b;
}

#header .nav-right li a:hover {
    color: #e1251b;
    background-color: initial;
}

#header .nav-right li .layui-nav-child dd.layui-this {
    background-color: #fff;
}

#header .nav-right li .layui-nav-child dd.layui-this a {
    background-color: inherit;
    color: #e1251b;
}

#header .nav-right li dl dd a {
    font-size: 14px;
    text-align: center;
    background-color: initial;
}

#header .nav-right li dl dd:hover a {
    color: #e1251b;
}

#header .nav-right li.layui-this dl dd a {
    color: #333;
}

#header .nav-right li.layui-this dl dd a:hover {
    color: #e1251b;
}

#header .nav-right .layui-this:after {
    background-color: #e1251b;
    height: 2px;
}

#header .nav-right .layui-nav-bar {
    background-color: #e1251b;
    height: 2px;
}

#header .nav-right .layui-nav-more {
    display: none;
}

/* 导航栏浮动样式 */
#header .nav-fixed {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 99;
    -webkit-transition: top 0.5s;
    -moz-transition: top 0.5s;
    -ms-transition: top 0.5s;
    -o-transition: top 0.5s;
    transition: top 0.5s;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08) !important;
}

#header .nav-fixed .lee-center {
    height: 80px;
}

#header .nav-fixed .nav-left {
    display: none;
}

#header .nav-fixed .nav-right {
    margin-top: 15px;
    float: right !important;
}

#header .nav-fixed .nav-logo {
    display: block;
    margin-top: 10px;
}

/* 页面头部-顶部导航栏-页面导航栏-结束 */

/* 底部 */
#footer {
    background: #fff;
    padding: 25px 0 30px;
}

#footer .nav {
    padding: 0 30px 20px;
}

#footer .nav .bottomSidebar {
    width: 56px;
    margin-right: 88px;
    text-align: center;
}

#footer .nav .bottomSidebar dt {
    height: 14px;
    line-height: 14px;
    color: #333;
    margin-bottom: 19px;
    padding-top: 5px;
    font-weight: bold;
}

#footer .nav .bottomSidebar dd {
    height: 14px;
    line-height: 14px;
    margin-bottom: 20px;
}

#footer .nav .bottomSidebar dd a:hover {
    color: #e1251b;
}

#footer .nav .code {
    width: 100px;
    height: auto;
    margin-right: 50px;
}

#footer .nav .code dt {
    width: 98px;
    height: 98px;
    background: #fff;
    margin-bottom: 8px;
    border: 1px solid #eaeaea;
}

#footer .nav .code dt img {
    width: 100%;
    height: 100%;
}

#footer .nav .code dd {
    text-align: center;
    color: #333;
}

#footer .nav .service {
    width: auto;
    height: auto;
    text-align: right;
}

#footer .nav .service .shoujh {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

/* 登陆注册头部 */
.header-login {
    width: auto;
    height: 90px;
    background: #fff;
}

.header-login .logo {
    line-height: 90px;
}

.header-login .title {
    width: auto;
    height: 30px;
    line-height: 30px;
    margin-top: 30px;
    border-left: 1px solid #C3C3C3;
    padding-left: 15px;
    margin-left: 15px;
    font-size: 22px;
    color: #333;
}

.header-login .phone {
    height: 90px;
    line-height: 90px;
    font-size: 16px;
    color: #999;
}

/* 登陆注册底部 */
.footer-login {
    background: #fff;
    padding: 22px 0 21px;
}

.footer-login p {
    font-size: 14px;
    color: #838383;
    text-align: center;
}

/* #footer .nav .service dd{font-size: 14px;color: #666;} */
#footer .nav .service .mailbox {
    position: relative;
    width: 170px;
    height: 40px;
    margin-top: 30px;
}

#footer .nav .service .mailbox a {
    display: block;
    width: 168px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #e1251b;
    font-size: 16px;
    color: #e1251b;
    text-align: center;
}

#footer .nav .service .mailbox a:hover {
    background-color: #e1251b;
    color: #fff;
}

#footer .nav .service .mailbox .number {
    display: none;
    position: absolute;
    bottom: 38px;
    right: 0;
    z-index: 9;
    -webkit-animation: fadeInTop 0.1s ease-in;
    animation: fadeInTop 0.15s ease-in;
}

#footer .nav .service .mailbox:hover .number {
    display: block;
}

#footer .nav .service .mailbox .number .fuwuh {
    position: relative;
    width: 140px;
    height: 44px;
    background: #fff;
    margin-bottom: 12px;
    padding: 30px;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    text-align: left;
}

#footer .nav .service .mailbox .number .fuwuh .sjiao {
    position: absolute;
    bottom: -12px;
    left: 54.6%;
}

#footer .nav .service .mailbox .number .fuwuh .mailbox-title {
    font-size: 16px;
    color: #333;
}

#footer .nav .service .mailbox .number .fuwuh .mailbox-text {
    color: #999;
}

#footer .friendlink {
    width: auto;
    height: auto;
    margin-top: 5px;
    padding-bottom: 30px;
}

#footer .friendlink p {
    color: #333;
    margin-right: 5px;
    font-weight: bold;
}

#footer .friendlink .link {
    width: 1100px;
    display: flex;
    flex-wrap: wrap;
}

#footer .friendlink .link a {
    float: left;
    display: block;
    color: #333;
    margin-right: 14px;
    margin-bottom: 5px;
}

#footer .friendlink .link a:hover {
    color: #e1251b;
}

#footer .copyright {
    color: #333;
    text-align: center;
    font-weight: 400;
}

#footer .copyright p {
    margin-bottom: 6px;
}

#footer .copyright p a {
    color: #333;
}

/* 右侧浮动快速了解信息 */
.floor-right{position:fixed;bottom:50px;right:0px;z-index:99;height:400px;padding-right:0px}
.floor-right .info-storey{width:240px;height:400px;background:url(/static/index/img/info-storey-bg.jpg) no-repeat center center / 100% 100%}
.floor-right .info-storey .close{padding:14px 14px 0 0;}
.floor-right .info-storey .close .layui-icon-close{cursor:pointer;font-weight:bold}
.floor-right .info-storey .close .layui-icon-close:hover{color:#F2270C}
.floor-right .info-storey .carefully{display:none;padding:0 20px}
.floor-right .info-storey .subtitle {color: #828999}
.floor-right .info-storey .carefully .dl-vuie{margin-bottom:16px}
.floor-right .info-storey .carefully .dl-vuie .dt{height:16px;line-height:16px;color:#484848}
.floor-right .info-storey .carefully .dl-vuie .mb6{margin-bottom:4px}
.floor-right .info-storey .carefully .dl-vuie .dd{margin-bottom:8px}
.floor-right .info-storey .carefully .dl-vuie .dd .text{height:14px;line-height:14px;color:#484848;padding-left:4px}
.floor-right .info-storey .carefully .formBox .layui-form .submit{width:100%;text-align:center;margin-top:10px}
.floor-right .info-storey .carefully .formBox .layui-form .submit .layui-btn{width:200px;height:35px;line-height:35px;background-color:#F2270C;font-size:14px;color:#fff;box-shadow:0px 4px 12px 0px rgba(0,44,84,0.1);border-radius:4px}
.floor-right .loucen{padding-left:12px;padding-top:34px}
.floor-right .loucen li{cursor:pointer}
.floor-right .loucen .xmo{position:relative;padding-left:3px;margin-bottom:18px}
.floor-right .loucen .xmo .portrait{width:46px;height:46px;background:#FFF;border-radius:50%;border:1px solid #E73930;padding:5px}
.floor-right .loucen .xmo .portrait img{width:46px;height:46px;border-radius:50%}
.floor-right .loucen .xmo .wexzi{position:absolute;bottom:-6px;left:0px;width:62px;height:22px;line-height:22px;background:#FFF;border-radius:2px;border:1px solid #E73930;text-align:center;font-size:12px;color:#666}
.floor-right .loucen .louty{width:62px;height:62px;background:#FFF;border-radius:4px;border:1px solid #E73930}
.floor-right .loucen .louty .img{padding-top:12px;padding-bottom:6px}
.floor-right .loucen .louty .img img{display:inline-block;width:22px;height:22px}


/* 聊一聊弹出窗-登陆状态下*/
body .layui-login-state {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2);
}

body .layui-login-state .layui-layer-title {
    background: #fff;
    color: #333;
    border: none;
    height: 42px;
    line-height: 42px;
}

body .layui-form-select dl dd.layui-this {
    background-color: #e1251b;
}

/*询问层样式更改*/
body .inquiry-style {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2);
}

body .inquiry-style .layui-layer-title {
    background-color: #fff;
    border-bottom: 0 none;
    font-size: 16px;
}

body .inquiry-style .layui-layer-content {
    text-align: center;
    color: #999;
    font-size: 14px;
}

body .inquiry-style .layui-layer-content span {
    color: #e1251b;
}

body .inquiry-style .layui-layer-btn {
    text-align: center;
    padding-bottom: 20px;
}

body .inquiry-style .layui-layer-btn a {
    margin: 0px 20px 0;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
}

body .inquiry-style .layui-layer-btn .layui-layer-btn0 {
    border-color: #e1251b;
    background-color: #fff;
    color: #e1251b;
}

body .inquiry-style .layui-layer-btn .layui-layer-btn1 {
    border-color: #e1251b;
    background-color: #e1251b;
    color: #fff;
}

/* 未登录状态下的弹出层 */
body .login-layer {
    height: auto;
    padding-top: 30px;
    padding-bottom: 25px;
}

body .login-layer .text {
    width: auto;
    height: 63px;
    font-size: 14px;
    color: #999;
    padding: 0 16px 0 80px;
}

body .login-layer .text p {
    margin-bottom: 10px;
}

body .login-layer .text p span.name {
    color: #000;
}

body .login-layer .button {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    text-align: center;
}

body .login-layer .button a {
    display: inline-block;
    width: 90px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 4px;
    margin: 0 25px;
}

body .login-layer .button a.agree {
    background-color: #e1251b;
    color: #fff;
}

body .login-layer-dyu {
    padding-top: 25px;
    padding-bottom: 20px;
}

body .login-layer-dyu .text {
    height: 57px;
    text-align: center;
    padding-left: 20px;
}

/* 极速登陆开始 */
.quick-logon {
    width: auto;
    height: auto;
    padding: 20px 16px;
    background: url(../img/icon/quick-logon-icon.png) no-repeat right 0 #fff;
    margin-bottom: 16px;
}

.quick-logon h2 {
    line-height: 18px;
    font-size: 18px;
    color: #333;
    margin-bottom: 13px;
}

.quick-logon p {
    line-height: 14px;
    margin-bottom: 25px;
}

.quick-logon .layui-form .layui-form-item {
    margin-bottom: 20px;
}

.quick-logon .layui-form .layui-form-item .layui-input-block {
    margin-left: 0;
}

.quick-logon .layui-form .layui-form-item .layui-input {
    height: 46px;
    border-color: #E5E5E5;
}

.quick-logon .layui-form .layui-form-item .layui-form-danger:focus {
    border-color: #e1251b !important;
}

.quick-logon .layui-form .treaty {
    width: auto;
    height: 14px;
    line-height: 14px;
    color: #333;
    margin-bottom: 30px;
}

.quick-logon .layui-form .treaty img {
    position: relative;
    top: -1px;
    left: 0;
    margin-right: 5px;
}

.quick-logon .layui-form .layui-form-item .layui-input-block .layui-btn {
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    color: #e1251b;
    border: 1px solid #e1251b;
    background-color: #fff;
    border-radius: initial;
}

.quick-logon .layui-form .layui-form-item .layui-input-block .layui-btn:hover {
    background-color: #e1251b;
    color: #fff;
}

/* 页面右侧标题和更多样式 */
.kind-title {
    position: relative;
    width: auto;
    height: 32px;
    line-height: 16px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #EBEBEB;
}

.kind-title:after {
    content: " ";
    display: block;
    position: absolute;
    left: 0px;
    bottom: -1px;
    width: 72px;
    height: 2px;
    clear: both;
    background-color: #e1251b;
}

.kind-title a {
    float: right;
    height: 16px;
    line-height: 16px;
    font-size: 12px;
    color: #999;
}

.kind-title a:hover {
    color: #e1251b;
}

.kind-title a .layui-icon {
    font-size: 12px;
}

/* 当前位置样式显示 */
.current-position {
    font-size: 14px;
    height: 16px;
    line-height: 16px;
    color: #666;
    margin-bottom: 10px;
}

.current-position a {
    color: #666;
}

.current-position a:hover {
    color: #e1251b;
}

.current-position .layui-icon {
    font-size: 14px;
}

/* 暂无状态 */
.metadata {
    width: auto;
    height: auto;
    text-align: center;
    padding: 100px 0 130px 0;
}

.metadata p {
    font-size: 16px;
    color: #999;
    margin-top: 5px;
}

/* 右侧快速发布广告图 */
.fast-release-box {
    width: auto;
    height: auto;
    padding-bottom: 20px;
    background-color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

.fast-release-box .layui-btn {
    width: 256px;
    height: 46px;
    border: 0 none;
    padding: 0;
    margin-top: 30px;
}

/* 上一篇和下一篇样式 */
#next {
    width: auto;
    border-top: 1px solid #EBEBEB;
    padding: 17px 0;
}

#next a {
    width: 395px;
    font-size: 16px;
    color: #333;
}

#next a:hover {
    color: #e1251b;
}

/*分页样式*/
.page_center {
    text-align: center;
    background: #fff;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination>li {
    display: inline;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #e1251b;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    z-index: 2;
    color: #e1251b;
    background-color: #eee;
    border-color: #ddd;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #e1251b;
    border-color: #e1251b;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}