/* 品质会务页面专用样式 */

/* ===== 页面容器 ===== */
.conference-page {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* ===== 页面标题区域 ===== */
.page-title-section {
    padding: 106px 0 66px 0;
    background: #fff;
    flex-shrink: 0;
}

.title-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* 标题左侧紫色竖线 */
.title-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #7028aa;
}

.page-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 15px;
    font-family: 'SweiSpring', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.page-subtitle {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 0 15px;
    letter-spacing: 2px;
    font-family: 'RobotoEnglish', 'SourceHanSans', sans-serif;
}

/* ===== Banner区域 ===== */
.banner-section {
    width: 100%;
    /*height: 400px;*/
    overflow: hidden;
    background: linear-gradient(135deg, #7028aa 0%, #512587 100%);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== 分类筛选区域 ===== */
.category-section {
    padding: 40px 0 20px 0;
    background: #fff;
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'SweiSpring', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.category-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.category-btn {
    padding: 0;
    background: transparent;
    border: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SweiSpringSugar', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    text-align: left;
}

.category-btn:hover {
    color: #7028aa;
    box-shadow: none;
    transform: none;
}

.category-btn.active {
    color: #7028aa;
    font-weight: 600;
}

/* ===== 案例展示区域 ===== */
.cases-section {
    padding: 40px 0 20px 0;
    background: #fff;
    flex: 1;
}

.cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    align-items: stretch;
}

.conference-page .case-card {
    background: transparent;
    overflow: visible;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transform: none !important;
    gap: 0;
    margin: 0;
    padding: 0;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.conference-page .case-card:hover {
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.15);
}

.conference-page .case-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    position: relative;
    transform: none !important;
    margin: 0;
    padding: 0;
}

.conference-page .case-card:hover .case-image-wrapper {
    box-shadow: 0 8px 24px rgba(112, 40, 170, 0.15);
    transform: none !important;
}

.conference-page .case-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 0;
}

.conference-page .case-card:hover .case-image {
    transform: scale(1.1);
}

.case-title-wrapper {
    width: 90%;
    margin: 15px auto;
    min-height: 51px;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.case-title {
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    font-family: 'SweiSpringSugar', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    text-align: left;
    width: 100%;
}

.no-cases {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 1.1rem;
    color: #999;
}

/* ===== 加载更多按钮 ===== */
.load-more-wrapper {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.load-more-btn:hover {
    color: #7028aa;
    transform: translateY(3px);
}

.arrow-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.load-more-text {
    display: none;
}

.load-more-btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more-btn.loading .arrow-icon {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ===== 底部联系信息区域 ===== */
.conference-page .contact-info-section {
    background: linear-gradient(135deg, #512587 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 0 !important;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    height: 20vh;
    justify-content: center;
}

.conference-page .contact-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.conference-page .contact-items {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.conference-page .qrcode-img {
    width: 60px !important;
    height: 60px !important;
}

.conference-page .qrcode-label {
    font-size: 10px !important;
}

.conference-page .info-icon {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-shrink: 0 !important;
}

.conference-page .info-icon img {
    height: 18px !important;
    width: auto !important;
    filter: brightness(0) invert(1) !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.conference-page .info-text {
    height: 32px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    overflow: visible !important;
    width: auto !important;
    min-width: fit-content !important;
    padding: 0 !important; /* 移除左右padding，与divider对齐 */
}

.conference-page .info-text p {
    font-size: 10px !important;
    line-height: 1.3 !important;
    margin: 2px 0 !important;
}

.conference-page .contact-item.info-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.conference-page .info-content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    width: auto !important;
}

.conference-page .info-content-wrapper .info-icon {
    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
}

.conference-page .info-divider {
    height: 2px !important;
    background: white !important;
    width: auto !important;
    align-self: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    flex-shrink: 0 !important;
}

.conference-page .info-content-wrapper .info-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.conference-page .info-text::before {
    display: none !important;
}

.conference-page .copyright-info {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 5px 20px 0;
    text-align: center;
    border-top: none;
    box-sizing: border-box;
}

.conference-page .copyright-info p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-family: 'SweiSpringSugar', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* ===== 响应式设计 ===== */

/* 平板设备 */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .banner-section {
        height: 300px;
    }
}

/* 移动设备 */
@media (max-width: 768px) {
    .page-title-section {
        padding: 100px 0 30px 0;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.8rem;
    }
    
    .banner-section {
        height: 250px;
    }
    
    .category-section {
        padding: 30px 0 15px 0;
    }
    
    .category-buttons {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-image-wrapper {
        height: 200px;
    }
}

/* 小屏幕移动设备 */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.3rem;
    }
    
    .page-subtitle {
        font-size: 0.75rem;
    }
    
    .banner-section {
        height: 200px;
    }
    
    .category-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .case-title {
        font-size: 0.9rem;
        padding: 15px;
    }
}

/* ===== 导航菜单选中状态 ===== */
.conference-page .nav-item.active .nav-link {
    color: #7028aa !important;
}

.conference-page .nav-item.active .nav-underline {
    width: 100% !important;
    background-color: #7028aa !important;
}
