/* 相关案例美化样式 */

/* 标题区域美化 */
.case-read-title{
    color: #ff5722b3;
    text-align: center;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
}
.case-read-img {
    color: #4c4545;
}
.section-header {
    text-align: center;
    margin: 80px 0 50px;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0 0 24px 0;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF7025, #FF5722);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FF7025;
    border-radius: 50%;
    top: -4px;
}

.section-divider::before {
    left: -6px;
}

.section-divider::after {
    right: -6px;
}

/* 响应式标题 */
@media (max-width: 768px) {
    .section-header {
        margin: 60px 0 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin: 40px 0 30px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

.related-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.case-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card:hover .case-image {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 112, 37, 0.9) 0%, rgba(255, 87, 34, 0.9) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card:hover .case-overlay-content {
    transform: translateY(0);
}

.case-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.case-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.case-overlay .case-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.case-overlay .case-description {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

.case-info {
    padding: 24px;
    background: white;
}

.case-title-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 16px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.case-card:hover .case-title-text {
    color: #FF7025;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #7f8c8d;
}

.case-category {
    background: linear-gradient(135deg, #FF7025, #FF5722);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-date {
    color: #95a5a6;
    font-weight: 400;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .related-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 15px;
    }
    
    .case-image-wrapper {
        height: 200px;
    }
    
    .case-info {
        padding: 20px;
    }
    
    .case-title-text {
        font-size: 16px;
    }
    
    .case-overlay .case-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .related-cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 10px;
    }
    
    .case-image-wrapper {
        height: 180px;
    }
    
    .case-info {
        padding: 16px;
    }
    
    .case-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* 加载动画 */
.case-card {
    animation: fadeInUp 0.6s ease-out;
}

.case-card:nth-child(1) { animation-delay: 0.1s; }
.case-card:nth-child(2) { animation-delay: 0.2s; }
.case-card:nth-child(3) { animation-delay: 0.3s; }
.case-card:nth-child(4) { animation-delay: 0.4s; }
.case-card:nth-child(5) { animation-delay: 0.5s; }
.case-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 特殊效果 */
.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF7025, #FF5722, #FF9800);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.case-card:hover::before {
    transform: scaleX(1);
}

/* 卡片内容悬停时的微调 */
.case-card:hover .case-info {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
}

/* 空状态样式 */
.related-cases-grid:empty::before {
    content: '暂无相关案例';
    display: block;
    text-align: center;
    padding: 60px 20px;
    color: #95a5a6;
    font-size: 18px;
    font-style: italic;
}

/* 加载状态 */
.case-card.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* 图片加载失败时的占位符 */
.case-image.error {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 14px;
}

.case-image.error::before {
    content: '图片加载失败';
}

/* 卡片标签动画 */
.case-category {
    position: relative;
    overflow: hidden;
}

.case-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.case-card:hover .case-category::before {
    left: 100%;
}

/* 卡片阴影深度变化 */
.case-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* 翻页按钮美化样式 */

/* 第一个翻页按钮区域 */
.navigation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.navigation-buttons a {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF7025, #FF5722);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 112, 37, 0.3);
    position: relative;
    overflow: hidden;
}

.navigation-buttons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.navigation-buttons a:hover::before {
    left: 100%;
}

.navigation-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 112, 37, 0.4);
    background: linear-gradient(135deg, #FF5722, #E64A19);
}

.navigation-buttons a:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 112, 37, 0.3);
}

/* 第二个翻页按钮区域 */
.page-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF7025, #FF5722);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.3);
}

.nav-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    z-index: 2;
    position: relative;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.nav-btn:hover .nav-icon svg {
    transform: scale(1.1);
}

.nav-text {
    z-index: 2;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 响应式翻页按钮 */
@media (max-width: 768px) {
    .navigation-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .navigation-buttons a {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .page-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navigation-buttons a {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .nav-btn {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 120px;
    }
}

/* 按钮禁用状态 */
.nav-btn.disabled,
.navigation-buttons a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    pointer-events: none;
}

.nav-btn.disabled:hover,
.navigation-buttons a.disabled:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.2);
}

/* 按钮加载状态 */
.nav-btn.loading,
.navigation-buttons a.loading {
    position: relative;
    color: transparent;
}

