* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-size: 13px;
    font-family: sans-serif;
    padding-top: 56px;
    background: #efefef;
}
a {
    text-decoration: none;
}
ul, ol {
    list-style-type: none;
}
img {
    border: none;
    max-width: 100%;
}
table {
    border-spacing: 0;
}
.clear {
    clear: both;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.width100 {
    width: 100px;
}

.width120 {
    width: 120px;
}

.width150 {
    width: 150px;
}

.small-size {
    width: 25%;
}
.middle-size {
    width: 50%;
}
.full-size {
    width: 100%;
}
.checkbox-select {
    width: 10px;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.page-header {
    width: 100%;
    height: 55px;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.page-header__logo {
    float: left;
    width: 220px;
    line-height: 50px;
    font-size: 18px;
    padding-left: 20px;
}
.page-header__user {
    float: right;
    height: 55px;
    line-height: 55px;
    padding-right: 20px;
    font-size: 15px;
}

.page-menu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 220px;
    min-height: calc(100% - 50px);
    background-color: rgb(30, 30, 30);
    color: rgb(255, 255, 255);
    padding-top: 20px;
    font-size: 14px;
    padding-bottom: 100px;
}

.page-menu a {
    font-size: 14px;
    padding: 12px 15px 12px 20px;
    display: block;
    cursor: pointer;
    color: #9E9E9E;
    transition: background-color ease .3s;
    line-height: 30px;
}
.page-menu__top-menu > li > a {
    padding-left: 30px;
}

.page-menu__sub-menu > li > a {
    padding-left: 45px;
}


.page-menu__menu li {
    width: 100%;
}

.page-menu__menu > li:hover {
    border-left: 4px solid rgb(66, 184, 241);
}

.page-menu__menu li:hover > a {
    color: rgb(255, 255, 255);
}

.page-menu__top-menu {
    background-color: rgb(0, 0, 0);
    display: none;
}
.page-menu__sub-menu {
    background-color: rgb(0, 0, 0);
    display: none;
}

.page-menu__menu > li.selected {
    background-color: rgb(0, 0, 0);
    border-left: 4px solid rgb(66, 184, 241);

}

.page-menu__menu li.selected > a {
    color: rgb(255, 255, 255);
}

.page-menu__menu > li.selected .page-menu__top-menu {
    background-color: rgb(0, 0, 0);
    display: block;
}

.page-menu__top-menu > li.selected {
    background-color: rgb(0, 0, 0);
}

.page-menu__top-menu li.selected > a {
    color: rgb(255, 255, 255);
}

.page-menu__top-menu > li.selected .page-menu__sub-menu {
    background-color: rgb(0, 0, 0);
    display: block;
}

.page-main {
    position: absolute;
    top: 55px;
    left: 220px;
    width: calc(100% - 220px);
}

.header {
    background: #222;
    height: 56px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}
.toggle {
    width: 30px;
    position: absolute;
    right: 10px;
    display: none;
    top: 8px;
}
.toggle p {
    height: 3px;
    margin: 5px 3px;
    background: #fff;
}
.logo {
    width: 230px;
    height: 56px;
    line-height: 56px;
    float: left;
    color: #fff;
    font-size: 26px;
    text-align: center;
    margin-left: 1%;
}
.user {
    float: right;
    height: 56px;
    line-height: 56px;
    margin-right: 1%;
    color: #fff;
    font-size: 15px;
    position: relative;
}
.user img {
    vertical-align: middle;
    border-radius: 20px;
}
.user-info {
    cursor: pointer;
}
.user-pull-down {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: #fff;
    padding: 10px;
    color: #000;
    line-height: 230%;
    height: auto;
    font-size: 13px;
    box-shadow: 0 10px 30px #ddd;
    display: none;
}
.user-pull-down a {
    color: #30a5ff;
}
.menu {
    float: left;
}
.menu > li {
    float: left;
    position: relative;
}
.menu > li > a {
    display: block;
    font-size: 14px;
    height: 56px;
    line-height: 56px;
    color: #fff;
    padding: 0 20px;
}
.menu > li > a:hover {
    background: #30a5ff;
    color: #fff;
}
.menu > li > a.active {
    background: #30a5ff;
    color: #fff;
}
.menu > li > a > img {
    width: 18px;
    vertical-align: middle;
}
.menu > li:hover > a{
    background: #30a5ff;
    color: #fff;
}
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    box-shadow: 0 5px 30px #ddd;
    display: none;
}
.sub-menu > li {
    position: relative;
}
.sub-menu > li:hover > a {
    background: #30a5ff;
    color: #fff;
}
.sub-menu li a {
    display: block;
    color: #000;
    padding: 10px;
}
.sub-menu li a:hover {
    background: #30a5ff;
    color: #fff;
}
.sub-menu > li > ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 220px;
    background: #fff;
    box-shadow: 0 5px 30px #ddd;
    display: none;
}
.content-right {
    margin: 0 1%;
}
.box {
    margin: 30px 20px 20px 20px;
    background: #fff;
    padding-bottom: 10px;
    border: 1px solid #ccc;
}
.box-header {
    padding: 0 20px;
    background: #e0e0e0;
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #ccc;
}
.box-header h2 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    letter-spacing: 2px;
}
.box-header-buttons {
    float: right;
}
.insert-button {
    display: inline-block;
    background: #1ebfae;
    color: #fff;
    height: 30px;
    line-height: 30px;
    padding: 0 30px;
    cursor: pointer;
}
.delete-button {
    display: inline-block;
    background: #30a5ff;
    color: #fff;
    height: 30px;
    line-height: 30px;
    padding: 0 30px;
    cursor: pointer;
}
.save-button {
    display: inline-block;
    background: #8ad919;
    color: #fff;
    height: 30px;
    line-height: 30px;
    padding: 0 30px;
    cursor: pointer;
}
.back-button {
    display: inline-block;
    background: #555;
    color: #fff;
    height: 30px;
    line-height: 30px;
    padding: 0 30px;
    cursor: pointer;
    border: none;
}
.box-content {
    margin: 20px;
}

