
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /*padding: 0 15px;*/
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}
.block{display: block;}
.ml20{margin-left: 20px;}
.ml30{margin-left: 30px;}
.bold{font-weight: bold;}

.header {
    background-color: #0052cc;
    color: white;
}

.header-container {
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
}

.logo {
    width: 350px;
    padding:10px 20px;background-color: #fff;
}
.logo img{
    width: 100%;
    height: auto;
}
.main-nav .nav-menu {

    height: 62px;
}

.main-nav li {
    margin: 0 10px;
    height: 62px;
    line-height: 62px;
}

.main-nav a {
    color: white;
    font-size: 18px;
    padding: 0 10px;
    display: inline-block;
    cursor: pointer;
}


.nav-menu {
    position: relative;
}

/* 主菜单项 */
.nav-item {
    display: inline-block;
    position: relative;
}

/* 主菜单链接 */
.nav-link {
    display: block;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
}
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #f4f9fe;
    min-width: 150px;
    padding: 0;
    border: 4px solid #0052cc;
    border-top: none;
   opacity: 0;
    transition: opacity 0.6s;
}
.sub-menu:before,.sub-panel:before{
    content: "";
    width: 16px;
    height: 6px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAASBAMAAADvSECJAAAAHlBMVEVHcEz////////////////////////////////////JATChAAAACXRSTlMAf0DjEI+/XyDPWu1ZAAAAXklEQVQY02NgoAAwZU4rwCohOXPmRGzijDOBQAC7BqxawBqwaZGESEzEoQFTiyRMYiIODehaJBESE3FoQNUiiSwxEYcGJC0skagSUx2gEsoz0YA5WLhJeCYGMFVhAABuNF5e7AnNUQAAAABJRU5ErkJggg==);
    background-size: contain;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: -5px;
    left: 50%;
}
/* 二级菜单项 */
.sub-item {
    display: block;
    border-bottom: 1px solid #0052cc;
    text-align: center;
}
.sub-item a{padding:0;}
.sub-item:last-child {
    border-bottom: none; 
}
.sub-item a {
 color: #666666; 
}
.sub-item a:hover {
    color: #0052cc;
    text-decoration: none;
}
.nav-item:hover .sub-menu,.mobile-wrapper:hover .sub-panel{
    display: block;
    opacity: 1;
}

.main-nav a.active {
    font-weight: bold;
}


.nav-item:hover a.nav-link{text-decoration: none;color: #bce6ff;}
 /* .main-nav .sub-menu {
  display: none;}*/



/*语言*/
.language-item {
    position: relative;
    display: inline-block;
    padding: 0;
    color: white;
    cursor: pointer;
    height: 60px;
    line-height: 60px;
}

.language-list {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    min-width: 150px;
}

.language-list li {
    padding: 10px 15px;
    color: #333;
    border-bottom: 1px solid #eee;text-align: center;line-height: 2;
}

.language-list li:hover {
    background: #f5f5f5;
}

.language-item.active .language-list{
    display: block;
    z-index: 999;
}
.language-list li a:hover {
    text-decoration: none;
}



.header-right {
    display: flex;
    align-items: center;font-size: 16px;
}
.header-right .v-line{
    margin: 0 15px;
}
.search-icon, .language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
}
.search-icon img{
    width: 24px;
    height: 24px;
}
.search-icon svg{
    color: #fff;
}
.mobile-icon span {
    margin:0;
}

.mobile-wrapper{position: relative;cursor: pointer;display: inline-block;}
.sub-panel{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #f4f9fe;
    min-width: 150px;
    padding: 8px;
    border: 4px solid #0052cc;
    border-top: none;
   opacity: 0;
    transition: opacity 0.6s;
}
.mobile-item{height: 60px;display: table-cell;
    vertical-align: middle;}
.mobile-item img{
    width: 18px;
    height: auto;
}
.mobile-item span{
    margin-left: 0;
}

.language-selector {
    display: flex;
    align-items: center;
}

/* 主要内容区样式 */
.main-content {
    padding: 20px 0 0;
}

