/* 全局样式重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft Yahei', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

li {
    list-style: none;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* 宽屏容器设置 */
.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* LOGO样式 */
.logo {
    display: flex;
    align-items: center;
    height: 60px;
    width: 180px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 导航菜单 */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative; /* 为二级菜单定位 */
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.nav-links a:hover {
    color: #296bef; /* 主色调 */
}

.nav-links a.active {
    color: #296bef;
}

/* 二级菜单样式 */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    z-index: 999;
    padding: 10px 0;
}

.submenu li {
    margin: 0;
    padding: 0 20px;
}

.submenu li a {
    padding: 10px 0;
    font-size: 15px;
}

.has-submenu:hover .submenu {
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 轮播图样式 */
.hero {
    height: 100vh;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8));
}

.carousel-item.active {
    opacity: 1;
}

.carousel-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.carousel-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

/* 轮播控制按钮 */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background-color: rgba(255,255,255,0.5);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.indicator.active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
}

/* 全屏Banner样式 - 单张海报设计 */
.banner {
    position: relative;
    width: 100%;
    height: 60vh; /* 调整为更合适的高度，非全屏更实用 */
    min-height: 400px;
    overflow: hidden;
    margin-top: 80px; /* 适配固定导航栏 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* 渐变遮罩层 */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgba(41, 107, 239, 0.7) 0%, rgba(15, 68, 173, 0.9) 100%);
    z-index: 2;
}

/* 作品展示标题区域 - 移到banner中 */
.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.banner-content p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #296bef; /* 主色调 */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #1e57d9; /* 主色调hover效果 */
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    margin-left: 20px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 通用板块样式 */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #296bef;
    border-radius: 3px;
}

.section-title p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 服务板块样式 - 大气的交替图文布局 */
.services {
    background-color: #fff;
    padding: 80px 0 80px 0;
}

/* 服务项容器 - 交替布局（移除圆角、间距，保留阴影） */
.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 0; /* 移除上下间距 */
    gap: 60px;
    background-color: #f8f9fa;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* 保留阴影 */
    transition: all 0.4s ease;
}

/* 左图右文 */
.service-item.img-left {
    flex-direction: row;
}

/* 右图左文 */
.service-item.img-right {
    flex-direction: row-reverse;
}

/* 服务图片容器 */
.service-img {
    width: 50%;
    height: 500px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.05);
}

/* 服务内容容器 */
.service-content {
    width: 50%;
    padding: 0 60px;
}

.service-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #296bef;
}

.service-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* 移除对勾列表样式 */
.service-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #296bef;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #296bef;
}

.service-btn:hover {
    background-color: transparent;
    color: #296bef;
}

/* 旧版服务卡片样式（保留兼容） */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 48px;
    color: #296bef; /* 主色调 */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    font-size: 16px;
}

/* 作品展示板块 */
.portfolio {
    background-color: #f8f9fa;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    margin: 0 10px 10px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn.active {
    background-color: #296bef; /* 主色调 */
    color: #fff;
}

.filter-btn:hover:not(.active) {
    background-color: #eee;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 107, 239, 0.85); /* 主色调 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
}

