/*
Theme Name: IDC主题
Theme URI: http://yourwebsite.com
Description: 专为IDC服务商信息发布设计的Typecho主题
Version: 1.0.0
Author: Your Name
Author URI: http://yourwebsite.com
*/

/* 导入基础样式 */
@import url('normalize.css');
@import url('grid.css');

/* IDC主题核心样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
    color: #e6e6e6;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* 头部样式 */
#header {
    background: rgba(26, 42, 58, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.site-name a {
    color: #4da6ff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.description {
    color: #a0a0a0;
    margin-top: 5px;
}

/* 导航菜单 */
#nav-menu {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

#nav-menu a {
    color: #e6e6e6;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

#nav-menu a:hover,
#nav-menu a.current {
    background: rgba(77, 166, 255, 0.1);
    color: #4da6ff;
}

/* 搜索表单 */
#search {
    display: flex;
    gap: 10px;
}

#search .text {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #e6e6e6;
}

#search .submit {
    padding: 8px 15px;
    background: #4da6ff;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

#search .submit:hover {
    background: #357abd;
}

/* 主内容区 */
#main {
    margin-top: 30px;
}

/* IDC产品表格 */
.idc-table-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.idc-table {
    width: 100%;
    border-collapse: collapse;
}

.idc-table thead {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.idc-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.idc-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.idc-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

.idc-table td {
    padding: 15px;
    font-size: 1rem;
}

/* 服务商标签 */
.provider {
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
}

.provider-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
    min-width: 40px;
    text-align: center;
}

