/**reset**/

html {
    overflow-x: auto;
    overflow-y: scroll;
}

body, dl, dt, dd, ul, ol, li, pre, form, fieldset, input, p, blockquote, th, td {
    font-weight: 400;
    margin: 0;
    padding: 0;
    outline: none;
}

h1, h2, h3, h4, h4, h5 {
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFFFFF;
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
    /*padding: 0 10px;*/
    text-align: left;
}

select {
    font-size: 12px;
}

table {
    border-collapse: collapse;
}

fieldset, img {
    border: 0 none;
}

fieldset {
    margin: 0;
    padding: 0;
}

fieldset p {
    margin: 0;
    padding: 0 0 0 8px;
}

legend {
    display: none;
}

address, caption, em, strong, th, i {
    font-style: normal;
    font-weight: 400;
}

table caption {
    margin-left: -1px;
}

hr {
    border-bottom: 1px solid #FFFFFF;
    border-top: 1px solid #E4E4E4;
    border-width: 1px 0;
    clear: both;
    height: 2px;
    margin: 5px 0;
    overflow: hidden;
}

ol, ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}

caption, th {
    text-align: left;
}

q:before, q:after, blockquote:before, blockquote:after {
    content: ””;
}

@media only screen and (min-width: 414px){
    html {
        font-size: 100.4px!important;
    }
}

body {
    overflow: auto;
    box-sizing: border-box;
}

/**flex-box**/

.flex-box {
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    justify-items: center;
    text-align: center;
    padding: .15rem 0;
}

