/**!
 * @Description: 子页公用
 * @Autor: qianyuting
 * @LastEditors: qianyuting
 * @LastEditTime: 2021-12-28
*/

.main-hd{
    height: 290px;
    padding-top: 70px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center top;
}
.main-title{
    height: 147px;
    padding-left: 148px;
    margin-top: 39px;
    box-sizing: border-box;
    background: url("../images/header_icon.png") no-repeat left center;
}
.main-tt{
    font-size: 38px;
    color: #fff;
    font-weight: 600;
}

.main-sub{
    line-height: 26px;
    font-size: 20px;
    color: #adeafe;
}

/* 面包屑 */
.location {
    padding-left: 24px;
    line-height: 20px;
    margin-top: 19px;
    background: url('../images/local.png') no-repeat left center;
}
.location a {
    color: #333;
}
.location span {
    color: #0f60cd;
}
.location i {
    margin: 0 7px;
}

/* 左侧垂直菜单导航 */

.leftnav {
    width: 260px;
    background-color: #fff;
    box-shadow: 0 0 9px #e1e3e8;
    box-sizing: border-box;
}

.wb-tree-node {
    position: relative;
    height: 80px;
    line-height: 80px;
    padding: 0 40px;
    font-size: 20px;
    font-weight: 600;
    border-left: 3px solid #2f62c0;
    background: url("../images/cube_ico.png") 12px center no-repeat;
    border-bottom: 1px solid #e7e8eb;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

.wb-tree-node:after {
    display: none;
    position: absolute;
    top: 50%;
    right: 30px;
    content: "";
    width: 12px;
    height: 6px;
    margin-top: -3px;
    background: url("../images/wblistr.png") center center no-repeat;
    background-size: 100% 100%;
}

.wb-tree-tt {
    color: #404742;
}

.wb-tree-subs {
    display: none;
    padding: 15px 0;
    border-bottom: 1px solid #e7e8eb;
}

.wb-tree-item a {
    position: relative;
    display: block;
    line-height: 50px;
    color: #6c727f;
    font-size: 16px;
    padding: 0 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.wb-tree-item a:hover,
.wb-tree-item.active>a {
    background-color: #e8f4fd;
    color: #1463ce;
}

.wb-tree-items.current .wb-tree-node:after {
    background-image: url("../images/wblistrh.png");
}

.wb-tree-items.current .wb-tree-node,
.wb-tree-node:hover,
.wb-tree-items.current .wb-tree-node .wb-tree-tt,
.wb-tree-node:hover .wb-tree-tt {
    color: #1463ce;
}

.wb-tree-items.current .wb-tree-subs,
.hasChild .wb-tree-node:after {
    display: block;
}

/* 右侧数据 */

.right-wrap {
    width: calc(100% - 280px);
    background-color: #fff;
    box-shadow: 0 0 9px #e1e3e8;
    box-sizing: border-box;
}
/* 20210117 信息列表增加伪类白色背景假装左右对齐*/

.subview {
    position: relative;
}

.leftnav {
    box-shadow: 0 0 0 transparent;
}

.leftnav::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    width: 260px;
    background-color: #fff;
    box-shadow: 0 0 9px #e1e3e8;
    z-index: -1;
}

.right-wrap {
    box-shadow: 0 0 0 transparent;
}

.right-wrap::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    width: calc(100% - 280px);
    background-color: #fff;
    box-shadow: 0 0 9px #e1e3e8;
    z-index: -1;
}