.provider-tag.live { background: #e74c3c; color: white; }
.provider-tag.hot { background: #f39c12; color: white; }
.provider-tag.new { background: #2ecc71; color: white; }
.provider-tag.recommend { background: #9b59b6; color: white; }

.price {
    font-weight: 700;
    color: #f1c40f;
    font-size: 1.2rem;
}

.region { color: #3498db; font-weight: 600; }
.line { color: #1abc9c; }

/* 操作按钮 */
.action-buttons {
    display: flex;
    gap: 5px;
}

.buy-btn, .detail-btn {
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.buy-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
}

.detail-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 发布按钮 */
.publish-section {
    text-align: center;
    margin: 30px 0;
}

.publish-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.publish-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
}

/* 页脚 */
#footer {
    background: rgba(13, 27, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    color: #a0a0a0;
}

#footer a {
    color: #4da6ff;
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .idc-table-container {
        overflow-x: auto;
    }
    
    .idc-table {
        min-width: 1000px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    #nav-menu {
        flex-direction: column;
        gap: 10px;
    }
}

/* 文章样式 */
.post {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.post-title {
    color: #4da6ff;
    margin-bottom: 15px;
}

.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-meta {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #a0a0a0;
    flex-wrap: wrap;
}

.post-content {
    line-height: 1.8;
}

.tags {
    margin-top: 20px;
    color: #a0a0a0;
}

.post-near {
    list-style: none;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 评论样式 */
#comments {
    margin-top: 40px;
}

.respond {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.comment-list {
    list-style: none;
}

.comment-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: 600;
    color: #4da6ff;
}

.comment-meta {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* 侧边栏 */
#secondary {
    margin-top: 30px;
}

.widget {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.widget-title {
    color: #4da6ff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.widget-list {
    list-style: none;
}

.widget-list li {
    margin-bottom: 8px;
}

.widget-list a {
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s;
}

.widget-list a:hover {
    color: #4da6ff;
}
/* 单栏布局优化 */
#main {
    width: 100% !important;
    margin-right: 0 !important;
}

/* 隐藏侧边栏 */
#secondary {
    display: none;
}

/* 发布按钮样式优化 */
.publish-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.publish-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.publish-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* 导航栏发布按钮 */
.publish-link {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 10px;
    transition: all 0.3s;
}

.publish-link:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
    transform: translateY(-1px);
}

/* 页脚样式优化 */
.footer-content {
    text-align: center;
    padding: 20px 0;
    color: #a0a0a0;
}

.footer-content a {
    color: #4da6ff;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* 空状态提示 */
.idc-table-container:empty::before {
    content: "暂无IDC产品信息，点击上方按钮发布第一个产品";
    display: block;
    text-align: center;
    padding: 60px 20px;
    color: #a0a0a0;
    font-size: 1.1rem;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .publish-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .publish-link {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
    
    #nav-menu {
        flex-direction: column;
        gap: 10px;
    }
}
/* 空状态样式 */
.idc-table tbody tr td[colspan] {
    text-align: center;
    padding: 60px 20px !important;
    color: #a0a0a0;
    font-size: 1.1rem;
}

.idc-table tbody tr td[colspan] .fas {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.5;
}

/* 确保表格正确显示 */
.idc-table {
    width: 100%;
    border-collapse: collapse;
}

.idc-table th,
.idc-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 移除之前的空状态伪元素样式 */
.idc-table-container:empty::before {
    content: none;
}
/* 置顶区域样式 */
.sticky-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
    color: #4da6ff;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 置顶表格特殊样式 */
.sticky-table {
    border: 2px solid rgba(243, 156, 18, 0.3);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.2);
}

.sticky-table .idc-table thead {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* 置顶标签样式 */
.provider-tag.sticky {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

/* 普通区域样式 */
.normal-section {
    margin-top: 40px;
}

/* 普通标签样式 */
.provider-tag.normal {
    background: rgba(255, 255, 255, 0.2);
    color: #e6e6e6;
}
/* 服务商名称样式优化 */
.provider-name {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

/* 标签样式优化 */
.provider-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 10px;
    min-width: 50px;
    text-align: center;
}

.provider-tag.normal {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.provider-tag.hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.provider-tag.new {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.provider-tag.recommend {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.provider-tag.sticky {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

/* 表格行点击修复 */
.idc-table tbody tr {
    cursor: default !important;
}

.idc-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: none !important;
    box-shadow: none !important;
}

/* 操作按钮样式优化 */
.action-buttons {
    display: flex;
    gap: 8px;
}

.buy-btn, .detail-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
}

.buy-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
    transform: translateY(-1px);
}

.detail-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
/* 文章详情页居中样式 - 精细版 */
.post {
    max-width: 100%;
}

.post-title {
    text-align: center;
    font-size: 2.2rem;
    color: #4da6ff;
    margin: 0 0 1px 0;
    padding: 0;
    font-weight: 700;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #357abd;
}

.post-meta {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0 0 30px 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.post-meta li {
    display: inline-flex;
    align-items: center;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.post-meta li a {
    color: #4da6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-meta li a:hover {
    color: #357abd;
}

.post-content {
    text-align: left;
    line-height: 1.8;
    margin-top: 20px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .post-title {
        font-size: 1.8rem;
        margin-bottom: 12px; /* 移动端也相应减少 */
    }
    
    .post-meta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px; /* 移动端减少底部间距 */
        padding: 10px 0; /* 移动端减少内边距 */
    }
    
    .post-meta li {
        display: block;
    }
}
/* IDC置顶插件样式 */
.sticky-tag {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
}

.sticky-section {
    margin-bottom: 30px;
}

.sticky-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.sticky-header h2 {
    color: #4da6ff;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
/* 表格操作列样式优化 */
.action-buttons, .detail-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.buy-btn, .detail-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
}

.buy-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
    transform: translateY(-1px);
}

.detail-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.no-buy-link {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-style: italic;
}

/* 表格固定布局 - 确保所有列对齐 */
.idc-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* 添加固定布局 */
}

/* 设置所有列的宽度百分比 */
.idc-table th:nth-child(1),
.idc-table td:nth-child(1) {
    width: 12%; /* 服务商 */
    text-align: left;
}

.idc-table th:nth-child(2),
.idc-table td:nth-child(2) {
    width: 8%; /* 地区 */
    text-align: center;
}

.idc-table th:nth-child(3),
.idc-table td:nth-child(3) {
    width: 10%; /* 线路 */
    text-align: center;
}

.idc-table th:nth-child(4),
.idc-table td:nth-child(4) {
    width: 8%; /* 内存 */
    text-align: center;
}

.idc-table th:nth-child(5),
.idc-table td:nth-child(5) {
    width: 8%; /* CPU */
    text-align: center;
}

.idc-table th:nth-child(6),
.idc-table td:nth-child(6) {
    width: 10%; /* 硬盘 */
    text-align: center;
}

.idc-table th:nth-child(7),
.idc-table td:nth-child(7) {
    width: 8%; /* 流量 */
    text-align: center;
}

.idc-table th:nth-child(8),
.idc-table td:nth-child(8) {
    width: 8%; /* 带宽 */
    text-align: center;
}

.idc-table th:nth-child(9),
.idc-table td:nth-child(9) {
    width: 8%; /* 价格 */
    text-align: center;
}

.idc-table th:nth-child(10),
.idc-table td:nth-child(10) {
    width: 8%; /* 购买 */
    text-align: center;
}

.idc-table th:nth-child(11),
.idc-table td:nth-child(11) {
    width: 8%; /* 详情 */
    text-align: center;
}

/* 表格单元格统一样式 */
.idc-table th,
.idc-table td {
    padding: 12px 8px;
    vertical-align: middle;
    word-break: break-word;
}

/* 响应式：小屏幕时允许水平滚动 */
@media (max-width: 1200px) {
    .idc-table-container {
        overflow-x: auto;
    }
    
    .idc-table {
        min-width: 1000px;
        table-layout: auto;
    }
}

/* 操作按钮居中 */
.action-buttons, .detail-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.buy-btn, .detail-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
}

.buy-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
    transform: translateY(-1px);
}

.detail-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.no-buy-link {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    display: block;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .idc-table th:nth-last-child(2),
    .idc-table td:nth-last-child(2),
    .idc-table th:last-child,
    .idc-table td:last-child {
        width: 80px;
    }
    
    .buy-btn, .detail-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* 发布按钮在标题右边 */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    color: #4da6ff;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.publish-btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.publish-btn-header:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .publish-btn-header {
        width: 100%;
        justify-content: center;
    }
}

/* 修复表格单元格背景和文字颜色 */
.idc-table tbody td {
    background: transparent !important;
    color: #e6e6e6 !important;
    padding: 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 确保表格内所有文字都是亮色 */
.idc-table tbody td,
.idc-table tbody td * {
    color: #e6e6e6;
}

/* 修复价格颜色 */
.idc-table .price {
    color: #f1c40f !important;
    font-weight: 700;
}

/* 修复地区和线路颜色 */
.idc-table .region {
    color: #3498db !important;
}

.idc-table .line {
    color: #1abc9c !important;
}

/* 移除之前可能影响表格的输入框样式 */
input[type="text"], 
select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #e6e6e6;
    padding: 10px 12px;
}

/* 确保表格内的文本不是输入框样式 */
.idc-table td,
.idc-table td input,
.idc-table td select {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

/* 服务商名称样式 */
.provider-name {
    color: #ffffff !important;
    font-weight: 600;
}

/* 标签样式 */
.provider-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 10px;
    min-width: 50px;
    text-align: center;
}

.provider-tag.normal {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.provider-tag.hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.provider-tag.new {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.provider-tag.recommend {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.provider-tag.sticky {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}
/* 置顶区域头部按钮样式 */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.apply-sticky-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.apply-sticky-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    color: white;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .apply-sticky-btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}