/**!
 * Ã©Ââ€™Ã¦ÂµÂ·Ã¥â€¦Â¬Ã¥â€¦Â±Ã¨Âµâ€žÃ¦ÂºÂÃ¤ÂºÂ¤Ã¦Ëœâ€œÃ¤Â¸Â­Ã¥Â¿Æ’
 * date:2021-04-13
 * author: gaoli;
 */


/* Ã¥Â·Â¦Ã¤Â¾Â§Ã¦Â â€˜ */

.content-wrap {
    position: relative;
}

.tree {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    box-sizing: border-box;
    width: 260px;
    padding: 0 25px 20px;
    background-color: #f0f2f3;
    overflow: auto;
}

.wb-tree-items {
    margin-top: 40px;
}

.wb-tree-node {
    position: relative;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    padding-left: 65px;
    padding-right: 40px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    background-color: #7497dc;
    background-image: linear-gradient(to right, #7497dc, #9dbefc);
    cursor: pointer;
}

.wb-tree-node:before {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: center;
}

.wb-tree-items:nth-child(1) .wb-tree-node:before {
    background-image: url("../images/tree_ico1h.png");
}

.wb-tree-items:nth-child(2) .wb-tree-node:before {
    background-image: url("../images/tree_ico2h.png");
}

.wb-tree-items:nth-child(3) .wb-tree-node:before {
    background-image: url("../images/tree_ico3h.png");
}

.wb-tree-items:nth-child(4) .wb-tree-node:before {
    background-image: url("../images/tree_ico5h.png");
}

.wb-tree-items:nth-child(5) .wb-tree-node:before {
    background-image: url("../images/tree_ico6h.png");
}

.wb-tree-items:nth-child(6) .wb-tree-node:before {
    background-image: url("../images/tree_ico6h.png");
}

.wb-tree-tt {
    display: block;
    color: #333;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
   /* white-space: nowrap; */
}

.wb-tree-node .wb-tree-tt {
    color: #fff;
}

.wb-tree-sub a {
    position: relative;
    display: block;
    height: 46px;
    line-height: 46px;
    color: #333;
    padding-left: 60px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
}
.wb-tree-item.current>a {
    color: #ffda8a !important;
}

.wb-tree-sub a:hover {
    color: #3078e1;
}

.wb-tree-sub a:before {
    position: absolute;
    content: "";
    left: 45px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: #999;
}

.wb-tree-sub a:hover:before {
    background-color: #3078e1;
}

.wb-tree-iconr {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 15px;
    height: 5px;
    transform: translateY(-50%);
    background: url("../images/tree_up.png") no-repeat;
}

.wb-tree-sub {
    display: none;
}

.current .wb-tree-tt {
    color: #fff;
}

.current .wb-tree-node,
.wb-tree-node:hover {
    background-color: #ffa31f;
    background-image: none;
}

.current .wb-tree-iconr {
    background-image: url("../images/tree_down.png");
}

.current .wb-tree-sub {
    display: block;
    padding-top: 10px;
}


/* Ã¥ÂÂ³Ã¤Â¾Â§ */

.content {
    margin-left: 285px;
    font-size: 16px;
    min-height: 966px;
}

.choose-wrap {
    box-sizing: border-box;
    padding: 0 20px 13px;
    background-color: #f0f2f3;
}

.choose-block {
    padding: 10px 0;
    overflow: hidden;
}

.choose-block+.choose-block {
    border-top: 1px dashed #c6d3e3;
}

.choose-tt {
    width: 115px;
    line-height: 28px;
    text-align: right;
    margin-top: 15px;
}

.choose-items {
    margin-left: 108px;
}

.choose-item {
    height: 28px;
    line-height: 28px;
    padding: 0 15px;
    color: #546880;
    margin-top: 15px;
    margin-right: 15px;
    cursor: pointer;
}

.choose-item.active {
    color: #fff;
    border-radius: 25px;
    background-color: #7497dc;
    background-image: linear-gradient(to right, #7497dc, #9dbdfb);
}


/* Ã¦ÂÅ“Ã§Â´Â¢Ã¦Â¡â€  */

.search {
    position: relative;
    box-sizing: border-box;
    width: 360px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding-right: 70px;
    margin: 30px 0 0 auto;
}

.choose-search {
    width: 100%;
    height: 34px;
    font-size: 14px;
}

.choose-search .input-placeholder {
    position: absolute;
    left: 20px;
    cursor: text;
    line-height: 34px;
    color: #aaa;
}

.choose-search .input-box {
    box-sizing: border-box;
    color: #333;
    width: 100%;
	height: 34px;
    line-height: 34px;
    background: 0 0;
    padding: 0 20px;
}

.search-btn {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    width: 70px;
    border-radius: 25px;
    color: #fff;
    background-color: #7497dc;
    background-image: linear-gradient(to right, #7497dc, #9dbdfb);
    cursor: pointer;
}


/* Ã¦â€¢Â°Ã¦ÂÂ®Ã¨Â¡Â¨Ã¦Â Â¼ */

.table-list {
    width: 100%;
    table-layout: fixed;
    margin-top: 20px;
    border-collapse: collapse;
}

.table-list tr th {
    box-sizing: border-box;
    height: 38px;
    padding: 10px;
    color: #6e7d90;
    text-align: center;
    background-color: #eff4fa;
}

.th1 {
    width: 55px;
}

.th2 {
    width: 360px;
}

.th3 {
    width: 220px;
}

.th4 {
    width: 132px;
}

.table-list tr td {
    box-sizing: border-box;
    padding: 0 10px;
    height: 60px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.table-list tr td>a {
    color: #333;
}

.table-list tr .text-left {
    text-align: left;
}

.table-list tr:hover {
    background-color: #e3eaf5;
}

.search-ico {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("../images/search_btn.png") no-repeat;
    vertical-align: middle;
}


/* Ã¥Ë†â€ Ã©Â¡Âµ */

.pager {
    margin-top: 25px;
}

.m-pagination-page>li>a,
.m-pagination-size>select,
.m-pagination-group>input,
.m-pagination-group>button {
    border-radius: 4px;
}

.m-pagination-page>li.active>a {
    color: #377ee3;
    background-color: #fff;
    border-color: #377ee3;
    font-weight: normal;
}

.m-pagination-group>input {
    border-radius: 4px 0 0 4px;
}

.m-pagination-group>button {
    border-radius: 0 4px 4px 0;
}


/* 2021-09-04 zsy*/

.tree {
    background-color: #438aed;
    background-image: linear-gradient(to bottom, #438aed, #71b5fa);
    z-index: 0;
}

.tree:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 542px;
    background: url("../images/sub_slidebg.png") no-repeat;
    z-index: -1;
}

.wb-tree-node {
    border: 1px solid #fff;
    box-sizing: border-box;
    box-shadow: none;
    background: none;
}

.current .wb-tree-node,
.wb-tree-node:hover {
    box-shadow: 0px 4px 20px 0px rgba(9, 20, 72, 0.09);
    background: #fff;
}

.current .wb-tree-tt,
.wb-tree-node:hover .wb-tree-tt {
    color: #377ee3;
    font-weight: 600;
}

.wb-tree-items:nth-child(1).current .wb-tree-node:before,
.wb-tree-items:nth-child(1):hover .wb-tree-node:before {
    background-image: url("../images/tree_ico1.png");
}

.wb-tree-items:nth-child(2).current .wb-tree-node:before,
.wb-tree-items:nth-child(2):hover .wb-tree-node:before {
    background-image: url("../images/tree_ico2.png");
}

.wb-tree-items:nth-child(3).current .wb-tree-node:before,
.wb-tree-items:nth-child(3):hover .wb-tree-node:before {
    background-image: url("../images/tree_ico3.png");
}

.wb-tree-items:nth-child(4).current .wb-tree-node:before,
.wb-tree-items:nth-child(4):hover .wb-tree-node:before {
    background-image: url("../images/tree_ico5.png");
}

.wb-tree-items:nth-child(5).current .wb-tree-node:before,
.wb-tree-items:nth-child(5):hover .wb-tree-node:before {
    background-image: url("../images/tree_ico5.png");
}

.wb-tree-items:nth-child(6).current .wb-tree-node:before,
.wb-tree-items:nth-child(6):hover .wb-tree-node:before {
    background-image: url("../images/tree_ico6.png");
}

.wb-tree-sub a {
    display: inline-block;
    color: #fff;
}

.wb-tree-sub a:hover {
    color: #ffda8a;
    font-weight: 600;
}

.wb-tree-sub a:before {
    background-color: #fff;
}

.wb-tree-sub a:hover:before {
    background-color: #ffda8a;
}


/* 2021-09-29 zsy */

.choose-tt {
    width: auto;
    text-align: left;
}

.choose-item {
    height: 30px;
    border: 1px solid #eef2f8;
    box-sizing: border-box;
}

.choose-item.active {
    border-color: #fff;
    box-shadow: 0px 3px 13px 0px rgba(251, 171, 127, 0.47);
    background-color: #fba980;
    background-image: linear-gradient(to bottom, #fba980, #f6ca6c);
}

.choose-block:nth-child(1) .choose-items {
    margin-left: 48px;
}

.choose-block:nth-child(2) .choose-items {
    margin-left: 112px;
}

.search {
    border-radius: 4px;
}

.search-btn {
    top: -2px;
    bottom: -2px;
    width: 75px;
    border-radius: 4px;
    border: 1px solid #fff;
    box-shadow: 0px 3px 13px 0px rgba(251, 171, 127, 0.47);
    background-color: #fba980;
    background-image: linear-gradient(to bottom, #fba980, #f6ca6c);
}

.table-list tr:hover {
    background-color: #faf8f3;
}

.table-list tr:hover td,
.table-list tr:hover td a {
    color: #ffb22b;
}

.table-list tr:hover .search-ico {
    background-image: url("../images/search_btnh.png");
}

em{
	font-style: normal !important;
}