/* 主要内容区域 */
.main-content {
    width: 1200px;
    margin: 0 auto;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #3066e4;
}

.breadcrumb i {
    font-size: 12px;
    margin: 0 8px;
}

/* 资讯详情样式 */
.news-detail {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    padding: 30px;
}

.news-header {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.news-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    font-size: 14px;
    color: #888;
}

.news-meta div {
    display: flex;
    align-items: center;
}

.news-meta i {
    margin-right: 5px;
}

.news-banner {
    width: 100%;
    height: 420px;
    object-fit: cover;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

/* 轮播图样式 */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.carousel-slides {
    position: relative;
    height: 420px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    gap: 20px;
}

.carousel-prev,
.carousel-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: white;
}

.news-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

/* 相关文章 */
.related-news {
    display: none;
}

/* 分享按钮 */
.share-buttons {
    display: none;
}

/* 页脚样式 */
footer {
    background-color: #1a1a1a;
    color: #777;
    padding: 15px 12%;
    margin-top: auto;
    font-size: 12px;
    text-align: center;
    line-height: 1.6;
}

footer a {
    color: #777;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* 顶部状态栏 */
.top-bar {
    display: none;
}

.sub-nav {
    background-color: #f5f5f5;
    padding: 0 12%;
    border-bottom: 1px solid #e5e5e5;
}

.sub-nav-links {
    display: flex;
    height: 40px;
}

.sub-nav-links a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    height: 100%;
}

.sub-nav-links a:hover, 
.sub-nav-links a.active {
    color: #3066e4;
    background-color: #e8e8e8;
}