@import "/platform/styles/yzy/main.css";

html, body {
    color: #262626;;
}

#top {
    width: 100%;
    height: 70px;
    background-color: #4f77aa;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.02);
}

#logo {
    float: left;
    margin-left: 20px;
    line-height: 70px;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    background: url("logo.png") no-repeat 0 16px;
    padding-left: 79px;
}

#top_search {
    float: right;
    margin-right: 18px;
    margin-left: 40px;
    padding-top: 20px;
}

#top_search input {
    width: 180px;
    height: 30px;
    line-height: 30px;
    outline: none;
    border: none;
    background: #4a70a0 url("main/search.png") no-repeat 9px 7px;
    border-radius: 4px;
    padding-left: 34px;
    font-size: 14px;
    color: #ffffff;
}

#top_search input::placeholder {
    color: #e3e7ee;
}

#top_search input::-moz-placeholder {
    color: #e3e7ee;
}

#top_search input::-webkit-input-placeholder {
    color: #e3e7ee;
}

#top_search input:-ms-input-placeholder {
    color: #e3e7ee;
}

#user_icon {
    float: right;
    margin-top: 24px;
    width: 23px;
    height: 22px;
    background: url("main/user.png");
    cursor: pointer;
    margin-right: 15px;
}

#user_info {
    width: 328px;
    height: 170px;
    position: absolute;
    top: 63px;
    right: 55px;
    background-color: #ffffff;
    box-shadow: 0 8px 32px 0 rgba(27, 33, 45, 0.14);
    z-index: 200;
}

#user_info:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    position: absolute;
    right: 4px;
    top: -8px;
}

#user_info .username {
    font-size: 24px;
    color: #262626;
    height: 65px;
    line-height: 65px;
    padding: 0 24px;
}

#user_info .deptname {
    height: 36px;
    line-height: 34px;
    color: #8c8c8c;
    font-size: 14px;
    padding: 0 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#user_info .user_buttons {
    height: 68px;
    border-top: 1px solid #e6e6e6;
    padding: 15px 0;
    text-align: center;
}

#user_info .user_buttons button {
    padding: 0 12px;
    height: 36px;
    cursor: pointer;
    background: #ffffff;
    border-radius: 2px;
    border: solid 1px #d9d9d9;
    outline: none;
    font-size: 14px;
    color: #262626;
    margin-right: 5px;
}

#user_info .user_buttons button:hover {
    color: #ffffff;
    background: #2170d9;
    border: 1px solid #2170d9;
}

#top_menus {
    float: right;
    width: calc(100% - 790px);
}

#top_menus_list {
    float: right;
    height: 70px;
    position: relative;
}

#top_menus ul {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    background-color: #4f77aa;
    z-index: 100;
    overflow: hidden;
    height: 70px;
}

#top_menus ul.expanded {
    height: auto;

}

#top_menus li {
    float: left;
    height: 32px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding-top: 38px;
    background-repeat: no-repeat;
    background-position: center 12px;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 15px;
    width: 80px;
}

#top_menus li span {
    opacity: 0.8;
}

#top_menus li.active {
    background-color: #476b99;
}

#top_menus li:hover {
    background-color: #476b99;
}

#top_menus li:hover span {
    opacity: 1;
}

#top_menus li.active span {
    opacity: 1;
}

#top_menus li.top_menu_new{
    position: relative;
}

#top_menus li.top_menu_new:after {
    content: '';
    position: absolute;
    right: 35px;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: #dc4040;
    border-radius: 50%;
}

#top_menus #top_menus_more.top_menu_new{
    position: relative;
}

#top_menus #top_menus_more.top_menu_new:after {
    content: '';
    position: absolute;
    right: 15px;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: #dc4040;
    border-radius: 50%;
}

#top_menus li.home {
    background-image: url("main/home.png");
}

#top_menus #top_menus_more {
    float: right;
    height: 32px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding-top: 38px;
    background: url("main/more.png") no-repeat center 12px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
}

#top_menus #top_menus_more span {
    opacity: 0.8;
}

#top_menus #top_menus_more.active {
    background-color: #476b99;
}