/* 主标题样式 */
.main-headline {
    text-align: center;
    margin: 30px 0;
}

.main-headline h1 {
    font-size: 38px;
    color:#0146ae;
    margin-bottom: 20px;
    font-weight: bold;
}
.main-headline h1 a{
    color:#162f63;
}
.news-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.news-links a {
    margin: 0 10px;
    color: #666;
}

.news-links a:hover {
    color: #0052cc;
}

.separator {
    color: #ccc;
}

/* 新闻内容区样式 */
.news-content {
    margin-top: 30px;
}

.news-image-container {
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.focus-slider {
    width: 70%;
    height: 560px;
    position: relative;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.slider-item.active {
    opacity: 1;
    display: block;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ddd; /* 灰色占位 */
}

.news-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
   /* background-size: 1% 100%;
    background-position:right center;*/
    padding-right: 20px;
}

.news-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: 3% 100%;
    background-position:right center;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
    z-index: 0;
}

.sidebar-item {
    flex: 1;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    justify-content: center;
    text-align: center;
    background-color: rgba(34, 34, 34, 0.4);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    /*transition: background-color 0.2s ease;*/
    position: relative;
    z-index: 1;
}

.sidebar-item.active {
    background: linear-gradient(to right, rgba(1, 72, 180, 0.8), rgba(1, 72, 180, 0.5) 80%,rgba(1, 72, 180, 0.2));
    
}

.sidebar-item.hover {
    background-color: #333;
}

.sidebar-item h3 {
    font-size: 18px;
    font-weight: normal;
    text-align: left;
}

.sidebar-item h3 a{color: #fff;text-decoration: none;}

/* 移除了.blue-bg，使用.active代替 */

/* 七张图片排版区域样式 */
.image-gallery-section {
    margin: 30px 0;
}

/* 友情链接、合作媒体和地方网联Tab切换区域样式 */


.language-tab-buttons {
    display: flex;
    margin-bottom: 15px;
}

.language-tab {
    padding: 8px 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    position: relative;
}

.language-tab.active {
    color: #0052cc;
}

.language-tab.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0052cc;
}

.language-panels {
    padding: 15px 0;
}

.language-panel {
    display: none;
}

.language-panel.active {
    display: block;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
}

.link-list a {
    color: #666;
    padding: 5px 20px;
    transition: color 0.3s;
}

.link-list a:hover {
    color: #0052cc;
}

/* 内容自动滑动展示区域样式 */
.zdtj{
    background:url(../images/tj-bg.png) no-repeat top center;
    background-size:auto;
    margin-top: 20px;
}
.zdtj .slider-showcase-section{padding-top: 20px;}
.zdtj .section-header,.zdtj .section-title{
    background:none;margin-top:0;
}

