/* ===== 产品列表页专用样式 ===== */

/* 静态 Banner */
.page-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 250px;
    background-image: url('/assets/home/images/products-banner.jpg');
    background-size: cover;
    background-position: center;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 142, 79, 0.8) 0%, rgba(0, 142, 79, 0.4) 100%);
}

.page-banner .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: white;
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner h1 span {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* 面包屑导航 */
.breadcrumb-wrapper {
    max-width: 1400px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    background: #f8fafc;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    border: 1px solid #e2e8f0;
}

.breadcrumb a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #008e4f;
}

.breadcrumb i {
    font-size: 0.7rem;
    color: #94a3b8;
}

.breadcrumb .current {
    color: #008e4f;
    font-weight: 500;
}

/* ===== 主体内容区域 - 左右布局 ===== */
.page-content {
    max-width: 1400px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

/* ===== 左侧分类导航 ===== */
.product-sidebar {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: flex-start;
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* 产品分类菜单 */
.product-menu {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.product-menu__title {
    background: #008e4f;
    color: white;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-menu__title i {
    font-size: 1.2rem;
}

.product-menu__list {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.product-menu__item {
    margin: 0;
    padding: 0;
}

.product-menu__item a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    gap: 0.5rem;
    justify-content: space-between;
}

.product-menu__item a .count {
    background: #e2e8f0;
    color: #64748b;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-menu__item a:hover {
    background-color: #f8fafc;
    color: #008e4f;
    border-left-color: #008e4f;
}

.product-menu__item a:hover .count {
    background: #008e4f;
    color: white;
}

.product-menu__item.active a {
    background-color: rgba(0, 142, 79, 0.05);
    color: #008e4f;
    border-left-color: #008e4f;
    font-weight: 500;
}

.product-menu__item.active .count {
    background: #008e4f;
    color: white;
}

/* 联系方式卡片 */
.contact-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.contact-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #008e4f;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card__title i {
    color: #008e4f;
    font-size: 1.2rem;
}

.contact-card__item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.contact-card__item i {
    color: #008e4f;
    font-size: 1rem;
    width: 20px;
    margin-top: 3px;
}

.contact-card__item-content {
    flex: 1;
}

.contact-card__item-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-card__item-value {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-card__item-value a {
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card__item-value a:hover {
    color: #008e4f;
}

.contact-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #008e4f;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    margin-top: 1rem;
    width: 100%;
    border: none;
    cursor: pointer;
}

.contact-card__btn:hover {
    background: #006f3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 142, 79, 0.2);
}

/* ===== 右侧产品列表 ===== */
.product-list-main {
    flex: 1;
}

/* 列表头部 */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.list-title h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.list-title p {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 0;
}

/* 产品网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* 产品卡片 - 统一样式 */
.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 142, 79, 0.15);
    border-color: #008e4f;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-image {
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    border-top: none;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.5;
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none !important;
    border-bottom: none !important;
}

.product-specs {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #64748b;
    text-decoration: none !important;
    border-bottom: none !important;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: #94a3b8;
    font-weight: 500;
    text-decoration: none !important;
}

.spec-value {
    font-weight: 500;
    color: #334155;
    text-decoration: none !important;
}

/* 产品底部元信息 - 统一修复垂直对齐 */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
    width: 100%;
    min-height: 30px;
}

.product-model {
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    padding-right: 10px;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: normal;
    margin: 0;
    text-decoration: none !important;
}

.product-inquiry {
    color: #008e4f;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    line-height: normal;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    text-decoration: none !important;
}

.product-inquiry i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.product-card:hover .product-inquiry {
    color: #006f3d;
}

.product-card:hover .product-inquiry i {
    transform: translateX(5px);
}

/* 强制移除所有下划线 */
.product-name,
.product-name a,
.spec-item,
.spec-item span,
.spec-label,
.spec-value,
.product-model,
.product-inquiry,
.product-meta *,
.product-info *,
.product-specs * {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* ===== 从about.css移植过来的分页样式 ===== */
/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.page-item:hover:not(.disabled):not(.active) {
    border-color: #008e4f;
    color: #008e4f;
    background: #f8fafc;
}

.page-item.active {
    background: #008e4f;
    border-color: #008e4f;
    color: white;
}

.page-item.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #f1f5f9;
}

.page-dots {
    color: #94a3b8;
    padding: 0 5px;
}

/* 无数据样式 */
.no-data {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 12px;
    color: #94a3b8;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* ===== 产品详情页样式 ===== */
.product-detail {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 产品概览 */
.product-overview {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.product-info-left {
    flex: 1;
}

.product-category {
    display: inline-block;
    padding: 5px 15px;
    background: #008e4f;
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-model-detail {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.product-brief {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 关键参数卡片 */
.key-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
}

.key-spec-item {
    text-align: center;
}

.key-spec-label {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.key-spec-value {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

/* 按钮样式 */
.inquiry-actions {
    display: flex;
    gap: 15px;
}

.btn-inquiry,
.btn-download {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-inquiry {
    background: #008e4f;
    color: white;
}

.btn-inquiry:hover {
    background: #006f3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 142, 79, 0.2);
}

.btn-download {
    background: #f8fafc;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.btn-download:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* 右侧图片区域 */
.product-image-right {
    flex: 1;
}

.main-image {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.main-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* 缩略图列表 */
.thumbnail-container {
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
}

.thumbnail-item {
    flex: 0 0 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    padding: 5px;
}

.thumbnail-item:hover {
    border-color: #94a3b8;
}

.thumbnail-item.active {
    border-color: #008e4f;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 标签页 */
.product-tabs {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.tabs-header {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #008e4f;
}

.tab-btn.active {
    color: #008e4f;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #008e4f;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.product-description-content {
    color: #475569;
    line-height: 1.8;
}

.product-description-content h2,
.product-description-content h3,
.product-description-content h4 {
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.product-description-content p {
    margin-bottom: 20px;
}

.product-description-content ul,
.product-description-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* 相关产品 */
.related-products {
    margin-top: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title span {
    background: white;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    color: #1e293b;
    font-size: 1.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 142, 79, 0.15);
    border-color: #008e4f;
}

.related-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-image {
    height: 150px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.related-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-info {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
}

.related-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
    height: 2.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-spec {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
}

.related-link-text {
    color: #008e4f;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 询盘弹窗 */
.inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.inquiry-modal.active {
    display: flex;
}

.inquiry-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.inquiry-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-modal-header h3 {
    margin: 0;
    color: #1e293b;
}

.inquiry-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
}

.inquiry-modal-body {
    padding: 20px;
}

.inquiry-form .form-group {
    margin-bottom: 20px;
}

.inquiry-form label {
    display: block;
    margin-bottom: 5px;
    color: #475569;
    font-size: 0.9rem;
}

.inquiry-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

.inquiry-form .form-control:focus {
    outline: none;
    border-color: #008e4f;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #008e4f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #006f3d;
}

/* ===== 响应式 ===== */
@media screen and (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-model {
        max-width: 55%;
    }
}

@media screen and (max-width: 1024px) {
    .page-content {
        flex-direction: column;
    }

    .product-sidebar {
        position: static;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .product-menu,
    .contact-card {
        width: calc(50% - 0.75rem);
    }

    .product-overview {
        flex-direction: column;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .product-meta {
        font-size: 0.8rem;
    }

    .product-model {
        max-width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        height: 180px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .product-sidebar {
        flex-direction: column;
    }

    .product-menu,
    .contact-card {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .list-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image {
        height: 160px;
    }

    .product-name {
        font-size: 0.95rem;
        height: 2.8rem;
    }

    .spec-item {
        font-size: 0.8rem;
    }

    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-model {
        max-width: 100%;
        width: 100%;
        white-space: normal;
        word-break: break-word;
    }

    .product-inquiry {
        width: 100%;
        justify-content: flex-start;
    }

    .product-overview {
        padding: 20px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .key-specs {
        grid-template-columns: 1fr;
    }

    .inquiry-actions {
        flex-direction: column;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .page-item {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .breadcrumb-wrapper {
        padding: 0 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .page-content {
        padding: 0 1rem;
    }
}

/* 搜索表单样式 */
.search-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row-last {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.form-group label i {
    color: #008e4f;
    margin-right: 5px;
    width: 16px;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #1e293b;
    background: white;
    appearance: none;
    cursor: pointer;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #008e4f;
}

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #008e4f;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-search {
    flex: 2;
    padding: 12px;
    background: #008e4f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search:hover {
    background: #006f3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 142, 79, 0.3);
}

.btn-reset {
    flex: 1;
    padding: 12px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reset:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* 确保下拉选项不会太长 */
.select-wrapper select option {
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

/* 如果选项太多，添加滚动 */
.select-wrapper select {
    max-height: 300px;
    overflow-y: auto;
}

/* 美化下拉框中的分组（如果需要） */
.select-wrapper select optgroup {
    font-weight: 600;
    color: #008e4f;
    background-color: #f8fafc;
}