body {
    background: #fff;
}

.header .title {
    margin-top: 10.875rem;
    text-align: center;
    font-size: 8.125rem;
    color: #ffffff;
    line-height: 8.125rem;
    font-weight: bold;
}

.header .s_title {
    margin: 2rem 0 3.75rem;
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
    line-height: 2rem;
}

.header .s_title span {
    color: #2cffcc;
}


/* Swiper轮播图样式 */

.header_swipper {
    position: relative;
    width: 100%;
    height: 50rem;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .header_swipper {
        height: 25rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 1rem;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1rem;
    }
}

.header li h4 {
    position: relative;
    padding-left: 1rem;
    font-size: 2rem;
    color: #ffffff;
    line-height: 2rem;
    z-index: 9;
}

.header li h4::after {
    content: "";
    position: absolute;
    width: 2rem;
    height: 2rem;
    left: 0;
    top: 0;
    background: url("../image/icon1.png") center no-repeat;
    background-size: cover;
    z-index: 1;
}

.header li:nth-of-type(2) h4::after {
    content: "";
    background: url("../image/icon2.png") center no-repeat;
    background-size: cover;
}

.header li:nth-of-type(3) h4::after {
    content: "";
    background: url("../image/icon3.png") center no-repeat;
    background-size: cover;
}

.header li:nth-of-type(4) h4::after {
    content: "";
    background: url("../image/icon4.png") center no-repeat;
    background-size: cover;
}

.header li p {
    margin-top: 1.25rem;
    width: 14.625rem;
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.75rem;
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 12px !important;
    }

    .header {
        padding-bottom: 0;
    }

    .h-l-l {
        width: 94% !important;
    }

    .header .title {
        margin-top: 10rem;
        font-size: 4rem;
        line-height: 4rem;
    }

    .header .s_title {
        font-size: 1rem;
        line-height: 1rem;
    }

    .header li {
        width: 20%;
        overflow: hidden;
    }

    .header li h4 {
        padding-left: 0.4rem;
        font-size: 1.2rem;
        line-height: 1.2rem;
    }

    .header li h4::after {
        width: 0.9rem;
        height: 0.9rem;
    }

    .header li p {
        display: block;
        width: 100%;
        margin-top: 0.8rem;
        font-size: 0.6rem;
        line-height: 1rem;
    }
}

.fix_bg {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fix_bg .fixbgs {
    width: 100%;
    height: auto;
}

.action_area {
    width: 70%;
    position: absolute;
    z-index: 9;
    top: 12rem;
}

@media (max-width:1024px) {
    .action_area {
        width: 95%;
        top: 6rem;
    }
}

.filter_areas {
    width: 100%;
    margin-bottom: 2rem;

    background: transparent;
    padding: 0;
    box-sizing: border-box;
}

.filter_row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter_item {
    flex: 1;
    box-sizing: border-box;
}

.filter_select_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    overflow: hidden;
}

.filter_label {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #111928;
    white-space: nowrap;
    background: transparent;
    border-right: 1px solid #eee;
    flex-shrink: 0;
}

.filter_select {
    box-sizing: border-box;
    flex: 1;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border: none;
    font-size: 1rem;
    color: #111928;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 8px;
    transition: all 0.3s ease;
}

.filter_select:hover {
    background-color: #f8f9fa;
}

.filter_select:focus {
    outline: none;
    background-color: #f8f9fa;
}

.filter_input {
    width: 100%;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #111928;
    background: #fff;
    transition: all 0.3s ease;
}

.filter_input:hover {
    border-color: #bbb;
    background-color: #f8f9fa;
}

.filter_input:focus {
    outline: none;
    border-color: #2656e7;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(38, 86, 231, 0.1);
}

.filter_input::placeholder {
    color: #999;
}

.filter_btn {
    padding: 0.75rem 2rem;
    background: #2656e7;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 100px;
    margin-left: 3rem;
}

.filter_btn:hover {
    background: #1e45b8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(38, 86, 231, 0.3);
}

.filter_btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .filter_row {
        flex-direction: column;
        /* gap: 1rem; */
    }

    .filter_item {
        width: 100%;
    }

    .filter_btn {
        width: 100%;
        margin: 0 auto;
    }
}

.action_area .table_area_big {
    width: 100%;
    margin: 0 auto 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;

}

.table thead {
    background: #e9ebf2;

}

