/* ========================================
   Server1 产品筛选栏样式
   让类型和区域筛选看起来是一个整体
======================================== */

/* 筛选区域容器 - 整体背景 */
.product-filter-wrapper {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

/* 筛选行间距 */
.product-filter-wrapper .sky-form-group {
    margin-bottom: 20px;
}

.product-filter-wrapper .sky-form-group:last-child {
    margin-bottom: 0;
}

/* 标签样式优化 */
.product-filter-wrapper .label-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.product-filter-wrapper .label-title span {
    position: relative;
    padding-left: 12px;
}

.product-filter-wrapper .label-title span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(135deg, #2196F3 0%, #00BCD4 100%);
    border-radius: 2px;
}

/* 按钮组优化 */
.product-filter-wrapper .sky-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

/* 按钮样式优化 */
.product-filter-wrapper .sky-config-btn-three {
    padding: 10px 24px;
    border: 1px solid #e0e6ed;
    background: #f8f9fa;
    color: #495057;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-filter-wrapper .sky-config-btn-three:hover {
    border-color: #2196F3;
    background: #f0f4ff;
    color: #2196F3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}

.product-filter-wrapper .sky-config-btn-three.active {
    border-color: #2196F3;
    background: linear-gradient(135deg, #2196F3 0%, #00BCD4 100%);
    color: #ffffff;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.product-filter-wrapper .sky-config-btn-three.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.5);
}

/* 介绍文本样式 */
.product-filter-wrapper .form-group-text {
    margin-top: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-left: 3px solid #2196F3;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.product-filter-wrapper .form-group-text i {
    color: #2196F3;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-filter-wrapper .form-group-text .form-group-text-content {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* 分隔线 */
.product-filter-wrapper .sky-form-group:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .product-filter-wrapper {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .product-filter-wrapper .sky-btn-group {
        gap: 8px;
    }
    
    .product-filter-wrapper .sky-config-btn-three {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .product-filter-wrapper .label-title {
        font-size: 14px;
    }
}

/* 移动端标签位置调整 */
@media (max-width: 768px) {
    .product-filter-wrapper .sky-form-group {
        display: block !important;
    }
    
    .product-filter-wrapper .sky-md {
        width: 100% !important;
        margin-bottom: 8px;
    }
    
    .product-filter-wrapper .sky-md-100-p {
        width: 100% !important;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-filter-wrapper {
    animation: fadeInUp 0.4s ease-out;
}

/* 按钮点击效果 */
.product-filter-wrapper .sky-config-btn-three:active {
    transform: translateY(0);
}

/* 标签图标区域 */
.product-filter-wrapper .sky-form-label {
    display: flex;
    align-items: center;
}

/* PC端布局优化 */
@media (min-width: 769px) {
    .product-filter-wrapper .sky-form-group {
        display: flex;
        align-items: flex-start;
    }
    
    .product-filter-wrapper .sky-md {
        flex: 0 0 120px;
        max-width: 120px;
        padding-top: 10px;
    }
    
    .product-filter-wrapper .sky-md-100-p {
        flex: 1;
    }
}

/* 美化滚动条（如果按钮过多） */
.product-filter-wrapper .sky-btn-group::-webkit-scrollbar {
    height: 6px;
}

.product-filter-wrapper .sky-btn-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.product-filter-wrapper .sky-btn-group::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.product-filter-wrapper .sky-btn-group::-webkit-scrollbar-thumb:hover {
    background: #999;
}

