@charset "utf-8";
@import url("../fonts/font.css");
body{ font-family: "HSS","PingFang SC","Microsoft YaHei Regular","Helvetica Neue",Helvetica,"Hiragino Sans GB",Arial,sans-serif;}
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;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html, body {
    width: 100%;
    min-width: 320px;
}
body {
    line-height: 1.5;
    background-color: #f1f1f1;
    font-size: var(--font-size);
}
ol, ul,li{
    list-style: none;
}
a{
    color: #333;
    text-decoration: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
:root {
    --themeColor: #b5133e;
    --textColor: #333;
    --lightColor: #d5aa29;
}
.hss{
    font-family: "HSS";
}
.themeColor{
    color: var(--themeColor) !important;
}
.themeBgColor{
    background-color: var(--themeColor) !important;
}
.textColor{
    color: var(--textColor) !important;
}
.lightColor{
    color: var(--lightColor) !important;
}
.clear:after,
.clear::before {
    content: "";
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
.left {
    float: left;
}
.right {
    float: right;
}
.hide{
    display: none !important;
}
.container{
    width: 100%;
    padding: 0 0;
    margin:0 auto;
    box-sizing:border-box;
    position: relative;
    background-color: #fff;
}
.main{
    padding: 0 5%;
    box-sizing: border-box;
}
.main2{
    padding: 1px 20px;
    width: 100%;
    box-sizing: border-box;
    max-width: 1440px;
    margin: 0 auto;
}
.imageAll{
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.3s all;
}
.circle{
    border-radius: 50%;
}
.themeButton{
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #fff;
    background-color: var(--themeColor);
    font-size: 16px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    border: none;
}
.themeButton:hover{
    opacity: 0.8;
}
@media screen and (max-width: 768px){
    .imageAll{
        width: auto;
        max-width: 100%;
        display: block;
        height: auto;
        /*margin: 20px auto 0 auto;*/
    }
}
/*省略号*/

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

.over2 {
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -o-box;
    display: box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.over3 {
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -o-box;
    display: box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.over4 {
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -o-box;
    display: box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.flex,.flex-b{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: space-between;
}
.flex-c{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: center;
}
.flex-a{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: space-around;
}
.flex-e {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.flex-s {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.wrap{
    flex-wrap: wrap;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}
.mt0{
    margin-top: 0;
}
.mb0{
    margin-bottom: 0;
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}
.pt10 {
    padding-top: 10px;
}
.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}
.pb10 {
    padding-bottom: 10px;
}
.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}
.p30{
    padding: 30px;
}
.p20{
    padding: 20px;
}
.p10{
    padding: 10px;
}
.pt0{
    padding-top: 0;
}
.pb0{
    padding-bottom: 0;
}
.border-bottom{
    border-bottom: 1px solid #eee;
}
.border{
    border: 1px solid #eee;
}
.border-bottom-none{
    border-bottom: none;
}

.bgWhite {
    background-color: #fff;
}
.pointer{
    cursor: pointer;
}

/*分页样式*/
.mypage {
    width: auto;
    height: 40px;
    overflow: hidden;
    clear: both;
    text-align: center;
    margin: 40px auto 0 auto;
}
.mypage .pagination{
    display: flex;
    justify-content: center;
    align-items: center;

}
.mypage li {
    min-width: 10px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}

.mypage li a, .mypage li span{
    width: auto;
    min-width: 32px;
    text-align: center;
    display: block;
    color: #888888;
    /*border-radius: 20px;*/
    box-sizing: border-box;
    font-size: 15px;
    padding: 5px 8px;
}
.mypage li a:hover,.mypage li.disabled span:hover{
    color: #fff;
    background-color: var(--themeColor);
}
.mypage li.active span , .mypage li.active a{
    color: #fff;
    background-color: var(--themeColor);
}
.mypage li:last-child{
    margin-right: 0;
}
.layui-form-select dl dd.layui-this{
    background-color: var(--themeColor);
}
.layui-laydate .layui-this{
    background-color: var(--themeColor)!important;
}
/*空页提示*/
.empty{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.empty img{
    display: block;
    margin: 0 auto;
}
.empty p{
    color: #666;
    font-size: 14px;
}
.home-header{
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.8);
    height: 70px;
}
.home-logo{
    text-align: left;
    width: 173px;
}
.nav-toggle {
    width: 30px;
    text-align: center;
    font-size: 30px;
    cursor: pointer;
    color: #555;
    transition: all .3s;
    display: none;
}
.nav-toggle.active {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    transform: translate(15px, 15px);
    z-index: 999;
}
.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--themeColor);
    border-radius: 20px;
    display: block;
    margin: 5px 0;
    transition: all .3s;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(135deg);
}
.nav-toggle.active span:nth-child(2) {
    display: none;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-135deg);
    position: absolute;
    top: 0px;
}
.menu{
    display: none;
}

.layui-btn-themeColor{
    background-color: var(--themeColor);
}
.layui-btn-themeColor.layui-border-red{
    background-color: #fff;
    border: 1px solid var(--themeColor);
    color: var(--themeColor);
}
.layui-layer-page .layui-layer-content{
    border-radius: 10px;
}
.layui-layer{
    border-radius: 10px !important;
}


@media screen and (min-width: 1200px){
    .layui-container {
        width: 100%;
        padding: 0;
    }
}
@media screen and (max-width: 1024px){
    .header-navs{
        display: none;
    }
    .nav-toggle{
        display: block;
    }
    .home-header .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 99;
    }
    .home-header .menu .list {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .home-header .menu .list li {
        width: 100%;
        text-align: center;
        padding: 0;
        line-height: 55px;
    }
    .home-header .menu .list li a {
        display: block;
    }
    .home-header .menu li.active a,.home-header .menu .list li a:hover {
        color: var(--themeColor);
    }
    .home-header .menu .layui-icon-close{
        font-size: 20px;
        font-weight: bold;
        color: #333;
        position: absolute;
        right: 20px;
        top: 20px;
        line-height: 18px;
    }
}
@media screen and (max-width: 768px){
    .mypage li{
        margin-right: 10px;
    }
    /*.main2{*/
    /*    padding: 0 10px;*/
    /*}*/
}

