:root {
    --theme-color: #649F76;
    --text-font-size: 16px;
}
a,
a:hover {
    text-decoration: none;
}
/* 粘性尾部 */
.h-100 {
    height: 100% !important;
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}
.mt-auto {
    margin-top: auto !important;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
[v-cloak] {
    display: none !important;
}
/* 按钮处理 */
.btn-wb-theme {
    border-radius: 0;
    color: #FFF;
    background-color: var(--theme-color);
    border: 1px solid  var(--theme-color);
    min-width: 120px;
    outline: 0 !important;
}
.btn-wb-theme:hover,
.btn-wb-theme:active,
.btn-wb-theme:focus{
    color: #FFF;
}
.btn-wb-theme.is-outline {
    background: #FFF;
    color: var(--theme-color) !important;
    border: 1px solid  var(--theme-color);
}
.btn-wb-theme + .btn-wb-theme {
    margin-left: 10px;
}

.text-center {
    text-align: center;
}
/* 面包屑 */
.wb-breadcrumb {
    background: #FFF;
    padding-left: 0;
    padding-right: 0;
    margin: 10px auto;
}
.wb-breadcrumb > li:first-child {
    padding-left: 20px;
    background: url('../img/breadcrumb.png') left center no-repeat ;
    background-size: 14px;
}
.wb-breadcrumb>li+li:before {
    content: '>';
    padding: 0 2px;
    margin-right: 4px;
    font-family: serif,cursive,fangsong,monospace;
}

.wb-section-title {
    border-bottom: 1px solid #DADADA;
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
}
.wb-section-title > span {
    font-size: 24px;
    display: inline-block;
    padding: 15px 0;
    border-bottom: 2px solid var(--theme-color);
}

/* 页面banner处理 */
.wb-banner {
    height: 200px;
    background: url('../img/banner.png') no-repeat;
    background-size: cover;
}
.wb-banner .wb-page-title {
    color: #FFF;
    font-size: 30px;
    margin-top: 60px;
    min-height: 34px;
}
.wb-banner .wb-page-desc {
    color: #FFF;
    font-size: 22px;
    margin-top: 20px;
}
.wb-banner--large {
    height: 250px;
}
.wb-banner--small {
    height: 130px;
}
.wb-banner--small .wb-page-title {
    margin-top: 28px;
}
.wb-banner--small .wb-page-desc {
    margin-top: 14px;
}
.wb-banner--small {
    background-image: url('../img/banner_small.png');
}

.wb-container {
    width: 1200px;
}

.wb-textarea-content {
    white-space: pre-line;
}
.pos-relative {
    position: relative;
}
loading-scope,
.req-loading-scope,
.req-fail-scope {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,.8);
    z-index: 999;
    color: #999;
}
.loading-scope:before,
.req-loading-scope:before,
.req-fail-scope:before{
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.layui-laypage-wb-theme .layui-laypage-curr .layui-laypage-em {
    background-color: var(--theme-color);
}
/* 打印处理 */
@media print {
    a[href]:after{content:""}
}
