:root {
    --p-titleColor: #429A60;
    --p-buttonBgc: #008738;
    --p-buttonHoverBgc: #009933;
}

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

a {
    text-decoration: none;
    color: #0283f7;
}

ul,
ol {
    list-style: none;
}

button {
    min-width: 4em;
    height: 1.75rem;
    border-radius: .25rem;
    padding: 0 0.625rem;
    line-height: 1.75rem;
    background-color: #008738;
    color: #fff;
    border: none;
    outline: none;
    text-align: center;
    font-size: 1em;
}

select {
    background-image: url(../images/icon/crow-down1.png);
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: .8rem auto;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
}

select,
input {
    width: 10em;
    height: 1.75rem;
    line-height: 1.75rem;
    border-radius: 0.4em;
    -webkit-border-radius: 0.4em;
    border: none;
    outline: none;
    border: 1px solid #C2CAD8;
    padding-left: 0.6em;
    box-sizing: border-box;
}

select {
    background-color: #fff;
}

input, select, textarea {
    font-family: inherit;
}

html {
    background-color: #F7F7FA;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: .875rem;
}

header {
    height: 3rem;
    box-shadow: 0rem 0rem 1rem 0rem rgb(0 0 0/ 5%);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-bottom: .06rem solid #d6d6d6;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .875rem;
}

header>div,
header a {
    display: flex;
    align-items: center;
    color: #333;
}

header>div>* {
    margin-right: .25rem;
}

header a:hover {
    color: #0283f7;
}

header img {
    width: 1.25rem;
}