.table th,
.table td {
    padding: 1.5rem;
    white-space: nowrap;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.table_center {
    text-align: center;
}

.table th {
    font-weight: normal;
    color: #111928;
    font-size: 1.25rem;
}

.table td {
    font-size: 1.125rem;
}

tbody tr td:nth-of-type(2),
tbody tr td:nth-of-type(3) {
    color: #707378;
}

.status-tag {
    display: inline-block;
    padding: 0.62rem 0.88rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.status-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.status-tag.blue {
    background: #2656e7;
    color: #fff;
}

.status-tag.red {
    background: #e81405;
    color: #fff;
}

.status-tag.purple {
    background: #8e0cde;
    color: #fff;
}

.status-tag.orange {
    background: #dd7f04;
    color: #fff;
}

.operation-link {
    font-size: 1rem;
    color: #2656e7;
    text-decoration: none;
    margin-left: 1.8rem;
}

@media (max-width: 1024px) {
    .table {
        min-width: 640px;
        font-size: 0.9rem;
    }

    .table th,
    .table td {
        padding: 1rem 1.5rem;
    }

    .table th {
        font-size: 1rem;
    }

    .table td {
        font-size: 0.9rem;
    }

    .status-tag {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        display: inline-block;
    }

    .operation-link {
        font-size: 0.9rem;
        margin-left: 0.8rem;
    }
}

.zhanwei_area {
    height: 30rem;
}

@media (max-width: 1024px) {
    .zhanwei_area {
        height: 55rem;
    }
}


/* 自定义下拉选择框样式 */

.filter_item .select_area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.filter_item .select_area:hover {
    border-color: #2656e7;
}


/* 隐藏原生select */

.filter_item .select_area .select_dropdown {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    z-index: 99999;
}


/* 自定义下拉显示区域 */

.filter_item .custom-select {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
}

.filter_item .custom-select-display {
    flex: 1;
    color: #111928;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter_item .custom-select-display.has-value {
    font-weight: 600;
}

.filter_item .custom-select-display.placeholder {
    color: #999;
}


/* 自定义下拉箭头 */

.filter_item .custom-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url('../../static/image/allpics/down.png') center no-repeat;
    /* 使用现有图片 */
    background-size: contain;
    pointer-events: none;
    transition: transform 0.3s ease;
    content: '';
    display: block;
}

.filter_item .select_area.active .custom-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.filter_item .select_area:hover .custom-select-arrow {
    border-top-color: #2656e7;
}

.filter_item .select_area.active:hover .custom-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}


/* 下拉选项列表 */

.filter_item .custom-select-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    margin-top: 0.5rem;
    pointer-events: none;
}

.filter_item .select_area.active .custom-select-dropdown {
    max-height: 20rem;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    pointer-events: auto;
}


/* 滚动条样式 */

.filter_item .custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.filter_item .custom-select-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.filter_item .custom-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.filter_item .custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}


/* 下拉选项项 */

.filter_item .custom-select-option {
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.filter_item .custom-select-option:last-child {
    border-bottom: none;
}

.filter_item .custom-select-option:hover {
    background: rgba(37, 86, 231, 0.6);
    padding-left: 1.5rem;
}

.filter_item .custom-select-option.selected {
    background: rgba(37, 86, 231, 0.8);
    color: #ffffff;
    font-weight: 600;
}

.filter_item .custom-select-option.selected::before {
    /* content: '✓'; */
    position: absolute;
    right: 1rem;
    color: #fff;
    font-weight: bold;
}

.filter_item .custom-select-option.selected:hover::before {
    left: 1.5rem;
}


/* 选中项高亮动画 */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.filter_item .custom-select-option {
    animation: slideIn 0.2s ease;
}



/* 响应式设计 */

@media (max-width: 1024px) {
    .filter_item .select_area {
        padding: 0;
    }

    .filter_item .custom-select-arrow {
        right: 1rem;
        border-left-width: 0.4rem;
        border-right-width: 0.4rem;
        border-top-width: 0.5rem;
    }

    .filter_item .custom-select-display {
        font-size: 0.9rem;
        padding-right: 1.5rem;
    }

    .filter_item .custom-select-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .filter_item .custom-select-option:hover {
        padding-left: 1.2rem;
    }
}

/* 添加到actionpage.css文件中 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 480px;
    max-width: 90%;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.modal-header2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header2 h3 {
    color: #1a1a1a;
    font-size: 18px;
    margin: 0;
    padding-left: 12px;
    position: relative;
}

.modal-header2 h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background-color: #0066ff;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    border-radius: 50%;
    width: 1.5rem;
    height: auto;
    transition: all 0.3s ease;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.modal-close:hover {
    color: #0066ff;
    background-color: rgba(0, 102, 255, 0.1);
}

.modal-body2 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-input {
    width: 100%;
    height: 3rem;
    box-sizing: border-box;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}


.select_areas {
    width: 100%;
    padding: 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    position: relative;
}

.select_areas .select_dropdown {
    width: 100%;
    height: 100%;

}

.form-input:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.2);
}

.modal-footer {
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #4D75EF 0%, #2656E7 100%);
    box-shadow: 0px 4px 12px 0px rgba(64, 73, 100, 0.23);
    border-radius: 12px 12px 12px 12px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    color: white;
    border: none;
    height: 3rem;
    aspect-ratio: 3.2;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0052cc;
}

/* 文件列表样式 */
.file-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.file-item:hover {
    background-color: #f0f0f0;
}

.file-name {
    flex: 1;
    font-size: 1rem;
    color: #333;
    margin-right: 1rem;
    word-break: break-all;
    overflow-wrap: break-word;
}

.download-btn {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 分页样式 */
.pagination {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.pagination-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: auto;
    white-space: nowrap;
}

.pagination-btn:hover:not(:disabled) {
    background: #f0f0f0;
    border-color: #2656e7;
    color: #2656e7;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:disabled .pagination-arrow {
    color: #999;
}

.pagination-arrow {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
    line-height: 1;
}

.pagination-text {
    font-size: 0.9rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
}

.pagination-number:hover {
    background: #f0f0f0;
    border-color: #2656e7;
    color: #2656e7;
}

.pagination-number.active {
    background: #2656e7;
    border-color: #2656e7;
    color: #fff;
}

.pagination-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

.pagination-current,
.pagination-total {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .pagination-info {
        display: none;
    }

    .pagination-btn {
        padding: 0.5rem 1.2rem;
    }

    .pagination-numbers {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .pagination-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .pagination-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .pagination-btn .pagination-text {
        display: none;
    }

    .pagination-btn .pagination-arrow {
        display: block;
    }
}

@media (max-width: 480px) {
   

    .pagination-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }

    .pagination-info {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
    }
}