#top_menus #top_menus_more:hover {
    background-color: #476b99;
}

#top_menus #top_menus_more:hover span {
    opacity: 1;
}

#top_menus #top_menus_more.active span {
    opacity: 1;
}

#left {
    float: left;
    width: 220px;
    height: calc(100% - 70px);
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    z-index: 5;
    position: relative;
    border-right: 1px solid #e6e6e6;
}

#left.collapsed {
    width: 96px;
    overflow-x: visible;
    overflow-y: visible;
}

#left_expand {
    position: relative;
    height: 48px;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #e6e6e6;
}

#left_expand:after {
    content: ' ';
    position: absolute;
    width: 26px;
    height: 22px;
    top: 13px;
    right: 20px;
    background-image: url("main/menus_collapse.png");
    background-repeat: no-repeat;
    background-position: center;
}

#left_expand:hover:after {
    background-color: #eff5fc;
}

#left.collapsed #left_expand:after {
    background-image: url("main/menus_expand.png");
}

#center {
    float: left;
    width: calc(100% - 223px);
    height: calc(100% - 70px);
}

#left.collapsed + #center {
    width: calc(100% - 97px);
}

.menu_item {
    height: 54px;
    cursor: pointer;
    background: url("main/arrow_close.png") no-repeat 190px center;
}

#left.collapsed .menu_item {
    background: none;
}

#left.collapsed .menu_item.menu_item_show {
    width: 306px;
    box-shadow: 0 0 16px 0 rgba(27, 33, 45, 0.14);
    background: #ffffff;
}

#left.collapsed .menu_item {
    height: 60px;
}

.menu_item.menu_item_expanded {
    background: url("main/arrow_open.png") no-repeat 190px 22px;
}

.menu_item_icon {
    float: left;
    height: 26px;
    padding-left: 17px;
    padding-top: 14px;
    width: 36px;
}

#left.collapsed .menu_item_icon {
    padding-left: 35px;
    padding-top: 17px;
}

.menu_item_icon img {
    width: 26px;
    height: 26px;
}

.menu_item_title {
    float: left;
    width: 145px;
    height: 54px;
    line-height: 54px;
    font-size: 16px;
    color: #595959;
    font-weight: bold;
}

.menu_item_title.menu_item_new:after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #dc4040;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: 8px;
}

#left.collapsed .menu_item_title.menu_item_new:after {
    display: none;
}

#left.collapsed .menu_item_title {
    display: none;
}

#left.collapsed .menu_item.menu_item_show .menu_item_title {
    display: block;
    padding-left: 40px;
}

#left.collapsed .menu_item_icon.menu_item_new {
    position: relative;
}

#left.collapsed .menu_item_icon.menu_item_new:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    right: 2px;
    top: 17px;
    background-color: #dc4040;
    border-radius: 50%;
    margin-left: 5px;
}

#menus {
    height: calc(100% - 49px);
    overflow-x: hidden;
    overflow-y: auto;
}

#left.collapsed #menus {
    overflow-x: visible;
    overflow-y: visible;
}

#menus::-webkit-scrollbar-track-piece {
    background-color: #f8f8f8;
}

#menus::-webkit-scrollbar {
    width: 2px;
    height: 8px;
}

#menus::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    background-clip: padding-box;
    min-height: 28px;
}

#menus::-webkit-scrollbar-thumb:hover {
    background-color: #bbb;
}

.sub_menus {
    overflow: hidden;
}

#left.collapsed .sub_menus_show {
    position: absolute;
    left: 96px;
    background: #ffffff;
    box-shadow: 0 8px 8px 0 rgba(27, 33, 45, 0.14);
}

#left.collapsed .sub_menus_show.sub_menus_show1 {
    box-shadow: 0 -8px 8px 0 rgba(27, 33, 45, 0.14);
}

.sub_menu_item {
    height: 40px;
    cursor: pointer;
}

.sub_menus_tree {
    padding-top: 6px;
    padding-bottom: 6px;
}

.sub_menu_item:hover {
    background: #eff5fc;
}

.sub_menu_item.sub_menu_item_selected {
    background: #eff5fc;
    border-right: 4px solid #2170d9;
}

