﻿.breadcrumb{
    margin: 0 0 20px;
}
.breadcrumb .breadcrumb-item{
    color: #676767;
    font-size: 14px;
    transition: all .2s;
}
.breadcrumb .breadcrumb-item:not(:last-child):hover{
    color: #3b95ad;
}
.breadcrumb .breadcrumb-item:not(:last-child)::after{
    content: " >";
    color: #848484;
}
.breadcrumb .breadcrumb-item:last-child{
    color: #ed475b;
}

.dynamics{
    display: flex;
    align-items: flex-start;
}

.dynamics .child:first-child{
    flex: 0 0 260px;
    margin-right: 5%;
}
.dynamics .child:last-child{
    flex: 1;
}
.menus{
    position: relative;
    width: 100%;
}

.menus .menus-left-border{
    position: relative;
    height: 86px;
    background-color: #01cfff;
    color: #ffffff;
    padding: 23px 35px;
    box-sizing: border-box;
    vertical-align: top;
}

.menus .menus-left-border span{
    font-size: 22px;
}

.menus .menus-left-border .hndx-logo{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 72px;
    height: 66px;
    background-image: url(../Images/list/menu-right.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.menus .menu-img img{
    display: block;
    width: 100%;
}
.menus-list{
    display: block;
    width: 100%;
    border: 1px solid #ececec;
    box-sizing: border-box;
    border-top-width: 0;
}
.menus-item{
    position: relative;
    display: block;
    border-top: 1px solid #ececec;
    height: 40px;
    line-height: 40px;
    padding-left: 30px;
    color: #333333;
    cursor: pointer;
    transition: all .2s;
}
.menus-item span{
    font-size: 15px;
}
.menus-item span::after{
    position: absolute;
    display: inline-block;
    top: 14px;
    right: 10px;
    content: " ";
    background-image: url(../Images/list/icon-right.png);
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    vertical-align: middle;
    transition: all .2s;
}
.menus-item:hover span::after{
    background-image: url(../Images/list/icon-right-active.png);
}
.menus-list .menus-item.actived span::after{
    transform: rotate(90deg);
    right: 13px;
}

.menus-list .menus-item.actived,
.menu-sub-list .menu-sub-item:hover,
.menus-item:hover{
    background-color: #f2f2f2;
    color: #f0475e;
    box-shadow:0px 5px 5px #e7e7e7;
}
.menus-item:active{
    background-color: #e6e5e5;
}

.menu-sub-list{
    display: none;
}
.menu-sub-list .menu-sub-item{
    border-top: 1px solid #ececec;
    height: 40px;
    padding-left: 45px;
    line-height: 40px;
    cursor: pointer;
    display: block;
    color: #333333;
    font-size: 15px;
    transition: all .2s;
}

.article-list{
    position: relative;
    margin-top: 20px;
    height: 100%;
    padding: 0 0 20px;
}
.article-list.list{
    margin-top: 0;
}

.article-list .article-title{
    padding-bottom: 10px;
    width: 100%;
    font-size: 22px;
    color: #333333;
    text-align: center;
    line-height: 35px;
    min-height: 35px;
}

.article-list .article-subTitle{
    text-align: center;
    margin-bottom: 25px;
}
.article-list .article-subTitle span{
    font-size: 14px;
    color: #8f8f8f;
}
.article-list .article-subTitle .timer,
.article-list .article-subTitle .number{
    display: inline-block;
}
.article-list .article-subTitle .number{
    margin-left: 20px;
}
.article-list .article-subTitle .timer::before,
.article-list .article-subTitle .number::before{
    position: relative;
    top: -1px;
    margin-right: 3px;
    display: inline-block;
    content: " ";
    height: 16px;
    width: 16px;
    background-repeat: no-repeat;
    background-image: url(../Images/list/icon-timer.png);
    vertical-align: middle;
}
.article-list .article-subTitle .number::before{
    width: 20px;
    background-image: url(../Images/list/count.png);
}

.article-list .article-item{
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    padding: 20px 15px;
    border-bottom: 1px solid #ededed;
    transition: all .2s;
}
.article-list .article-item:hover{
    background-color: #f4f4f4;
}
.article-list .article-item .title{
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 25px;
    box-sizing: border-box;
}

.article-list .article-item .timer{
    font-size: 14px;
    color: #707070;
    margin: 5px 0;
}
.article-list .article-item .timer::before{
    position: relative;
    top: -1px;
    vertical-align: middle;
    margin-right: 5px;
    content: " ";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../Images/list/icon-timer.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.article-list .article-item .item-con{
    font-size: 12px;
    color: #707070;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
    box-sizing: border-box;
}
.article-list .article-item .item-img{
    flex: 0 0 165px;
    margin-left: 15px;
}
.article-list .article-item .item-img img{
    width: 100%;
}

.article-list .article-detail{
    padding: 25px 0;
    color: #4c4c4c !important;
    border-top: 1px solid #eaeaea;
}

.pagination{
    text-align: center;
}
.pagination table{
    margin: 0 auto;
}
.pagination .item{
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
}
.pagination .item span{
    font-size: 14px;
}
.pagination .item.input input,
.pagination .item.btn{
    border: 1px solid #e5e5e5;
    color: #000;
    height: 30px;
    line-height: 1.9;
    width: 50px;
    transition: all .1s;
}
.pagination .item.input input{
    margin-right: 5px;
    box-sizing: border-box;
    text-align: center;
}
.pagination .item:nth-child(7){
    margin-left: 10px;
}

.pagination .item.btn:hover{
    background-color: #ee4860;
    border-color: #ee4860;
    color: #ffffff;
}
.pagination .item.btn:active{
    background-color: #ba0001;
    border-color: #ba0001;
}


.article-footer{
    margin-top: 40px;
    background-color: #f2f2f2;
    padding: 30px;
}
.article-footer .other{
    margin-bottom: 20px;
}
.article-footer .other a,
.article-footer .other span{
    font-size: 14px;
}
.article-footer .other a{
    font-weight: bold;
}

.article-footer a.last,
.article-footer a.next{
    display: block;
    font-size: 15px;
    color: #666666;
    transition: all .2s;
}

.article-footer a.last:hover,
.article-footer a.next:hover{
    color: #ee4860;
}
.article-footer a.last:active,
.article-footer a.next:active{
    color: #ba0001;
}
.article-footer a.last{
    margin-bottom: 20px;
}
.article-footer .last::before{
    content: "上一篇 : ";
}
.article-footer .next::before{
    content: "下一篇 : ";
}

.service-list .service-title{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}
.service-list .service-title img{
    width: 22px;
    margin-right: 5px;
}
.service-list .service-title span{
    font-size: 18px;
}
.service-list .service-items{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 15px 0;
    flex-wrap: wrap;
}

.service-items .item{
    width: calc(20% - 12px);
    padding: 25px 10px;
    height: 145px;
    margin-bottom: 15px;
    background-color: #f4f4f4;
    text-align: center;
    margin-right: 15px;
    box-sizing: border-box;
    transition: background-color .2s, box-shadow .2s;
}
.service-items .item:nth-child(5n){
    margin-right: 0;
}
.service-items .item:hover{
    background-color: #3b95ad;
    box-shadow:0px 0px 10px #bbb;
}
.service-items .item:active{
    background-color: #006a82;
}
.service-items .item-img{
    display: inline-block;
    width: 55px;
    height: 55px;
    border: 1px solid #3b95ad;
    border-radius: 30px;
    line-height: 4.2;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: background-color .2s;
}
.service-items .item:hover .item-img{
    background-color: #fff;
}
.service-items .item:hover .item-name{
    color: #fff;
}
.service-items .item-img img{
    width: 25px;
    user-select: none;
    pointer-events: none;
}

.service-items .item-name{
    color: #000;
    transition: color .2s;
    line-height: 1.1;
}

.head-menus,
.list-title,
.m-pagination{
    display: none;
}