/* 
 * 黄金铠专题页专属样式 
 * 采用黑金高端主题 (Black & Gold Premium Theme)
 */

body.hjk-theme {
    background-color: #121212;
    color: #f0f0f0;
}

/* 覆盖默认头部底部的背景，如有需要可不写，保持原样，这里重点处理内容区 */
.hjk-theme .header {
    background-color: #000;
}

/* 标题样式 */
.hjk-section-title {
    text-align: center;
    padding: 60px 0 20px;
    font-size: 36px;
    color: #d4af37; /* 金色字体 */
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hjk-section-subtitle {
    text-align: center;
    color: #888;
    font-size: 18px;
    margin-bottom: 40px;
}

/* 产品展示区 */
.hjk-products {
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
    padding-bottom: 60px;
}
.hjk-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hjk-product-item {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.hjk-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15); /* 金色发光阴影 */
    border-color: #d4af37;
}
.hjk-product-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* 保持产品图白色底，凸显产品，或者用透明 */
    padding: 20px;
    box-sizing: border-box;
}
.hjk-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 文章列表区 */
.hjk-news {
    background-color: #121212;
    padding: 40px 0 80px;
}
.hjk-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hjk-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.hjk-news-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.hjk-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    border-color: #d4af37;
}
.hjk-news-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}
.hjk-news-content {
    padding: 20px;
}
.hjk-news-date {
    font-size: 13px;
    color: #d4af37;
    margin-bottom: 10px;
    display: block;
}
.hjk-news-title {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hjk-news-summary {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.hjk-news-link {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #d4af37;
    color: #d4af37;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.hjk-news-item:hover .hjk-news-link {
    background: #d4af37;
    color: #000;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .hjk-section-title {
        font-size: 28px;
        padding: 40px 0 15px;
    }
    .hjk-section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .hjk-products-grid, .hjk-news-grid {
        grid-template-columns: 1fr;
    }
}
