@charset "UTF-8";

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    background: #f0f1f2;
}

body, h1, h2, h3, h4, h5, h6, ul, ol, li, form, input, select, textarea, button, p, img, code, pre {
    margin: 0;
    padding: 0;
}

body, input, select, textarea, button {
    font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", "HanHei SC", "Helvetica Neue", "Open Sans", Arial, "Hiragino Sans GB", "微软雅黑", STHeiti, "WenQuanYi Micro Hei", SimSun, sans-serif;
}

a {
    text-decoration: none;
}

img {
    border: 0;
}

:focus {
    outline: 0;
}

/* form */
input.app-input,
input.app-input-s,
select.app-input,
select.app-input-s {
    padding: 8px 12px;
    height: 38px;
    background: #fff;
    border: 1px solid #C1C6D1;
    border-radius: 6px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    box-sizing: border-box;
    display: inline-block;
}

input.app-input-s,
select.app-input-s {
    padding: 5px 10px;
    height: 30px;
    font-size: 12px;
    line-height: 16px;
}

input.app-input:hover, input.app-input:focus,
input.app-input-s:hover, input.app-input-s:focus,
select.app-input:hover, select.app-input:focus,
select.app-input-s:hover, select.app-input-s:focus {
    border-color: #004FD6;
}

textarea.app-input,
textarea.app-input-s {
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #C1C6D1;
    border-radius: 6px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    box-sizing: border-box;
    display: inline-block;
}

textarea.app-input-s {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 16px;
}

textarea.app-input:hover, textarea.app-input:focus,
textarea.app-input-s:hover, textarea.app-input-s:focus {
    border-color: #004FD6;
}

button.app-button, a.app-button,
button.app-button-s, a.app-button-s {
    padding: 0 12px;
    height: 38px;
    background: #004FD6;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 38px;
    text-align: center;
    box-sizing: border-box;
    display: inline-block;
    cursor: pointer;
}

button.app-button-s, a.app-button-s {
    height: 32px;
    font-size: 12px;
    line-height: 32px;
}

button.app-button.app-icons:before, a.app-button.app-icons:before,
button.app-button-s.app-icons:before, a.app-button-s.app-icons:before {
    margin-right: 5px;
}

/* head */
div.app-head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.05);
    z-index: 1000;
}

div.app-head > div.head-inner {
    position: relative;
    margin: 0 20px;
    height: 60px;
}

div.app-head > div.head-inner > a.logo {
    position: absolute;
    top: 17px;
    left: 2px;
    height: 26px;
    display: block;
}

div.app-head > div.head-inner > a.logo > img {
    height: 26px;
    display: block;
}

div.app-head > div.head-inner > ul.nav {
    margin: 0 auto;
    padding: 14px 0;
    height: 32px;
    text-align: center;
    list-style: none;
}

div.app-head > div.head-inner > ul.nav > li {
    margin-left: 12px;
    display: inline-block;
}

div.app-head > div.head-inner > ul.nav > li:first-child {
    margin-left: 0;
}

div.app-head > div.head-inner > ul.nav > li > a {
    padding: 0 16px;
    height: 32px;
    border-radius: 4px;
    font-size: 14px;
    color: #394766;
    line-height: 32px;
    display: inline-block;
}

div.app-head > div.head-inner > ul.nav > li > a:before {
    margin-right: 4px;
}

div.app-head > div.head-inner > ul.nav > li:hover > a,
div.app-head > div.head-inner > ul.nav > li.activity > a {
    background: #E0F1FF;
    color: #004FD6;
}

div.app-head > div.head-inner > ul.nav > li.activity > a {
    font-weight: bold;
}

div.app-head > div.head-inner > div.account {
    position: absolute;
    top: 0;
    right: -20px;
    width: 60px;
    height: 60px;
    display: block;
}

div.app-head > div.head-inner > div.account > span.avatar {
    width: 60px;
    height: 60px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    line-height: 60px;
    text-align: center;
    display: block;
}

div.app-head > div.head-inner > div.account:hover > span.avatar {
    background: #f0f1f2;
}

div.app-head > div.head-inner > div.account > div.popup {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    background: #fff;
    display: none;
}

div.app-head > div.head-inner > div.account:hover > div.popup {
    display: block;
}

div.app-head > div.head-inner > div.account > div.popup > div.profile {
    padding: 15px 20px;
    background: #004FD6;
}

div.app-head > div.head-inner > div.account > div.popup > div.profile > h1.username {
    font-size: 18px;
    color: #fff;
}

div.app-head > div.head-inner > div.account > div.popup > div.profile > p.ip {
    padding-top: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.9);
}

div.app-head > div.head-inner > div.account > div.popup > div.profile > p.ip:before {
    margin-right: 6px;
}

div.app-head > div.head-inner > div.account > div.popup > ul.menu {
    list-style: none;
}

div.app-head > div.head-inner > div.account > div.popup > ul.menu > li {
    position: relative;
}

div.app-head > div.head-inner > div.account > div.popup > ul.menu > li > a {
    padding: 0 20px;
    height: 38px;
    font-size: 12px;
    color: #000;
    line-height: 38px;
    display: block;
}