main {
    height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

article {
    height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

content {
    height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

content form {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: center;
}

content form>div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

content form>div>span {
    display: flex;
    align-items: flex-start;
    padding-bottom: .25rem;
    flex-wrap: wrap;
}

content form>div>span>label {
    width: 6em;
    padding-top: .375rem;
    padding-right: .375rem;
    text-align: right;
    box-sizing: content-box;
    line-height: 1rem;
}

content form>div>span>select,
content form>div>span>input:not([type='checkbox']) {
    width: 0;
    flex: 1;
    height: 1.75rem;
    border: .0625rem solid #C2CAD8;
    padding: 0 .5rem;
    outline: none;
    border-radius: .25rem;
    font-size: .875rem;
}

content form>div>span>input[type='checkbox'] {
    width: 2.5rem;
    height: 1.25rem;
    border-radius: 1.5rem;
    appearance: none;
    background-color: #999999;
    cursor: pointer;
    border: 0;
    position: relative;
    transition: left 0.2s linear;
    margin-top: .25rem;
}

content form>div>span>input[type='checkbox']::before {
    content: "";
    position: absolute;
    top: .125rem;
    left: .125rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 .125rem #ddd;
    transition: left 0.2s linear;
}

content form>div>span>input[type='checkbox']:checked {
    background: #008738;
    transition: left 0.2s linear;
}

content form>div>span>input[type='checkbox']:checked::before {
    left: 1.375rem;
    transition: left 0.2s linear;
}

content form>div>span>input[type='checkbox'][disabled] {
    cursor: not-allowed;
}

content form>div>span>textarea {
    border: .0625rem solid #C2CAD8;
    border-radius: .25rem;
}

content form>div>span>font {
    position: absolute;
    right: 100%;
    color: red;
}

content form>button {
    background-color: #3f7f7f;
    cursor: pointer;
    margin-top: .5rem;
}

content form>button:hover {
    background-color: #008738;
}

ul.cardList>li {
    background-color: #fff;
    border-radius: .25rem;
    margin-bottom: .5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

ul.cardList>li>a {
    padding: .5rem .75rem;
    display: flex;
    align-items: center;
}

ul.cardList>li:nth-child(2n+2) {
    margin-right: 0;
}

.card .cardTitle {
    display: flex;
}

.cardTitle span {
    background-color: #5AAAFF;
    color: #fff;
    font-size: .875rem;
    border-radius: 0.1875rem;
    min-width: 1.125rem;
    height: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .cardContent {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    padding: .25rem 1rem;
    text-align: center;
}

.card:hover {
    box-shadow: 0px 0px 4px 4px rgba(138, 124, 124, .1);
}

.card:hover .cardContent {
    color: #0283f7;
}

/* 文本溢出5行省略 */
[role='overflowFiveLine'] {
    display: -webkit-inline-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    vertical-align: middle;
}

[role='overflowFiveLine']+a {
    vertical-align: middle;
}

.frontPanel {
    position: relative;
    border-radius: 0.24rem;
    display: flex;
    align-items: center;
    font-size: 14px;
    background: #ffffff;
    z-index: 101;
    border-bottom: 2px solid #eeeeee;
    justify-content: flex-start;
    height: 2.44rem;
}

.frontPanel:empty {
  display: none;
}

.notice {
    margin-top: .5rem;
}

.notice>.info {
    display: flex;
    align-items: center;
}

.panelTitle {
    display: none;
}

.welcome {
    background: #FFF;
    padding: 0 1rem;
    border-radius: 4px;
}

.welcome .oneDiv {
    display: flex;
}

.welcome .oneDiv a {
    margin: 0 2rem 1rem 0;
}

.welcome a,
.welcome p,
.welcome span {
    margin: 1rem 0;
    display: block;
}

.flexDiv {
    display: flex;
}

.flexDiv a {
    margin-right: 2rem;
}

.panelTitle {
    display: none;
}

#selectAll {
    background: #FFF;
    display: flex;
}

input[type='checkbox'] {
    width: auto;
}

a.noWarn {
    color: #26c726;
}

a.warn {
    color: red;
}

footer {
    position: relative;
    margin-top: 0.5rem;
    border-radius: 0.24rem;
    height: 3.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: #ffffff;
    z-index: 101;
    border-top: 1px solid #eeeeee;
}

footer>a, footer>button {
    width: 0;
    flex: 1;
    height: 100%;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #fff;
}

footer>:nth-child(n+2)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: .0625rem;
    height: 1rem;
    transform: translate(-50%, -50%);
    background-color: #d6d6d6;
}

footer>last-child {
    margin-right: 0.94rem;
}

/* mainFooter样式，一级页面公共底部样式 start */
footer .mainFooter {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    border-top: .0625rem solid #f0f0f0;
}

footer .mainFooter a {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: black;
    padding: .375rem 0 .5rem 0;
    position: relative;
}

footer .mainFooter .pageIn span {
    color: #008738;
}

footer .mainFooter a img {
    padding-bottom: .25rem;
    width: 1.25rem;
}

footer .mainFooter a span {
    font-size: .75rem;
    line-height: 1em;
}

/* Alert弹窗样式 */
.alert-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.alert-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21.5em;
    min-height: 10rem;
    background: #fff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border-radius: .5rem;
}

.alert-box .alert-title {
    width: 100%;
    height: 4.625rem;
    line-height: 4.625rem;
    text-align: center;
    font-size: 1.375rem;
    color: #333
}

.alert-box .alert-con {
    width: 100%;
    line-height: 1.5rem;
    text-align: center;
    font-size: 1.0625rem;
    color: #666;
    padding: 0 .9375rem;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-bottom: .9375rem;
    word-break: break-word;
}

.alert-box .alert-con a {
    color: #2F8BF7;
    text-decoration: underline
}

.alert-box>ul {
    width: 100%;
    height: 2.875rem;
    border-top: .0625rem solid #e6e6e6;
    display: flex;
}

.alert-box>ul li {
    list-style: none;
    flex: 1;
    border-right: .0625rem solid #e6e6e6;
    height: 2.8125rem;
    line-height: 2.8125rem;
    text-align: center;
    float: left;
    color: #2F8BF7;
    font-size: 1.125rem;
    cursor: pointer;
}

.alert-box>ul li.alert-cancel {
    color: #666666;
}

.alert-box>ul li:last-of-type {
    border-right: 0;
}

/* Alert弹窗样式 end */
/* VuiFrom 样式start */
form.vuiForm {
    padding: 0;
    align-items: stretch;
    position: sticky;
}

form.vuiForm em {
    font-style: normal;
}
form.vuiForm nav.tabs {
    line-height: 2.25rem;
    display: flex;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

form.vuiForm nav.tabs>span {
    min-width: 20%;
    flex-shrink: 0;
    text-align: center;
    font-size: 1rem;
    position: relative;
    padding: 0 .5em;
}

form.vuiForm nav.tabs>span:hover {
    color: #0473EA;
}

form.vuiForm nav.tabs>span.checked {
    color: #0473EA;
    background-color: #DCE8FF;
}
/* VuiFrom 样式end */

/* 移入移出图片显示和隐藏 start */
body .hoverImageBox img:nth-child(1) {
    visibility: unset;
    position: unset;
}

body .hoverImageBox img:nth-child(2) {
    visibility: hidden;
    position: absolute;
}

body .hoverImageBox:hover img:nth-child(1),
body .hoverImageBox.menu_active img:nth-child(1) {
    visibility: hidden;
    position: absolute;
}

body .hoverImageBox:hover img:nth-child(2),
body .hoverImageBox.menu_active img:nth-child(2) {
    visibility: unset;
    position: unset;
}

/* 移入移出图片显示和隐藏 end */
/* number输入框 边框按钮隐藏 start */
input[type="number"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}
/* number输入框 边框按钮隐藏 end */