/* WERS表格通用样式 */
.was-data {
    max-width: 1200px;
}

.data-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
}

.data-content::-webkit-scrollbar {
    display: none;
}

.wers-table {
    width: 1200px;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    color: #FFFFFF;
}

.wers-table th span en {
    font-size: 10px;
}

.wers-table th {
    vertical-align: middle;
    padding: 16px 0px 16px 0px;
    border: unset;
    border-top: 1px solid #9B8A78;
    border-bottom: 1px solid #9B8A78;
    text-align: left;
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: unset;
}

.wers-table td {
    vertical-align: middle;
    padding: 16px 16px 16px 0px;
    text-align: left;
    border: unset;
}

.wers-table th:last-child {
    padding-right: 0px;
}

/* 宽度类 */
.was-w-200 {
    width: 200px;
}

.was-w-136 {
    width: 136px;
}

.was-w-110 {
    width: 110px;
}

.was-w-100 {
    width: 100px;
}

.was-w-250 {
    width: 250px;
}

.was-w-60 {
    width: 60px;
}

.was-w-40 {
    width: 40px;
}

/* 表头样式 */
.header-table-ceil {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.header-table-ceil span {
    cursor: pointer;
}

/* 排序样式 */
.wers-sort {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 22px;
    margin-left: 2px;
    cursor: pointer;
    box-sizing: border-box;
}

.wers-sort .sort-asc {
    top: 3px;
    border-top: none;
    border-bottom-style: solid;
    border-bottom-color: #554C42;
}

.wers-sort .sort-desc {
    bottom: 5px;
    border-bottom: none;
    border-top-style: solid;
    border-top-color: #554C42;
}

.sort-ad {
    position: absolute;
    left: 0px;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: dashed;
    border-color: transparent;
    overflow: hidden;
}

.wers-sort[lay-sort=asc] .sort-asc {
    border-bottom-color: #BCB1A5;
}

.wers-sort[lay-sort=desc] .sort-desc {
    border-top-color: #BCB1A5;
}

/* 文本样式 */
.was-id {
    font-weight: 700;
}

.text-blue {
    color: #7BBAED;
}

.text-red {
    color: #EF4236;
}

.text-grey {
    color: #BCB1A5;
}

/* 星星样式 */
.was-star {
    font-size: 16px;
    margin-right: 1px;
}

.was-star.was-blue {
    color: #7BBAED;
}

.was-star.was-red {
    color: #EF4236;
}

/* 表单样式 */
.was-form {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #FFFFFF;
}

.form-page {
    margin-top: auto;
    margin-bottom: auto;
    display: inline-flex;
}

.form-page label,
.form-page span {
    margin: 0px;
    padding: 0px;
    line-height: 43px;
}

.form-page span {
    cursor: pointer;
}

.form-page select {
    background-color: #02010100;
    color: #FFFFFF;
    border: 1px solid #9B8A78;
    padding: 8px;
    font-size: 16px;
    width: 100px;
    margin-left: 8px;
    margin-right: 8px;
}

.form-page select:focus {
    outline: none;
}

.form-page option {
    background-color: #262626;
    color: #fff;
}

.form-page select option:checked {
    color: #ffffff;
    background-color: #262626;
}

/* 搜索框样式 */
.form-search {
    width: 361px;
    position: relative;
}

.form-search input {
    color: #FFFFFF;
    background-color: #02010100;
    font-size: 16px;
    line-height: 16px;
    width: 100%;
    height: 43px;
    padding: 12px 28px 12px 16px;
    border: 1px solid #E9E9E9;
    box-sizing: border-box;
}

.form-search input:focus-visible {
    outline: 1px solid #E9E9E9;
}

.form-search .fas {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

/* 分页样式 */
.wers-page-html {
    text-align: center;
    padding-top: 16px;
    margin-top: 24px;
    color: #FFF;
    font-size: 12px;
}

.wers-page-html a {
    cursor: pointer;
}

.page-numbers {
    display: inline-block;
    padding: 4.5px 9px;
    line-height: 14.52px;
}

.page-numbers.current {
    background-color: #FDFDFD;
    color: #262626;
    border-radius: 4px;
}

.page-numbers+.page-numbers {
    margin-left: 16px;
}

.page-info {
    margin-top: 16px;
    line-height: 14.52px;
}

/* 空状态样式 */
.wers-empty-container {
    display: none;
}

/* 加载动画样式 */
.wers-loading {
    position: relative;
    min-height: 200px;
}

.wers-loading tbody tr {
    display: none;
}

.wers-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #BCB1A5;
    border-top: 3px solid #9B8A78;
    border-radius: 50%;
    animation: wers-spin 1s linear infinite;
    z-index: 10;
}

.wers-loading::after {
    content: '加载中...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 30px);
    color: #BCB1A5;
    font-size: 14px;
    white-space: nowrap;
    z-index: 10;
}

@keyframes wers-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 响应式样式 */
@media (max-width: 760px) {
    .was-form {
        display: block;
    }
    .form-search {
        width: 100%;
        margin-top: 16px;
    }
}