
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}
.fl { float: left; }
.fr { float: right; }
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 顶部整体渐变容器 */
.top-gradient-wrapper {
    background: linear-gradient(to bottom, #e8f4f8 0%, #f0f8fc 40%, #fafbfc 70%, #ffffff 100%);
    box-shadow: 0 2px 8px rgba(0,136,204,0.1);
}

/* 顶部信息栏 */
.top-bar {
    height: 40px;
    line-height: 40px;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-date {
    color: #666;
    font-size: 14px;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.top-links a:hover {
    color: #0088cc;
}
/* APP二维码悬停 */
.app-qrcode-wrapper {
    position: relative;
}

.qrcode-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 160px;
    text-align: center;
}

.app-qrcode-wrapper:hover .qrcode-popup {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.qrcode-arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.qrcode-image {
    width: 130px;
    height: 130px;
    display: block;
    margin: 0 auto 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.qrcode-text {
    font-size: 13px;
    color: #666;
    margin: 0;
    padding: 0;
}

/* Logo区域 */
.header {
    padding: 20px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0099dd 0%, #0077bb 50%, #005599 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,136,204,0.3);
}

.logo-icon::before {
    content: "";
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 28px;
    color: #0088cc;
    font-weight: bold;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 12px;
    color: #999;
}

/* 搜索框 */
.search-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-tips {
    color: #999;
    font-size: 13px;
}

.search-box {
    display: flex;
}

.search-input {
    width: 280px;
    height: 38px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-input:focus {
    border-color: #0088cc;
}

.search-btn {
    width: 70px;
    height: 38px;
    background: linear-gradient(to bottom, #0099dd 0%, #0077bb 100%);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,136,204,0.2);
}

.search-btn:hover {
    background: linear-gradient(to bottom, #0088cc 0%, #0066aa 100%);
    box-shadow: 0 3px 6px rgba(0,136,204,0.3);
}

/* 导航栏 */
.nav {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.nav-list {
    display: flex;
    height: 50px;
}

.nav-list li {
    flex: 1;
    text-align: center;
}

.nav-list a {
    display: block;
    height: 50px;
    line-height: 50px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    background: linear-gradient(to bottom, #0099dd 0%, #0077bb 100%);
    color: #fff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* 主内容区 */
.main-wrapper {
    padding: 20px 0;
}

/* 头条区域 */
.headline-section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: flex;
    gap: 20px;
}

/* 轮播图 */
.banner-slider {
    flex: 1;
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.banner-list {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.banner-item.active {
    opacity: 1;
    z-index: 1;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    padding: 40px 20px 20px;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
}

.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 3;
}

.banner-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    font-size: 20px;
    user-select: none;
}

.banner-arrow:hover {
    background: rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.8);
}

/* 轮播指示器 */
.banner-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.banner-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-indicator.active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

/* 重点推荐 */
.featured-news {
    width: 440px;
}

.featured-title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0088cc;
}

.featured-main {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.featured-main a {
    color: #333;
    transition: color 0.3s;
}

.featured-main a:hover {
    color: #0088cc;
}

.featured-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e8e8e8;
    position: relative;
    padding-left: 20px;
}

.featured-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #0088cc;
    font-size: 12px;
}

.featured-list a {
    color: #666;
    font-size: 15px;
    transition: color 0.3s;
    display: block;
}

.featured-list a:hover {
    color: #0088cc;
}

/* 广告横幅轮播 */
.ad-banner-slider {
    margin-bottom: 20px;
    position: relative;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
}

.ad-banner-list {
    position: relative;
    width: 100%;
    height: 100%;
}

.ad-banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.ad-banner-item.active {
    opacity: 1;
    z-index: 1;
}

.ad-banner-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

/* 广告轮播指示器 */
.ad-banner-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.ad-banner-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.ad-banner-indicator.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* 卡片区 */
.card-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.promo-card {
    flex: 1;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 两栏布局 */
.two-column-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.two-column-left {
    flex: 1;
}

.two-column-right {
    flex: 1;
}

/* 专栏和数字报的特殊布局 - 右侧固定宽度 */
.two-column-section.column-digitalpaper .two-column-right {
    width: 380px;
    flex: none;
}

/* 内容模块 */
.content-module {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.module-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0088cc;
}

.module-icon {
    width: 24px;
    height: 24px;
    background: #0088cc;
    border-radius: 3px;
    margin-right: 10px;
}

.module-title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.module-title a {
    color: #333;
    transition: color 0.3s;
}

.module-title a:hover {
    color: #0088cc;
}

/* 专栏模块 - 大图+列表 */
.column-content {
    display: flex;
    gap: 20px;
}

.column-featured {
    width: 380px;
    /*height: 240px;*/
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.column-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-featured-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    padding: 30px 15px 12px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    z-index: 2;
}

.column-list {
    flex: 1;
}

.column-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #e8e8e8;
}

.column-list a {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s;
}

.column-list a:hover {
    color: #0088cc;
}

/* 视频模块 - 左大图右三个新闻 */
.video-layout {
    display: flex;
    gap: 20px;
}

.video-featured {
    width: 420px;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.video-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.video-list {
    flex: 1;
}

.video-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.video-item:first-child {
    padding-top: 0;
}

.video-thumb {
    width: 160px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.6);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}

.video-info h4 {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: normal;
}

.video-info h4 a {
    color: #333;
    transition: color 0.3s;
}

.video-info h4 a:hover {
    color: #0088cc;
}

.video-meta {
    font-size: 12px;
    color: #999;
}

/* 民调/图集模块 - 左中图右六个列表 */
.poll-layout {
    display: flex;
    gap: 20px;
}

.poll-featured {
    width: 420px;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.poll-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.poll-list {
    flex: 1;
}

.poll-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.poll-item:first-child {
    padding-top: 0;
}

.poll-thumb {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.poll-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poll-info {
    flex: 1;
}

.poll-info h4 {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: normal;
}

.poll-info h4 a {
    color: #333;
    transition: color 0.3s;
}

.poll-info h4 a:hover {
    color: #0088cc;
}

.poll-meta {
    font-size: 12px;
    color: #999;
}

/* 图集布局 - 左大图右6小图 */
.gallery-layout {
    display: flex;
    gap: 15px;
}

.gallery-featured {
    width: 580px;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-featured:hover img {
    transform: scale(1.05);
}

.gallery-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 182px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 新闻和江西开发区等模块 - 上图下列表 */
.news-column-module {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
}

.news-column-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0088cc;
}

.news-column-icon {
    width: 24px;
    height: 24px;
    background: #0088cc;
    border-radius: 3px;
    margin-right: 10px;
}

.news-column-title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.news-column-title a {
    color: #333;
    transition: color 0.3s;
}

.news-column-title a:hover {
    color: #0088cc;
}

.news-column-featured {
    width: 100%;
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-column-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-column-list {
    list-style: none;
}

.news-column-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.news-column-item:first-child {
    padding-top: 0;
}

.news-column-item:last-child {
    border-bottom: none;
}

.news-column-thumb {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-column-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-column-info {
    flex: 1;
}

.news-column-info h4 {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: normal;
}

.news-column-info h4 a {
    color: #333;
    transition: color 0.3s;
}

.news-column-info h4 a:hover {
    color: #0088cc;
}

.news-column-meta {
    font-size: 12px;
    color: #999;
}

/* 侧边栏模块 */
.sidebar-module {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
}

.sidebar-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0088cc;
}

.sidebar-title a {
    color: #333;
}

.sidebar-featured {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e8e8e8;
}

.sidebar-list a {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s;
}

.sidebar-list a:hover {
    color: #0088cc;
}

/* 底部 */
.footer {
    background: linear-gradient(to bottom, #0077cc 0%, #005599 100%);
    color: #fff;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    margin: 0 15px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-info {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.9;
}