.swiper-container,.swiper-container1 {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .slider-showcase-item{
    border-radius: 10px;overflow: hidden;
  }
  .slider-showcase-item a{
    display: block;width: 100%;
  }
.slider-showcase-image{width: 100%;height: 250px;object-fit: cover;}
  .swiper-container1 .swiper-slide {
    width: 16%;
  }

  .swiper-container1 .swiper-slide:nth-child(3),.swiper-container1 .swiper-slide:nth-child(8){
    width: 30%;
  }
/*.
.slider-showcase-section {  
    padding: 20px 0;
}

.slider-showcase {
    position: relative;
    overflow: hidden;
}

.slider-showcase-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-showcase-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

slider-showcase-item {
    flex: 0 0 20%;
    padding: 0 10px;
    box-sizing: border-box;
}

.slider-showcase-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-showcase-title {
    display: none;
}

.slider-showcase-controls {
    display: flex;
    justify-content:space-between;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.slider-showcase-prev,
.slider-showcase-next {
    
    color: white;
   border: none;
    width: 30px;
    height: 30px;
    
    font-size: 16px;
    cursor: pointer;
   
    display: none;

}

.zdtj:hover .slider-showcase-prev,
.zdtj:hover .slider-showcase-next {
    display: block;background: none;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.slider-indicator {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: none;
}

.slider-indicator.active {
    background-color: #0146ae;
}

.section-body{position: relative;}
.slider-showcase-prev{margin-left: -40px;}
.slider-showcase-next{margin-right: -40px;}
*/

/* 新闻直播区域样式 */
.news-live-section {
    margin: 30px 0;
    border-radius: 5px;
    background-color: #fff;
}

.news-live-container {
    display: flex;
    overflow: hidden;
    height: auto;
}

.news-live-content {
    flex: 1;
    padding: 0;
    position: relative;
}

.live-tag {
    display: inline-block;
    background-color: #0052cc;
    color:#fff2b5;
    padding: 6px 8px;
    border-radius:0 8px 0 8px;
    font-weight: 400;
    margin-right: 5px;
    font-size: 16px;
    letter-spacing: 1px;line-height: 1;
}

.live-headline {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 2;
    color:#0146ae;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.live-headline a{
    color:#162f63;
}
.news-columns {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.news-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-column a {
    margin-bottom: 18px;
    color: #333;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
}

.news-column a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    /*background-color: #0052cc;*/
    background-color: #e7e7e7;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.news-column a:hover {
    color: #0052cc;
    text-decoration: underline;
}

.news-column a:hover:before {
    transform: scale(1.5);
}

.news-ad {
    width: 300px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.button-container {
    width: 100%;
    max-width: 450px;
    margin-bottom: 20px;
}
.album b{
    margin-right: 5px;
}
.nav-button {
    display: flex;
    justify-content:space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #d9f0ff;
    border-radius: 10px;
    text-decoration: none;
    color: #0047a5;
    font-size: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #c5e6ff;text-decoration: none;
}

.news-ad .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}

.icon-content {
    width: 18px;
    height: 3px;
    background-color: #0047a5;
    position: relative;
}

.icon-content:before, .icon-content:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 3px;
    background-color: #0047a5;
    left: 0;
}

.icon-content:before {
    top: -6px;
}

.icon-content:after {
    bottom: -6px;
}

.news-ad .arrow {
    margin-left: auto;
    font-size: 20px;
}

.ad-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.ad-links {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: #d9f1ff;
}

.ad-links:last-child {
    margin-bottom: 0;
}

.ad-links a {
    color: #333;
    font-size: 14px;
}

.ad-links a:hover {
    color: #0052cc;
}

.ad-separator {
    margin: 0 8px;
    color: #ccc;
}

.ad-image-container {
    flex: 1;
    padding:0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    background-color: #ddd;
}

/* 重点栏目区域样式 */
.featured-vertical-wrapper {
    display: flex;
    margin:20px 0 30px;
}

.featured-section {
    flex: 2; 
    margin: 0;
}

.vertical-news-section {
    flex: 1; 
}