div.app-head > div.head-inner > div.account > div.popup > ul.menu > li.disabled > a {
    cursor: not-allowed;
}

div.app-head > div.head-inner > div.account > div.popup > ul.menu > li > a:before {
    margin-right: 6px;
}

div.app-head > div.head-inner > div.account > div.popup > ul.menu > li:hover > a {
    background: #E0F1FF;
    color: #004FD6;
}

div.app-head > div.head-inner > div.account > div.popup > ul.menu > li > span.mark {
    position: absolute;
    top: 9px;
    right: 10px;
    padding: 0 10px;
    height: 20px;
    background: #E0F1FF;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #004FD6;
    line-height: 20px;
    text-align: center;
    display: block;
}

div.app-head > div.head-inner > div.account > div.popup > ul.menu > li:hover > span.mark {
    background: #fff;
}

/* body */
div.app-body {
    padding-top: 60px;
}

div.app-body > div.body-inner {
    position: relative;
}

/* foot */
div.app-foot {
    padding: 50px;
    font-size: 12px;
    color: #68768F;
    line-height: 24px;
    text-align: center;
}

/* Stack blocks */
div.app-vertical-stack {
    position: relative;
}

div.app-vertical-stack > div.vertical-stack-block {
    margin-top: 20px;
}

div.app-vertical-stack > div.vertical-stack-block:first-child {
    margin-top: 0;
}

/* statics */
div.app-statics {
    position: relative;
    zoom: 1;
}

div.app-statics:after {
    height: 0;
    clear: both;
    content: " ";
    display: block;
}

div.app-statics > div.statics-entry {
    margin-left: 16px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 6px;
    float: left;
    overflow: hidden;
}

div.app-statics > div.statics-entry:first-child {
    margin-left: 0;
}

div.app-statics > div.statics-entry > div.entry-inner {
    position: relative;
    padding-left: 52px;
    width: 160px;
}

div.app-statics > div.statics-entry > div.entry-inner > span.icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 54px;
    font-size: 36px;
    font-weight: normal;
    color: #004FD6;
    line-height: 54px;
    display: block;
}

div.app-statics > div.statics-entry > div.entry-inner > p.subject {
    font-size: 14px;
    font-weight: bold;
    color: #68768F;
    line-height: 22px;
}

div.app-statics > div.statics-entry > div.entry-inner > p.count {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    line-height: 32px;
}

