* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    /* background: #F5F5F7; */
}

/* body {
    background: #F5F5F7;
} */
html {
    width: 100%;
}
body {
	/* width: 100vw;
	height: 100vh; */
    background: #F5F5F7;
	overflow-x: hidden;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
}
/* 当视口宽度大于1920px时生效 */
@media screen and (min-width: 1920px) {
    /* 这里写你的样式 */
    body {
        max-width:100% !important;
        width: 100vw !important;
    }
   
  }

  .header {
    max-width: 100% !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
   
}
.header-nav-outer {
    max-width: 1920px;
    width: 100%;
    margin:auto 0 !important;
}


/* tabs 下划线样式 + 头部居中 */
.tabs-wrap {
    width: 16rem;
    margin: 0 auto;
    max-width: 2560px;
}

.tabs-header {
    display: flex;
    border-bottom: 0.06rem solid #C9DEF1;
    border-radius: 0.03rem;
}

.tab-item {
    width: 50%;
    padding-top: 0.8rem;
    padding-bottom: 0.39rem;
    cursor: pointer;
    font-size: 0.5rem;
    color: #1D1D1F;
    position: relative;
    text-align: center;
}

.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: -0.04rem;
    left: 0;
    width: 100%;
    height: 0.06rem;
    background-color: #004BFA;
    border-radius: 0.03rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ========== 普通表单select组件（页面上方大表单） ========== */
.custom-select-wrap {
    width: 16rem;
    position: relative;
    margin-bottom: 1rem;
}

.custom-select-input-wrap {
    position: relative;
}

.select-data-proxy {
    display: none;
}

.sel-real-input {
    display: none;
}

.custom-select-trigger {
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    padding: 0 52px 0 12px;
    font-size: 15px;
    border-radius: 0.5rem;
    background: #fff;
    cursor: pointer;
    position: relative;
    padding-left: 0.8rem;
    color: #7D7D81;
    font-size: 0.24rem;
    border: 0.01rem solid #e4e7ed;
}

.custom-select-wrap.has-selected .custom-select-trigger {
    color: #1D1D1F;
    font-size: 0.3rem;
}

.custom-select-trigger:focus,
.custom-select-trigger.open {
    outline: none;
    /* border-color: #409eff; */
}

/* 仅普通表单下拉：展开时触发器底部圆角归零 */
.custom-select-wrap:not(.table-header-sel) .custom-select-trigger.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #F5F5F7;
}

/* 仅普通表单下拉：展开时下拉面板顶部圆角归零，与触发器无缝拼接 */
.custom-select-wrap:not(.table-header-sel) .custom-select-trigger.open~.custom-select-dropdown {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.sel-clear-btn {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.36rem;
    height: 0.36rem;
    line-height: 0.36rem;
    color: #999;
    cursor: pointer;
    display: none;
    z-index: 2;
}

.sel-clear-btn:hover {
    color: #333;
}

.custom-select-wrap.has-value .sel-clear-btn {
    display: block;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% - 0.01rem);
    left: 0;
    width: 100%;
    /* border: 0.01rem solid #e4e7ed; */
    background: #fff;
    max-height: 240px;
    min-height: 160px;
    overflow-y: auto;
    border-radius: 0.5rem;
    display: none;
    z-index: 999;
    padding: 0.4rem 0.2rem;
}

.custom-select-dropdown.show {
    display: block;
}

.custom-select-option {
    height: 0.7rem;
    line-height: 0.7rem;
    cursor: pointer;
    font-size: 0.3rem;
    padding: 0 0.62rem;
}

.custom-select-option:hover,
.table-header-sel .custom-select-option.active {
    background-color: #E9F4FF;
    color: #1D1D1F
}

.custom-select-option.empty-tip {
    color: #999;
    cursor: default;
}

input::placeholder {
    color: #7D7D81;
    opacity: 1;
    font-size: 0.24rem;
}

.select-title {
    font-size: 0.4rem;
    margin-top: 1.2rem;
    margin-bottom: 0.41rem;
}