.dashboard {
    margin: 30px 20px 20px 20px
}
.dashboard_left {
    width: 49%;
    float: left;
}
.dashboard_right {
    width: 49%;
    float: right;
}
.notice_box li {
    float: left;
    width: 49%;
    margin-right: 2%;
    background: #fff;
    text-align: center;
    margin-bottom: 2%;
    padding-bottom: 15px;
}
.notice_box li:last-child {
    margin-right: 0;
}
.text {
    margin-bottom: 20px;
    padding: 13px 10px;
    font-size: 14px;
}
.notice_number {
    font-size: 36px;
    font-family: Arial;
}
.notice_number a{
    color: #222;
}
.dashboard_lists {
    width: 100%;
    border-spacing: 0;
    margin-bottom: 10px;
}
.dashboard_lists th {
    padding: 12px 10px;
    font-size: 15px;
}
.dashboard_lists tbody {
    background: #fff;
}
.dashboard_lists td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.new_data_num {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    border-radius: 15px;
}
.bg_darkblue {
    background: #3b5998;
    color: #fff;
}
.bg_red {
    background: #d34836;
    color: #fff;
}
.bg_blue {
    background: #00aced;
    color: #fff;
}
.bg_green {
    background: #26c281;
    color: #fff;
}
.bg_brown {
    background: #d1b993;
    color: #fff;
}
.bg_black {
    background: #1a2732;
    color: #fff;
}

