main{min-height: calc(100vh - 300px);}
/* 直播页面样式 */
.live {
    background-color: #1a1a1a;
    padding: 30px 0;
    color: #fff;
}
.breadcrumb{margin-top: 15px;margin-bottom: 15px;color: #646464;}
.breadcrumb a{color: #646464;margin: 0 2px;}
/* 相关推荐和热点排行样式 */
.relatedContent {
    margin: 30px 0;
}

.related-container {
    display: flex;
}

.related-news {
    flex: 1;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 15px;
}

.hot-ranking {
    width: 370px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 15px;
}

.related-news h3, .hot-ranking h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.related-news h3:after, .hot-ranking h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 40px;
    height: 2px;
    background-color: #0052cc;
}

.news-list {
    list-style: none;
}

.news-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-item a {
    display: flex;
    text-decoration: none;
    color: #333;
}

.news-thumb {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
}
.news-thumb .block{width: 100%;height:100%;}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-info h4 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list li .news-info h4 a{font-size: 18px;}
.news-list li a{color:#999}
.news-info h4:hover{color: #0052cc;}
.news-meta {
    font-size: 12px;
    color: #999;
}

.news-source {
    margin-right: 15px;
}

/* .news-pt-list 图文列表样式 */
.news-pt-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.container .news-pt-list {
   margin-bottom: 20px;
}
.news-pt-list .news-item {
    display: flex;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.news-pt-list .news-item:nth-child(2n) {
    border-bottom: 1px solid #f0f0f0;
}

.news-pt-list .news-item:nth-last-child(-n+2) {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-pt-list .news-thumb {
    width: 220px;
    height: 145px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.news-pt-list .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-pt-list .news-item:hover .news-thumb img {
    transform: scale(1.05);
}

.news-pt-list .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-pt-list .news-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.news-pt-list .news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-pt-list .news-title a:hover {
    color: #0052cc;
}

.news-pt-list .news-summary {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-pt-list .news-meta {
    font-size: 12px;
    color: #999;
}

.news-pt-list .news-time {
    color: #999;
    font-size: 14px;
}

.ranking-list {
    list-style: none;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #f0f0f0;
    color: #999;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 12px;
}

.ranking-num.ranking-top {
    background-color: #ff4d4f;
    color: #fff;
}

.ranking-item a {
    flex: 1;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-item a:hover {
    color: #0052cc;
}
/* 视频播放页面样式 */
.video-player-container {
    display: flex;
    padding: 0;
    /*gap: 20px;*/
    background-color: #141414;
}

.video-player-wrapper {
    flex: 1;
    max-width: 70%;
}

.main-video-player {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.video-frame {
    width: 100%;
    position: relative;
    background-color: #000;
}

.video-placeholder {
    width: 100%;
    display: block;
}

.video-title {
    padding: 15px 20px 5px;
}

.video-title h1 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.video-info {
    padding: 0 20px 15px;
}

.publish-time {
    color: #999;
    font-size: 14px;
}

.related-videos {
    flex: 1;
    max-width: 30%;
    padding: 10px 0 0;
}

.related-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.video-list-sidebar {
    list-style: none;
}

.video-player-container .video-item-sidebar {
    padding: 10px 20px;
}
.video-player-container .video-item-sidebar:hover{background-color: #000;}
.video-item-sidebar a {
    display: flex;
    text-decoration: none;
    color: #333;
}

.video-thumb-sidebar {
    width: 150px;
    flex-shrink: 0;
    position: relative;
    border-radius: 4px;overflow: hidden;
}

.video-thumb-sidebar img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    display: block;
}

.video-info-sidebar {
    flex: 1;
    padding-left: 10px;
}

.video-info-sidebar h4 {
    font-size: 14px;
    margin: 0 0 5px;
    line-height: 1.6;
    font-weight: 400;
    color:#c5c5c5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-time {
    font-size: 12px;
    color: #999;
}

/* 视频列表页面样式 */
.video-intro{
    /*background-color: #f5f8fa;*/
    background: linear-gradient(to bottom, #d5e6fe,#f4f9fd);
    padding: 30px 0;
}

.intro-content {
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.intro-image {
    width: 320px;
    flex-shrink: 0;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-info {
    flex-grow: 1;
    padding: 20px 30px;
}

.intro-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.intro-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.intro-info p.update-time {
    color: #999;
    margin-bottom: 20px;
}

.play-btn {
    display: inline-block;
    background-color: #0052cc;
    color: #fff;
    padding: 8px 25px;
    border-radius: 4px;
    font-size: 16px;
}
.play-btn:hover {
    text-decoration: none;color: #fff;background-color: #0c6af7;
}
.video-list {
    padding: 40px 0;
}
.channel .video-list{background-color: #f4f9fd;}
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.video-grid5{display: grid;grid-template-columns: repeat(5, 1fr);}
.video-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin:0 20px 20px 0;
}
.video-item:nth-child(4n),.svideo-item:nth-child(5n){margin-right: 0;}
.video-item a{text-decoration: none;}

.image-block{position: relative;overflow: hidden;}
.svideo-item{
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);margin: 0 20px 20px 0;background-color: #fff;padding-bottom: 15px;
}
.svideo-item a:hover{text-decoration: none;}
.svideo-item .image-block{height: 460px;}
.hover-mask{
    background-color: rgba(0,95,255,.2);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}
.svideo-item .image-block:hover .hover-mask{display: block;}
.svideo-item .icon-play{position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);width: 50px;height:50px;}
.svideo-item .image-block:hover .icon-play img{width: 50px;height: auto;}
.image-block img{transition: all 0.6s;height: 100%;width: 100%;}
.svideo-item:hover img{transform: scale(1.1);}
.svideo-item .image-card-text{padding:15px 15px 0;font-size: 16px;word-break: break-all;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.video-thumb {
    position: relative;
    overflow: hidden;
}
.live-tag{position: absolute;left: 10px;top: 10px;background-color: #c00;color: #fff;padding: 2px 4px;border-radius: 4px;font-size: 14px;}
.video-thumb img {
    width: 100%;
    height: 180px;
    transition: all 0.6s;
}
.spxx{
    display: flex;
    padding: 20px 0;
    background-color: #fff; 
    border-top: 1px solid #eee; 
}

.spxx-left {
    flex: 2; 
    max-width: 70%; 
}

.spxx-right {
    flex: 1;
    max-width: 30%; 
    border-left: 1px solid #eee; 
    padding-left: 20px;
}
.spxx .news-item{border: none;}
.news-item h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.news-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.news-meta span {
    margin-right: 15px;
}
.news-meta .news-source a{color:#999;}
.news-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    /*text-indent: 2em;*/
}

.key-columns {
    position: relative;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.key-columns h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-left: 20px;
    line-height: 30px;
    position: relative;
}
.key-columns h3:before {
    content: "";
    width: 5px;
    height: 20px;
    background: #0046ae;
    position: absolute;
    left: 0;
    top: 5px;
}
.key-columns .more-link {
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

.key-columns .more-link:hover {
    color: #333;
}

.column-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.column-grid .column-item{margin-right: 15px;}
.column-grid .column-item:last-child{margin-right: 0;}
.column-item .img-block{overflow: hidden;margin-bottom: 8px;
    border-radius: 4px;}
.column-item a {
    display: block;
    text-decoration: none;
    color: #333;
    text-align: center;
}

.column-item img {
    width: 100%;
    height:120px; 
    object-fit: cover;
    display: block;
    
    transition: all 0.6s;
}
.column-item img:hover,.video-thumb img:hover{transform: scale(1.1);}
.column-item span {
    font-size: 14px;
}

.spxx-right h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    /*border-bottom: 1px solid #eee;*/
}

/* Reuse existing sidebar styles for the right column */
.spxx-right .video-list-sidebar {
    padding: 0; /* Reset padding if needed */
}

.spxx-right .video-item-sidebar {
    margin-bottom: 15px;
}

.spxx-right .video-item-sidebar a {
    display: flex;
    text-decoration: none;
    color: #333;
}
.spxx-right .video-item-sidebar h4:hover {
    color: #000;
    text-decoration: underline;
}
.spxx-right .video-thumb-sidebar {
    width: 150px; /* Adjust size if needed */
    flex-shrink: 0;
    position: relative;
    border-radius: 4px;overflow: hidden;
}

.spxx-right .video-thumb-sidebar img {
    width: 100%;
    height: 85px; /* Adjust size if needed */
    object-fit: cover;
    display: block;
}

.spxx-right .video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 2px;
}

.spxx-right .video-info-sidebar {
    flex: 1;
    padding-left: 10px;
}

.spxx-right .video-info-sidebar h4 {
    font-size: 14px;
    margin: 0 0 5px;
    line-height: 1.6;
    font-weight: normal;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spxx-right .video-time {
    font-size: 12px;
    color: #999;

    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.video-info {
    padding: 12px;
}

.video-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-item:hover .video-info h3 {
    color: #000;
}

/* 图文列表样式 */
.news-image-list4 {
    margin: 20px 0;
}

.news-image-list4 .image-list-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.news-image-list4 .image-list-item {
    width: 23.5%;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-image-list4 .image-list-item:hover {
    
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-image-list4 .image-list-item a {
    text-decoration: none;
    color: #333;
    display: block;
}

.news-image-list4 .image-block {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.news-image-list4 .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.news-image-list4 .image-list-item:hover .image-block img {
    transform: scale(1.1);
}

.news-image-list4 .image-title {
    padding: 10px;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 3px;
}
.pagination a:hover {
    background-color: #e5e5e5;
}
.pagination a.active {
    border: 1px solid #0052cc;
    background-color: #0052cc;
    color: #fff;
}

.pagination{overflow: hidden;display: flex;justify-content: center;}
.pagination li{border: 1px solid #ddd;margin: 0 5px;}
.pagination li:first-child:hover{background-color: #fff;}
.pagination li:first-child a{text-decoration: none;background: transparent;}
.pagination li a {display: inline-block;padding: 8px 12px;margin: 0 5px;color: #666;border:none}
.pagination li:hover {background-color: #e5e5e5;}
.pagination li.active{border: 1px solid #0052cc;background-color: #0052cc;}
.pagination li.active a{color: #fff; text-decoration: none;background: transparent;}
/* 广播播放器样式 */
.live-fm {
    background-color: #f5f8fa;
    padding: 80px 0 40px;
}

.fm-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.fm-player-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #4a6b8a;
    border-radius: 10px;
    /*padding: 30px;*/
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.fm-player-main .timeline {
    background-color: #c0c9d6;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    position: relative;
    width: 100%;height: 7px;
  }
  .fm-player-main .timeline div {
    transition: width 0.2s;
    background-image: linear-gradient(90deg, #4b75a0 40%, #3b5c7d 85%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
  }
/* 唱片样式 */
.fm-disc {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    background: #333333 url(../images/fm-bg.png) no-repeat center center;
    background-size: 100% auto;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
 
    
}
.fm-tag{position: absolute;top: 15px;left: 15px;width: 90px;}
/* 暂停状态下停止唱片旋转 */
.fm-player-main .paused ~ .fm-disc,
.fm-player-main.paused .fm-disc,
.fm-player.paused .fm-disc {
    animation-play-state: paused;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fm-disc-inner {
    width: 140px;
    height: 140px;
    border-radius:25px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;

}

.fm-station-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}

/* 控制按钮样式 */
.fm-controls {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #fff;

}

.fm-control-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.fm-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.fm-btn:hover {
    transform: scale(1.1);
}

.fm-play {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    color: #4a6b8a;
    font-size: 20px;
}

.fm-icon {
    font-style: normal;
}

/* 进度条样式 */
.fm-progress {
    width: 100%;
}

.fm-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
}

.fm-progress-current {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background-color: #fff;
    border-radius: 3px;
}

.fm-time {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* 音量控制样式 */
.fm-volume {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fm-volume-slider {
    flex: 1;
    max-width: 100px;
}

.fm-volume-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.fm-volume-current {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background-color: #fff;
    border-radius: 2px;
}

/* 频道列表样式 */
.fm-channels {
    width: 100%;
   /* max-width: 800px;*/
    margin: 0 auto;
}

.fm-channel-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*gap: 10px;*/
}

.fm-channel-item {
    padding: 15px 30px;
    background-color: #f0f0f0;
    border-radius: 8px;
    border:1px solid #cadeff;
    color: #333;
    text-decoration: none;
    font-size: 18px;font-weight: 700;
    transition: all 0.3s ease;margin-right: 10px;
}
.fm-channel-item:last-child{margin-right: 0;}
.fm-channel-item:hover {
    background-color: #e0e0e0;
    text-decoration: none;
}

.fm-channel-item.active {
    background-color: #d3eeff;
    color: #113eab;
    border-color: #cadeff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .fm-player-main {
        padding: 20px;
    }
    
    .fm-disc {
        width: 200px;
        height: 200px;
    }
    
    .fm-channel-list {
        flex-direction: column;
        align-items: center;
    }
    
    .fm-channel-item {
        width: 100%;
        text-align: center;
    }
}

.live-content {
    display: flex;
}

/* 主播放区域 */
.live-main {
    flex: 1;
    background-color: #000;
    overflow: hidden;
}

.live-video {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.live-video-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #222;

}

.live-title {
    font-size: 20px;
    font-weight: bold;
}

.live-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-hot {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #ccc;
}

.live-hot img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* 频道列表区域 */
.live-channels {
    width: 200px;
    background-color: #222;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
}

.channel-header {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    background-color: #333;
    text-align: center;
    border-bottom: 1px solid #444;
}

.channel-list {
    list-style: none;
}

.channel-item {
    border-bottom: 1px solid #333;
    text-align: center;
}

.channel-item a {
    display: block;
    padding: 20px 15px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.channel-item a:hover {
    background-color: #333;
    color: #fff;
}

.channel-item.active a {
    background-color: #c00;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .live-content {
        flex-direction: column;
    }
    
    .live-channels {
        width: 100%;
    }
}

/* 重点栏目区域样式 */
.featured-programs {
    margin: 30px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 0;
    position: relative;
}

/*.section-header:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
}*/

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    position: relative;
    display: flex;
    align-items: center;
}

.section-title:before {
    content: '';
    width: 4px;
    height: 22px;
    background-color: #0052cc;
    margin-right: 10px;
    display: inline-block;
}

.more-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.more-link:after {
    content: '>';
    margin-left: 5px;
    font-family: sans-serif;
}

.more-link:hover {
    color: #000;
}

.program-scroll {
    position: relative;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
}

.program-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.program-list {
    display: flex;
    min-width: min-content;
    padding: 5px;
}

.program-item {
    flex: 0 0 auto;
    width: 264px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    margin-right: 20px;
}
.program-item:last-child{margin-right: 0;}
.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.program-item:hover a{text-decoration: none;}
.program-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0146af;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-item:hover:after {
    transform: scaleX(1);
}

.program-image {
    height: 160px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-item:hover .program-image img {
    transform: scale(1.05);
}

.program-title {
    padding: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    background-color: #fff;
}

/* 响应式调整 */
@media (max-width: 576px) {
    .program-item {
        width: 160px;
    }
    
    .program-image {
        height: 100px;
    }
    
    .section-title {
        font-size: 18px;
    }
}

/*fm*/
.live-fm{background:linear-gradient(to bottom, #d5e6fe,#f4f9fd);position: relative;}
.fm-player #mse{display: none;}
.fm-disc-bg{width: 100%;display: none;position: absolute;bottom: 0;}
.fm-spectrum{display: flex;}
.music {
	width: 50px;
	height: 1px;
	margin: 100px auto;
	position: relative;
}

.music div {
	width: 4px;
	height: 5px;
	position: absolute;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.3);
}

.music div:nth-of-type(1) {
	left: 0;
}

.music div:nth-of-type(2) {
	left: 8px;
}

.music div:nth-of-type(3) {
	left: 16px;
}

.music div:nth-of-type(4) {
	left: 24px;
}

.music div:nth-of-type(5) {
	left: 32px;
}

.music div:nth-of-type(6) {
	left: 40px;
}

.music.active div:nth-of-type(1) {
	animation: wave 0.66s linear infinite;
}

.music.active div:nth-of-type(2) {
	animation: wave 0.8s linear infinite;
}

.music.active div:nth-of-type(3) {
	animation: wave 0.7s linear infinite;
}

.music.active div:nth-of-type(4) {
	animation: wave 0.5s linear infinite;
}

.music.active div:nth-of-type(5) {
	animation: wave 0.9s linear infinite;
}

.music.active div:nth-of-type(6) {
	animation: wave 1.2s linear infinite;
}

@-webkit-keyframes wave {
	0% {
		height: 8px
	}

	50% {
		height: 32px
	}

	100% {
		height: 12px
	}
}

@keyframes wave {
	0% {
		height: 8px
	}

	50% {
		height: 32px
	}

	100% {
		height: 12px
	}
}
.c-head{height: 100px;/*background:linear-gradient(to bottom, #d5e6fe,#f4f9fd);*/background-color: #f4f9fd;}
.c-head h2{text-align: center;line-height: 100px;font-size: 28px;color: #0046ae;position: relative;
    display:flex;
    justify-content: center;
    align-items: center;}
.c-head h2 span {
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 30px;
    display:block;
}

.c-head h2 span:last-child {
    margin-right: 0;
    margin-left: 30px;
    transform: rotateY(180deg);
}
.c-head h2 span::before {
    content: "";
    width: 11px;
    height: 11px;
    background: #cce0ee;
    position: absolute;
    left: 0;
    top: 0
}

.c-head h2 span::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #ff2626;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1
}
.c-head h2 a{color: #0046ae;text-decoration: none;}
.c-top{background-color: #e9fcff;}
.text-center{text-align: center;}
.article main{background-color: #f4f4f4;overflow: hidden;}
.maincontent{margin-bottom: 15px;
    padding: 24px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;}
.maincontent h1{padding: 0 20px 15px;
        color: #333;
        font-weight: 700;
        font-size: 39px;
        line-height: 53px;text-align: center;}
.content-info{padding: 0 20px 15px;
    border-bottom: 1px solid #f2f2f2;
    color: #b7b7b7;
    font-size: 16px;
    line-height: 40px;text-align: center;}
.content-body{padding-top: 20px;margin: 0 15px;}
.content-body p{margin-bottom: 20px;
        color: #333;
        font-size: 20px;
        line-height: 40px;text-indent:0;}
 .news-player{width: 800px;margin: 0 auto 20px;}   
 .live-player{margin-bottom: 20px;}
 .maincontent .editor{text-align: right;margin-top: 15px;}

 
 .left-column{width: 900px;height: 505px;}
 .swiper{
width:100%;
height: 100%;
}

.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}

.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}

.left-column {
flex: 5; 
position: relative;
margin-right: 15px; 
}

.left-column img {
width: 100%;
height: auto;
display: block;
}

.image-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 10px 15px;
box-sizing: border-box; 
}

.image-overlay h2 {
margin: 0;
font-size: 1.2em; 
font-weight: normal;
}

.right-column {
flex: 3; 
padding: 10px 15px;
background-color: #fff;overflow: hidden;border-radius: 6px;box-shadow: rgba(101, 196, 255, 0.05) 0px 2px 10px;
}

.tjzq .c-top .w-list li{width:455px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

/* .news-list2 样式 - 每行两个li元素 */
.news-list2 .w-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list2 .w-list li {
  width: 50%;
  padding: 12px 15px;
  box-sizing: border-box;
  border-bottom: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list2 .w-list li:nth-child(odd) {
  /*border-right: 1px dotted #eee;*/
}

.news-list2 .w-list li:nth-last-child(-n+2) {
  border-bottom: none;
}
.news-list2 .w-list li span{}
.tjzq .swiper{overflow: hidden;border-radius: 6px;}
.tjzq .section-title::before{width: 0;height: 0;margin-right: 0;}
.tjzq .section-title span{width:40px;margin-right: 5px;}
.tjzq .section-title span svg{width:100%;height:100%;display: block;color: #0052cc;fill: currentColor;}

/* .right-column a::before {
content: "■"; 
color: #0052cc; 
margin-right: 8px;
font-size: 0.7em; 
}*/

.financial-news {
  margin-top: 20px;
  border: 1px solid #eee;
  padding: 15px 25px;background-color: #fff;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.news-header .title {display: flex;align-items: center;}
.news-header .title b{font-size: 20px;font-weight: 600;}
.news-header .title span {
  margin-right: 10px;width: 40px;height: 40px;
}
.news-header .meta,.news-header .meta a {
  font-size: 14px;
  color: #999;
}

.news-content {
  display: flex;
}

.news-list {
  flex: 3;
  margin-right: 25px;
}

.news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dotted #eee;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.news-list li a:hover,.news-image a:hover .image-caption{
  color: #0052cc;
  text-decoration: underline;
}

.news-list li span {
  font-size: 16px;
  color: #999;
}

.news-image {
  flex: 1;
  text-align: center;
}

.news-image img {
  width: 100%;
  height: 200px;
  display: block;overflow: hidden;border-radius: 6px;
}

.image-caption {
  font-size: 16px;
  color: #666;
  margin: 15px 0;
}
.s-title{position: absolute;bottom: 0;width: 100%;color: #fff;padding: 30px 10px;background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(0,0,0,0.8));line-height: 1.6;}
