/*
*@Description: 
*@Author:      hanli 
*@Update:      hanli(2020-11-02)  
*/


@charset "utf-8";

@font-face {
    font-family: 'Gotham Light';
    src: url('fonts/Gotham/Gotham-Light.otf');
    src: url('fonts/Gotham/Gotham-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham Medium';
    src: url('fonts/Gotham/Gotham-Medium.otf');
    src: url('fonts/Gotham/Gotham-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'canela regular';
    src: url('fonts/CANELA-REGULAR.TTF');
    src: url('fonts/CANELA-REGULAR.TTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}
.iconfont{
    font-size: inherit;
    /*font-weight: normal;*/
}
/* 防止用户自定义背景颜色对网页的影响 */
html{
    color:#000000;background:#fff;
}
/* 内外边距重置 */
*{
    margin:0;padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,body{
    font-family: 'Arial', 'Microsoft Yahei', '微软雅黑', '苹方-简 中黑体';
    line-height: 1.5;
    word-wrap: break-word;
    color: #333;
    font-size: 14px;
    /*font-weight: bold;*/
    overflow-x: hidden;
}
@media screen and (max-width: 767px) {
    html,body{
        font-size: 14px;
    }
}
input,select,textarea{
    font-size:100%;
}
div:focus{
    outline:none;
}
/* 去掉各Table  cell 的边距并让其边重合 */
table{
    border-collapse:collapse;border-spacing:0;
}
/* IE bug fixed: th 不继承 text-align*/
th{
  text-align:inherit;
}
ol,ul{
    list-style: none;
}
a,a:visited,a:focus,a:hover{
  text-decoration:none;
  outline: none;
}
/* a,a:hover{
    color: #C9151E;
} */
a:hover{
    color: unset;
}

.clearB{
    clear: both;
}
img{
    max-width: 100%;
}
.text-center{
    text-align: center!important;
}
.text-left{
    text-align: left!important;
}
.text-right{
    text-align: right!important;
}
.text-justify{
    text-align: justify!important;
}
.layui-btn-lg{
    padding: 18px 100px;
    height: auto;
    line-height: 1;
}
@media screen and (max-width: 567px) {
    .layui-btn-lg{
        width: 100%;
    }
}
@media screen and (min-width: 568px) and (max-width: 767px) {
    .layui-col-xsm6{
        width: 50%;
        float: left;
    }
}
@media (min-width: 1400px){
    .layui-container {
        width: 1260px;
    }
}
/*@media screen and (min-width: 1600px) { 
    .layui-container{
        width: unset;
        margin: 0 5%;
    }
}*/
/*@media screen and (min-width: 1921px) { 
    .layui-container{
        width: 1500px;
    }
}*/
.layui-container {
    width: 100%!important;
    padding: 0 5%;
    /* max-width: 1500px; */
    /* max-width: 1400px; */
    margin: 0 auto;
}
.layui-form-select .layui-input{
    border-right: 1px solid #ccc;
}
.layui-form-select dl{
    border: none;
}
.layui-form-select dl dd.layui-this{
    background: #00235F;
}

.flex,
.row-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
}
.flex.is-center{
    align-items: center;
}
.flex.is-between{
    justify-content: space-between;
}
.row-flex{
    display: flex;
    flex: 1;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: stretch;
    align-items: stretch;
}
.layui-row.row-flex:after, .layui-row.row-flex:before{
    content: none;
}


/*flex-item*/
.flex-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
.flex-item .flex-body{
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    padding-left: 15px;
}
/*flex-item*/


/*页面详情样式*/
/*page-content*/
.page-content{
    color: #6D6D6D;
    font-size: 14px;
    line-height: 1.7em;
}
.page-content h1,.page-content h2,.page-content h3,.page-content h4{
    margin-top: 25px;
    position: relative;
    line-height: 160%;
    color: #333;
    margin-bottom: 10px;
}
.page-content h1{
    font-size: 28px;
    margin-bottom: 30px;
}
.page-content h2{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #e2e2e2;
}

.page-content h2:after{
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 3px;
    background: #c9151e;
    bottom: -2px;
}
.page-content h3{
    font-size: 20px;
}
.page-content h4{
    font-size: 18px;
}
.page-content h1+h2,
.page-content h1+h3,
.page-content h1+h4,
.page-content h1+h5,
.page-content h1+h6,
.page-content h2+h3,
.page-content h2+h4,
.page-content h2+h5,
.page-content h2+h6,
.page-content h3+h4,
.page-content h3+h5,
.page-content h3+h6,
.page-content h4+h5,
.page-content h4+h6,
.page-content h5+h6{
    margin-top: 0;
}
.page-content>*:nth-child(1) {
    margin-top: 0;
}
.text-indent{
    text-indent: 2em;
}
.page-content p,.page-content li{
    margin-bottom: 10px;
}
.page-content ul,.page-content ol{
    padding-left: 16px;
}
.page-content ul,.page-content ul li{
    list-style: disc outside;
}
.page-content ol,.page-content ol li{
    list-style: decimal outside;
}
.page-content img{
    max-width: 100%;
    height: auto!important;
}
.page-content a:not(.more-btn){
    color: #C9151E;
    /*text-decoration: underline;*/
}
.page-content a:not(.more-btn):hover{
    color: #c9151e;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .page-content h1{
        font-size: 24px;
    }
    .page-content h2{
        font-size: 22px;
    }
    .page-content h3{
        font-size: 18px;
    }
    .page-content h4{
        font-size: 16px;
    }
}

/*page-content END


/*more-btn*/
.more-btn{
    display: inline-block;
    padding: 7px 25px;
    background-color: #ffffff;
    color: #00235F;
    border-radius: 25px;
    font-size: 16px;
}
.more-btn span{
    display: inline-block;
    min-width: 55px;
    text-align: center;
}
.more-btn i{
    margin-left: 8px;
}
.more-btn:hover{
    opacity: .9;
    color: #00235F;
}
.more-btn.plain{
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #FFFFFF;
    /* font-size: 14px; */
}
.more-btn.primary{
    background-color: #00235F;
    color: #FFFFFF;
}
.more-btn.plain i{
    font-size: 12px;
    margin: 0 8px;
}
.more-btn.small{
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
}
.more-btn.small i{
    font-size: 13px;
}
.more-btn.white{
    background-color: #FFFFFF;
    color: #00235F;
}
/*more-btn END*/

/*single-link*/
.single-link,
a.single-link{
    display: block;
    color: #666;
    margin-top: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    /*line-height: 1;*/
    font-size: 13px;
}
.single-link .iconfont{
    margin-left: 5px;
}
.single-link .icon-1{
    font-size: 2.4em;
    font-weight: lighter;
    position: relative;
    left: -8px;
    -webkit-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
}
.single-link:hover,
a.single-link:hover{
    color: #C9151E;
}
.single-link:hover .icon-1{
    left: -5px;
}
/*single-link END*/


/*blockquote*/
blockquote {
    font-size: inherit;
    background: #F5F5F5;
    padding: 20px;
    margin: 15px 0;
    border-left: 5px solid #e2e2e2;
}
blockquote>*:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    blockquote{
        padding: 20px 15px;
    }
}
/*blockquote END*/

/*block-box*/
.block-box .block-item{
    background: #fff;
    height: 100%;
}
.block-box .block-title{
    font-size: 15px;
    padding: 9px 20px;
    color: #fff;
    text-align: center;
    background: #C9151E;
}
.block-box .block-content{
    padding: 20px;
}
.article-content .block-content{
    background: #F5F5F5;
}
@media screen and (max-width: 767px) {
    .block-box .block-content{
        background: #F5F5F5;
    }
}
/*block-box END*/
/* Webkit内核滚动条样式定义 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow:inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgba(144,147,153,.3);;
    border-radius: 6px;
    width: 6px;
    height: 6px;
    cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(144,147,153,.5);
}

/*折叠面板*/
.slide-door{
    margin-bottom: 1px;
}
.slide-door .accordion-title{
    color: inherit;
    padding: 15px 50px 15px 15px;
    margin: 0;
    position: relative;
    cursor: pointer;
    font-weight: normal;  
    background: #F5F5F5;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 16px;
    color: #333;
}
.slide-door .accordion-title:after{
    content: "\e9cd";
    position: absolute;
    font-family: 'iconfont';
    right: 15px;
    top: 50%;
    margin-top: -10px;
    font-size: 18px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    font-weight: lighter;
    border-radius: 2px;
}

.slide-door.open .accordion-title:after{
    font-family: 'iconfont';
    content: "\e8c3";
}

.slide-door.open .accordion-title:hover,
.slide-door.open .accordion-title,
.slide-door .accordion-title:hover{
    background-color: #00235F;
    color: #fff;
}

.slide-door .accordion-content{
    padding: 20px 15px;
    display: none;
    background: #f5f5f5;
    border-top: 0;
}
.slide-door .accordion-content>*:last-child{
    margin-bottom: 0;
}

.slide-box .slide-door .accordion-title{
    border-left: 0;
}

.slide-door blockquote{
    background: #f0f0f0;
}


/*table,*/
table{
    max-width: 100%;
    width: 100%;
    margin: 15px 0;
}
table td{
    padding: 10px 5px;
}
table th>*:last-child, table td>*:last-child {
    margin-bottom: 0;
}

/*media*/
.media{
    margin: 15px 0;
    padding: 20px;
    background: #f5f5f5;
}
.media .media-left .media-img{
    width: 160px;
}
.media .media-body .media-name{
    font-size: 20px;
    color: #333;
    line-height: 1.2;
}
.media .media-body .media-title{
    margin-top: 10px;
}
.media .media-body .media-desc{
    margin-top: 10px;
    font-size: 13px;
    color: #828589;
}
.media .media-body .media-title .iconfont{
    color: #00235F;
    margin-right: 5px;
}

@media screen and (min-width: 768px) {
    .media{
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
        justify-content: space-between;
    }
    .media .media-left{
        padding-right: 30px;
    }
    .media .media-body{
        -webkit-flex: 1;
        -moz-flex: 1;
        -ms-flex: 1;
        -o-flex: 1;
        flex: 1;
    }
}
@media screen and (max-width: 767px){
    .media .media-left .media-img{
        width: 140px;
        height: 140px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .media .media-left .media-img img{
        width: 100%;
    }
    .media .media-body .media-name,
    .media .media-body .media-title{
        text-align: center;
    }

}
/*media END*/


/*时间线*/
.page-content .layui-timeline{
    padding-left: 0;
}
.page-content .layui-timeline .layui-timeline-item{
    padding-top: 0;
    list-style: none;
    margin-bottom: 0;
}
.layui-text ul{
    padding: 0;
    padding-left: 18px;
}
.layui-text ul li{
    margin-top: 0;
}
.page-content .layui-timeline .layui-timeline-title{
    font-size: 18px;
}
.page-content .layui-icon{
    color: #c9151e;
}
/*时间线 END*/
