/* 如果出现下面引入CSS不刷新问题，设置一个新的版本号 */
@import url("main.css?v=1");
@import url("init-fonts.css?v=1");

.w1400{
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}
body{
    background: #F5F5F5;
}
/* 头部背景图 */
.banner-full{
    width: 100%;
    height: calc(100vh - 160px);
    background: url(../images/home-bg.svg) no-repeat center;
    background-size: cover;
    position: relative;
}
.banner-h400{
    width: 100%;
    height: 400px;
    background: url(../images/banner.svg) no-repeat center;
    background-size: cover;
}

.content{
    display: none;
    transition: 0.5s;
}

/* 登录框 */
.uesr-login{
    display: flex;
    justify-content: flex-end;
    height: 80px;
    align-items: center;
}
.uesr-login>a{
    display: block;
    height: 30px;
    display: flex;
    padding: 0 15px;
    font-size: 0.8rem;
    border-radius: 50px;
    border: 1px solid #DE0D0D;
    background: #fff;
    align-items: center;
}
.uesr-login>a img{
    width: 15px;
    margin-right: 10px;
}
.uesr-login>a em{
    font-style: normal;
    color: #DE0D0D;
}
.uesr-login>a:hover{
    background: rgba(222, 13, 13, .1);
}

/* 已登录样式 */
.user-box{
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 30px;
    padding: 0 15px;
    font-size: 0.8rem;
    border-radius: 50px;
    /* background: rgba(222, 13, 13, .1); */
    position: relative;
    padding-right: 0;
}
.user-box img{
    width: 16px;
    margin-right: 10px;
}
.user-box img.arrow{
    width: 8px;
    margin-left: 5px;
    margin-right: 0;
}
.user-box span{
    font-size: 0.8rem;
    color: #DE0D0D;
}
.user-box>ul{
    width: auto;
    min-width: 120px;
    height: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 3px 8px #efd7d1;
    position: absolute;
    right: 0;
    top: 34px;
    text-align: center;
    display: none;
}
.user-box>ul li a{
    font-size: 0.8rem;
    color: #666;
}
.user-box>ul li a:hover{
    color: #DE0D0D;
}