#left.collapsed .sub_menu_item.sub_menu_item_selected {
    border-right: none;
}

.sub_menu_item_title {
    float: left;
    width: 140px;
    line-height: 40px;
    padding-left: 70px;
    color: #595959;
    font-size: 16px;
}

.menu_item_count {
    color: #dc4040;
    margin-left: 4px;
}

#left.collapsed .sub_menu_item_title {
    padding-left: 50px;
    width: 160px;
}

.sub_menu_item:hover .sub_menu_item_title {
    color: #2170d9;
}

.sub_menu_item.sub_menu_item_selected .sub_menu_item_title {
    color: #2170d9;
}

.sub_menus_tree {
    background: #ffffff;
    width: 100%;
}

#left.collapsed .sub_menus_tree {
    width: 210px;
}

.sub_menus_tree .cyan-tree-node {
    padding-left: 45px;
    height: 30px;
    font-size: 16px;
}

#left.collapsed .sub_menus_tree .cyan-tree-node {
    padding-left: 25px;
}

.sub_menus_tree .cyan-tree-node-text {
    line-height: 30px;
    color: #595959;
}

.sub_menus_tree .cyan-tree-node-icon {
    height: 30px;
}

.sub_menus_tree .cyan-tree-node-indent {
    padding-bottom: 5px;
}

.sub_menus_tree .cyan-tree-node:hover {
    background-color: #eff5fc;
    color: #2170d9;
}

.sub_menus_tree .cyan-tree-node-selected {
    background-color: #eff5fc;
    color: #2170d9;
    border-right: 4px solid #2170d9;
}

#left.collapsed .sub_menus_tree .cyan-tree-node-selected {
    border-right: none;
}

#main {
}

#main_top {
    height: 40px;
}

#main_tab_home.main_tab {
    background: url(main/tab_home.png) no-repeat 13px 11px;
    padding-left: 40px;
    padding-right: 0;
    margin-left: 10px;
    color: #2170d9;
}

#main_tab_home.main_tab:after {
    content: '';
    height: 14px;
    padding-right: 22px;
    margin-top: 8px;
    border-right: 1px solid #f1f1f1;
}

#main_tabs .main_tab:not(:last-child):after {
    content: '';
    height: 14px;
    margin-top: 8px;
    border-right: 1px solid #f1f1f1;
    padding-left: 30px;
}

#main_tabs0 {
    width: calc(100% - 130px);
    height: 40px;
}

.main_tab {
    line-height: 40px;
    font-size: 14px;
    color: #595959;
    padding-left: 20px;
}

#main_tabs .main_tab:last-child {
    padding-right: 31px;
}

#main_tab_home.main_tab.main_tab_selected, .main_tab.main_tab_selected {
    color: #2170d9;
    height: 36px;
    padding-top: 2px;
    line-height: 36px;
    border-bottom: solid 2px #2170d9;
}

.main_tab:hover {
    color: #2170d9;
}

#main_tabs {
    height: 40px;
}

.main_tab_close {
    top: 10px;
    right: 5px;
    width: 14px;
    height: 20px;
    background: url(main/tab_close.png) center no-repeat;
}

#main_tabs_scroll {
    width: 20px;
    height: 30px;
}

#main_tabs_scroll_left {
    width: 4px;
    height: 7px;
    margin-top: 10px;
    margin-left: 10px;
    background: url("main/tabs_left.gif");
    cursor: pointer;
}

#main_tabs_scroll_right {
    width: 4px;
    height: 7px;
    margin-top: 8px;
    margin-left: 10px;
    background: url("main/tabs_right.gif");
    cursor: pointer;
}

#main_frames {
    background: #ededed;
    width: 100%;
    height: calc(100% - 40px);
}

#main_frames iframe {
    width: calc(100% - 20px);
    height: calc(100% - 10px);
    left: 10px;
    top: 10px;
}

#sys_icon {
    float: right;
    margin-top: 24px;
    width: 22px;
    height: 22px;
    background: url("main/nav_about.png");
    cursor: pointer;
    margin-right: 20px;
}