.nav-btn.loading::after,
.navigation-buttons a.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 按钮点击波纹效果 */
.nav-btn::after,
.navigation-buttons a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-btn:active::after,
.navigation-buttons a:active::after {
    width: 300px;
    height: 300px;
}

/* 分页样式美化 */
.pager {
    position: relative;
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pager ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.pager li {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.pager a,
.pager span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #495057;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.pager a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 112, 37, 0.1), transparent);
    transition: left 0.6s ease;
}

.pager a:hover::before {
    left: 100%;
}

.pager a:hover {
    background: linear-gradient(135deg, #FF7025, #FF5722);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 112, 37, 0.3);
    border-color: #FF5722;
}

.pager a:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 112, 37, 0.2);
}

/* 当前页样式 */
.pager .thisclass a,
.pager a.now {
    background: linear-gradient(135deg, #FF7025, #FF5722);
    color: white;
    border-color: #FF5722;
    box-shadow: 0 4px 15px rgba(255, 112, 37, 0.3);
    font-weight: 600;
}

.pager .thisclass a:hover,
.pager a.now:hover {
    background: linear-gradient(135deg, #FF5722, #E64A19);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 112, 37, 0.4);
}

/* 上一页下一页按钮 */
.pager .p1 a {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border-color: #495057;
    min-width: 80px;
    font-weight: 500;
}

.pager .p1 a:hover {
    background: linear-gradient(135deg, #FF7025, #FF5722);
    border-color: #FF5722;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 112, 37, 0.3);
}

/* 页码按钮特殊样式 */
.pager .p2 a,
.pager .p3 a {
    min-width: 44px;
    font-weight: 500;
}

/* 禁用状态 */
.pager a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #dee2e6, #ced4da);
    color: #6c757d;
    pointer-events: none;
}

.pager a.disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 分页信息显示 */
.pager .p4 {
    display: block !important;
    margin: 0 20px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

/* 响应式分页 */
@media (max-width: 768px) {
    .pager {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .pager ul {
        gap: 6px;
    }
    
    .pager a,
    .pager span {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }
    
    .pager .p1 a {
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .pager {
        padding: 25px 15px;
    }
    
    .pager a,
    .pager span {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 12px;
    }
    
    .pager .p1 a {
        min-width: 60px;
        font-size: 12px;
    }
    
    .pager .p4 {
        margin: 0 10px;
        font-size: 12px;
    }
}

/* 分页动画效果 */
.pager a {
    animation: fadeInUp 0.6s ease-out;
}

.pager li:nth-child(1) a { animation-delay: 0.1s; }
.pager li:nth-child(2) a { animation-delay: 0.2s; }
.pager li:nth-child(3) a { animation-delay: 0.3s; }
.pager li:nth-child(4) a { animation-delay: 0.4s; }
.pager li:nth-child(5) a { animation-delay: 0.5s; }
.pager li:nth-child(6) a { animation-delay: 0.6s; }
.pager li:nth-child(7) a { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 分页加载状态 */
.pager.loading {
    position: relative;
}

.pager.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #FF7025;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

/* 分页按钮点击效果 */
.pager a:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* 分页按钮焦点状态 */
.pager a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 112, 37, 0.3);
}

/* 分页按钮悬停时的图标效果 */
.pager .p1 a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.pager .p1 a:hover::before {
    width: 100%;
    height: 100%;
}

/* 分页按钮组悬停效果 */
.pager:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

/* 分页按钮悬停时的文字阴影 */
.pager a:hover {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 分页按钮悬停时的边框动画 */
.pager a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF7025, #FF5722) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pager a:hover::after {
    opacity: 1;
}

/* 图片边框效果 */
.case-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF7025, #FF5722) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover .case-image-wrapper::after {
    opacity: 1;
} 

/* 新闻导航样式美化 */
.news-type {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.news-type h3 {
    color: #495057;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.news-type h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.news-type ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-type li {
    margin: 0;
}

.news-type a {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #495057;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

.news-type a:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.news-type a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-type {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .news-type h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .news-type ul {
        gap: 8px;
    }
    
    .news-type a {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 70px;
    }
} 
/* 新闻导航样式美化 */
.news-type {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.news-type h3 {
    color: #495057;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.news-type h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.news-type ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-type li {
    margin: 0;
}

.news-type a {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #495057;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

.news-type a:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.news-type a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-type {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .news-type h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .news-type ul {
        gap: 8px;
    }
    
    .news-type a {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 70px;
    }
}