/* content block */
div.app-content-block {
    position: relative;
    padding: 16px 20px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

div.app-content-block > div.content-block-inner {
    position: relative;
}

div.app-content-block > div.content-block-inner > h1 {
    position: relative;
    padding: 0 0 16px 12px;
    height: 26px;
    font-size: 16px;
    color: #000;
    line-height: 26px;
    display: block;
}

div.app-content-block > div.content-block-inner > h1 > span.dec {
    position: absolute;
    top: 5px;
    left: 0;
    width: 4px;
    height: 16px;
    background: #004FD6;
    border-radius: 2px;
    font-size: 0;
    line-height: 0;
    display: block;
}

div.app-content-block > div.content-block-inner > div.content {
    position: relative;
}

/* filter form */
form.app-filter-form {
    position: relative;
}

form.app-filter-form > div.rows {
    position: relative;
}

form.app-filter-form > div.rows > div.row {
    padding-top: 12px;
}

form.app-filter-form > div.rows > div.row:first-child {
    padding-top: 0;
}

form.app-filter-form > div.rows > div.row > p.label {
    padding-bottom: 3px;
    font-size: 12px;
    color: #68768F;
}

form.app-filter-form > div.rows > div.row > p.field > textarea,
form.app-filter-form > div.rows > div.row > p.field > select,
form.app-filter-form > div.rows > div.row > p.field > input[type="text"] {
    width: 100%;
}

form.app-filter-form > div.buttons {
    padding-top: 12px;
}

form.app-filter-form > div.buttons > p.button {
    padding-top: 3px;
}

form.app-filter-form > div.buttons > p.button:first-child {
    padding-top: 0;
}

form.app-filter-form > div.buttons > p.button > button,
form.app-filter-form > div.buttons > p.button > a.app-button {
    width: 100%;
}

/* operations */
div.app-filter-form-h {
    position: relative;
    height: 38px;
}

div.app-filter-form-h > span.filter-form-h-item {
    margin-left: 8px;
    height: 38px;
    vertical-align: middle;
    display: inline-block;
}

div.app-filter-form-h > span.filter-form-h-item:first-child {
    margin-left: 0;
}

div.app-filter-form-h > div.filter-form-h-extra {
    position: absolute;
    top: 0;
    right: 0;
    height: 38px;
}

/* list table */
table.app-list-table {
    padding: 0;
    border: 1px solid #e1e5e6;
    border-radius: 6px;
    border-spacing: 0;
    overflow: hidden;
}

table.app-list-table > thead > tr > td {
    padding: 10px 12px;
    background: #F8F9FA;
    border-bottom: 1px solid #d5d9da;
    font-size: 14px;
    font-weight: bold;
    color: #394766;
    line-height: 22px;
}

table.app-list-table > tbody > tr > td {
    padding: 12px 12px;
    background: #fff;
    border-top: 1px solid #e1e5e6;
    font-size: 14px;
    color: #394766;
    line-height: 22px;
}

table.app-list-table > tbody > tr:first-child > td {
    border-top: 0;
}

table.app-list-table > tfoot > tr > td.buttons {
    padding: 12px;
    background: #F8F9FA;
    border-top: 1px solid #e1e5e6;
}

table.app-list-table > tfoot > tr > td.buttons > button,
table.app-list-table > tfoot > tr > td.buttons > a.app-button {
    margin-left: 8px;
}

table.app-list-table > tfoot > tr > td.buttons > button:first-child,
table.app-list-table > tfoot > tr > td.buttons > a.app-button:first-child {
    margin-left: 0;
}

/* paginator */
div.app-paginator {
    position: relative;
    height: 38px;
}

div.app-paginator > div.page-links {
    position: absolute;
    top: 0;
    left: 0;
    height: 38px;
}

div.app-paginator > div.page-links > a.item {
    padding: 0 12px;
    height: 36px;
    background: #fff;
    border: 1px solid #e1e5e6;
    border-radius: 6px;
    font-size: 14px;
    color: #394766;
    line-height: 36px;
    display: inline-block;
}

div.app-paginator > div.page-links > a.item:hover {
    background: #F8F9FA;
}

div.app-paginator > div.page-links > span.item {
    padding: 0 8px;
    height: 38px;
    font-size: 14px;
    color: #394766;
    line-height: 38px;
    display: inline-block;
}

div.app-paginator > div.page-links > span.item > span.sep {
    margin: 0 5px;
    font-size: 12px;
    font-weight: bold;
    color: #C1C6D1;
}

div.app-paginator > div.page-links > .item {
    margin-left: 12px;
}

div.app-paginator > div.page-links > .item:first-child {
    margin-left: 0;
}

div.app-paginator > form.page-jumps {
    position: absolute;
    top: 0;
    right: 0;
    height: 38px;
}

div.app-paginator > form.page-jumps > input[type="text"] {
    margin-right: 8px;
}

/* notice */
ul.app-notice {
    padding-left: 15px;
    font-size: 14px;
    color: #394766;
    line-height: 28px;
}

/* tips */
div.app-tips-empty {
    padding: 80px 0;
    text-align: center;
}

div.app-tips-empty > p.icon {
    font-size: 80px;
    font-weight: normal;
    color: #C1C6D1;
    line-height: 50px;
}

div.app-tips-empty > p.text {
    padding-top: 30px;
    font-size: 18px;
    color: #C1C6D1;
    line-height: 22px;
}

/* login */
div.app-login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -300px 0 0 -210px;
    padding: 35px 50px;
    width: 420px;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
}

div.app-login-form > h1 {
    padding-bottom: 10px;
    font-size: 22px;
    color: #000;
}

div.app-login-form > div.rows {
    position: relative;
}

div.app-login-form > div.rows > div.row {
    padding-top: 20px;
}

div.app-login-form > div.rows > div.row > p.label {
    padding-bottom: 6px;
    font-size: 14px;
    color: #68768F;
}

div.app-login-form > div.rows > div.row > p.label > span.required {
    margin-left: 3px;
    color: #E55140;
}

div.app-login-form > div.rows > div.row > p.field > input[type="text"],
div.app-login-form > div.rows > div.row > p.field > input[type="password"] {
    width: 100%;
}

div.app-login-form > div.buttons {
    padding-top: 30px;
}

div.app-login-form > div.buttons > button {
    width: 100%;
}

div.app-login-form > div.notice {
    padding-top: 30px;
    font-size: 12px;
    color: #394766;
    line-height: 24px;
    text-align: center;
}

/* collected page */
div.app-layout-collected {
    position: relative;
}

div.app-layout-collected > div.layout-head {
    padding: 20px 20px 0 20px;
}

div.app-layout-collected > div.layout-head > div.layout-head-inner {
    position: relative;
}

div.app-layout-collected > div.layout-body {
    padding: 20px;
}

div.app-layout-collected > div.layout-body > div.layout-body-inner {
    position: relative;
    padding-left: 300px;
}

div.app-layout-collected > div.layout-body > div.layout-body-inner > div.layout-body-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 285px;
}

div.app-layout-collected > div.layout-body > div.layout-body-inner > div.layout-body-content {
    position: relative;
}

/* collect workspace layout */
div.app-layout-collect-workspace {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
}

div.app-layout-collect-workspace div.checking {
    padding: 150px 0;
}

div.app-layout-collect-workspace div.checking > img.loading {
    margin: 0 auto;
    width: 32px;
    height: 32px;
    display: block;
}

div.app-layout-collect-workspace div.checking > p {
    padding-top: 30px;
    font-size: 26px;
    font-weight: normal;
    color: #919596;
    text-align: center;
}