.banner-full .top-mid{
    position: absolute;
    top: 30%;
    left: 50%;
    margin-left: -700px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.banner-h400 .top-mid{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.logo{
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 40px;
}
.logo img{
    display: block;
    margin: 0 auto;
}

/* 搜索框 */
.search{
    width: 80%;
    max-width: 800px;
}
.search .tabs01{
    display: flex;
    font-size: 0.9rem;    
}
.search .tabs01 li{
    margin: 10px 30px;
    cursor: pointer;
    position: relative;
    color: #523F3F;
}
.search .tabs01 li.on{
    font-weight: 700;
    color: #DE0D0D;
}
.search .tabs01 li i{
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    display: none;
}
.search .tabs01 li.on i{
    display: block;
}
.search .search-box{
    width: 100%;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0px 3px 8px #efd7d1;
    margin-top: 5PX;
    border-radius: 4px;
    display: none;
}
.search .search-box input[type=text]{
    border: none;
    width: calc(100% - 150px);
    outline: none;
    padding-left: 20px;
    height: 30px;
    font-size: 0.8rem;
}
.search .search-box input[type=text]::placeholder{
    color: #C5C5C5;
    font-size: 0.8rem;
}
.search .search-box input[type=button]{
    width: 100px;
    padding-left: 50px;
    background: url(../images/icon-search.png) no-repeat 20px center;
    background-size: 18px;
    color: #DE0D0D;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    outline: none;
    border-left: 1px solid #DEDEDE;
    box-sizing: border-box;
}
.search .search-box input[type=button]:hover{
    font-weight: 700;
}
.search-box-list>div:first-child{
    display: block;
}

/* 导航条 */
.nav-small{            
    width: 1400px;
    margin: 0 auto;
    position: fixed;
    bottom: 25vh;
    left:50%;
    margin-left: -700px;
    background: #F00E0E;
}
.nav-large{
    width: 100%;  
    background: #F00E0E;
    display: none;
}
.nav .nav-cont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    max-width: 1400px;
}
.nav a{
    font-size: 0.9rem;
    text-align: center;
    width: 14%;
    color: #fff;
    height: 100%;
    line-height: 70px;
    position: relative;
    background: #F00E0E;
    cursor: pointer;
}
.nav a.on{
    background: linear-gradient(180deg, #FFD4D4 0%, #FFFFFF 54.96%);
    color: #DE0D0D;
    font-weight: 700;
}
.nav a::after{
    content: '';
    width: 1px;
    height: 24px;
    background: #f29999;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
}

.nav span,.nav #btn-to-index{
    width: 5%;
    text-align: center;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav span img{
    width: 20px;
}
.nav a:hover,.nav span:hover{
    background: linear-gradient(180deg, #F00E0E 32.63%, rgba(242, 82, 82, 0.69) 100%);
    color: #fff;
    font-weight: 400;
}
.nav a.on:hover{
    background: linear-gradient(180deg, #FFD4D4 0%, #FFFFFF 54.96%);
    color: #F00E0E;
    font-weight: 700;
}

/* 底部信息 */
.footer{
    width: 100%;
}
.footer .ft-cont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 160px;
}
.footer .ft-l,.footer .ft-r{
    width: 15%;
}
.footer .ft-cont .footer-text{
    width: 70%;
    text-align: center;
}
.footer .ft-cont .footer-text p{
    font-size: 0.75rem;
    color: #666;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .ft-cont .footer-text p em{
    font-style: normal;
    margin: 0 10px;
}
.footer .ft-cont .footer-text p img{
    margin-left: 10px;
}
.footer .ft-cont .footer-text p em.no-margin{
    margin-left: 0;
}
.footer .ft-cont .footer-text p i{
    font-style: normal;
}
.bg-red{
    background: #F00E0E;
}
.bg-red .ft-cont .footer-text p{
    color: #fff;
}

/* 公共样式-一级标题*/
.first-level-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.first-level-title h2{
    font-size: 1rem;
    color: #2E3034;

}

/* 公共样式-“更多”按钮 */
.more{
    height: 20px;
    font-size: 0.7rem;
    padding: 0 10px;
    border-radius: 35px;
    border: 1px solid #DE0D0D;
    color: #DE0D0D;
    line-height: 18px;
}
.more:hover{
    background: #DE0D0D;
    color: #fff;
}

/* 公共样式-标题 */
.head-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #EAE9E9;
    margin-bottom: 20px;
}
.head-title h2{
    font-size: 0.9rem;
    border-bottom: 4px solid #F00E0E;
    padding-bottom: 10px;
    margin-bottom: -4px;
}

/* 公共样式-表格1 */
.common-table01{
    width: 100%;
    overflow-x: auto;
}
.common-table01 table{
    width: 100%;
    border-spacing: 0px;
    table-layout: fixed;
}
.common-table01 table tr{
    height: auto;
    border: 1px solid #ebebeb;   
    padding: 0 10px; 
}
.common-table01 table thead tr{
    background: #F00E0E;
    color: #fff;
    text-align: center;
    font-size: 0.7rem;
    border: 1px solid #ebebeb;
}
.common-table01 table tbody tr td,.common-table01 table thead tr{
    padding: 0 10px;
    font-size: 0.7rem;
    border: 1px solid #ebebeb;    
    height: 50px;
    word-wrap: break-word;
    min-height: 50px;
    text-align: center;
}
.common-table01 table tbody tr td.long-text{
    text-align: left;
}
.common-table01 table tbody tr:nth-of-type(2n){
    background: #F6F6F6;
}

.common-table01 table tr a{
    color: #2C60E6;
}
.common-table01 table tr a:hover{
    text-decoration: underline;
}
.common-table01 table tr td.fees{
    color: #F00E0E;
}


/* 公共样式-表格2 */
.common-table02{
    width: 100%;
    overflow-x: auto;
}
.common-table02 table{
    width: 100%;
    border-spacing: 0px;
}
.common-table02 table tr{
    height: 50px;
    border: 1px solid #ebebeb;
}
.common-table02 table thead tr{
    background: #F00E0E;
    color: #fff;
    text-align: center;
    font-size: 0.7rem;
}
.common-table02 table tbody tr td{
    border: 1px solid #ebebeb;
    font-size: 0.7rem;
    text-align: center;
}
.common-table02 table tbody tr.bg-gray{
    background: #F6F6F6;
}

/* 公共样式-表格3 */
.common-table03{
    width: 100%;
    overflow-x: auto;
}
.common-table03 table{
    width: 100%;
    border-spacing: 0px;
}
.common-table03 table tr{
    height: 50px;
    border: 1px solid #ebebeb;
}
.common-table03 table thead tr{
    background: #F6F6F6;
    text-align: center;
    font-size: 0.7rem;
}
.common-table03 table tbody tr td{
    border: 1px solid #ebebeb;
    font-size: 0.7rem;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}
.common-table03 table tbody tr td a:hover{
    color: #2C60E6;
    text-decoration: underline;
}
.common-table03 table tbody tr td.no-response{
    color: #DE0D0D;
}
.common-table03 table tbody tr td a{
    width: 100%;
    text-align: left;
    display: block;
}

/* 未查找到任何结果样式 */
.no-result{
    width: 100%;
    padding: 40px 0;
    text-align: center;
}
.no-result img{
    width: 80px;
    margin-bottom: 15px;
}
.no-result p{
    font-size: 0.7rem;
    color: #999;
}

/* 悬浮按钮 */
.back-to-top{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #F43232;
    position: fixed;
    right: 10px;
    bottom: 160px;
    text-align: center;
    line-height: 64px;
    cursor: pointer;
    display: none;
    z-index: 997;
}
.back-to-top:hover{
    background: #ea2a2a;
}

/* 公共样式-详情页面-表格 */
.detail-bg{
    padding-bottom: 20px !important;
}
.detail-page-title{
    width: 100%;
    margin: 10px 0 40px;
}
.detail-page-title h2{
    font-size: 1.1rem;
    color: #666;
}
.detail-page-title h2 em{
    font-style: normal;
}
.detail-table table{
    border-spacing: 0;
    width: 100%;
}
.detail-table table tr{
    height: 50px;
}
.detail-table table tr td{
    padding-left: 15px;
    box-sizing: border-box;
    border: 1px solid #ebebeb;
    border-spacing: 0px;
    margin: 0;
    font-size: 0.8rem;
}
.detail-table table tr td:first-child{
   background: #FAFAFA;
   font-weight: 700;
}

/* 通用文章页 */
.article-cont{
    padding: 20px;
    border: 1px solid #d8d8d8;
    margin-bottom: 40px;
}
.article-cont .article-title-box{
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 30px;
}
.article-title-box h1{
    color: #333;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px 0;
}
.article-title-box .article-info{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 20px;
    color: #666;
    font-size: 0.8rem;
}
.article-title-box .article-info em{
    font-style: normal;
    font-size: 0.7rem;
    margin: 0 20px;
    color: #c5c5c5;
}
#zoom{
   
    padding-bottom: 20px;
}
#zoom p{
    font-size: 0.8rem;
    color: #585858;
    line-height: 1.8;
    margin: 10px 0;
    /**text-indent: 2em;*/
}
#zoom img{
    display: block;
    margin: 20px auto !important;
}
#zoom table{
    margin: 0 auto;
}
#zoom h4{
    font-size: 0.8rem;
    margin: 20px 0;
}
#zoom .author{
    margin: 20px 0;
    text-align: right;
    color: #585858;
    font-size: 0.8rem;
}
#zoom .author span{
    margin-left: 20px;
}
#zoom .fj{
    margin-top: 20px;
}
#zoom .fj a{
    display: block;
    line-height: 30px;
    font-size: 0.8rem;
    color: #2c73e6;
}
#zoom .fj a:hover{
    text-decoration: underline;
}
.commond-cont{
    padding-top: 20px;
    border-top: 1px solid #d8d8d8;
}
.commond-cont p{
    font-size: 0.8rem;
    line-height: 2.2;
}