.portfolio-overlay a {
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.portfolio-overlay a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 价格板块样式 */
.pricing {
    background-color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-header {
    background-color: #2c3e50;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 400;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #2ecc71;
    margin-right: 10px;
}

.pricing-cta {
    text-align: center;
    margin-top: 30px;
}

.pricing-card.popular {
    transform: scale(1.05);
}

.pricing-card.popular .pricing-header {
    background-color: #296bef; /* 主色调 */
}

.pricing-card.popular:hover {
    transform: scale(1.1);
}

/* 新闻板块样式 - 无图片三列布局 */
.news {
    background-color: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    padding: 30px;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-content {
    padding: 0;
}

.news-title {
    font-size: 22px;
    color: #296bef; /* 主色调 */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list li a:hover {
    color: #296bef; /* 主色调 */
}

.news-date {
    color: #999;
    font-size: 14px;
}

.news-readmore {
    color: #296bef; /* 主色调 */
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.news-readmore:hover {
    color: #1e57d9; /* 主色调hover效果 */
}

/* 关于我们板块 */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    min-width: 400px;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 400px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #296bef; /* 主色调 */
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

/* 关于我们页面专属样式 - 类名aboutus避免冲突 */
.aboutus {
    padding: 120px 0 100px 0;
    overflow: hidden;
}

/* 标题区域 - 添加横线装饰 */
.aboutus-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.aboutus-header__title {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* 标题下方小横线装饰 */
.aboutus-header__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #296bef;
}

.aboutus-header__desc {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* 第一行：双图片交互区域 - 移除圆角，增强放大效果 */
.aboutus-double-img {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.aboutus-img-card {
    position: relative;
    height: 400px;
    /* 移除圆角 */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.aboutus-img-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* 增强放大效果 */
    transition: all 0.5s ease;
    transform: scale(1);
}

/* 桌面端hover时图片放大+恢复彩色 */
.aboutus-img-card:hover .aboutus-img-card__img {
    filter: grayscale(0);
    transform: scale(1.08); /* 轻微放大效果 */
}

.aboutus-img-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #fff;
    transition: all 0.5s ease;
    opacity: 0;
}

/* 桌面端hover显示文字层 */
.aboutus-img-card:hover .aboutus-img-card__overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.aboutus-img-card__title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    position: relative;
    display: inline-block;
}

/* 图片层标题下方小横线 */
.aboutus-img-card__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #fff;
}

.aboutus-img-card__text {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    margin-top: 20px;
}

/* 第二行：左文右图区域 */
.aboutus-text-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.aboutus-text-content {
    padding: 20px;
}

.aboutus-text-content__title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* 文本区标题下方小横线 */
.aboutus-text-content__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #296bef;
}

.aboutus-text-content__desc {
    font-size: 18px;
    color: #555;
    line-height: 2;
    margin-bottom: 20px;
    margin-top: 30px;
}

.aboutus-text-content__list {
    list-style: none;
    margin-top: 20px;
}

.aboutus-text-content__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.aboutus-text-content__item i {
    color: #296bef;
    margin-right: 10px;
    margin-top: 6px;
    font-size: 14px;
}

/* 第三行：底部大图按钮区域 - 移除圆角 */
.aboutus-big-img {
    position: relative;
    height: 500px;
    /* 移除圆角 */
    overflow: hidden;
    margin-bottom: 40px;
}

.aboutus-big-img__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    transform: scale(1);
}

/* 桌面端hover时大图放大+恢复彩色 */
.aboutus-big-img:hover .aboutus-big-img__img {
    filter: grayscale(0);
    transform: scale(1.05); /* 轻微放大效果 */
}

.aboutus-big-img__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.aboutus-big-img__title {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

/* 大图标题下方小横线 */
.aboutus-big-img__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #fff;
}

.aboutus-big-img__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #296bef;
    color: #fff;
    /* 移除圆角 */
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(41, 107, 239, 0.3);
    margin-top: 20px;
}

.aboutus-big-img__btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.aboutus-big-img__btn:hover {
    background-color: #1a4fcc;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(41, 107, 239, 0.4);
}

.aboutus-big-img__btn:hover i {
    transform: translateX(5px);
}

.aboutus-big-img__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* 新闻列表页专属样式 - 类名newslist避免冲突 */
.newslist {
    padding: 120px 0;
    background-color: #fff;
}

.newslist-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* 左侧新闻主列表 - SEO核心区域 */
.newslist-main {
    flex: 1;
    min-width: 700px;
}

.newslist-main__title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #296bef;
    font-weight: 700;
}