/**topbar**/
.return-box{
    position: relative;
    height: .44rem;
    line-height: .44rem;
    font-size: 17px;
    text-align: center;
}
.top-bar {
    box-sizing: border-box;
    padding: 0 .14rem .05rem .14rem;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/**搜索**/

.search-box {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: #eee;
    border-radius: 2px;
    height: .36rem;
    font-size: 15px;
    margin-top: .1rem;
}
@media only screen and (min-width: 414px){
    .search-box {
        height: .45rem;
    }
}
.search-txt{
    border:0;
    background: #eee;
    font-size: 15px;
}
input[type="search"]::-webkit-search-cancel-button{
    display: none;
    -webkit-appearance: none;
}
.search-box span img{
    width: .18rem;
    height: .18rem;
    margin: 0 .15rem;
    vertical-align: sub;
}

.search-box input {
    flex: 1;
}

/**return**/
.return-box{
    position: relative;
    text-align: center;
}
.return-arrow{
    width: .18rem;
    height: .18rem;
    vertical-align: middle;
}
.return-box span{
    position: absolute;
    top: 0;
    height: .44rem;
    line-height: .44rem;
    font-size: 16px;
}
.return-l{
    top: -0.02rem;
    left: 0;
}
.return-r{
    right: 0;
}
.return-r img{
    width: .15rem;
    height: .15rem;
}
.return-box .read-box{
    position: absolute;
    top: .02rem;
    right: 0;
    font-size: 13px;
}

/**content**/

.content-box {
    position: relative;
    box-sizing: border-box;
    padding: .02rem .15rem .15rem ;
    /*min-height: 100vh;*/
}

.detail-content-box{
    padding-top: 1.24rem;
    height: 100vh;
    overflow: auto;
}

/**menu**/

.menu {
    display: flex;
    box-sizing: border-box;
    justify-content: flex-start;
    /*flex-wrap: wrap;*/
    /* margin-top: .12rem; */
}

.menu span {
    font-size: 15px;
    padding: 5px 11px;
    color: #666;
    background-color: #F0F0F0;
    border-radius: 3px;
    margin-right: .1rem;
}

.menu span.current {
    background-color: #D43D3E;
    color: #fff;
}

/**card**/

.card-box {
    box-sizing: border-box;
    padding:.14rem 0;
    border-bottom: 1px solid #efefef;
    border-radius: .04rem;
}

.card-box.isread {
    color: #666;
}
.card-box .img {
    width: 100%;
    height: 144px;
    background: #53acf6;
    
}
.card-box .img img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.card-box p {
    font-size: .17rem;
    max-height: .48rem;
    padding-top: 1px;
    /* margin-top: .1rem; */
    overflow:hidden; /*超出的部分隐藏起来。*/ 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.card-box .info {
    display: flex;
    justify-content: space-between;
    color: #929292;
    margin-top: 8px;
}

.card-box .img-box {
    display: flex;
    justify-content: space-between;
}

.card-box .img-box .thr-img {
    width: 1.12rem;
    background: #53acf6;
    height: .76rem;
    margin-right: 0.1rem;
}
.card-box .img-box .thr-img:last-child {
    margin-right: 0;
}
.card-box .img-box .thr-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.card-box-lr {
    display: flex;
    justify-content: space-between;
}

.card-box-lr .txt-box {
    flex: 1;
    margin-right: .12rem;
}
.card-box-lr .txt-box p{
    /*width: 2.25rem;*/
}
.card-box-lr .img {
    width: 1.2rem;
    height: .84rem;
}

.card-box-lr .info {
    margin-top: .17rem
}

.card-box .img-box{
    margin-top: .1rem;
}
.read-box{
    font-size: 13px;
    color: #D43D3E;
}
.read-img{
    box-sizing: border-box;
    width: .15rem;
    height: .15rem;
    margin-right: 4px;
    vertical-align: middle;
    margin-top: -4px;
}
.card-box span.time{
    margin-right: .26rem;
}
.card-box-lr span.form{
    max-width: 0.6rem;
}
.message-box{
    position: relative;
    padding-left: .18rem; 
}
.message-icon{
    position: absolute;
    left: 0;
    bottom: 0;
    width: .15rem;
    height: .15rem;
    margin-right: .1rem;
}

/**文章详情**/

.detail-block {
    background: #fff;
}

.detail-title {
    font-size: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-weight:500;
    color: #000000;
}

.detail-desc {
    font-size: 13px;
    color: #666;
    padding: 0.1rem 0;
}

.detail-content {
    font-size: 16px;
    color: #222222;
}

/**文章详情顶部**/

.detail-topbar {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: .14rem;
    font-size: 17px;
    z-index: 10;
}

/**文章详情底部**/

.detail-tabbar {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: .15rem .15rem .35rem .15rem;
    border-top:1px solid #f5f5f5;
}

.detail-tabbar .txt {
    display: inline-block;
    box-sizing: border-box;
    padding: .05rem .1rem;
    background: #EFEFF0;
    border-radius: 2px;
    border: 0;
    width: 1.8rem;
    color: #666666;
    font-size: 14px;
}

.view-box {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.view-opt {
    width: .22rem;
    height: .22rem;
    position: relative;
    margin-left: .2rem;
}

.view-opt img {
    width: 100%;
}

.view-opt span.tip {
    position: absolute;
    right: -7px;
    top: -9px;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 0 4px;
    border-radius: .15rem;
}

/**tabbar**/

.tab-bar {
    box-sizing: border-box;
    padding: 0.1rem;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #fff;
    box-shadow: 0 0 3px #ddd;
    z-index: 10;
}

.tab-bar ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.tab-bar ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-size: 12px;
    width: 25%;
}

.tab-bar ul li img {
    width: .22rem;
    height: .22rem;
}

.tab-bar ul li span {
    display: inline-block;
    margin-top: 0.05rem;
    color: #929292;
}
.tab-bar ul li.current span {
    color: #D43D3E;
}


/**表单样式**/
.form-list-box{
    background: #fff;
    margin-bottom: 80px;
}
.form-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    height: .52rem;
    padding: 0 .15rem;
    border-bottom: 1px solid #ddd;
    color: #2F2F4D;
    font-size: 16px;
}

.form-list input, .form-list select {
    box-sizing: border-box;
    border: 0;
    height: .33rem;
    text-align: right;
    padding: 0 .15rem;
    background: #fff;
    /*width: 1.5rem;*/
    /* direction: rtl; */
    color: #2F2F4D;
    font-size: 16px;
}
.form-list img{
    width: .08rem;
    height: .12rem;
    vertical-align: middle;
}
.form-col{
    display: flex;
    align-items: center;
}

.applying-box .form-col span:nth-child(1){
    box-sizing: border-box;
    border: 0;
    text-align: right;
    padding: 0 .15rem;
    background: #fff;
    width: 1.5rem;
}
.sign-img{
    box-sizing: border-box;
    border: 0;
    height: .33rem;
    text-align: right;
    padding: 0 .15rem;
    width: 1.5rem;
}
/**插件修改**/

/**地区**/

.picker-items {
    font-size: .13rem;
}

.picker-modal .bar .title, .bar .button-link {
    font-size: .13rem;
}

.bar .button-link {
    top: 0;
    padding: 0;
    line-height: .4rem;
    height: .4rem;
    color: #0894ec;
    border: 0;
}

.bar {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 10;
    height: .4rem;
    padding-right: .15rem;
    padding-left: .15rem;
    background-color: #f7f7f4;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.picker-modal .bar .title {
    line-height: .2rem;
}

/**日历**/

.picker-modal .toolbar-inner {
    height: .55rem;
}

.picker-calendar-month-picker, .picker-calendar-year-picker {
    height: .55rem;
}

.picker-calendar-month-picker a.icon-only, .picker-calendar-year-picker a.icon-only {
    height: .55rem;
    line-height: .5rem;
}

.picker-calendar-month-picker .current-month-value, .picker-calendar-month-picker .current-year-value, .picker-calendar-year-picker .current-month-value, .picker-calendar-year-picker .current-year-value {
    height: .55rem;
}

.icon-next, .icon-prev {
    width: .18rem;
    height: .18rem;
}

.picker-calendar-month-picker, .picker-calendar-year-picker {
    line-height: .55rem;
}

.picker-modal .toolbar+.picker-modal-inner {
    height: -webkit-calc(100% - .55rem);
    height: calc(100% - .55rem);
}

/**省市区**/
.select-adress-title{
    text-align: center;
    font-size: 14px;
    line-height: .4rem;
    text-indent: .8rem;
    font-weight: 400;
}
.picker-columns {
    height: 3.75rem;
}

.picker-modal {
    height: 3.75rem;
}

.bar+.picker-items {
    height: 2.7rem;
}

/**生活详情**/

.sub-box {
    position: absolute;
    width: 100%;
    bottom: .15rem;
    left: 0;
    padding: 0 .15rem;
}

.sub-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #F95355;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    border: 0;
    height: 44px;
    line-height: 44px;
}