/* 免费申明弹窗 */
.mask{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    display: none;
}
.pop{
    width: 70%;
    height: auto;
    min-height: 500px;
    background: #fff;
    border-radius: 8px;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 999;
    margin-top: -250px;
    margin-left: -35%;
    overflow: hidden;
    display: none;
}
.pop .title{
    width: 100%;
    height: 50px;
    background: #F00E0E;
    text-align: center;
    color: #fff;
    line-height: 50px;
    font-size: 1rem;
}
.pop .btn-close{
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 18px;
}
.affirm-content{
    padding: 20px;
    background: #F9F9F9;
    margin: 20px;
}
.affirm-content p{
    font-size: 0.7rem;
    color: #626262;
    line-height: 2;
}
.affirm-content .belongs{
    font-size: 0.7rem;
    font-weight: 700;
    color: #626262;
}
.affirm-content .check-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 10px;
}
.affirm-content .check-box .check-confirm{
    cursor: pointer;
    display: flex;
    align-items: center;
}
.affirm-content .check-box .check-confirm input{
    width: 14px;
    height: 14px;
    margin: 0;
    margin-right: 5px;
    cursor: pointer;
}
.affirm-content .check-box .check-confirm label{
    font-size: 0.7rem;
}
.pop>input[type=button]{
    padding: 8px 30px;
    font-size: 0.8rem;
    border: none;
    border-radius: 4px;    
    margin: 0 auto;
    display: block;
    color: #8a8b8e;
    margin-bottom: 20px;
}
.pop .selected{
    background: #F00E0E;
    color: #fff !important;
    cursor: pointer;
}