.newslist-article {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.newslist-article:hover {
    background-color: #f8f9fa;
}

.newslist-article__img {
    width: 200px;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.newslist-article__content {
    flex: 1;
}

.newslist-article__category {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background-color: #296bef;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newslist-article__title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.newslist-article__title a {
    color: inherit;
    text-decoration: none;
}

.newslist-article__title a:hover {
    color: #296bef;
}

.newslist-article__excerpt {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newslist-article__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

.newslist-article__meta i {
    margin-right: 5px;
    color: #296bef;
}

/* 分页样式 */
.newslist-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;
}

.newslist-pagination__item {
    display: inline-block;
    padding: 10px 18px;
    background-color: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.newslist-pagination__item.active {
    background-color: #296bef;
    color: #fff;
}

.newslist-pagination__item:hover:not(.active) {
    background-color: #eee;
    color: #296bef;
}

/* 右侧侧边栏 */
.newslist-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.newslist-sidebar__widget {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.newslist-sidebar__widget-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* 分类导航 */
.newslist-categories {
    list-style: none;
}

.newslist-categories__item {
    margin-bottom: 12px;
}

.newslist-categories__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.newslist-categories__item a:hover {
    color: #296bef;
}

.newslist-categories__item .count {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: #eee;
    border-radius: 50%;
    font-size: 14px;
    color: #999;
}

/* 热门文章 */
.newslist-hot {
    list-style: none;
}

.newslist-hot__item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

.newslist-hot__item:last-child {
    margin-bottom: 0;
}

.newslist-hot__rank {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background-color: #296bef;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    flex-shrink: 0;
}

.newslist-hot__item:nth-child(1) .newslist-hot__rank {
    background-color: #e74c3c;
}

.newslist-hot__item:nth-child(2) .newslist-hot__rank {
    background-color: #f39c12;
}

.newslist-hot__item:nth-child(3) .newslist-hot__rank {
    background-color: #1abc9c;
}

.newslist-hot__title {
    font-size: 15px;
}

.newslist-hot__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newslist-hot__title a:hover {
    color: #296bef;
}

/* 标签云 */
.newslist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newslist-tags__item {
    display: inline-block;
    padding: 6px 12px;
    background-color: #eee;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newslist-tags__item:hover {
    background-color: #296bef;
    color: #fff;
}

/* 联系我们核心样式 - 强制单行排列 */
.contact {
    background-color: #fff;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap; /* 强制单行，不换行 */
}

/* 统一所有卡片样式（电话/QQ/地址/二维码） */
.contact-item, .qrcode-item {
    flex: 1; /* 等分宽度 */
    min-width: 200px;
    padding: 35px 25px;
    background-color: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item:hover, .qrcode-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 普通卡片图标样式 */
.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #296bef 0%, #4a89ff 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin: 0 auto 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(41, 107, 239, 0.2);
}

/* 二维码卡片专门样式（无图标，强制居中） */
.qrcode-item .contact-content {
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #296bef;
}

.contact-content p {
    font-size: 16px;
    color: #586674;
    line-height: 1.8;
    margin-bottom: 8px;
    margin-top: 15px;
}

.contact-content p:last-child {
    margin-bottom: 0;
}

.contact-content a {
    color: #296bef;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #296bef;
    transition: width 0.3s ease;
}

.contact-content a:hover {
    color: #1e57d9;
}

.contact-content a:hover::after {
    width: 100%;
}

/* 二维码图片样式 - 强制居中 */
.qrcode-img {
    width: 180px;
    height: 180px;
    border: 6px solid #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto 15px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block; /* 确保margin auto生效 */
}

.qrcode-img:hover {
    transform: scale(1.05);
}

.qrcode-subdesc {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    padding: 8px 15px;
    background-color: #fff;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid #eee;
    margin: 0 auto;
    text-align: center;
}

/* 作品头部海报区域 */
.project-hero {
    position: relative;
    padding: 180px 0 120px 0;
    color: #fff;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('{dr_thumb($thumb)}') center/cover no-repeat;
    filter: blur(50px); /* 调整模糊程度 */
    z-index: -1;
}

.project-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: -1;
}

.project-hero-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.project-hero-text {
    flex: 1;
    min-width: 300px;
}

.project-hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.project-hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 600px;
}

.project-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.project-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e0e0e0;
}

.project-hero-meta span i {
    color: #296bef;
}

.project-hero-img {
    flex: 1;
    min-width: 300px;
}

.project-hero-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 作品内容区域 */
.project-content {
    padding: 80px 0;
    background-color: #fff;
}

.content-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.content-block {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #296bef;
}

.content-block p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-block img {
    width: 100%;
    border-radius: 8px;
}

.content-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.content-gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.content-gallery-item img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-gallery-item:hover img {
    transform: scale(1.05);
}

/* 页脚样式 */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #296bef;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #296bef;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #296bef;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 14px;
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #296bef 0%, #4a89ff 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(41, 107, 239, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ========== 新闻详情页核心样式 ========== */
.news-detail {
    padding: 120px 0;
    background-color: #fff;
}

.news-detail-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* 左侧新闻详情主体 */
.news-detail-main {
    flex: 1;
    min-width: 700px;
}

/* 面包屑导航 */
.news-breadcrumb {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.news-breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-breadcrumb a:hover {
    color: #296bef;
}

.news-breadcrumb span {
    margin: 0 8px;
    color: #ccc;
}

/* 新闻标题区域 */
.news-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.news-detail-title {
    font-size: 36px;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: #7f8c8d;
}

.news-detail-meta i {
    margin-right: 8px;
    color: #296bef;
}

/* 新闻内容区域 */
.news-detail-content {
    font-size: 18px;
    line-height: 2;
    color: #444;
    padding: 30px 0;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.news-detail-content h2 {
    font-size: 26px;
    color: #2c3e50;
    margin: 30px 0 15px;
    font-weight: 600;
}

.news-detail-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 25px 0 12px;
    font-weight: 600;
}

.news-detail-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: 15px 0 25px 30px;
}

.news-detail-content li {
    margin-bottom: 10px;
}

.news-detail-content blockquote {
    border-left: 4px solid #296bef;
    padding: 15px 20px;
    background-color: #f8f9fa;
    margin: 20px 0;
    color: #666;
}

/* 上下篇导航 */
.news-detail-nav {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 40px;
}

.news-detail-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    max-width: 45%;
}

