html {
    height: 100%;
    font-size: 12px;
    color: #333333;
}

body {
    height: 100%;
    margin: 0;
    background-color: #f3f4f8;
    font-size: 14px;
}

.href {
    color: #35AAFD;
    cursor: pointer;
}
.a-linkBtn{
    color: #35AAFD;
    cursor: pointer;
}
.buttIcon {
    width: 18px;
    height: 18px;
    margin: 0 5px;
}

.maxButt {
    border-radius: 50px;
    color: #FFFFFF;
    background-color: #35AAFD;
    font-size: 14px;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
}

.maxButtB {
    border-radius: 5px;
    color: #FFFFFF;
    background-color: #35AAFD;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
}

.maxButtKull {
    border-radius: 50px;
    color: #35AAFD;
    background-color: #FFFFFF;
    border: 1px solid #35AAFD;
    font-size: 14px;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    align-items: center;
}

.rowContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/*layui-breadcrumb  导航*/
.layui-breadcrumb .currNav {
    color: #5FB878 !important;
    font-weight: bolder;
}

/*----------------------------------------*/

.panelContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    /*max-width: 1024px;*/
}

.panel {
    background-color: #FFFFFF;
    flex: 1;
    margin: 5px;
    min-height: 100px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    padding: 10px;
}

.panel .panelHead {
    border-bottom: 1px solid #dddddd;
    padding: 10px 20px;
}

.panel .panelTitle {
    font-size: 14px;
    font-weight: bolder;
    color: #000000;
}

.panel .panelBody {
    padding: 10px 20px;
}

/*------------------table----------------------*/
.tablePanel {
    padding: 10px 20px;
    /*border: 1px solid #dddddd;*/
    border-radius: 10px;
}


.tablePanel .panelTitle {
    height: 50px;
    color: #333333;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    border-bottom: 1px solid #dddddd;
    background-color: #f9f9f9;
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: row;
    border-left: 1px solid #cbcbcb;
    border-top: 1px solid #cbcbcb;
    border-right: 1px solid #cbcbcb;
}

.tablePanel .panelTitle span {
    flex: 1;
}

.tablePanel .panelBody {
    min-height: 200px;
    background-color: #FFFFFF;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-left: 1px solid #cbcbcb;
    border-bottom: 1px solid #cbcbcb;
    border-right: 1px solid #cbcbcb;
}

.search {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.search select {
    height: 38px;
    margin: 0 5px;

    /* 隐藏原生的下拉箭头 */
    /*-webkit-appearance: none; !* Chrome, Safari *!*/
    /*-moz-appearance: none; !* Firefox *!*/
    /*appearance: none;*/
    width: 120px; /* 设置选择框宽度 */
    height: 38px; /* 设置选择框高度 */
    padding: 5px; /* 设置内边距 */
    border: 1px solid #ccc; /* 设置边框 */
    border-radius: 5px; /* 设置边框圆角 */
    background-color: #fff; /* 设置背景颜色 */
}

/* 添加自定义的下拉箭头 */
.search select::after {
    content: ""; /* 伪元素需要内容才能显示 */
    position: absolute; /* 绝对定位 */
    top: 50%; /* 垂直居中 */
    right: 10px; /* 设置右侧位置 */
    transform: translateY(-50%); /* 确保垂直居中 */
    border-width: 5px; /* 设置边框宽度 */
    border-style: solid; /* 设置边框样式 */
    border-color: #000 transparent transparent transparent; /* 设置边框颜色，这里设置黑色箭头 */
}

table.dataTabel {
    border: none;
    border-collapse: collapse;
}

table.dataTabel thead tr {
    height: 50px;
    background-color: #f9f9f9;
}

table.dataTabel tr td {
    text-align: center;

}

table.dataTabel tbody tr {
    border-bottom: 1px solid #f9f9f9;
}

table.dataTabel tbody tr:hover {
    background-color: #f9f9f9;
}

table.dataTabel tbody td {
    padding: 10px 0;
}

/*-------------------------------------*/
.pagerBar {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px;
    padding: 10px;
}

.pagerBar .pagerItem {
    margin: 5px;
    cursor: pointer;
}

.pagerBar .freeSkip {

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.pagerBar .freeSkip input {
    width: 30px;
    border: 1px solid #a1a1a1;
    border-radius: 4px;
}

.pagerBar .toPage {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

.pagerBar .toPage:hover {
    background-color: #35AAFD;
    color: #FFFFFF;
}

.pagerBar .toPage[data-currItem='true'] {
    background-color: #35AAFD;
    color: #FFFFFF;
}


/*----------------------------------------------------*/
.form-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 5px;
}

.form-item .form-label {
    width: 150px;
    text-align: right;
    padding: 5px;
}

.form-item .form-button-tool {
    padding: 10px;
}