@charset 'UTF-8';

/**!
 * 子页面通用样式
 * author: wangkai;
 * date: 2019-05-15
 * last edit by: qianyuting
 * last edit time: 2021-06-15
 */

/* main */

.ewb-main {
    padding-top: 0;
}

/* 当前位置 */

.ewb-route {
    padding: 13px 0;
    line-height: 24px;
}

.ewb-route p {
    padding-left: 28px;
    color: #666;
    background: url("../images/subPage/route_ico.png") 2px 3px no-repeat;
}

.ewb-route p a {
    color: #666;
}

.ewb-route p span {
    color: #2c7edc;
}

/* 公共框 */

.ewb-box {
    border: 1px solid #e5e5e5;
    background-color: #fff;
}

/* 公共栏目样式 */

.ewb-column {
    position: relative;
    border-top: 1px solid #248be4;
    height: 32px;
}

.ewb-column-line {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    height: 16px;
    background: #fff;
	background: linear-gradient(to right, #f5f8ff, #fff);
	background: -webkit-linear-gradient(left, #f5f8ff, #fff);
	background: -o-linear-gradient(right, #f5f8ff, #fff);
	background: -moz-linear-gradient(right, #f5f8ff, #fff);
}

.ewb-column-tt {
    position: relative;
    z-index: 2;
    float: left;
    padding: 0 18px;
    margin-left: 26px;
    height: 31px;
    line-height: 30px;
    font-size: 16px;
    color: #2c7edc;
}

.ewb-column-tt:first-child {
    margin-left: 0;
}

.ewb-column-tt i {
    position: absolute;
    top: 0;
    right: -26px;
    display: none;
    width: 26px;
    height: 31px;
    background: url("../images/subPage/tt_ico.png") no-repeat;
}

.ewb-column-tt.current {
    color: #fff;
    background: url("../images/subPage/tt_bg.png") no-repeat #2270df;
}

.ewb-column-tt.current i {
    display: block;
}

.ewb-column-more {
    position: relative;
    z-index: 2;
    float: right;
    margin: 5px 18px 0 0;
    height: 26px;
    line-height: 25px;
    color: #999;
}

/* 手机端 */

@media (max-width: 767px) {
    .ewb-column-tt {
        padding: 0 10px;
        margin-left: 0;
    }
    .ewb-column-tt i {
        display: none !important;
    }
    .ewb-column-more {
        margin-right: 5px;
        font-size: 12px;
    }
}

/* 公共列表样式 */

.ewb-list-node {
    padding-left: 14px;
    vertical-align: top;
    background: url("../images/subPage/list_ico.jpg") left center no-repeat;
}

.ewb-list-name {
    float: left;
    max-width: 75%;
    color: #666;
}

.ewb-list-date {
    float: right;
    color: #999;
}

.ewb-list-node:hover .ewb-list-name,
.ewb-list-node:hover .ewb-list-date {
    color: #2c7edc;
}

.ewb-list-more {
    display: none;
    height: 26px;
    line-height: 25px;
    text-align: center;
    color: #999;
}

/* 竖版pad及以下 */

@media (max-width: 979px) {
    .ewb-list-more {
        display: block;
    }
}

/* 手机端 */

@media (max-width: 767px) {
    .ewb-list-name {
        font-size: 13px;
        max-width: 68%;
    }
    .ewb-list-date {
        font-size: 12px;
    }
}

/* 左侧菜单树 */
/* pan */
.ewb-pan{
	max-height: 1000px;
	/* padding-bottom: 400px; */
}

.ewb-pan-hd {
    height: 70px;
    line-height: 70px;
    overflow: hidden;
    background: url("../images/subPage/pan_bg.jpg") left top no-repeat;
    background-size: 100% 100%;
}

.pan-tt {
    padding: 0 20px;
    display: block;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    color: #fff;
    background: url("../images/subPage/pan_ico.png") 95% 80% no-repeat;
}

/* tree */
.wb-tree {
	padding-top: 1px;
	background-color: #eff6ff;
}

.wb-tree-items {
    cursor: pointer;
    border-bottom: 1px solid #e2ecfc;
}

.wb-tree-tt {
    color: #666;
}

.wb-tree-node{
    position: relative;
    display: block;
    height: 60px;
    line-height: 60px;
    padding: 0 28px 0 20px;
    font-size: 16px;
    color: #666;
    background-color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hasChild .wb-tree-node:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 28px;
    height: 60px;
    background: url("../images/subPage/tree_arrow_down.png") left center no-repeat;
}

.wb-tree-sub {
    display: none;
    margin: 6px 0;
}

.wb-tree-item {
    position: relative;
}

.wb-tree-item:before {
    content: "";
    position: absolute;
    left: 27px;
    top: 15px;
    height: 100%;
    border-left: 1px dashed #b9cde4;
}

.wb-tree-item:last-child:before {
    display: none;
}

.wb-tree-item>a {
    position: relative;
	padding: 7px 20px 7px 20px;
    display: block;
	line-height: 24px;
	color: #666;
    border-left: 3px solid transparent;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.wb-tree-item:first-child>a:before {
    top: 50%;
}

.wb-tree-item:last-child>a:before {
    bottom: 50%;
}

.tree-sublk{
    position: relative;
	padding-left: 18px;
	background: url("../images/subPage/pan_list.png") left center no-repeat;
}

.wb-tree-thrs {
    display: none;
    padding: 6px 20px 6px 41px;
}

.wb-tree-thr-item {
    height: 30px;
    line-height: 30px;
    margin-bottom: 6px;
}

.wb-tree-thr-item:last-child {
    margin-bottom: 0;
}

.wb-tree-thr-item>a {
    position: relative;
    display: block;
    padding-left: 18px;
    color: #999;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.wb-tree-thr-item>a:before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: 3px;
    height: 3px;
    margin-top: -1.5px;
    background-color: #999;
    border-radius: 50%;
}

.wb-tree-item>a:hover,
.wb-tree-item.current>a,
.wb-tree-thr-item>a:hover,
.wb-tree-thr-item.current>a {
    color: #2d7eda;
    border-left-color: #2d7eda;
}
.wb-tree-item2.current>a {
    color: #2d7eda;
	border-left-color: #eff6ff;
   
}
.wb-tree-item2{
	height: 30px;
    line-height: 30px
}


.wb-tree-item2>a {
    position: relative;
    display: block;
    padding-left: 18px;
    color: #999;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



.wb-tree-item>a:hover .tree-sublk,
.wb-tree-item2.current>a .tree-sublk {
	background-image: url("../images/subPage/pan_listh.png");
}

.current .wb-tree-node,
.wb-tree-node:hover {
    background: url("../images/subPage/pan_s03.jpg") left top no-repeat #0259d2;
    background-size: 100% 100%;
}

.wb-tree-node:hover:after,
.current .wb-tree-node:after {
    background-image: url("../images//subPage/tree_arrow_up.png");
}

.wb-tree-thr-item>a:hover:before,
.wb-tree-thr-item.current>a:before {
    background-color: #2d7eda;
}

.current .wb-tree-sub,
.current>.wb-tree-thrs {
    display: block;
}

.current .wb-tree-tt,
.wb-tree-node:hover .wb-tree-tt {
    color: #fff;
}

/* 竖版pad及以下 */

@media (max-width: 979px) {
	.ewb-pan{
		max-height: inherit;
		padding-bottom: 10px;
	}
}

/* 手机端 */

@media (max-width: 767px) {
    .ewb-pan-hd {
        height: 66px;
        line-height: 65px;
    }

    .pan-tt {
        font-size: 18px;
        height: 66px;
        line-height: 65px;
    }
}