/* 通用 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    background-color: #f5f7f9;
}

/* 顶部 */
.global-header {
    width: 100%;
    height: 58px;
}

.global-header-body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 58px;
    line-height: 58px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0, 21, 41, .08);
}

.global-header-left {
    position: absolute;
    left: 0;
}

.global-header-right {
    position: absolute;
    right: 0;
}

.global-header-item {
    cursor: pointer;
}

.global-header-poptip-item {
    height: 36px;
    line-height: 36px;
}

.global-header-link {
    display: block;
    color: #515a6e;
    height: 100%;
    padding: 0 16px 0 16px;
    border-bottom: 2px solid transparent;
}

.global-header-link:hover {
    background-color: #f5f7f9;
    color: #000;
    border-bottom: 2px solid #2d8cf0;
}

/* 主体 */
.global-content {
    min-height: calc(100% - 58px - 16px - 48px);
    margin: 8px;
    padding: 16px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 1px 4px rgba(0, 21, 41, .08);
}

.global-content-breadcrumb {
    height: 32px;
    line-height: 32px;
    margin-bottom: 16px;
}

/* 尾部 */
.global-footer {
    min-height: 48px;
}

.global-footer-filing {
    text-align: center;
    height: 48px;
    padding: 8px;
}

/* 片段 */
.segment {
    border-radius: 15px;
    box-shadow: 0 0 0 1px rgba(39, 41, 43, .15), 0 1px 2px 0 rgba(0, 0, 0, .05);
    padding: 15px 20px;
    overflow-x: auto;
}

/* 不可选择 */
.no-select {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard syntax */
}