.sub-btn:active,.sub-btn:focus {
    background: rgb(249, 83, 85);
    border-color: rgb(249, 83, 85);
}
.save-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #fbacae;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    border: 0;
    height: 44px;
    line-height: 44px;
}

.save-btn:active,.save-btn:focus {
    background: rgb(249, 83, 85);
    border-color: rgb(249, 83, 85);
}

/**申请审批**/
.apply-info{
    padding:.14rem;
}
.apply-tips {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    padding: .02rem .04rem;
    background: #3B91F6;
    border-radius: 3px;
    box-sizing: border-box;
    margin-right: .14rem;
}

.sp-line{
    margin: .2rem 0;
    height: .12rem;
    background: #F8F9FA;
}
.form-list img.sign-img{
    height: .33rem;
    width: 1.5rem;
}

.mine-info-box{
    margin-top: .14rem; 
    padding: 0 .14rem;
    background: #fff;
}
/**组件添加**/
.sub-btn-box {
    position: absolute;
    bottom: .14rem;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}
.menu-box {
    width: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 10;
}
.menu-box .menu {
    white-space: nowrap;
    padding: .1rem 0;
}

.nav-scoll {
    overflow-x: auto;
}

.van-list{
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    padding-bottom: 1.4rem;
}
.van-list__error-text, .van-list__finished-text, .van-list__loading {
    line-height: 78px !important;
}
.list-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 15px 25px;
    box-sizing: border-box;
    background-color: #F7F7F7;
}
.list-footer .van-button--large{
    width: 100%;
    height: 44px;
    line-height: 44px;
    border-radius: 4px;
}
.btn-red{
    background-color: #F95355!important;
    border-radius: 4px!important;
}
.no-data{
    font-size:15px;
    color:#888888;
    text-align: center;
}
.no-data img{
    width: 50%;
    margin: 40px auto 20px;
}
.banner-load{
    height: 2.54rem;
    width: 100%;
    /*background: url(../img/banner-loading-1.png) no-repeat top center;*/
    background-size: contain;
    position: relative;
}
.banner-load-title{
    display: none;
    position: absolute;
    height: 44px;
    line-height: 44px;
    background: #f8f8f8;
    font-size: 16px;
    color: #222222;
    padding: 0 0.14rem;
    width: 100%;
    bottom: 0;
    left: 0;
}