/*  
*@Description: 详情页CSS
*@Author:      Hanli 
*@Update:      Hanli(2020-03-10)  
*/ 
/*basic*/


@charset "utf-8";

:root {
    --white-color: #fff;
    --main-bg-color: #f5f6f7;
    --primary-text-color: #020c1c;
    --primary-color: #C9151E;
    --description-text-color: #808080;
    --border-color: #eee;
}

/* 防止用户自定义背景颜色对网页的影响 */
html{
    background:var(--white-color);
    /* -webkit-filter: grayscale(100%);
  filter:progid:DXImageTransform.Microsoft.BasicImage(graysale=1);
  FILTER: gray;
  filter: grayscale(100%); 
  -webkit-filter: grayscale(100%); 
  -moz-filter: grayscale(100%); 
  -ms-filter: grayscale(100%); 
  -o-filter: grayscale(100%); 
  filter: url("data:image/svg+xml;utf8,#grayscale"); 
  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); 
  -webkit-filter: grayscale(1); */
}
/* 内外边距重置 */
*{
    margin:0;padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,body{
    /* font-family: 'Roboto',Helvetica, Arial, sans-serif,'Microsoft Yahei', '微软雅黑'; */
    font-family: 'Roboto', Arial, sans-serif,'Microsoft Yahei', '微软雅黑';
    word-wrap: break-word;
    color: var(--primary-text-color);
    line-height: 1.6;
}
@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;
  color: inherit;
}
a:hover{
    color: var(--primary-color);
}

.clearB{
    clear: both;
}
.layui-btn{
    background: var(--primary-color);
}

.iconfont{
    font-size: inherit;
}

@media screen and (max-width: 767px) and (min-width: 568px) {
    .layui-col-xsm6{
        width: 50%;
    }
}


.block 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 (min-width: 1400px){
    .layui-container {
        width: 1260px;
    }
}
@media screen and (min-width: 1921px) { 
    .layui-container{
        width: 1500px;
    }
}

.layui-col-space40{
    margin: -20px;
}
.layui-col-space40>*{
    padding: 20px;
}
.layui-col-space50{
    margin: -25px;
}
.layui-col-space50>*{
    padding: 25px;
}
@media screen and (max-width: 767.9px) {
    .layui-col-space40{
        margin: -15px;
    }
    .layui-col-space40>*{
        padding: 15px;
    }
    .layui-col-space50{
        margin: -15px;
    }
    .layui-col-space50>*{
        padding: 15px;
    }
}

/*basic END*/
/*页面详情样式*/
/*page-content*/
.page-content{
    color: #4d4d4f;
    line-height: 1.7;
}
.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: 22px;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-left: 16px;
}

.page-content h2:after{
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    top: 4px;
    bottom: 4px;
    background: var(--primary-color);
}
.page-content h3{
    font-size: 22px;
}
.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;
}
.page-content p,.page-content li{
    margin-bottom: 12px;
}
.page-content ul,
.page-content ol{
    padding-left: 18px;
}
.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: inherit;
    text-decoration: underline;
}
.page-content a:hover{
    color: var(--primary-color);
    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 ,
a.more-btn {
    display: inline-block;
    line-height: 1.5;
    padding: 10px 28px;
    color: var(--white-color);
    background: var(--primary-color);
    overflow: hidden;
    position: relative;
    border-radius: 0px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 25px;
    margin-top: 30px;
}
.more-btn:hover,
a.more-btn:hover{
    background-color: var(--primary-color);
    text-decoration: none;
    color: var(--white-color);
}
.more-btn.btn-green,
a.more-btn.btn-green{
    background: #89C15F;
}
.more-btn.btn-white,
a.more-btn.btn-white{
    background: var(--white-color);
    color: var(--primary-color);
}
.more-btn.border-white,
a.more-btn.border-white{
    background: none;
    border: 1.5px solid rgba(255,255,255,.75);
    color: rgba(255,255,255,.85);
}
.more-btn.border-white:hover,
a.more-btn.border-white:hover{
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,1)
}

