/* Techweb 页面专用样式 - 不影响其他页面 */

/* 页面标题区域 */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(17, 153, 142, 0.3);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
}

/* 表格样式优化 */
.techweb-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.techweb-table thead {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.techweb-table th {
    padding: 20px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
}

.techweb-table td {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.techweb-table tbody tr {
    transition: all 0.3s ease;
}

.techweb-table tbody tr:hover {
    background-color: rgba(17, 153, 142, 0.05);
    transform: translateX(5px);
}

.techweb-table tbody tr:last-child td {
    border-bottom: none;
    background-color: #f8f9fa;
    font-style: italic;
    color: #666;
}

/* 链接样式 */
.techweb-table a {
    color: #11998e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
}

.techweb-table a:hover {
    background-color: rgba(17, 153, 142, 0.1);
    color: #38ef7d;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .techweb-table {
        font-size: 0.9rem;
    }

    .techweb-table th,
    .techweb-table td {
        padding: 12px 8px;
    }
}