.section-header {
    display: flex;
    align-items: center;
   justify-content:space-between;
    margin-bottom: 20px;
    height: 60px;
    line-height: 60px;
    width: 100%;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    /*margin-top: 20px;*/
    background: url(../images/bg2.jpg) 0px center repeat-x;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #0052cc;
    margin-right: 15px;
    background-color: #fff;padding-right: 15px;
}
.section-title span {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 20px;
}
.section-title span::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #cce0ee;
    position: absolute;
    left: 0;
    top: 0;
}
.section-title span::after {
    content: "";
    width: 14px;
    height: 14px;
    background: #ff2626;
    background: rgba(235, 1, 1, 0.6);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.section-line {
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.featured-container {
    display: flex;
}

.featured-main {
    width:440px;
    position: relative;
    background-color: #ecf0f6;border-radius: 8px;overflow: hidden;
}
.featured-main:hover{background-color: #c3e9f7;}
.featured-main a:hover{text-decoration: none;}
.featured-image:hover,.featured-item-image:hover{transform: scale(1.1);}
.featured-image-container {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-color: #000;
}

.featured-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.6s;
    /*opacity: 0.9;*/
}

.featured-title {
    /*position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;*/
    width: 100%;
    padding: 15px;
    
    font-size: 20px;
    text-align: center;
}

.featured-grid {
    width:453px;
    overflow: hidden; /* 清除浮动 */
}
.featured-grid div:nth-child(1) .featured-item-title{background-color: rgba(88, 132, 167, 0.6);}
.featured-grid div:nth-child(2) .featured-item-title{background-color: rgba(78, 154, 233, 0.6);}
.featured-grid div:nth-child(3) .featured-item-title{background-color: rgba(126, 58, 13, 0.6);}
.featured-grid div:nth-child(4) .featured-item-title{background-color: rgba(142, 114, 207, 0.6);}
.featured-item {
    position: relative;
    height: 153px; 
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
    float: left;
    width: calc(50% - 8px);
    margin: 0 0 15px 0;
}

.featured-item:nth-child(odd) {
    margin-right: 15px;
}
.featured-item:nth-child(3),.featured-item:nth-child(4) {
    margin-bottom: 0;
}
.featured-item-image {
    width: 100%;
    height:100%;
    object-fit:cover;
    transition: all 0.6s;
}

/* 清除浮动 */
.featured-grid:after {
    content: "";
    display: table;
    clear: both;
}

.featured-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 16px;
    text-align: center;
}

/* 网媒联播和推荐专区样式 */
.media-recommend-section {
    display: flex;
    margin: 30px 0;
}

/* 网媒联播区域样式 */
.media-broadcast-section {
    flex: 1;
    background-color: #fff;
    border-radius: 5px;
   /* padding: 20px;*/
}

.media-broadcast-news {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.broadcast-news-header {
    margin-bottom: 15px;
}

.broadcast-news-header h3 {
    color: #0052cc;
    font-size: 18px;
    font-weight: bold;
}

.broadcast-news-list {
    display: flex;
    flex-direction: column;
}

.broadcast-news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.broadcast-news-item .news-dot {
    width: 6px;
    height: 6px;
    background-color: #e7e7e7;
    border-radius: 50%;
    margin-top: 10px;
    margin-right: 10px;
    flex-shrink: 0;
}

.broadcast-news-item a {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
}

.broadcast-news-item a:hover {
    color: #0052cc;
    text-decoration: underline;
}

/* 推荐专区样式 */
.recommend-section {
    flex: 2;
    background-color: #fff;
    border-radius: 5px;
}
.sub-column{
    margin: 0 0 20px;border-left: 5px solid #0046ae;padding-left: 18px;
    box-sizing: border-box;
    line-height: 20px;
    color: #0046ae;
    font-size: 22px;
    font-weight: bold;

}
/* 多语言新闻选项卡样式 */
.language-tabs-section {
    margin: 30px 0;
    background-color: #fff;
    border-radius: 5px;
    padding-bottom: 30px;
}

.language-tabs-container {
    margin-top: 20px;
}

.language-tabs {
    display: flex;
    justify-content:space-around;
    border-bottom: 1px solid #e0e0e0;
    height: 60px;
}

.language-tab {
    padding: 12px 30px;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: #666;
}

.language-tab.active {
    color: #0052cc;
    font-weight: bold;
    border-bottom: 2px solid #0052cc;
}

.language-tab:hover:not(.active) {
    color: #0052cc;
}

.language-panels {
    padding: 40px 0 0;
}

.language-panel {
    display: none;
}

.language-panel.active {
    display: block;
}

.language-panel-content {
    display: flex;
}

.language-news-image {
    position: relative;
    width: 500px;
}

.language-news-image img {
    width: 100%;
    height: 325px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.language-news-image h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    margin: 0;
    font-size: 16px;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.language-news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.language-pic-list{
    width: 200px;
}
.list-news-image img{width: 100%;height: auto;}
.language-news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.language-news-item .news-dot {
    width: 6px;
    height: 6px;
    background-color:#e7e7e7;
    border-radius: 50%;
    margin-top: 10px;
    margin-right: 10px;
    flex-shrink: 0;
}

.language-news-item a {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    transition: color 0.3s ease;
}

.language-news-item a:hover {
    color: #0052cc;
    text-decoration: underline;
}

.recommend-content {
    display: flex;
    margin-top: 20px;
}

.recommend-item {
    flex: 1;
    background-color: #fff;
    overflow: hidden;
}

.recommend-image-container {
    position: relative;
    height: 158px;
    overflow: hidden;
    margin-bottom:25px;
    display: flex;
    flex-direction: row;
    border-radius:5px;
}


.recommend-image-container .block{width: 50%;height: 100%;}


.recommend-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.recommend-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #0146ae;
    color: white;
    padding:2px 6px;
    font-size: 14px;
    border-radius: 4px;
    z-index: 2;
}
.recommend-btn{
    position: absolute;
    bottom: 10px;
    right: 10px;border: 1px solid #0146ae;z-index: 999;padding: 4px;font-size: 14px;border-radius: 5px;color: #0146ae;background-color: #d9f0ff;
}
.recommend-btn:hover{background-color: #0146ae;color: #fff;}
.recommend-btn:hover a{color: #fff;text-decoration: none;}
.recommend-title {
    position: relative;
    width: 50%;
    padding: 10px;
    background-color:#f6f6f6;
    color:#333333;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.recommend-news-list {
    padding: 0;
}

.recommend-news-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.recommend-news-item .news-dot {
    width: 6px;
    height: 6px;
    background-color: #e7e7e7;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.recommend-news-item a {
    color: #333;
    font-size: 16px;
 
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.recommend-news-item a:hover {
    color: #0146ae;
}

.recommend-column-links a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background-color: #0052cc;
    border-radius: 50%;
}

.recommend-column-links a:hover {
    color: #0052cc;
}


.vertical-news-container {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding:0;
}

.vertical-news-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding:0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.vertical-tag {
    padding: 5px 6px;
    margin-right: 10px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}
.vertical-tag:last-child{margin-right: 0;}
.vertical-tag:hover {
    background-color: #0052cc;
    color: white;
    text-decoration: none;
}

.vertical-news-list {
    display: flex;
    flex-direction: column;

}

.vertical-news-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.news-dot {
    width: 6px;
    height: 6px;
    background-color: #e7e7e7;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 10px;
}

.vertical-news-item a {
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

.vertical-news-item a:hover {
    color: #0052cc;
    text-decoration: underline;
}

/* 微信矩阵区域样式 */
.wechat-matrix-section {
    margin: 30px 0;
}

.wechat-matrix-container {
    display: flex;
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 左右两侧边栏样式 */
.matrix-sidebar {
    width: 80px;
    background-color: #0052cc;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sidebar-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.sidebar-text {
    writing-mode: vertical-lr;
    font-size: 18px;
    letter-spacing: 2px;
}

/* 中间微信图标区域样式 */
.wechat-icons-container {
    flex: 1;
    padding: 20px;
    background-color: white;
}

.wechat-icons-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.wechat-icons-row:last-child {
    margin-bottom: 0;
}

.wechat-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16%;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #ddd; /* 灰色占位 */
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-title {
    font-size: 14px;
    text-align: center;
    color: #333;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .featured-vertical-wrapper {
        flex-direction: column;
    }
    
    .featured-section,
    .vertical-news-section {
        flex: none;
        width: 100%;
    }
    
    .news-image-container,
    .news-live-container,
    .featured-container {
        flex-direction: column;
    }
    
    .news-image, .news-sidebar,
    .news-ad,
    .featured-main, .featured-grid {
        width: 100%;
    }
    
    .news-image {
        height: 300px;
    }
    
    .news-ad {
        height: 150px;
    }
    
    .news-columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .sidebar-item {
        padding: 15px;
    }
    
    .featured-grid {
        overflow: hidden; /* 清除浮动 */
        margin-top: 15px;
    }
    
    .featured-grid .featured-item {
        float: left;
        width: calc(50% - 8px);
    }
    
    .featured-image-container {
        height: 300px;
    }
    
    /* 微信矩阵响应式 */
    .wechat-icons-row {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .wechat-icon-item {
        width: 30%;
        margin-bottom: 20px;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }
    
    .header-right {
        margin-top: 10px;
    }
    
    .main-headline h1 {
        font-size: 24px;
    }
    
    .news-links {
        flex-direction: column;
        align-items: center;
    }
    
    .news-links a {
        margin: 5px 0;
    }
    
    .separator {
        display: none;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-title, .featured-item-title {
        font-size: 16px;
        padding: 10px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .vertical-news-tags {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .vertical-news-item a {
        font-size: 14px;
    }
    
    .featured-image-container {
        height: 200px;
    }
    
    /* 微信矩阵响应式 */
    .wechat-matrix-container {
        flex-direction: column;
    }
    
    .matrix-sidebar {
        width: 100%;
        padding: 10px 0;
    }
    
    .sidebar-content {
        flex-direction: row;
    }
    
    .sidebar-text {
        writing-mode: horizontal-tb;
        margin-left: 10px;
    }
    
    .wechat-icon-item {
        width: 45%;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
}
/**矩阵***/
.rmjz{background-color: #f4f9fe;padding: 30px 0;}
#reseaux_sociaux {
    margin:0 auto;
    width:100%;
    height: 460px;
  }
  
  /* ACCORDEON RESEAUX SOCIAUX */
  
  .accordeon {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(to bottom,#0059d5,#00b4ff);
    transform: translateZ(0);
  }
  /* Taille des onglets fermés */
  .accordeon .link {
    position: relative;
    float: left;
    width: 8%;
    height: 100%;
    color: #aaa;
    border-right: 2px solid #00b4ff;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease-out;
  }
  .accordeon .link:last-child {
    border-right: 0;
  }
  /* Taille des onglets ouverts */
  .accordeon .link.hovered {
    width: 84%;
    background:url("../images/icon-list-bg.jpg") no-repeat center center;
    background-size: cover;
  }
  
  .accordeon .link.hovered .prev {
    opacity: 0;
  }
  
 
  
  .accordeon .link:not(.hovered) .full_content {
    opacity: 0;
  }
  
  .accordeon .link .full_content {
    width: 100%;
    position: absolute;
    top: 22px;
    left: 0;
    text-transform: uppercase;
  }
  

  
  .accordeon .link .prev {
    height: 100%;
    width: 100%;
    font-size: 12px;
    transition: 0.3s ease;
    padding: 25px 10px;
    position: relative;
    z-index: 999;
  }
  
  .accordeon .link .prev > span {
    display: block;
    height: 100%;
    width: 100%;
    transition: 0.3s ease;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40% auto;
  }
  .hovered .full_content{z-index: 9999;}
 /* .accordeon .link:hover .prev {
    filter: brightness(0%);
  }
  .accordeon .link.hovered .prev {
    filter: brightness(0%);
  }*/
  
  #weixin_accordeon {
    background-image: url("../images/jz-wx.png");
  }
  #weibo_accordeon {
    background-image: url("../images/jz-wb.png");
  }
  #dsp_accordeon {
    background-image: url("../images/jz-dsp.png");
  }

        
.i-video-section{
    max-width: 1400px;
    margin: 0 auto 40px;
    padding:0;
}

.i-video-section .s-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.i-video-section .header-icon {
    width: 30px;
    height: 30px;
    background-color: #e74c3c;
    margin-right: 10px;
}

.i-video-section .header-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.i-video-section .content {
    display: flex;
}

.i-video-section .left-column {
    width: 30%;
    padding-right: 20px;
}

.i-video-section .right-column {
    width: 980px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
}

.i-video-section .card {
    position: relative;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.i-video-section .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;display: block;
}

.i-video-section .card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 3px 8px;
    font-size: 14px;
    border-radius: 3px;
}
.i-video-section .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    color: #fff;text-align: center;
}

.i-video-section .card-title {
    font-size: 16px;
    line-height: 1.4;
}

.i-video-section .news-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.i-video-section .news-item-icon {
    margin-right: 10px;
    color: #999;
}

.i-video-section .news-item-text {
    font-size: 16px;
    color: #333;
}
.news-item-text:hover {
    color: #0146ae;
}
.i-video-section .image-card {
    flex: 0 0 auto;
    width:228px;
    height: 350px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.i-video-section .image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.i-video-section .image-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding:40px 10px 15px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 90, 215, 0.5) 30%, rgba(0, 90, 215, 1) 100%);
    color: white;
    font-size: 16px;
    text-align: center;
}


.tab-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background: #f0f0f0;
}

.tab-btn {
    padding: 6px 10px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    text-align: center;
}

.tab-btn:hover {
    color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
}

.tab-btn.active {
    color: #0052cc;
    background: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0052cc;
}

.tab-content {
    padding:0;
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

  /* 容器样式 */
 .icon-list {
    margin-left: auto; 
    margin-right: auto; 
    width: 100%; 
}
.hovered .icon-list {animation: fadeIn 3s ease;}
/* 标题样式 */
.icon-list .title {
    font-size:28px; 
    font-weight: 600;
    text-align: center; 
    color: #013f92;
   
}

/* 图标网格容器样式 */
.icon-list .icon-grid {
    display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
            width: 1175px;
            padding: 20px;
}

/* 图标项（包含图标和标签）样式 */
.icon-list .icon-item {
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: column; /* 垂直排列 */
    align-items: center; /* 水平居中对齐 */
    text-align: center; /* 文本居中 */
    width: 140px;
    margin: 15px;
}
.icon-list .icon-item a{display: flex; /* 使用 Flexbox 布局 */
    flex-direction: column; /* 垂直排列 */
    align-items: center; /* 水平居中对齐 */
    text-align: center; /* 文本居中 */
    text-decoration: none;

}
.wbjz .icon-item,.dspjz .icon-item{
    width: 180px;

}
/* 图标圆形容器样式 */
.icon-list .icon-circle {
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 4px solid #e2f0fa; 
    background-color: #ffffff;
    /*box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);   */
    margin-bottom:10px;
    display: flex; 
    align-items: center;
    justify-content: center; 
    transition: all 0.3s ease;
}
.wbjz .icon-item:hover .icon-circle,.dspjz .icon-item:hover .icon-circle{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(84,188,248,0.4);
}
.icon-item:hover .icon-label{color: #000;}
.icon-list .icon-circle img {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
}

/* 标签文本样式 */
.icon-list .icon-label {
    font-size: 16px; 
    color: #4b5563; 
}



.social-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
}


      /* 二维码样式 */
      .qr-code {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%) scale(0.8);
        width: 100%;
        height: 100%;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(84,188,248,0.4);
        padding: 10px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 10;
    }
    
    .qr-code img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* 悬停动画效果 */
    .social-item:hover .qr-code {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) scale(1);
    }



.yqlj{background-color: #f4f9fe;padding: 30px 0 50px;}
.link-tab-buttons{text-align: center;margin: 20px 0;}
.link-tab-buttons .tab-btn{font-size: 22px;font-weight: 600;}
.link-tab-buttons .tab-btn.active{background:none;color:#1e479b;}
.link-tab-buttons .tab-btn.active::after{background-color: #1e479b;}



.footer-content{text-align: center;background-color: #0146af;padding: 30px 0;color:#fff;}
.footer-links{margin-bottom: 30px;}
.footer-links a{color:#add6ff;font-weight: 600;margin: 0 10px;}
.footer-copyright{line-height: 2;}


.right-column{position: relative;}


.r-float{position: fixed;right: 30px;top: 300px;z-index: 9999;}
.aisou{width: 100px;height: auto;}
.wbfloat{width: 120px;height: auto;margin-bottom: 20px;}
/*ad*/
.ad{display: flex;}
.ad a{width: 100%;height: 100%;display: block;}
.ad a img{width: 100%;height: 100%;object-fit: cover;}
.ad1{width: 1400px;height: 110px;border-radius: 6px;overflow: hidden;}
.ad3 div,.ad4 div{border-radius: 6px;overflow: hidden;}
.ad3 div:nth-child(1),.ad3 div:nth-child(3){width: 340px;height: 110px;background-color: #aaa;}
.ad3 .ad-m{width: 680px;height: 110px;margin: 0 20px;background-color: #aaa;}
.ad4 div{width: 335px;margin-right: 20px;height: 110px;}
.ad4 div:last-child{margin-right: 0;}