.news-detail-nav__item:hover {
    color: #296bef;
}

.news-detail-nav__item i {
    font-size: 20px;
    color: #296bef;
}

.news-detail-nav__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.news-detail-nav__label {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

/* 相关推荐 */
.news-detail-related {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.news-detail-related__title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.news-detail-related__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.news-detail-related__item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-detail-related__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.news-detail-related__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-detail-related__content {
    padding: 20px;
}

.news-detail-related__category {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background-color: #296bef;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.news-detail-related__title {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-detail-related__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-detail-related__title a:hover {
    color: #296bef;
}

.news-detail-related__date {
    font-size: 14px;
    color: #999;
}

/* 响应式设计 - 统一整合 */
@media (max-width: 1200px) {
    .carousel-content h1 {
        font-size: 48px;
    }
    .contact-grid {
        gap: 15px;
    }
    .qrcode-img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 992px) {
    /* 导航响应式 */
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: #fff;
        width: 250px;
        height: calc(100vh - 80px);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding: 30px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    /* 移动端二级菜单 */
    .submenu {
        position: static;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 5px;
        margin-left: 15px;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    /* 轮播响应式 */
    .carousel-content h1 {
        font-size: 40px;
    }

    .carousel-content p {
        font-size: 18px;
    }

    /* 价格卡片响应式 */
    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    /* Banner响应式 */
    .banner-content h1 {
        font-size: 38px;
    }
    
    .banner-content p {
        font-size: 18px;
    }

    /* 关于我们页面移动端适配 */
    .aboutus-text-img {
        grid-template-columns: 1fr;
    }

    .aboutus-img-card__overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .aboutus-img-card:hover .aboutus-img-card__img {
        filter: grayscale(100%);
        transform: scale(1);
    }
    
    .aboutus-big-img:hover .aboutus-big-img__img {
        filter: grayscale(100%);
        transform: scale(1);
    }
    
    .aboutus-img-card__title {
        font-size: 24px;
    }
    
    .aboutus-img-card__text {
        font-size: 14px;
        padding: 0 10px;
    }

    /* 联系我们响应式 */
    .contact-grid {
        flex-wrap: wrap;
    }
    
    .contact-item, .qrcode-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
    }

    /* 新闻列表页移动端适配 */
    .newslist-wrap {
        flex-direction: column;
    }

    .newslist-main {
        min-width: 100%;
    }

    .newslist-sidebar {
        width: 100%;
    }

    /* 服务板块响应式 */
    .service-item {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .service-img, .service-content {
        width: 100%;
    }

    .service-img {
        height: 300px;
    }

    .service-content {
        padding: 40px 30px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .service-content p {
        font-size: 16px;
    }

    /* 作品头部响应式 */
    .project-hero-text h1 {
        font-size: 36px;
    }

    .project-hero {
        padding: 60px 0;
    }

    /* 新闻详情页响应式 */
    .news-detail-wrap {
        flex-direction: column;
    }

    .news-detail-main {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    /* 轮播响应式 */
    .carousel-content h1 {
        font-size: 32px;
    }

    .carousel-content p {
        font-size: 16px;
    }

    /* 按钮响应式 */
    .btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    /* 通用板块响应式 */
    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }
    
    .section-title p {
        font-size: 16px;
    }

    /* 关于我们响应式 */
    .about-content {
        gap: 30px;
    }

    .about-img, .about-text {
        min-width: 100%;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Banner响应式 */
    .banner {
        height: 50vh;
        min-height: 350px;
    }
    
    .banner-content h1 {
        font-size: 32px;
    }
    
    .banner-content p {
        font-size: 16px;
    }

    /* 关于我们页面移动端适配 */
    .aboutus-header__title {
        font-size: 32px;
    }

    .aboutus-double-img {
        grid-template-columns: 1fr;
    }

    .aboutus-img-card {
        height: 300px;
    }

    .aboutus-text-content__title {
        font-size: 26px;
    }

    .aboutus-big-img {
        height: 400px;
    }

    .aboutus-big-img__title {
        font-size: 28px;
    }

    /* 联系我们响应式 */
    .qrcode-img {
        width: 140px;
        height: 140px;
    }
    
    .contact-item, .qrcode-item {
        flex: 0 0 100%;
    }

    /* 新闻列表页移动端适配 */
    .newslist-article {
        flex-direction: column;
    }

    .newslist-article__img {
        width: 100%;
        height: 200px;
    }

    .newslist-main__title {
        font-size: 28px;
    }

    /* 作品内容响应式 */
    .project-hero-text h1 {
        font-size: 30px;
    }

    .project-hero-text p {
        font-size: 16px;
    }

    .project-hero {
        padding: 40px 0;
    }

    .project-content {
        padding: 60px 0;
    }

    .content-block h2 {
        font-size: 24px;
    }

    /* 新闻详情页响应式 */
    .news-detail-title {
        font-size: 28px;
    }

    .news-detail-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .news-detail-content h2 {
        font-size: 22px;
    }

    .news-detail-content h3 {
        font-size: 20px;
    }

    .news-detail-nav {
        flex-direction: column;
        gap: 20px;
    }

    .news-detail-nav__item {
        max-width: 100%;
    }

    .news-detail-related__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    /* 容器响应式 */
    .container {
        width: 95%;
        padding: 0 15px;
        max-width: 1400px;
    }

    /* 轮播响应式 */
    .carousel-content h1 {
        font-size: 28px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 20px;
    }

    .portfolio-grid, .news-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 30px;
    }

    /* 移动端轮播控制按钮 */
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Banner响应式 */
    .banner {
        height: 40vh;
        min-height: 300px;
    }
    
    .banner-content h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .banner-content p {
        font-size: 14px;
    }

    /* 关于我们页面移动端适配 */
    .aboutus-header__title {
        font-size: 28px;
    }

    .aboutus-img-card {
        height: 250px;
    }

    .aboutus-big-img {
        height: 300px;
    }

    .aboutus-big-img__title {
        font-size: 24px;
    }

    .aboutus-big-img__btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .aboutus-img-card__title {
        font-size: 20px;
    }
    
    .aboutus-img-card__text {
        font-size: 12px;
        line-height: 1.6;
    }

    /* 联系我们响应式 */
    .contact-item, .qrcode-item {
        padding: 25px 15px;
    }

    /* 新闻列表页移动端适配 */
    .newslist-article__img {
        height: 160px;
    }

    .newslist-main__title {
        font-size: 24px;
    }

    .newslist-article__title {
        font-size: 20px;
    }

    /* 服务板块响应式 */
    .service-img {
        height: 250px;
    }

    .service-content {
        padding: 30px 20px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    /* 作品内容响应式 */
    .project-hero-text h1 {
        font-size: 26px;
    }

    .project-hero-wrap {
        gap: 20px;
    }

    .content-gallery {
        grid-template-columns: 1fr;
    }

    .content-block {
        padding: 20px;
    }

    /* 新闻详情页响应式 */
    .news-detail-title {
        font-size: 24px;
    }

    .news-detail-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 14px;
    }

    .news-detail-related__img {
        height: 150px;
    }
}