/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 超宽屏幕样式 */
@media (min-width: 1920px) {
    .banner {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: right !important;
    }
    .banner img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: right center !important;
    }
}

/* 重置section标签的默认样式 */
section {
    margin: 0;
    padding: 0;
}

/* 重置main标签的默认样式 */
main {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

/* 标题字体设置 */
h1, h2, h3, h4, h5, h6 {
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.countdown .container {
    z-index: 11;
    position: relative;
}

/* 顶部导航栏 */
.header {
    background-color: #ffffff;
    color: #333;
    position: relative;
    display: none !important;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff0000;
    text-decoration: none;
}

/* 响应式导航 */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 视觉焦点区 */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0;
    display: block;
    line-height: 0;
    font-size: 0;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
}

@media (max-width: 480px) {
    .banner {
        max-height: 170px;
        overflow: hidden;
    }
    .banner img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        object-position: center center;
    }
    .main-menu .container {
        position: relative !important;
    }
    .menu-scroll-wrapper {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
    }
    .menu-scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(204, 0, 0, 0.9);
        color: white;
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 16px;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .menu-scroll-btn:hover {
        background: rgba(170, 0, 0, 0.95);
    }
    .menu-scroll-btn.left {
        left: -20px;
    }
    .menu-scroll-btn.right {
        right: -20px;
    }
    
    /* 手机模式下拉菜单样式 */
    .submenu {
        display: none !important;
        position: fixed !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        min-width: auto !important;
        background-color: rgba(204, 0, 0, 0.98) !important;
        z-index: 999 !important;
        padding: 10px 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }
    .submenu.show {
        display: block !important;
    }
    .submenu li {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }
    .submenu li a {
        display: block !important;
        padding: 10px 20px !important;
        color: #fff !important;
        text-decoration: none !important;
        font-size: 14px !important;
    }
    .submenu li a:hover {
        background-color: rgba(170, 0, 0, 0.8) !important;
    }

    /* 手机模式下倒计时样式 */
    .countdown-time {
        gap: 2px !important;
    }
    .countdown-time .countdown-title {
        margin-right: 2px !important;
        letter-spacing: -2px !important;
    }
    .countdown-time .countdown-title:first-child {
        font-size: 14px !important;
    }
    .countdown-time .countdown-title span {
        font-size: 21px !important;
        font-weight: bold !important;
        letter-spacing: -2px !important;
    }
    .countdown-time .countdown-title small {
        font-size: 18px !important;
    }

    /* 手机模式下场馆标签样式 */
    .venue-tabs {
        justify-content: flex-start !important;
        padding: 0 10px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .venue-tab {
        flex-shrink: 0 !important;
    }
}

/* 倒计时模块 - 缩小到原来的三分之一，字号扩大二倍 */
.countdown {
    background-color: #6c6bd0 !important;
    padding: 17px 0 !important;
    text-align: center !important;
    margin: 0 !important;
    margin-top: 0 !important;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    z-index: 999 !important;
    min-height: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 3px !important;
    margin: 7px auto !important;
    max-width: 1200px !important;
}

.countdown-title {
    font-size: 24px;
    margin-bottom: 0;
    margin-right: 15px;
    color: #ffffff;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-weight: normal;
    white-space: nowrap;
}

.countdown-title span {
    font-size: 24px;
    font-weight: bold;
}

.countdown-title small {
    font-size: 16px;
    margin-left: 5px;
}

.countdown-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown-box {
    background-color: #8989da !important;
    color: #fff !important;
    padding: 7px 8px !important;
    border-radius: 3px !important;
    width: 40px !important;
    text-align: center !important;
    box-shadow: 0 1px 3px rgba(0, 102, 204, 0.3) !important;
}

.countdown-box span {
    display: block;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 3px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.countdown-box small {
    display: block;
    font-size: 12px;
    font-weight: normal;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.countdown-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    margin-top: 7px !important;
}

.countdown-info-row {
    display: flex !important;
    justify-content: center !important;
}

.countdown-info-item {
    font-size: 19px;
    color: #ffffff;
    font-weight: normal;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.countdown-info-separator {
    font-size: 19px;
    color: #ffffff;
    margin: 0 15px;
    font-weight: normal;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

/* 新闻板块 */
.news-section {
    padding: 15px 0;
    background-color: #f8f9fa;
    margin-top: -10px;
    border-top: 2px solid #e0e0e0;
}

/* 头条和动态新闻包裹层 */
.featured-dynamic-wrapper {
    overflow: visible;
    position: relative;
}

/* 主题新闻 - 首页 */
.featured-news {
    padding: 0 !important;
    margin-bottom: -220px !important;
    text-align: left;
}

.featured-news .news-header-row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-items: baseline !important;
    display: flex !important;
}

.featured-news .news-main-title {
    margin-left: 0 !important;
}

.featured-news .featured-news-title {
    margin: 0 !important;
    padding: 0 !important;
}

/* 新闻页标题 - 只针对news.aspx */
.news-section > .container > .news-header-row:first-child {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-left: 0;
    margin-bottom: 15px;
    margin-top: 20px;
}

.news-section > .container > .news-header-row:first-child .news-main-title {
    margin-left: 14px;
}

.news-main-title {
    font-size: 39px;
    font-weight: normal !important;
    color: #fff !important;
    margin: 0 !important;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif !important;
    background-color: #ff0000 !important;
    border-radius: 5px;
    display: inline-block;
    white-space: nowrap;
}

.news-main-title::before {
    display: none;
}

.featured-news-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    width: 100%;
    text-align: center;
}

.featured-news-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.featured-news-title a:hover {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.featured-news-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.featured-news-content {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* 动态新闻 */
.dynamic-news {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
}

.dynamic-news-list {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.dynamic-news-item {
    flex: 0 0 auto;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    position: relative;
    padding-left: 90px;
    margin-top: 10px;
}

.dynamic-news-item::before {
    content: '省运动态';
    position: absolute;
    left: 10px;
    top: 0;
    color: #ff0000;
    font-weight: normal;
    font-size: 16px;
}

.dynamic-news-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 15px;
    width: 3px;
    background-color: #ff0000;
}

.dynamic-news-item:hover {
    box-shadow: none;
}

.dynamic-news-item-title {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: left;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.dynamic-news-item-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.dynamic-news-item-title a:hover {
    color: #0056b3;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.dynamic-news-item-date {
    color: #999;
    font-size: 12px;
}

/* 图片新闻和新闻列表 */
.news-content {
    display: flex;
    gap: 10px;
    position: relative;
}

/* 滚动图片新闻 */
.image-news {
    flex: 1.5;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-news-title {
    display: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-size: 20px;
}

.image-news-slider {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.image-news-slide {
    position: relative;
    display: none;
}

.image-news-slide:first-child {
    display: block;
}

.image-news-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-news-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

/* 新闻列表 */
.news-sidebar {
    flex: 0.9;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.news-sidebar-title {
    display: none;
}

.news-sidebar-list {
    list-style: none;
}

.news-sidebar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    z-index: 1;
}

.news-sidebar-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-sidebar-item img {
    width: 160px;
    height: 107px;
    object-fit: cover;
    border-radius: 5px;
    pointer-events: auto;
}

.news-sidebar-item-content {
    flex: 1;
}

.news-sidebar-item-title {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.news-sidebar-item-title:hover {
    color: #0056b3;
    text-decoration: none;
}

.news-sidebar-item-date {
    color: #999;
    font-size: 12px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.section-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 4px;
    background-color: #ff0000;
}

.section-header.no-line::before {
    display: none;
}

/* 赛事场馆 */
.venue-section {
    padding: 40px 0;
    background-color: #fff;
}

.venue-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 30px;
    justify-content: center;
    overflow-x: auto;
}

.venue-tab {
    padding: 10px 16px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    transition: all 0.3s;
    border: 1px solid #ddd;
    white-space: nowrap;
}

.venue-tab:hover {
    background-color: #e0e0e0;
}

.venue-tab.active {
    background-color: #cc0000;
    color: #fff;
    border-color: #cc0000;
}

.venue-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.venue-info-panel {
    padding: 20px;
}

.venue-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.map-link {
    color: #cc0000;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    margin-left: 10px;
}

.map-link:hover {
    color: #ff0000;
    text-decoration: underline;
}

.venue-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.venue-image-item {
    text-align: center;
}

.venue-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.venue-image-title {
    font-size: 14px;
    color: #333;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.venue-item {
    display: flex;
    gap: 30px;
    padding: 30px;
}

.venue-image {
    flex: 0 0 50%;
}

.venue-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.venue-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.venue-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .venue-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .venue-images-grid {
        grid-template-columns: 1fr;
    }
    .venue-image-item img {
        height: 180px;
    }
    .venue-tab {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* 非首页页面字号调整 */
.news-main-title {
    font-size: 34px !important;
}

.section-subtitle {
    font-size: 22px !important;
}

.list-title {
    font-size: 34px !important;
    font-weight: bold !important;
    font-family: "SimHei", "黑体", sans-serif !important;
}

.news-list-item-title {
    font-size: 18px !important;
}

.news-detail-title {
    font-size: 34px !important;
}

.detail-title {
    font-size: 34px !important;
}

.news-detail-content {
    font-size: 15px !important;
}

.detail-text {
    font-size: 15px !important;
}

.travel-item-title {
    font-size: 16px !important;
}

.match-news-title {
    font-size: 14px !important;
}

.category-name {
    font-size: 16px !important;
}

.pingshui-title {
    font-size: 16px !important;
}

.venue-list-header h1 {
    font-size: 34px !important;
}

.venue-desc {
    font-size: 14px !important;
}

@media (max-width: 480px) {
    .news-main-title {
        font-size: 28px !important;
    }
    
    .section-subtitle {
        font-size: 18px !important;
    }
    
    .list-title {
        font-size: 28px !important;
        font-weight: bold !important;
        font-family: "SimHei", "黑体", sans-serif !important;
    }
    
    .news-list-item-title {
        font-size: 14px !important;
    }
    
    .news-detail-title {
        font-size: 18px !important;
    }
    
    .detail-title {
        font-size: 18px !important;
    }
    
    .venue-list-header h1 {
        font-size: 22px !important;
    }
}

.photo-news-header {
    border-bottom: none !important;
    margin-bottom: 30px !important;
}

.section-title {
    font-size: 32px;
    color: #333;
    margin: 0;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-weight: normal;
}

.view-more-btn {
    background-color: #ff0000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background-color: #cc0000;
    text-decoration: none;
    color: #fff;
}

/* 赛事快讯和省运公告栏容器 */
.news-notice-container {
    padding: 10px 0;
    background-color: #f8f9fa;
}

.news-notice-content {
    display: flex;
    gap: 30px;
    max-width: 100%;
    overflow: hidden;
}

/* 赛事快讯 */
.match-news {
    flex: 1;
    min-width: 0;
    max-width: calc(50% - 15px);
}

.match-list {
    list-style: none;
}

.match-item {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    min-height: 100px;
}

.match-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.match-item:last-child {
    margin-bottom: 0;
}

.match-item-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.match-title {
    color: #cc0000;
    font-weight: 300;
    flex: 1;
    text-align: left;
    font-size: 18px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.match-title a {
    color: #cc0000;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.match-title a:hover {
    color: #cc0000;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.match-date {
    color: #999;
    font-size: 14px;
    margin-left: 10px;
    white-space: nowrap;
}

.match-content {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    width: 100%;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
}

.match-content a {
    color: #000;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-content a:hover {
    color: #000;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

/* 省运公告栏 */
.notice-board {
    flex: 1;
    min-width: 0;
    max-width: calc(50% - 15px);
}

.notice-list {
    list-style: none;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.notice-item {
    padding: 20px 0;
    border-bottom: 1px dashed #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: 100px;
}

.notice-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notice-item:first-child {
    padding-top: 0;
}

.notice-item-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.notice-title {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.notice-title a {
    color: #000;
    text-decoration: none;
    font-weight: normal;
    font-size: 18px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.notice-title a:hover {
    color: #000;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.notice-date {
    color: #999;
    font-size: 14px;
    margin-left: 10px;
    white-space: nowrap;
}

.notice-content {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    width: 100%;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
}

.notice-content a {
    color: #000;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-content a:hover {
    color: #000;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

/* 健儿风采 */
.photo-news-container {
    padding: 10px 0;
    background-color: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.photo-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.photo-carousel-container {
    overflow: hidden;
    width: 100%;
}

.photo-carousel-track {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
}

.photo-carousel-item {
    flex: 0 0 calc(100% / 3);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.photo-carousel-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-carousel-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    color: #333;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background-color: #c00;
    color: #fff;
    border-color: #c00;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* 省运视频 */
.video-container {
    padding: 15px 0;
    background-color: #f8f9fa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.video-item-grid {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    width: 100%;
}

.video-item-grid .video-placeholder {
    position: relative;
    height: 280px;
}

.video-item-grid .video-placeholder img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-item-grid:hover .video-placeholder img {
    transform: scale(1.05);
}

.video-item-grid .video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.video-item-grid .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.video-item-grid .play-button:hover {
    background-color: rgba(255, 0, 0, 1);
}

/* 视频播放按钮 */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background-color: rgba(255, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* 集成服务区 */
.service-area {
    background-color: #0056b3;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.service-btn {
    background-color: #fff;
    color: #0056b3;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: normal;
    transition: background-color 0.3s;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.service-btn:hover {
    background-color: #ffd700;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

/* 媒体矩阵 */
.media-matrix {
    padding: 40px 0;
}

.media-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
}

.media-logo {
    width: 140px;
    height: 80px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    flex-shrink: 0;
}

.media-logo a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.media-logo a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* 页脚 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
    }
    
    .media-logos {
        gap: 10px;
    }
    
    .media-logo {
        width: 100px;
        height: 60px;
    }
    
    .media-logo a {
        font-size: 12px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .image-news-slide img {
        height: 300px;
    }

    .service-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-btn {
        width: 80%;
        text-align: center;
    }

    /* 动态新闻响应式 */
    .dynamic-news-list {
        flex-direction: column;
        gap: 20px;
    }

    .dynamic-news-item {
        padding-left: 70px;
    }

    /* 手机模式下动态新闻样式（宽度<=480px） */
    @media (max-width: 480px) {
        .featured-dynamic-wrapper {
            overflow: visible !important;
            position: relative !important;
            display: block !important;
            width: 100% !important;
            z-index: 100 !important;
        }
        .news-section {
            padding-top: 20px !important;
            overflow: visible !important;
            margin-top: 0 !important;
            position: relative !important;
            z-index: 100 !important;
        }
        .featured-news {
            margin-bottom: 0 !important;
            padding-bottom: 5px !important;
        }
        .dynamic-news {
            margin-top: 5px !important;
            margin-bottom: 0 !important;
            display: block !important;
            position: relative !important;
            z-index: 100 !important;
            clear: both !important;
            float: none !important;
        }
        .dynamic-news-list {
            display: block !important;
            gap: 0 !important;
        }
        .dynamic-news-item {
            display: block !important;
            width: 100% !important;
            margin-bottom: 5px !important;
            margin-top: 0 !important;
            padding: 2px 0 0 0 !important;
        }
        .dynamic-news-item::before {
            display: none !important;
        }
        .dynamic-news-item::after {
            display: none !important;
        }
        .dynamic-news-item-title {
            margin-bottom: 5px !important;
            line-height: 1.5 !important;
            margin-top: 0 !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            white-space: nowrap !important;
            display: block !important;
            padding-left: 0 !important;
        }
    }

    /* 图片新闻和最新动态响应式 */
    .news-content {
        flex-direction: column;
        gap: 20px;
    }

    .image-news {
        flex: 1;
    }

    .news-sidebar {
        flex: 1;
    }

    .news-sidebar-item {
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .news-sidebar-item img {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }

    /* 赛事快讯和省运公告栏响应式 */
    .news-notice-content {
        flex-direction: column;
        gap: 20px;
    }

    .match-news {
        flex: 1;
        max-width: 100%;
    }

    .notice-board {
        flex: 1;
        max-width: 100%;
    }

    /* 健儿风采响应式 */
    .photo-carousel-wrapper {
        padding: 0 45px;
    }
    
    .photo-carousel-item {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    
    .photo-carousel-item img {
        height: 180px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
        line-height: 38px;
    }

    /* 倒计时模块响应式 */
    .countdown {
        margin-top: -50px !important;
        padding: 5px 0;
    }

    /* 省运视频响应式 */
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .video-item-grid .video-placeholder {
        height: 150px;
    }

    .video-item-grid .video-placeholder img {
        height: 150px;
    }

    /* 主题新闻响应式 */
    .featured-news-title {
        font-size: 32px;
    }

    /* 倒计时响应式 */
    .countdown-time {
        gap: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-item span {
        font-size: 18px;
    }

    .match-news-grid,
    .match-venue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .match-project-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 后台样式 */
.admin-container {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.admin-header {
    background-color: #0056b3;
    color: #fff;
    padding: 15px 0;
}

.admin-sidebar {
    background-color: #343a40;
    color: #fff;
    width: 200px;
    height: calc(100vh - 60px);
    position: fixed;
    left: 0;
    top: 60px;
    padding: 20px 0;
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar li {
    padding: 10px 20px;
}

.admin-sidebar a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.admin-sidebar a:hover {
    background-color: #495057;
}

.admin-content {
    margin-left: 200px;
    padding: 20px;
    overflow-x: auto;
}

/* 表格样式 */
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

/* 响应式表格 */
@media (max-width: 768px) {
    .admin-content {
        margin-left: 0;
    }
    
    .admin-sidebar {
        display: none;
    }
    
    .table {
        font-size: 12px;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
    }
}

/* 列表头部样式 */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* 模态窗口样式 */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    /* 确保在旧浏览器中也能正常显示 */
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 95% !important;
    max-width: 1200px !important;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.modal-header h3 {
    margin: 0;
    color: #0056b3;
}

.modal-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #eaeaea;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}

/* 登录页面 */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    background-color: #fff;
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
    color: #0056b3;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #0056b3;
    color: #fff;
}

.btn-primary:hover {
    background-color: #004085;
}

/* 验证码 */
.captcha-container {
    display: flex;
    gap: 10px;
}

.captcha-image {
    width: 100px;
    height: 40px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

/* 图片上传 */
.image-upload {
    margin: 20px 0;
}

.image-upload input[type="file"] {
    margin-bottom: 10px;
}

/* 编辑器 */
.editor-container {
    margin: 20px 0;
}

/* 新闻导航 */
.news-nav {
    margin-bottom: 30px;
}

.nav-tabs {
    list-style: none;
    display: flex;
    border-bottom: 1px solid #eaeaea;
}

.nav-tabs li {
    margin-right: 20px;
}

.nav-tabs a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.nav-tabs li.active a {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* 视频占位符 */
.video-placeholder {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 86, 179, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background-color: rgba(0, 86, 179, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* 赛事相关样式 */
.match-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #cc0000;
}

.section-subtitle {
    font-size: 24px;
    color: #333;
    font-weight: normal;
}

.view-more-btn {
    color: #fff !important;
    background-color: #ff0000;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background-color: #cc0000;
    text-decoration: none;
    color: #fff !important;
}

.match-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.match-news-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.match-news-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.match-news-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.match-news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.match-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-news-info {
    padding: 15px;
}

.match-news-title {
    font-size: 16px;
    color: #333;
    font-weight: normal;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.match-venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.match-venue-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.match-venue-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.match-venue-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.match-venue-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.match-venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-venue-info {
    padding: 15px;
}

.match-venue-title {
    font-size: 16px;
    color: #333;
    font-weight: normal;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.match-project-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.match-project-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.match-project-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.match-project-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 50%;
}

.match-project-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-project-name {
    font-size: 13px;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.match-date {
    float: right;
    color: #999;
    font-size: 12px;
}

.venue-detail {
    display: inline-block;
    margin-top: 10px;
    color: #0056b3;
    text-decoration: none;
    font-weight: normal;
}

.venue-detail:hover {
    text-decoration: underline;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-category {
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 15px;
}

.project-category h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

.project-list {
    list-style: none;
}

.project-list li {
    padding: 5px 0;
    border-bottom: 1px dashed #eaeaea;
}

.project-list li:last-child {
    border-bottom: none;
}

/* 魅力萍乡相关样式 */
.culture-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.culture-image {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.culture-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.culture-text {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.culture-text h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 24px;
}

.culture-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.culture-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.culture-video p {
    font-weight: normal;
    color: #333;
}

@media (max-width: 768px) {
    .culture-image img {
        height: 250px;
    }
}

/* 赛事合作相关样式 */
.committee-content h3,
.contact-content h3,
.links-content h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 24px;
}

.committee-content h4 {
    color: #333;
    margin: 20px 0 10px 0;
    font-size: 18px;
}

.committee-list {
    list-style: none;
    padding-left: 20px;
}

.committee-list li {
    margin-bottom: 10px;
    position: relative;
}

.committee-list li:before {
    content: "•";
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.contact-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.contact-item h4 {
    color: #0056b3;
    margin-bottom: 10px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.link-item {
    display: block;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.link-item:hover {
    background-color: #0056b3;
    color: #fff;
}

/* 新闻页面新样式 */
.news-banner,
.venue-banner {
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-banner img,
.venue-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-header {
    text-align: center;
    margin-bottom: 20px;
}

.news-main-title {
    color: #d32f2f;
    font-size: 36px;
    font-weight: normal;
    margin: 0;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.news-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin-bottom: 40px;
    margin-top: 40px;
}

.news-module {
    margin-bottom: 50px;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.module-title {
    font-size: 24px;
    font-weight: normal;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}

.title-line {
    width: 4px;
    height: 24px;
    background-color: #d32f2f;
    margin-right: 10px;
    display: inline-block;
}

.view-more {
    background-color: #d32f2f;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.view-more:hover {
    background-color: #b71c1c;
    color: #fff;
}

.dynamic-content {
    display: flex;
    gap: 30px;
}

.dynamic-left {
    flex: 0 0 45%;
}

.featured-news {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 300px;
}

.featured-news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-news:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: #fff;
}

.featured-overlay h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.dynamic-right {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

.news-list-item {
    display: flex;
    align-items: center;
    padding: 5px 0 !important;
    border-bottom: 1px dashed #eaeaea !important;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-date {
    color: #999;
    font-size: 14px;
    margin-right: 15px;
    min-width: 50px;
}

.news-link {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: normal;
    transition: color 0.3s;
}

.news-link:hover {
    color: #d32f2f;
}

.photo-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 200px;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 15px;
    color: #fff;
}

.photo-overlay h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.video-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.video-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-item a:hover {
    text-decoration: none;
    color: inherit;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(211, 47, 47, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: background-color 0.3s;
}

.video-item:hover .play-icon {
    background-color: rgba(211, 47, 47, 1);
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .dynamic-content {
        flex-direction: column;
    }
    
    .dynamic-left {
        flex: none;
    }
    
    .photo-content,
    .video-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-main-title {
        font-size: 28px;
    }
    
    .module-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .news-list-item {
        flex-direction: row;
        gap: 15px;
        padding: 15px 0 !important;
        align-items: flex-start;
    }
    
    .news-list-left {
        flex: 0 0 33.33%;
        width: 33.33%;
    }
    
    .news-list-left img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    
    .news-list-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-width: 0;
    }
    
    .news-list-time {
        font-size: 12px;
    }
    
    .news-list-title {
        font-size: 28px;
    }
    
    .news-list-item-title {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }
    
    .news-list-summary-link {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }
    
    .news-list-detail-btn {
        display: none;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .photo-content,
    .video-content {
        grid-template-columns: 1fr;
    }
    
    .featured-news {
        height: auto !important;
        overflow: visible !important;
    }
    
    .featured-news img {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .news-list-title {
        font-size: 24px;
    }
    
    .news-list-item-title {
        font-size: 16px;
    }
    
    .news-list-summary {
        font-size: 14px;
    }
}

/* 图片查看大图模态框 */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.image-modal-close:hover,
.image-modal-close:focus {
    color: #bbb;
}

.image-modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

.venue-image-item {
    cursor: pointer;
}

/* 新闻详情页面样式 */
.news-detail-section {
    padding: 40px 0;
}

.back-link {
    margin-bottom: 20px;
}

.back-link a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.back-link a:hover {
    color: #d32f2f;
}

.news-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.news-detail-title {
    color: #d32f2f;
    font-size: 36px;
    font-weight: normal;
    margin: 0 0 15px 0;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.news-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #999;
    font-size: 14px;
}

.news-detail-type {
    background-color: #d32f2f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
}

.news-detail-date {
    color: #666;
}

.news-detail-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
}

/* 新闻列表页面样式 */
.news-list-section {
    padding: 40px 0;
}

.news-list-header {
    text-align: center;
    margin-bottom: 30px;
}

.news-list-title {
    color: #d32f2f;
    font-size: 36px;
    font-weight: normal;
    margin: 0;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.news-list-container {
    margin-bottom: 30px;
}

.news-list-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #eaeaea;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-left {
    flex: 0 0 300px;
}

.news-list-left img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.news-list-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-list-time {
    color: #999;
    font-size: 14px;
}

.news-list-item-title {
    color: #333 !important;
    font-size: 22px;
    font-weight: normal;
    margin: 0;
    text-decoration: none !important;
}

.news-list-item-title:hover {
    color: #333 !important;
    text-decoration: none !important;
}

.news-list-summary {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

.news-list-summary-link {
    color: #666 !important;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
    text-decoration: none !important;
    display: block;
}

.news-list-summary-link:hover {
    color: #666 !important;
    text-decoration: none !important;
}

.news-list-detail-btn {
    background-color: #d32f2f;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.news-list-detail-btn:hover {
    background-color: #b71c1c;
    color: #fff;
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    background-color: #fff;
    color: #333;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s;
}

.page-link:hover {
    background-color: #d32f2f;
    color: #fff;
    border-color: #d32f2f;
    text-decoration: none;
}

.page-link.current {
    background-color: #d32f2f;
    color: #fff;
    border-color: #d32f2f;
}

@media (max-width: 480px) {
    .venue-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .venue-image {
        flex: none;
    }
    
    .venue-image img {
        height: 200px;
    }
    
    .venue-info h3 {
        font-size: 18px;
    }
    
    .venue-info p {
        font-size: 14px;
    }
    
    .venue-tab {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* 全局菜单样式 - 确保菜单在一行内显示 */
.main-menu .menu-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
}

.main-menu .menu-item {
    flex-shrink: 0;
}

.main-menu .menu-link {
    padding: 15px 14px !important;
    font-size: 18px !important;
    white-space: nowrap !important;
}

@media (max-width: 480px) {
    .main-menu .menu-link {
        padding: 10px 12px !important;
        font-size: 15px !important;
    }
}

/* 省运文化页面分类按钮手机模式样式 */
@media (max-width: 480px) {
    .category-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 10px;
        -webkit-overflow-scrolling: touch;
    }
    .category-tab {
        white-space: nowrap;
        font-size: 14px;
        padding: 8px 12px;
        flex-shrink: 0;
    }
}