.select-jt {
    width: 0.21rem;
    height: 0.4rem;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.custom-select-trigger.open~.select-jt {
    transform: translateY(-50%) rotate(90deg);
}
.search-input-wrap .open-state~.select-jt {
    transform: translateY(-50%) rotate(90deg);
}
/* ========== 表头筛选下拉【独立样式 table‑header‑sel】和表单下拉完全区分 ========== */
.table-header-sel {
    width: 100%;
    position: relative;
    margin-bottom: 0 !important;
}

.table-header-sel .custom-select-trigger {
    height: 0.4rem;
    line-height: 0.4rem;
    font-size: 0.2rem !important;
    padding: 0 0.1rem;
    border-radius: 4px;
    background: #ffffff;
    margin-top: 0.21rem;
    color: #7D7D81 !important;
    text-align: left;
    border: 0.01rem solid #e4e7ed;
}

.table-header-sel .sel-clear-btn {
    right: 18px;
    font-size: 14px;
    height: 14px;
    line-height: 14px;
}

.table-header-sel .select-jt {
    width: 0.12rem;
    height: 0.2rem;
    right: 6px;
    transition: transform 0.2s ease;
}

.table-header-sel .custom-select-trigger.open~.select-jt {
    transform: translateY(-50%) rotate(90deg);
}

.table-header-sel .custom-select-dropdown {
    top: 100%;
    max-height: 160px;
    min-height: auto;
    padding: 0;
    border-radius: 4px;
}

.table-header-sel .custom-select-option {
    height: 28px;
    line-height: 28px;
    font-size: 0.2rem;
    color: #7D7D81;
    padding: 0;
}

.table-header-sel .custom-select-option:hover,
.table-header-sel .custom-select-option.active {
    background-color: #E9F4FF;
    color: #1D1D1F
}

/* 搜索下拉组件样式 */
.search-wrap {
    width: 16rem;
    position: relative;
    margin-bottom: 1rem;
}

.search-data-proxy {
    display: none;
}

.search-input-wrap {
    position: relative;
    font-size: 0;
}

.box-shadow {
    box-shadow: 0px 0 0.2rem 0px rgba(102, 102, 102, 0.3);
    border: none;
}

.search-input {
    width: 100%;
    height: 1rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    font-size: 0.3rem;
    border: 0.01rem solid #e4e7ed;
    background: #FFFFFF;
    outline: none;
    border-radius: 0.5rem;
    color: #1D1D1F;
}

/* search下拉展开，输入框底部圆角置0 */
.search-input.open-state {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #F5F5F7;
}

/* .search-input:focus {
    border-color: #409eff;
} */

.search-clear-btn {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.36rem;
    height: 0.36rem;
    line-height: 0.36rem;
    color: #999;
    cursor: pointer;
    display: none;
    z-index: 2;
}

.search-clear-btn:hover {
    color: #333;
}

.search-wrap.has-value .search-clear-btn {
    display: block;
}

.search-dropdown {
    position: absolute;
    top: calc(100% - 0.01rem);
    left: 0;
    width: 100%;
    border: 0.01rem solid #e4e7ed;
    background: #fff;
    max-height: 240px;
    overflow-y: auto;
    /* border-radius: 0.5rem; */
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    display: none;
    z-index: 999;
    padding: 0.4rem 0.2rem;
}

.search-dropdown.show {
    display: block;
}

.dropdown-item {
    height: 0.7rem;
    line-height: 0.7rem;
    cursor: pointer;
    font-size: 0.3rem;
    padding: 0 0.62rem;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #E9F4FF;
}

.no-data {
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: #999;
    font-size: 24px;
}

/* 表格样式，单行省略 */
.data-table {
    width: 16rem !important;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.1rem;
    table-layout: fixed;
    box-shadow: 0px 0 0.2rem 0px rgba(102, 102, 102, 0.3);
    border-radius: 0.25rem;
}

.data-table.hidden {
    display: none;
}

.data-table th {
    font-size: 0.28rem;
    padding: 0.31rem 0.1rem 0.23rem 0.1rem;
    vertical-align: top;
    text-align: center;
    line-height: 1;
    background-color: #E8EBEE;
    color: #1D1D1F;
    border-left: 0.01rem solid #DADADA;
}

.data-table th:first-child {
    border-top-left-radius: 0.25rem;
    border-left: none;
}

.data-table th:last-child {
    border-top-right-radius: 0.25rem;
}

.data-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0.25rem;
}

.data-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.25rem;
}

.data-table td {
    border-left: 0.01rem solid #DADADA;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #ffff;
    color: #1D1D1F;
    font-size: 0.24rem;
    height: 0.9rem;
    padding: 0.1rem;
}

.data-table td:first-child {
    border-left: none;
}

.data-table tbody tr:nth-child(odd) td {
    background-color: #F5F5F7;
}

.data-table tbody tr:nth-child(even) td {
    background-color: #fff;
}

/* tr悬浮整行高亮 */
.data-table tbody tr:hover td {
    background-color: #E9F4FF !important;
}

