/* 主体容器样式 */
body {
    margin: 0;
}

.main-container {
    width: 100%;
    background: #f2f7fb;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.main-content {
    overflow: hidden;
}

/* 第一头条新闻区域 */
.first-headline-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
}

.first-headline {
    font-size: 36px;
    font-weight: bold;
    color: #2c5aa0;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
}

.ct_second {
    display: flex;
    width: 1300px;
    align-items: center;
}

.headline-details {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    text-align: center;
    padding: 5px 10px;
}

.headline-details a span {
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    cursor: pointer;
}

.headline-details::before{
    content: '';
    position: absolute;
    left: 100%;
    top: 20%;
    width: 1px;
    height: 18px;
    background-color: #000000;
    transform: translate(0, 0);
}
.headline-details:nth-child(3)::before{
    content: '';
    position: absolute;
    left: 100%;
    top: 20%;
    height: 18px;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
}

/* 第一头条新闻区域鼠标移入效果 */
.first-headline:hover {
    cursor: pointer;
    color: #63b3ff;
    transition: color 0.3s ease;
}

.headline-details span:hover {
    cursor: pointer;
    color: #63b3ff;
    transition: color 0.3s ease;
}

.headline-details .separator:hover {
    cursor: pointer;
    color: #63b3ff;
    transition: color 0.3s ease;
}

/* 红色横幅区域 */
.red-banner-section {
    width: 1400px;
    height: 120px;
    overflow: hidden;
}

.red-banner-section img {
    width: 100%;
    height: 100%;
}

.party-emblem {
    font-size: 24px;
    font-style: normal;
}

/* 轮播图和推荐位区域 */
.carousel-recommend-section {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    background: #f2f7fb;
}

.carousel-section {
    flex: 2;
}

.carousel-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.arrow-left,
.arrow-right {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s;
}

.arrow-left:hover,
.arrow-right:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

.recommend-section {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recommend-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommend-list a li {
    padding: 13px 20px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 16px;
    height: 24px;
    line-height: 31px;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    cursor: pointer;
}

.recommend-list a li:hover {
    color: #fff;
    background: #7baabe;
    padding-left: 15px;
}

/* 热点关注 */
.hot-topics-section {
    padding: 0 30px 20px;
    border-radius: 8px;
    border-bottom: 1px solid #eee;
    background: #fff;
    margin-bottom: 15px;
}

.hot-topics {
    position: relative;
}

.hot-topics p {
    color: #333;
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    border-bottom: 2px solid #2c5aa0;
    padding: 15px 0 10px 0;
    display: inline-block;
}

.topics-grid {
    display: flex;
    gap: 30px;
    border-top: 1px solid #eee;
}

.topics-column {
    flex: 1;
}

.topics-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topics-column a li {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 16px;
    height: 24px;
    line-height: 31px;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    cursor: pointer;
}

.topics-column a li:before {
    content: "•";
    color: #2c5aa0;
    font-weight: bold;
    margin-right: 10px;
}

.topics-column li:hover {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.05);
    padding-left: 20px;
}