.more-btn.border-blue,
a.more-btn.border-blue{
    background: none;
    border: 1.5px solid rgba(219,105,75,.75);
    color: rgba(219,105,75,.85);
}
.more-btn.border-blue:hover,
a.more-btn.border-blue:hover{
    background: rgba(219,105,75,.15);
    color: rgba(219,105,75,1);
}
.more-btn.border-green,
a.more-btn.border-green{
    background: none;
    border: 1.5px solid rgba(137,193,95,.75);
    color: rgba(137,193,95,.85);
}
.more-btn.border-green:hover,
a.more-btn.border-green:hover{
    background: rgba(137,193,95,.15);
    color: rgba(137,193,95,1);
}


/*more-btn END*/

/*single-link*/
.single-link,
a.single-link{
    display: block;
    /*font-weight: bold;*/
    color: var(--primary-color);
    font-size: 12px;
    margin-top: 15px;
}
.single-link .iconfont{
    margin-left: 5px;
}
.single-link:hover,
a.single-link:hover{
    text-decoration: underline;
}
/*single-link END*/


/*blockquote*/
blockquote {
    font-size: inherit;
    background: #F5F5F5;
    padding: 20px;
    margin-bottom: 16px;
    margin-top: 16px;
    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{
    background: #F5F5F5;
    padding: 40px 30px;
    margin: 16px 0;
    border: 1px solid #e2e2e2;
}
.block-box .block-title{
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
    .block-box{
        padding: 20px 15px;
    }
}
/*block-box END*/


/*折叠面板*/
.slide-door{
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}
.slide-door+.slide-door{
    margin-top: 20px;
}
.slide-door .accordion-title{
    padding-right: 36px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 18px;
    margin: 0;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.slide-door .accordion-title:after{
    content: "\e6a1";
    position: absolute;
    top: 2px;
    right: 0;
    font-size: 20px;
    line-height: 1;
    font-family: "iconfont";
    transition: all .3s;
}
.slide-door:not(.open):hover .accordion-title:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slide-door.open .accordion-title:after{
    content: "\e6a2";
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.slide-door .accordion-title .info{
    color: var(--description-text-color);
    font-size: 13px;
    margin-top: 8px;
}
.slide-door .accordion-title .info span+span{
    margin-left: 24px;
}

.slide-door .accordion-content{
    display: none;
    color: var(--description-text-color);
    padding-top: 12px;
}
.slide-door .accordion-content>*:last-child{
    margin-bottom: 0;
}
.slide-door .accordion-content p,.slide-door .accordion-content li{
    margin-bottom: 12px;
}
@media screen and (max-width:767.9px) {
    .slide-door{
        padding-bottom: 16px;
    }
    .slide-door+.slide-door{
        margin-top: 16px;
    }
    .slide-door .accordion-title{
        font-size: 16px;
    }
}



/*table,*/
table{
    max-width: 100%;
    width: 100%;
    margin: 16px 0;
}
table td{
    padding: 10px 5px;
}
table th>*:last-child, table td>*:last-child {
    margin-bottom: 0;
}


/*media*/
.media{
    margin: 30px 0;
    display: block;
}
.media .media-left .img-box{
    width: 200px;
}
.media .media-body .media-name{
    font-size: 20px;
    color: #333;
    line-height: 1.5;
}
.media .media-body .media-title{
    margin-top: 10px;
}
.media .media-body .media-desc{
    margin-top: 10px;
}
.media .media-body .media-title .iconfont{
    color: var(--primary-color);
    font-weight: bold;
    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 .img-box{
        width: 140px;
        height: 140px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .media .media-left .img-box img{
        width: 100%;
    }
    .media .media-body .media-name,
    .media .media-body .media-title{
        text-align: center;
    }

}
/*media END*/

/*pages*/
.pages{
    text-align: center;
    padding-top: 40px;
}
.layui-laypage a:hover{
    color: var(--primary-color);
}
.layui-laypage a, .layui-laypage span{
    height: 36px;
    line-height: 36px;
}
/*pages END*/

.page-content .row-flex{
    margin: 16px 0;
}