/* 空提示 */
.empty-tip-text {
    display: none;
    margin-top: 1.2rem;
}

.empty-tip-text.show {
    display: block;
}

.empty-tip-title {
    color: #1D1D1F;
    font-size: 0.6rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.empty-tip-btn {
    display: block;
    width: 2.26rem;
    height: 1rem;
    line-height: 1rem;
    border-radius: 0.5rem;
    background: #004bfa;
    color: #fff;
    font-size: 0.4rem;
    text-align: center;
    cursor: pointer;
}
.empty-tip-btn-en {
    display: block;
    width: 3.83rem;
    height: 1.01rem;
    line-height: 1.01rem;
    border-radius: 0.5rem;
    background: #004bfa;
    color: #fff;
    font-size: 0.4rem;
    text-align: center;
    cursor: pointer;
}
.empty-tip-ts {
    font-size: 0.38rem;
    margin: 0.38rem 0 0.54rem 0;
    color: #7D7D81;
}

/*==== 静态分页UI，后端渲染全部内容 ====*/
.page-wrap {
    margin-top: 16px;
    width: 19rem;
    margin-top: 0.50rem;
}
.pagination {
    display: flex;
}
.page-wrap.hidden {
    display: none;
}
.page-wrap li {
    font-size: 0.24rem;
    margin:0 0.1rem;
    width: 0.6rem;
    height: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.page-wrap .pagination li:first-child,
.page-wrap .pagination li:last-child {
    width: 1.41rem;
    height: 0.58rem;
    line-height: 0.58rem;
    display: flex;
    justify-self: center;
    align-items: center;
    border-radius: 0.2rem;
    background: #fff;
    text-decoration: none;
   
}
.page-wrap li:first-child span,
.page-wrap li:last-child span  {
    /* width: 1.41rem;
    height: 0.58rem;
    line-height: 0.58rem; */
    /* border: 0.01rem solid #ddd; */
    /* background: #fff;
   
    */
    /* height: 0.58rem; */
    /* line-height: 0.58rem; */
    color: #1D1D1F;
    font-size: 0.24rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 0.2rem; */
    /* padding: 0 0.2rem; */
    /* background: #fff; */
}
.page-wrap li:first-child img,.page-wrap li:last-child img {
    width:0.12rem;
    height: 0.24rem;
    
}
.page-wrap li:first-child img {
   margin-right:0.21rem;
    
}
.page-wrap li:last-child img {
    margin-left: 0.21rem;
}
.page-wrap li:first-child a,
.page-wrap li:last-child a {
    /* height: 0.58rem;
    line-height: 0.58rem; */
    text-align: center;

    color: #1D1D1F;
    font-size: 0.24rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-btn img {
    width: 0.12rem;
    height: 0.24rem;
}

.page-wrap .active {
    background: #004BFA;
    color: #fff;
    border-radius: 0.3rem;
}

.page-tip {
    font-size: 13px;
    color: #666;
    margin: 0 10px;
}

/* JS生成tooltip悬浮气泡 fixed定位，不依赖data属性 */
.table-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
    display: none;
}

.jr-lb-box {
    width: 100%;
    height: 8rem;
}

.jr-lb-img {
    width: 100%;
    height: 100%;
}

.like-img {
    width: 0.58rem;
    height: 0.58rem;
    cursor: pointer;
}

.like-text {
    font-size: 0.14rem;
    color: #1D1D1F
}

.ts {
    width: 16rem;
    margin: auto;
    padding-top: 1.2rem;
}

.ts-h3 {
    font-size: 0.6rem;
    color: #1D1D1F;
    margin-bottom: 0.6rem;
}

.ts-title {
    font-size: 0.38rem;
    color: #1D1D1F;
    margin-bottom: 0.31rem;
}

.ts-text {
    font-size: 0.28rem;
    color: #7D7D81;
    margin-bottom: 0.6rem;
}

.kf {
    width: 1.01rem;
    height: 1.01rem;
    position: fixed;
    right: 20px;
    bottom: 30%;
    cursor: pointer;
}

.kf-img {
    width: 100%;
    height: 100%;
}

.kf1 {
    width: 3.8rem;
    height: 5.46rem;
    position: fixed;
    right: 20px;
    bottom: 30%;
    background: transparent;
    box-shadow: 0px 0 0.2rem 0px rgba(102, 102, 102, 0.3);
    border-radius: 0.5rem;
    display: none;

}

.kf-img1 {
    width: 100%;
    height: 100%;

}