.hot-topics .more-link {
    position: absolute;
    right: 0;
    top: 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.hot-topics .more-link:hover {
    color: #2c5aa0;
}

/* 主题横幅 */
.theme-banners {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.banner-item {
    width: 460px;
    height: 120px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.banner-item a img {
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.banner-item a img:hover {
    transform-origin: center;
    transform: scale(1.05);
}

.banners-more {
    text-align: center;
    margin: -5px 0 20px 0;
}

.banners-more-link {
    display: inline-block;
    padding: 8px 18px;
    color: #223765;
    border: 1px solid #e0e5f0;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.banners-more-link:hover {
    background: #7baabe;
    color: #fff;
    border-color: #7baabe;
}


/* 地方专区 */
.local-section {
    border-bottom: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 15px;
}

.local-top {
    padding: 10px 30px 0 30px;
    margin-bottom: 20px;
    border-radius: 8px 8px 0 0;
    background-color: #e6f0fe;
    display: flex;
    align-items: center
}

.local-header {
    padding-bottom: 10px;
    border-bottom: 4px solid #6699CC;
    display: inline-block;
    margin-right: 30px;
}

.local-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    padding: 0;
    border: none;
    width: auto;
}

.mountain-icon {
    font-size: 20px;
    font-style: normal;
}

.local-icon span {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.local-nav-container {
    width: 1230px;
}

.local-nav-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #7baabe #f0f0f0;
    padding-bottom: 5px;
}

.local-nav-scroll::-webkit-scrollbar {
    height: 8px;
}

.local-nav-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.local-nav-scroll::-webkit-scrollbar-thumb {
    background: #7baabe;
    border-radius: 4px;
}

.local-nav-scroll::-webkit-scrollbar-thumb:hover {
    background: #6a9aae;
}

.local-nav {
    display: flex;
    gap: 15px;
    min-width: max-content;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.local-item {
    color: #223765;
    text-decoration: none;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    min-width: fit-content;
}

.local-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
    transition: left 0.3s;
}

.local-item:hover {
    background: #e8f0f4;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(123, 170, 190, 0.2);
}

.local-item.active {
    background: #7baabe;
    color: #fff;
    box-shadow: 0 2px 4px rgba(123, 170, 190, 0.3);
}

.local-item:hover:before {
    left: 100%;
}

.local-content {
    padding: 0 30px;
    position: relative;
    min-height: 300px;
}

.region-content {
    display: none;
    gap: 30px;
    align-items: flex-start;
}

.region-content.active {
    display: flex;
}

/* 左侧图片稿件区域 */
.region-content .local-left {
    width: 60%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
}

.region-content .local-article {
    width: 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.region-content .local-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.region-content .local-article .article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.region-content .local-article img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.region-content .local-article p {
    margin: 0;
    padding: 15px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

/* 右侧稿件列表区域 */
.region-content .local-right {
    flex: 1;
    padding: 0 20px;
    border-left: 2px solid #e4e5ed;
}

.region-content .local-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-content .local-right li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 16px;
    height: 24px;
    line-height: 31px;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    cursor: pointer;
}

.region-content .local-right li:before {
    content: "○";
    color: #324670;
    font-size: 12px;
}

.region-content .local-right li:last-child {
    border-bottom: none;
}

.region-content .local-right li a:hover {
    color: #2c5aa0;
}

/* 政府部门横幅 */
.gov-banners {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    width: 1400px;
    height: 140px;
    overflow: hidden;
}

.gov-banner {
    width: 460px;
    height: 140px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.gov-banner a img {
    width: 100%;
    height: 100%;
    transition: all 1s;
    object-fit: fill;
}

.gov-banner img:hover {
    transform-origin: center;
    transform: scale(1.05);
}

/* 视频和新媒体产品 */
.media-section {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    flex-direction: column;
}

.media-large-content {
    padding: 20px 15px;
    display: flex;
    gap: 30px;
}

.new-media-section {
    width: 65%;
}

.new-media-section h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 20px;
}

.video-section {
    width: 33%;
}

.video-main {
    margin-bottom: 20px;
}

/* 视频容器样式 */
.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.video-main p {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    cursor: pointer;
}

.video-main:hover p {
    color: #2c5aa0;
}

.video-thumbnails {
    display: flex;
    gap: 15px;
}

.thumbnail {
    flex: 1;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-2px);
}

.thumbnail img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.thumbnail:hover img {
    opacity: 0.9;
}

.thumbnail p {
    margin-top: 5px;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    cursor: pointer;
    transition: color 0.3s ease;
}

.thumbnail:hover p {
    color: #2c5aa0;
}

/* 融媒新产品样式 */
.media-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
}

.media-header p {
    color: #333;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #2c5aa0;
    padding-bottom: 10px;
    display: inline-block;
}

.media-header .more-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.media-header .more-link:hover {
    color: #2c5aa0;
}

.media-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.media-content {
    display: flex;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 5px;
    height: 520px;
    align-items: center;
}

/* 新的媒体项目样式 */
.media-item {
    flex: 0 0 90px;
    height: 520px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* 默认第一张图片展开 */
.media-item:first-child {
    flex: 0 0 270px;
}

.media-item:first-child .media-overlay {
    opacity: 0;
}

.media-item:first-child .media-title-vertical {
    opacity: 0;
}

.media-item:first-child .media-content-text {
    opacity: 1;
}

.media-item:hover,
.media-item.expanded {
    flex: 0 0 270px;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* 确保展开状态的图片保持展开样式 */
.media-item.expanded .media-overlay {
    opacity: 0;
}

.media-item.expanded .media-title-vertical {
    opacity: 0;
}

.media-item.expanded .media-content-text {
    opacity: 1;
}

.media-item:hover .media-overlay {
    opacity: 0;
}

.media-item:hover .media-title-vertical {
    opacity: 0;
}

.media-item:hover .media-content-text {
    opacity: 1;
}

.media-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.media-item:hover img {
    transform: scale(1.05);
}

/* 灰色遮罩层 */
.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.8s ease;
    z-index: 2;
}

/* 垂直标题 */
.media-title-vertical {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 3;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 8px;
    text-align: center;
    line-height: 1.2;
}

/* 内容文字 */
.media-content-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.media-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.media-main {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.media-subtitle {
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 旧的样式保留用于兼容性 */
.media-flex {
    flex: 0 0 220px;
    height: 520px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.media-flex:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.media-flex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-flex:hover img {
    transform: scale(1.05);
}

.media-text-top {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.media-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 1;
}

/* 激活状态样式 */
.media-flex.culture-active {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.media-flex.culture-active .media-text-top {
    opacity: 0;
}

.media-flex.culture-active img {
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .media-content {
        gap: 15px;
        padding: 0 5px;
    }

    .media-flex {
        flex: 0 0 240px;
        height: 350px;
    }

    .media-main {
        font-size: 36px;
    }

    .media-subtitle {
        font-size: 14px;
    }
}

/* 广告横幅 */
.ad-banner {
    width: 1400px;
    height: 150px;
    margin-bottom: 15px;
    overflow: hidden;
}

.ad-banner img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition: all 1s;
    object-fit: fill;
}
.ad-banner:hover img {
    transform-origin: center;
    transform: scale(1.05);
}

/* 资讯和数字报展示 */
.info-section {
    padding: 0;
    border-bottom: 1px solid #eee;
}

/* 主要内容区域 */
.info-main-section {
    display: flex;
    gap: 15px;
    background: #eff5f9;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

/* 左侧2x3网格文章预览 */
.articles-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.article-preview {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 460px;
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-link:hover {
    text-decoration: none;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.article-header p {
    color: #2c5aa0;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 4px solid #2c5aa0;
}

.more-link {
    color: #999;
    font-size: 12px;
    transition: color 0.3s;
}

.article-link:hover .more-link {
    color: #2c5aa0;
}

.article-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all 1s;
}

.article-preview:hover .article-image img {
    transform-origin: center;
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
}

.image-overlay a h4 {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    cursor: pointer;
}

.article-snippets {
    padding: 15px;
}

.snippet-link {
    display: block;
    color: #666;
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 31px;
    height: 24px;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    cursor: pointer;
}

.snippet-link:hover {
    color: #2c5aa0;
}

.snippet-link:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

/* 右侧信息栏 */
.right-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 460px;
}

/* 数字报 */
.digital-paper {
    height: 505px;
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.paper-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.paper-header div {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    padding: 4px 20px 4px 40px;
    background: linear-gradient(to right, #cddfe7, #7dacbf);
    border-radius: 0 25px 25px 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    left: -4.6%;
}

.logo-icon {
    width: 44px;
    height: 45px;
    object-fit: contain;
}

.paper-content {
    width: 320px;
    height: 420px;
    margin: 0 auto;
}

.paper-content img {
    width: 90%;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 关于甘农 */
.about-gansu {
    height: 515px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-gansu p {
    color: #2c5aa0;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 4px solid #2c5aa0;
    display: inline-block;
}

.reader-letters {
    width: 420px;
    height: 160px;
    margin: 30px auto;
}

.reader-letters img {
    width: 100%;
    height: 100%;
}


.qr-section {
    display: flex;
    align-items: center;
}

.qr-section .qr-code {
    width: 420px;
    height: 105px;
    margin-bottom: 20px;
}

.qr-section .qr-code img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 0;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-phone {
    width: 420px;
    height: 50px;
    border-radius: 8px;
}

.report-email {
    width: 420px;
    height: 50px;
    border-radius: 8px;
}

.report-phone img,
.report-email img {
    width: 100%;
    height: 100%;
}

/* 有话说 */
.have-say {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.say-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.say-header h3 {
    color: #2c5aa0;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.say-image {
    position: relative;
    height: 150px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.say-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.say-snippets p {
    color: #666;
    font-size: 12px;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.say-snippets p:last-child {
    margin-bottom: 0;
}

/* 长条banner位 */
.long-banner-section {
    width: 1400px;
    height: 180px;
    margin-bottom: 15px;
    overflow: hidden;
}

.long-banner-section img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: fill;
    transition: all 1s;
}   

.long-banner-section:hover img {
    transform-origin: center;
    transform: scale(1.05);
}

/* 县域观察动画效果 */
.region-content {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 图片稿件悬停效果增强 */
.region-content .local-article .article-link:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.region-content .local-article .article-link:hover p {
    background: #f8f9fa;
    color: #2c5aa0;
    transition: all 0.3s ease;
}

/* 右侧列表项悬停效果 */
.region-content .local-right li:hover {
    background: rgba(44, 90, 160, 0.05);
    padding-left: 25px;
    transition: all 0.3s ease;
}

.region-content .local-right li:hover:before {
    color: #2c5aa0;
    transition: color 0.3s ease;
}

/*农技宝典按钮*/
.nongji_bar {
    position: fixed;
    top: 60%;
    right: 4%;
    width: 80px;
    height: 80px;
    z-index: 999;
    cursor: pointer;
}

.nongji_bar img {
    width: 100%;
    height: 100%;
}

/*返回按钮*/
.slider_bar {
    position: fixed;
    top: 800px;
    right: 100px;
    width: 55px;
    height: 55px;
    z-index: 999;
    cursor: pointer;
}

.slider_bar img {
    width: 100%;
    height: 100%;
}