.lists {
    width: 100%;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.lists th {
    background: #f5f5f5;
    font-size: 15px;
    padding: 10px;
    font-weight: 500;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.lists td {
    padding: 10px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.pagination {
    margin: 20px 0 10px 0;
    height: 30px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.pagination .results {
    float: left;
    height: 30px;
    line-height: 30px;
}
.pagination .results b {
    color: #30a5ff;
    font-size: 16px;
    font-weight: 500;
}
.pagination .links {
    float: right;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-radius: 3px;
}
.pagination .links a {
    display: inline-block;
    width: 40px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    float: left;
    color: #000;
}
.pagination .links a:hover {
    background: #ddd;
    color: #fff;
}
.pagination .links a.current {
    background: #ddd;
    color: #fff;
}
.footer {
    text-align: center;
    margin-bottom: 20px;
    font-size: 13px;
}
.footer a {
    color: #000;
}
.delete img {
    width: 22px;
    margin: 0 5px;
    vertical-align: middle;
    cursor: pointer;
}
.view img {
    width: 22px;
    margin: 0 5px;
    vertical-align: middle;
    cursor: pointer;
}
.edit img {
    width: 22px;
    margin: 0 5px;
    vertical-align: middle;
    cursor: pointer;
}
.tabs {
    height: 40px;
    line-height: 40px;
    background: #e0e0e0;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}
.tabs a {
    display: block;
    float: left;
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    color: #555;
    font-size: 14px;
}
.tabs a.selected {
    color: #222;
    height: 40px;
    line-height: 40px;
    background: #fff;
}
.tab-content {
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px;
    display: none;
}

.subtabs {
    height: 40px;
    line-height: 40px;
    background: #e0e0e0;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}
.subtabs a {
    display: block;
    float: left;
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    color: #555;
    font-size: 14px;
}
.subtabs a.selected {
    color: #222;
    height: 40px;
    line-height: 40px;
    background: #fff;
}
.form {
    width: 100%;
}
.first-td{
    width: 200px;
    letter-spacing: 1px;
}
.form tbody td {
    font-size: 14px;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}
.text-input {
    color: #444;
    font-family: sans-serif;
    background: #fff;
    border: 1px solid #bbb;
    padding: 10px 1%;
    box-shadow: inset 0 1px 10px #eee;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border-radius: 0;
    -webkit-appearance: none; 
}
.success {
    background: #8ad919;
    color: #fff;
    padding: 10px 15px;
    font-size: 15px;
    margin: 10px 0;
}
.success img {
    width: 15px;
    vertical-align: middle;
    margin-right: 3px;
}
.warning {
    background: #f9243f;
    color: #fff;
    padding: 10px 15px;
    font-size: 15px;
    margin: 10px 0;
}
.warning img {
    width: 15px;
    vertical-align: middle;
    margin-right: 3px;
}
.required {
    color: #ff0000;
}
.error {
    margin: 5px 0;
    font-size: 13px;
    color: #f9243f;
}
.close {
    float: right;
    cursor: pointer;
}
.close img {
    vertical-align: middle;
    width: 12px;
}
.login-box {
    width: 500px;
    background: #fff;
    margin: 50px auto 20px auto;
    border: 1px solid #ddd;
}
.login-text {
    text-align: center;
    font-size: 30px;
    color: #333
}
.login-header {
    font-size: 18px;
    padding: 10px 20px;
    letter-spacing: 2px;
    background: #e0e0e0;
}
.login-content {
    margin: 20px;
}
.login-field {
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 5px;
}
.login-field input {
    margin: 8px 0;
    width: 98%;
}
.login-field select {
    margin: 8px 0;
    width: 100%;
}
.permission {
    width: 600px;
    margin: 100px auto;
    background: #fff;
}
.permission-img {
    background: #f9243f;
    text-align: center;
    padding: 20px 0;
}
.permission-img img {
    width: 120px;
}
.permission-text {
    font-size: 26px;
    text-align: center;
    padding: 40px 10px;
    letter-spacing: 2px;
}
.scroll-box {
    border: 1px solid #bbb;
    margin-bottom: 10px;
    height: 400px;
    overflow-y: scroll;
}
.scroll-box div {
    padding: 10px;
}
.scroll-box div.odd {
    background: #f3f3f3;
}
.check-all {
    margin-right: 10px;
    cursor: pointer;
}

.image-upload {
    width: 132px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.image-preview {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    background: #eee;
    width: 130px;
    height: 130px;
    line-height: 130px;
    text-align: center;
}
.image-preview img {
    vertical-align: middle;
}
.image-clear {
    font-size: 13px;
    text-align: center;
    cursor: pointer;
}
.image-remove {
    text-align: center;
}
.image-remove img {
    width: 20px;
    cursor: pointer;
}
.editor {
    height: 430px;
}
.filter {
    background: #E7EFEF;
}
.help {
    font-style: italic;
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}


.autocompleter {
    width: 100%;
    background: #fff;
    position: absolute;
    z-index: 100;
    border: 1px solid #ddd;
}

.autocompleter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.autocompleter-item-selected {
    background: #ffffff;
}
.autocompleter-item {
    padding: 5px 10px;
    cursor: pointer;
}
.autocompleter-item:hover {
    background: #30a5ff;
    color: #fff;
}
.autocompleter-hint-show {
    display: block;
}
.autocompleter-closed {
    display: none;
}

@media screen and (max-width: 1050px) {
    .header {
        height: 46px;
    }
    .menu {
        float: none;
        position: fixed;
        width: 100%;
        left: 0;
        top: 46px;
        background: #333;
        display: none;
    }
    .menu li {
        float: none;
        position: static;
        border-bottom: 1px solid #888;
    }
    .menu > li > a {
        height: auto;
        line-height: normal;
        padding: 10px;
    }
    .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #555;
    }
    .sub-menu > li > a {
        padding-left: 20px;
        color: #fff;
    }
    .sub-menu > li > ul {
        position: static;
        width: 100%;
        background: #777;
        box-shadow: none;
    }
    .sub-menu > li > ul a {
        padding-left: 40px;
        color: #fff;
    }
    .toggle {
        display: block;
    }
    .logo {
        height: 46px;
        line-height: 46px;
        text-align: center;
        font-size: 18px;
        float: none;
        width: auto;
        margin: 0;
    }
    .user {
        float: none;
        position: absolute;
        left: 10px;
        margin: 0;
        height: 46px;
        line-height: 46px;
        font-size: 14px;
        top: 0;
    }
    .user-info span {
        display: none;
    }
    .user-pull-down {
        left: 0;
        right: auto;
    }
    .box {
        margin: 10px 10px 20px 10px;
    }
    .box-header {
        height: 40px;
        line-height: 40px;
    }
    .box-header h2 {
        font-size: 18px;
    }
    .login-box {
        width: auto;
        margin: 50px 10px 20px 10px;
    }
    .box-header {
        padding: 0 10px;
    }
    .box-content {
        margin: 10px;
        overflow-x: scroll;
    }
    .dashboard {
        margin: 10px
    }
    .dashboard_left {
        float: none;
        width: 100%;
    }
    .dashboard_right {
        float: none;
        width: 100%;
    }
}