.overhide{
    width: 100%;
    height: 100%;
    overflow: hidden;            
}



@media(max-width:1440px){
    .banner-full .top-mid{width: 90%;margin-left: -45%;}
    .nav-small{width: 90%;margin-left: -45%;}
}
@media(max-width:1024px){
    .detail-table table tr td{
        padding: 20px 10px;
    }
    .nav .nav-cont{flex-wrap: wrap;height: auto;min-height: auto;}    
    .nav .nav-cont a{width: 25%;height: 50px;line-height: 50px;border-right: 1px solid #e44c4c;box-sizing: border-box;border-bottom: 1px solid #e44c4c;}
    .nav a::after{width: 0;}
    .nav span, .nav #btn-to-index{width: 25%;height: 50px;}
    .pop{width: 90%;margin-left: -45%;margin-top: 0;top: 10vh;}
    .affirm-content .check-box{flex-direction: column;align-items: flex-start;}
    .affirm-content .check-box .check-confirm{margin-top: 20px;}
    .pop>input[type=button]{margin-bottom: 20px;}
}

@media(max-width:640px){
    .search{width: 100%;}
    .search .tabs{font-size: 0.8rem;}
    .search .tabs li{margin: 10px 20px;}
    .search .search-box input[type=button]{background-size: 14px;font-size: 0.8rem;padding-left: 20px;width: 70px;background-position: 10px  center;box-sizing: border-box;}
    .search .search-box input[type=text]{width: calc(100% - 90px);padding-left: 5px;}
    .footer .ft-cont .footer-text p{font-size: 0.7rem;line-height: 18px;}
    .footer .ft-cont{height: 140px;}
    .banner-full{height: calc(100vh - 140px);}
    .search .search-box{margin-top: 0;}
    .banner-h400{height: 300px;}
    .uesr-login{height: 60px;}
    .logo{width: 90%;margin-bottom: 30px;}
    .uesr-login a{height: 26px;padding: 0 12px;}
    .uesr-login a img{width: 12px;margin-right: 5px;}
    .user-box img{width: 12px;margin-right: 5px;}
    .common-table01 table tr{height: 40px;}
    .detail-page-title{margin: 5px 0 20px;}
    .detail-page-title h2{font-size: 1rem;}
    .detail-table table tr td{font-size: 0.7rem;padding: 10px;}
    .article-cont{padding: 10px 15px;}
    .article-title-box h1{padding: 10px 0;}
    .article-title-box .article-info{flex-wrap: wrap;justify-content: flex-start;}
    .article-title-box .article-info em{display: none;}
    .article-title-box .article-info span{margin-bottom: 5px;}
    .article-cont .article-title-box{margin-bottom: 20px;}
    #zoom h4{margin: 10px 0;}
    #zoom .fj a{line-height: 20px;}
    .commond-cont{padding-top: 15px;}
    #zoom .author{margin: 10px 0;}
    .nav .nav-cont a{height: 40px;line-height: 40px;font-size: 0.8rem;}
    .back-to-top{width: 36px;height: 36px;line-height: 42px;}
    .back-to-top img{width: 50%;}
}
@media(max-width:420px){
    .pop{top: 5vh;}
    .affirm-content{margin: 15px;padding: 12px;}
}