/* 蒙古文字体定义 */
/* @font-face {
    font-family: 'MenkQagan';
    src: url('./MenksoftAAT1.01/MenkQaganAAT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MenkQagan';
    src: url('./MenksoftAAT1.01/MenkQaganAAT_S.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
} */

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 头图背景区域 */
.header-banner {
    background: url('../slices2/bj.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 400px; /* 1920*1080分辨率下固定高度 */
}

/* 顶部透明色条 */
.top-bar {
    height: 55px;
    width: 100%;
}

/* 白色导航区域 */
.main-navigation {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* border-bottom: 1px solid #e1e5e9; */
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%; /* 确保菜单高度填满容器 */
}

.nav-menu li {
    margin: 0;
    position: relative;
    height: 100%; /* li高度填满菜单 */
    display: flex;
    align-items: center;
}

.nav-menu li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #4a90a4;
    border-radius: 3px;
}

.nav-menu li:last-child::after {
    display: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 0 30px;
    height: 100%; /* a标签高度填满li */
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    line-height: 1;
    position: relative;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #4a90a4 0%, #2e8b8b 100%);
    border-radius: 3px;
    color: white;
}

.nav-menu a.active {
    background: linear-gradient(135deg, #4a90a4 0%, #2e8b8b 100%);
    border-radius: 3px;
    color: white;
    font-weight: 600;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -8px; /* 突出到导航栏下方 */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4a90a4; /* 朝下的三角形 */
}

/* 右侧搜索框 */
.nav-search {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 5px;
    overflow: hidden;
    width: 280px;
    height: 40px;
}

.nav-search form {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-search input[type="text"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.nav-search input[type="text"]::placeholder {
    color: #999;
}

.nav-search button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #2e8b8b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-search button:hover {
    color: #1ca091;
}

.nav-search button i {
    font-size: 16px;
}

/* Logo和标语区域 */
.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0;
    z-index: 2;
}

.banner-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.banner-slogan {
    position: absolute;
    left: 300px; /* 共筑满意消费在右侧 */
    top: 0px;
}

.slogan-image {
    height: 74px;
    width: auto;
}

.banner-logo {
    position: absolute;
    right: 30px; /* logo在左侧 */
    /* top: -30px; */
    top: 0px;
}

.banner-logo .main-logo {
    height: 102px;
    width: auto;
}



/* 红色横幅区域样式 */
.red-banner {
    background: #fff;
    padding: 15px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner-main-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 主要内容区域 */
.main-content {
    background: #fff;
    padding: 0 0 0px 0;;
}

/* 主新闻标题区域 */
.news-header {
    margin: 20px 0 30px 0;
    text-align: left;
}

.news-title {
    font-size: 26px;
    color: #007B73;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

.news-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    text-align: justify;
}

/* 轮播展示区域 */
.carousel-section {
    margin: 30px 0; /* 恢复正常外边距 */
    /* padding: 0 80px; 为外部按钮预留空间 */
    position: relative; /* 为按钮定位提供参考 */
}

.carousel-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    height: 381px;
    overflow: hidden; /* 轮播内容区域保持裁剪 */
    position: relative;
}

/* 轮播导航按钮 */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    color: #1ca091;
    border: 2px solid #e1e5e9;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1000; /* 提高z-index确保按钮在最上层 */
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #1ca091 0%, #2db5a5 100%);
    color: white;
    border-color: #1ca091;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(28, 160, 145, 0.3);
}

.prev-nav {
    left: -80px; /* 相对于carousel-section的左边缘 */
}

.next-nav {
    right: -80px; /* 相对于carousel-section的右边缘 */
}

/* 轮播内容 */
.carousel-content {
    width: 98%;
    height: 100%;
    display: flex;
    padding: 0px;
}

/* 左侧图片区域 */
.carousel-image {
    flex: 0 0 600px;
    height: 381px;
    margin-right: 30px;
    position: relative;
    /* border-radius: 8px; */
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide-image.active {
    opacity: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.image-placeholder span {
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 右侧文字区域 */
.carousel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.text-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content.active {
    opacity: 1;
}

.content-date {
    font-size: 20px;
    color: #1ca091;
    margin-bottom: 15px;
    font-weight: 500;
}

.content-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.content-divider {
    color: #1ca091;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.content-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* 消费维权服务样式 */
.quick-access {
    /* padding: 40px 0; */
    background: #f8f9fa;

}

.service-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px 0px 0px;
    box-sizing: border-box;
}

.service-title {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title-img {
    height: 230px;
    width: auto;
    object-fit: contain;
}

.service-cards {
    flex: 1;
    display: flex;
    gap: 20px;
    padding: 15px 0px 15px 0;
    justify-content: flex-start;

}

.service-card {
    width: 510px;
    height: 191px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding-right: 10px;
}

.service-card:hover {
    border-color: #2e8b8b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 26px;
    color: #007B73;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.card-arrow {
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #2e8b8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.card-image {
    flex: 0 0 auto;
    margin-left: 15px;
    margin-top: 44px;
}

.card-image img {
    width: 190px;
    height: 136px;
    object-fit: contain;
}



.btn-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1ca091 0%, #2db5a5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(28, 160, 145, 0.3);
    position: relative;
    z-index: 1;
}

.btn-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.btn-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.btn-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.btn-arrow {
    flex: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ca091;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.access-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* 视频专区样式 */
.video-zone {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 30px 0;
    border-radius: 12px;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.video-zone h3 {
    color: #007B73;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.video-header p {
    color: #666;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

/* 标题下方装饰线 */
.video-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    height: 1px;
    background: #ddd;
}

/* 装饰线中间的小装饰 */
.video-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #007B73;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #ddd;
    z-index: 1;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.video-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.video-placeholder {
    width: 100%;
    height: 228px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    /* 默认背景色，当既没有img也没有data-bg时 */
    background: linear-gradient(135deg, #1ca091 0%, #2db5a5 100%);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

.video-placeholder i {
    font-size: 20px;
    color: #2e8b8b;
    background: rgba(255, 255, 255, 0.95);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
    /* 播放图标视觉居中调整 */
    padding-left: 3px;
}

.video-placeholder:hover i {
    transform: scale(1.15);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-content {
    padding: 20px;
    height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    box-sizing: border-box;
}

.video-text {
    flex: 1;
}

.video-item h4 {
    color: #333;
    font-size: 22px;
    margin: 0 0 6px 0;
    line-height: 1.3;
    font-weight: 600;
    text-align: left;
}

.video-item p {
    color: #999;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.video-arrow {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.video-arrow img {
    width: 32px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-arrow img {
    opacity: 1.5;
    transform: scale(1.2);
}

/* 共筑满意消费横幅 */
.satisfaction-banner {
    margin: 40px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f39800 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.banner-bg {
    padding: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="70" r="1.8" fill="rgba(255,255,255,0.09)"/></svg>') repeat;
}

.banner-bg h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.banner-bg p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* 三列新闻列表 - 1:1还原设计图 */
.news-columns-row {
    display: flex;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    max-height: 341px;
}

/* 左侧栏目 */
.news-column:first-child {
    flex: 1;
    background: #fff;
}

/* 中间栏目 - 卡片背景 */
.news-column:nth-child(2) {
    flex: 1;
    background: url('../slices2/卡片背景.png') no-repeat center center;
    background-size: 100% 100%;
    color: white;
    position: relative;
}

/* 右侧栏目 */
.news-column:last-child {
    flex: 1;
    background: #fff;
}

/* 统一顶部色条 */
.news-column::before {
    content: '';
    display: block;
    height: 10px;
    background: linear-gradient(90deg, #2e8b8b 0%, #4a90a4 100%);
}

/* 标题栏样式 */
.column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(46, 139, 139, 0.1);
    margin: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 60px;
    box-sizing: border-box;
}

.column-header:hover {
    background: rgba(46, 139, 139, 0.2);
}

/* 中间列标题栏特殊样式 */
.news-column:nth-child(2) .column-header {
    /* background: transparent; */
    background: rgba(46, 139, 139, 0.3);
    cursor: default;
}

.news-column:nth-child(2) .column-header:hover {
    /* background: transparent; */
    background: rgba(46, 139, 139, 0.4);
}

/* 标签按钮组 */
.tab-buttons {
    display: flex;
    gap: 0;
}

.tab-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.tab-btn.active {
    color: #2e8b8b;
    font-weight: 600;
    font-size: 16px;
    transform: scale(1.05);
}

.tab-btn:hover {
    color: #2e8b8b;
}

/* 标题样式 */
.column-header h4 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0;
    text-align: center;
    flex: 1;
}

/* 中间列标题特殊样式 */
.news-column:nth-child(2) .column-header h4 {
    color: white;
}

.news-column:nth-child(2) .column-header h4::before {
    content: '<';
    margin-right: 8px;
    color: white;
}

.news-column:nth-child(2) .column-header h4::after {
    content: '>';
    margin-left: 8px;
    color: white;
}

/* 箭头图标 */
.more-link {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.more-link::after {
    content: '▶';
    margin-left: 5px;
    font-size: 12px;
}

.news-column:nth-child(2) .more-link {
    color: rgba(255, 255, 255, 0.8);
}

.more-link:hover {
    color: #2e8b8b;
}

.news-column:nth-child(2) .more-link:hover {
    color: white;
}

.news-list-items {
    list-style: none;
    margin: 0;
    padding: 10px 20px 30px 20px;
}

.news-list-items li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.news-list-items li:hover {
    background: rgba(46, 139, 139, 0.05);
    padding-left: 5px;
}

.news-list-items li:last-child {
    border-bottom: none;
}

.news-list-items a {
    flex: 1;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
    margin-right: 10px;
    transition: color 0.3s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-items a:hover {
    color: #2e8b8b;
}

.news-list-items .date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    font-weight: 500;
}

/* 中间列新闻项特殊样式 */
.news-column:nth-child(2) .news-list-items a {
    color: white;
}

.news-column:nth-child(2) .news-list-items .date {
    color: rgba(255, 255, 255, 0.8);
}

.news-column:nth-child(2) .news-list-items li {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.news-column:nth-child(2) .news-list-items li:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 5px;
}

.news-list-items .date {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    /* background: #f8f9fa; */
    padding: 2px 6px;
    border-radius: 4px;
}

/* 机构职责展示 */
.organizations {
    margin: 60px 0 80px 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.section-header h3 {
    font-size: 20px;
    color: #2e8b8b;
    font-weight: 600;
    margin: 0 auto;
}

.section-header .more-link {
    color: #2e8b8b;
    text-decoration: none;
    font-size: 16px;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.org-item {
    text-align: center;
}

.org-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.org-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(46, 139, 139, 0.2);
}

.card-bg {
    width: 100%;
    height: auto;
    display: block;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
}

.card-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.card-label {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* 友情链接 */
.friend-links {
    background: #f8f9fa;
    padding: 40px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.link-item {
    position: relative;
    min-width: 0;
}

.link-card {
    background: white;
    border-radius: 12px;
    padding: 0 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    min-height: 70px;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.link-card .link-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.link-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
    background: #f8f9fa;
    flex-shrink: 0;
}

.link-card span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.link-arrow {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.link-card:hover .link-arrow {
    opacity: 1;
}

/* 视频列表页样式 */
.video-list-content {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.video-grid-list {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-list-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-list-item:last-child {
    border-bottom: none;
}

.video-list-item:hover {
    background-color: #f8fffe;
}

.video-thumbnail-list {
    position: relative;
    width: 200px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder-list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.video-placeholder-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-placeholder-list:hover {
    opacity: 0.9;
}

.video-placeholder-list::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    z-index: 2;
    transition: background 0.3s ease;
}

.video-placeholder-list i {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    color: #2e8b8b;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    /* 播放图标视觉居中调整 */
    padding-left: 3px;
}

.video-list-item:hover .video-placeholder-list i {
    transform: scale(1.15);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-list-item:hover .video-placeholder-list::after {
    background: rgba(0, 0, 0, 0.2);
}

.video-duration-list {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 3;
}

.video-info-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-title-list {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
    font-weight: 600;
}

.video-desc-list {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta-list {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

/* 视频播放弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-modal-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.video-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.video-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #e9ecef;
    color: #333;
}

.video-modal-body {
    padding: 0;
}

.video-modal-body video {
    width: 100%;
    max-height: 450px;
    display: block;
}

.modal-video-desc {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 列表页样式 */
.list-content {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.list-header {
    margin-bottom: 30px;
}

.list-title {
    border: 2px solid #2e8b8b;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 0;
    overflow: hidden;
}

.list-title h2 {
    background: #2e8b8b;
    color: white;
    margin: 0;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.news-list {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.news-bullet {
    color: #2e8b8b;
    font-size: 12px;
    margin-right: 10px;
    flex-shrink: 0;
}

.news-link {
    flex: 1;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #2e8b8b;
}

.news-date {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 8px 12px;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #2e8b8b;
    color: white;
    border-color: #2e8b8b;
}

.page-link.current {
    background: #2e8b8b;
    color: white;
    border-color: #2e8b8b;
}

/* 文章页样式 */
.article-content {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

.article-header {
    padding: 30px 40px 20px 40px;
    border-bottom: 1px solid #f0f0f0;
}

.article-title {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 15px 0;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: #ddd;
}

.article-body {
    padding: 30px 40px;
    line-height: 1.8;
}

.article-body p {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #333;
    text-indent: 2em;
}

.article-image {
    text-align: center;
    margin: 30px 0;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.prev-article,
.next-article {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.next-article {
    justify-content: flex-end;
    text-align: right;
}

.article-nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.article-nav a:hover {
    color: #2e8b8b;
}

.article-nav i {
    color: #999;
    font-size: 12px;
}

/* 页脚 */
.main-footer {
    background: url('../slices2/底部背景.png') center center / cover;
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 139, 139, 0.8);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-info {
    text-align: center;
    max-width: 800px;
}

.footer-text p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 8px;
}

.footer-text p:first-child {
    margin-bottom: 10px;
}

.footer-text p:last-child {
    margin-top: 10px;
    margin-bottom: 0;
}

.footer-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.location-icon,
.email-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-location span {
    font-size: 13px;
    opacity: 0.9;
    margin-right: 0;
}

/* 备案信息样式 */
.beian-info {
    margin: 8px 0;
    text-align: center;
    line-height: 1.5;
    font-size: 13px;
}

.beian-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.beian-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.beian-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    flex-shrink: 0;
    object-fit: contain;
}
.blue-icon {
    width: 32px;
    /* height: 16px; */
    vertical-align: middle;
    flex-shrink: 0;
    object-fit: contain;
}

.icp-text {
    margin-left: 10px;
    color: inherit;
    font-size: 13px;
}

/* 占位图片样式 */
[data-bg="#2e8b8b"] {
    background: linear-gradient(135deg, #1ca091 0%, #2db5a5 100%);
}

[data-bg="#4a90a4"] {
    background: linear-gradient(135deg, #2db5a5 0%, #3bc4b4 100%);
}

[data-bg="#6ba3b8"] {
    background: linear-gradient(135deg, #3bc4b4 0%, #4dd4c6 100%);
}

[data-bg="#87ceeb"] {
    background: linear-gradient(135deg, #4dd4c6 0%, #60e3d6 100%);
}

[data-bg="#f39800"] {
    background: linear-gradient(135deg, #f39800 0%, #ffa820 100%);
}

/* 响应式设计 */
@media (max-width: 1280px) {
    /* 中等屏幕：调整头图高度和轮播空间 */
    .header-banner {
        height: 350px; /* 中等屏幕调整高度 */
    }
    
    .carousel-section {
        padding: 0 60px; /* 减少外部空间 */
    }
    
    .prev-nav {
        left: 10px;
    }
    
    .next-nav {
        right: 10px;
    }
    
    /* 三列新闻适配 */
    .news-columns-row {
        max-height: none;
    }
}
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }


@media (max-width: 1024px) {
    /* 小屏幕：将按钮移到轮播容器内部 */
    .carousel-section {
        padding: 0; /* 移除外部空间 */
    }
    
    .prev-nav {
        left: 15px; /* 移到轮播容器内部 */

    }
    
    .next-nav {
        right: 15px; /* 移到轮播容器内部 */
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .news-columns-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-content {
        flex-direction: column;
        padding: 0px;
    }
    
    .carousel-image {
        flex: none;
        margin-right: 0;
        margin-bottom: 20px;
        height: 200px;
    }
    
    .carousel-text {
        flex: none;
        height: auto;
    }
    
    .text-content {
        position: static;
        opacity: 1;
        height: auto;
    }
    
    .text-content:not(.active) {
        display: none;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .prev-nav {
        left: 10px;
    }
    
    .next-nav {
        right: 10px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .video-item {
        height: 300px;
    }
    
    .video-placeholder {
        height: 180px;
    }
    
    .video-content {
        height: 120px;
        padding: 15px;
    }
    
    .video-item h4 {
        font-size: 16px;
    }
    
    .video-item p {
        font-size: 11px;
    }
    
    .video-arrow img {
        width: 24px;
    }
    
    /* 1024px以下启用移动端布局 */
    .service-container {
        display: flex;
        gap: 15px;
        padding: 20px;
        background: #f5f5f5;
        align-items: center;
    }
    
    .service-title {
        flex-shrink: 0;
    }
    
    .service-title-img {
        height: 180px;
        width: auto;
    }
    
    .service-cards {
        flex: 1;
        flex-direction: column;
        gap: 12px;
        max-width: 280px;
    }
    
    .service-card {
        width: 100%;
        height: auto;
        min-height: 70px;
        padding: 15px;
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .card-content {
        flex: 1;
        padding-right: 50px;
    }
    
    .card-content h4 {
        font-size: 16px;
        color: #2e8b8b;
        margin-bottom: 3px;
        font-weight: 600;
    }
    
    .card-content p {
        font-size: 12px;
        color: #666;
        margin-bottom: 0;
    }
    
    .card-arrow {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: #2e8b8b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 12px;
    }
    
    .card-image {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.15;
    }
    
    .card-image img {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }
    
    .access-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-header {
        height: auto;
        padding: 20px 0;
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .slogan {
        font-size: 24px;
        padding: 15px 30px;
        letter-spacing: 2px;
    }
    
    .nav-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
        padding: 15px 0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        height: auto;
        justify-content: center;
    }
    .prev-nav {
       top: 30%;
        
    }
    
    .next-nav {
        top: 30%;
    }
    
    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu a {
        padding: 0 20px;
        line-height: 45px;
    }
    
    .search-box {
        width: 100%;
        max-width: 300px;
    }
    
    .carousel-container {
        height: auto;
        min-height: 400px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .video-item {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .video-placeholder {
        height: 210px;
    }
    
    .video-content {
        height: 140px;
        padding: 18px;
    }
    
    .video-item h4 {
        font-size: 18px;
    }
    
    .video-item p {
        font-size: 12px;
    }
    
    .video-arrow img {
        width: 28px;
    }
    
    .org-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* 备案信息移动端适配 */
    .beian-info {
        margin: 6px 0;
        font-size: 12px;
    }
    
    .beian-link {
        flex-direction: column;
        gap: 3px;
        text-align: center;
    }
    
    .beian-icon {
        width: 14px;
        height: 14px;
    }
    
    .icp-text {
        margin-left: 0;
        margin-top: 5px;
        font-size: 12px;
        display: block;
    }
    
    /* 视频列表移动端适配 */
    .video-list-content {
        padding: 20px 0;
    }
    
    .video-grid-list {
        padding: 15px;
    }
    
    .video-list-item {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .video-thumbnail-list {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .video-info-list {
        gap: 10px;
    }
    
    .video-title-list {
        font-size: 16px;
    }
    
    .video-desc-list {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    
    .video-meta-list {
        gap: 15px;
        font-size: 12px;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .video-modal-header {
        padding: 15px;
    }
    
    .video-modal-header h3 {
        font-size: 16px;
    }
    
    .video-modal-body video {
        max-height: 300px;
    }
    
    .modal-video-desc {
        padding: 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    /* 移动端导航调整 */
    .nav-content {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid #e1e5e9;
    }
    
    .nav-menu a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* 三列新闻移动端适配 */
    .news-columns-row {
        flex-direction: column;
        max-height: none;
        gap: 15px;
    }
    
    .news-column {
        width: 100%;
    }
    
    /* 中间列移动端背景调整 */
    .news-column:nth-child(2) {
        background-size: cover;
        background-position: center;
    }
    
    /* 移动端标题栏高度调整 */
    .column-header {
        height: 50px;
        padding: 15px;
    }
    
    .column-header h4 {
        font-size: 14px;
    }
    
    /* 标签按钮移动端调整 */
    .tab-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .tab-btn.active {
        font-size: 13px;
    }
    
    /* 新闻列表移动端调整 */
    .news-list-items {
        padding: 15px 15px 20px 15px;
    }
    
    .news-list-items a {
        font-size: 12px;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .news-list-items .date {
        font-size: 11px;
    }
    
    /* 768px移动端微调 */
    .service-title-img {
        height: 150px;
    }
    
    .service-cards {
        max-width: 360px;
    }
    
    .service-card {
        min-height: 65px;
        padding: 12px;
    }
    
    .card-content h4 {
        font-size: 15px;
    }
    
    .card-content p {
        font-size: 11px;
    }
    
    .card-arrow {
        width: 28px;
        height: 28px;
        left: 85%;
    }
    
    .card-image {
        right: 50px;
    }
    
    .card-image img {
        width: 32px;
        height: 32px;
    }
    
    .nav-search {
        width: 250px;
    }
    
    /* 移动端头图区域重新设计 */
    .top-bar {
        height: 5px; /* 移动端顶部透明条5px */
    }
    
    .header-banner {
        height: auto;
        min-height: 350px; /* 增加背景图高度 */
    }
    
    .banner-content {
        position: static; /* 移动端改为静态定位 */
        transform: none;
        padding: 40px 0;
        text-align: center;
    }
    
    .banner-main {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .banner-logo {
        position: static; /* 移动端静态定位 */
        right: auto;
        top: auto;
    }
    
    .banner-logo .main-logo {
        height: 80px; /* 移动端适配的logo大小 */
        width: auto;
    }
    
    .banner-slogan {
        display: none; /* 移动端隐藏标语 */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* 超小屏幕三列新闻优化 */
    .news-columns-row {
        gap: 10px;
        margin: 20px 0;
    }
    
    /* 标题栏更紧凑 */
    .column-header {
        height: 45px;
        padding: 12px;
    }
    
    .column-header h4 {
        font-size: 13px;
    }
    
    /* 标签按钮更小 */
    .tab-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .tab-btn.active {
        font-size: 12px;
    }
    
    /* 新闻列表更紧凑 */
    .news-list-items {
        padding: 12px 12px 15px 12px;
    }
    
    .news-list-items li {
        padding: 8px 0;
    }
    
    .news-list-items a {
        font-size: 11px;
        line-height: 1.3;
        margin-right: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .news-list-items .date {
        font-size: 10px;
    }
    
    /* 小屏幕导航调整 */
    .nav-menu a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-search {
        width: 200px;
        height: 35px;
    }
    
    /* 小屏幕头图调整 */
    .header-banner {
        min-height: 240px; /* 小屏幕最小高度 */
    }
    
    .banner-content {
        padding: 15px 0;
    }
    
    .banner-main {
        gap: 10px;
    }
    
    .banner-logo .main-logo {
        height: 60px;
    }
    
    .slogan-image {
        height: 40px;
    }
}
    .service-container,
    .organizations {
        padding: 0px 15px 0px 0px;
        border-radius: 5px;
    }
    
    .banner-bg h3 {
        font-size: 24px;
    }
    
    
    /* .carousel-content {
        padding: 15px;
    } */
    
    /* .carousel-image {
        height: 150px;
    } */
    
    /* 小屏幕设备的轮播按钮 */
    /* .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
        top: 15px;
        transform: none;
    } */


@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* 超小屏幕服务卡片微调 */
    .service-container {
        padding: 15px;
        gap: 12px;
    }
    
    .service-title-img {
        height: 130px;
    }
    
    .service-cards {
        max-width: 320px;
        gap: 10px;
    }
    
    .service-card {
        min-height: 60px;
        padding: 12px;
    }
    
    .card-content {
        padding-right: 40px;
    }
    
    .card-content h4 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .card-content p {
        font-size: 10px;
    }
    
    .card-arrow {
        width: 24px;
        height: 24px;
        left: 85%;
        font-size: 10px;
    }
    
    .card-image {
        right: 40px;
    }
    
    .card-image img {
        width: 28px;
        height: 28px;
    }
    
    /* 超小屏幕视频专区适配 */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-item {
        height: 320px;
        max-width: 100%;
    }
    
    .video-placeholder {
        height: 192px;
    }
    
    .video-content {
        height: 128px;
        padding: 15px;
    }
    
    .video-item h4 {
        font-size: 16px;
    }
    
    .video-item p {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .video-arrow img {
        width: 24px;
    }
    
    /* 列表页移动端适配 */
    .list-content {
        padding: 20px 0;
    }
    
    .list-title h2 {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .news-list {
        padding: 15px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }
    
    .news-link {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .pagination {
        gap: 5px;
        margin-top: 30px;
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    /* 文章页移动端适配 */
    .article-content {
        margin: 10px;
        padding: 20px 0;
    }
    
    .article-header {
        padding: 20px 20px 15px 20px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .article-meta span::after {
        display: none;
    }
    
    .article-body {
        padding: 20px;
    }
    
    .article-body p {
        font-size: 15px;
        text-indent: 1.5em;
    }
    
    .article-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .prev-article,
    .next-article {
        justify-content: center;
        text-align: center;
    }
    
    /* 小屏幕导航调整 */
    .nav-menu a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-search {
        width: 200px;
        height: 35px;
    }
    
    /* 小屏幕头图调整 */
    .header-banner {
        min-height: 300px; /* 小屏幕稍微减小高度 */
    }
    
    .banner-content {
        padding: 30px 0;
    }
    
    .banner-logo .main-logo {
        height: 70px; /* 小屏幕进一步缩小logo */
    }
    
    /* 超小屏幕列表页适配 */
    .list-content {
        padding: 15px 0;
    }
    
    .list-title h2 {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .news-list {
        padding: 12px;
    }
    
    .news-item {
        padding: 10px 0;
    }
    
    .news-link {
        font-size: 13px;
    }
    
    .news-date {
        font-size: 11px;
    }
    
    /* 超小屏幕文章页适配 */
    .article-content {
        margin: 5px;
        padding: 15px 0;
    }
    
    .article-header {
        padding: 15px 15px 12px 15px;
    }
    
    .article-title {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .article-meta {
        font-size: 12px;
        gap: 6px;
    }
    
    .article-body {
        padding: 15px;
    }
    
    .article-body p {
        font-size: 14px;
        text-indent: 1em;
        margin-bottom: 15px;
    }
    
    .article-nav {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .article-nav a {
        font-size: 13px;
    }
    
    /* 备案信息超小屏幕适配 */
    .beian-info {
        margin: 5px 0;
        font-size: 11px;
        line-height: 1.4;
    }
    
    .beian-link {
        gap: 2px;
    }
    
    .beian-icon {
        width: 12px;
        height: 12px;
    }
    
    .icp-text {
        font-size: 11px;
        margin-top: 3px;
    }
    
    /* 视频列表超小屏幕适配 */
    .video-list-content {
        padding: 15px 0;
    }
    
    .video-grid-list {
        padding: 12px;
    }
    
    .video-list-item {
        padding: 12px 0;
    }
    
    .video-thumbnail-list {
        height: 160px;
        margin-bottom: 12px;
    }
    
    .video-title-list {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .video-desc-list {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .video-meta-list {
        gap: 10px;
        font-size: 11px;
    }
    
    .video-modal-content {
        width: 98%;
        margin: 15% auto;
    }
    
    .video-modal-header {
        padding: 12px;
    }
    
    .video-modal-header h3 {
        font-size: 15px;
    }
    
    .video-modal-body video {
        max-height: 250px;
    }
    
    .modal-video-desc {
        padding: 12px;
        font-size: 12px;
    }
}

/* UL分页样式（模板自动生成） */
ul.pagination {
    display: block;
    padding-left: 0;
    margin: 20px auto;
    border-radius: 4px;
    text-align: center;
    overflow: hidden; }

ul.pagination > li {
    display: inline-block;
    float: none; }
ul.pagination > li > a,
ul.pagination > li > span {
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #2e8b8b;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px; }
ul.pagination > li:first-child > a,
ul.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
ul.pagination > li:last-child > a,
ul.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
ul.pagination > li > a:hover, ul.pagination > li > a:focus,
ul.pagination > li > span:hover,
ul.pagination > li > span:focus {
    z-index: 2;
    color: #1ca091;
    background-color: #f0f8f8;
    border-color: #2e8b8b; }
ul.pagination > .active > a, ul.pagination > .active > a:hover, ul.pagination > .active > a:focus,
ul.pagination > .active > span,
ul.pagination > .active > span:hover,
ul.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #2e8b8b;
    border-color: #2e8b8b;
    cursor: default; }

/* 链接样式 - 保持现有样式不变，去除所有下划线 */
.news-header-link,
.news-header-link:hover,
.news-header-link:focus,
.news-header-link:active,
.news-header-link:visited {
    color: inherit;
    text-decoration: none !important;
    display: block;
    outline: none;
}

.news-header-link:hover .news-title {
    color: #2e8b8b;
    transition: color 0.3s ease;
}

.carousel-image-link,
.carousel-image-link:hover,
.carousel-image-link:focus,
.carousel-image-link:active,
.carousel-image-link:visited {
    color: inherit;
    text-decoration: none !important;
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
}

.carousel-title-link,
.carousel-title-link:hover,
.carousel-title-link:focus,
.carousel-title-link:active,
.carousel-title-link:visited {
    color: inherit;
    text-decoration: none !important;
    display: block;
    outline: none;
}

.carousel-title-link:hover .content-title {
    color: #2e8b8b;
    transition: color 0.3s ease;
}

/* Tab切换样式 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 更多链接切换样式 */
.more-link {
    display: none;
}

.more-link.active {
    display: block;
}

/* 机构职责卡片链接样式 - 保持现有样式不变 */
.org-card-link,
.org-card-link:hover,
.org-card-link:focus,
.org-card-link:active,
.org-card-link:visited {
    color: inherit;
    text-decoration: none !important;
    display: block;
    outline: none;
}

.org-card-link:hover .org-card {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* 消费维权服务卡片链接样式 - 保持现有样式不变 */
.service-card-link,
.service-card-link:hover,
.service-card-link:focus,
.service-card-link:active,
.service-card-link:visited {
    color: inherit;
    text-decoration: none !important;
    display: block;
    outline: none;
}

.service-card-link:hover .service-card {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* 友情链接样式 - 保持现有样式不变 */
.friend-link,
.friend-link:hover,
.friend-link:focus,
.friend-link:active,
.friend-link:visited {
    color: inherit;
    text-decoration: none !important;
    display: block;
    outline: none;
}

.friend-link:hover .link-card {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* 视频详情页面样式 */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: #2e8b8b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1ca091;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #666;
    font-weight: 500;
}

.video-detail-content {
    margin-bottom: 40px;
}

.video-detail-layout {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.video-detail-main {
    min-width: 0;
}

.video-player-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-player-container video {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
}

.video-detail-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.video-detail-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.video-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.video-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: #666;
    font-size: 14px;
}

.video-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-detail-meta i {
    color: #2e8b8b;
    font-size: 12px;
}

.video-detail-description {
    margin-bottom: 30px;
}

.video-detail-description h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.video-detail-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.video-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.action-btn:hover {
    border-color: #2e8b8b;
    color: #2e8b8b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 139, 139, 0.2);
}

.action-btn.active,
.like-btn.active {
    background: #2e8b8b;
    color: white;
    border-color: #2e8b8b;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .breadcrumb-separator {
        margin: 0 6px;
    }
    
    .video-detail-layout {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .video-detail-info {
        padding: 20px;
    }
    
    .video-detail-title {
        font-size: 24px;
    }
    
    .video-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-detail-actions {
        gap: 10px;
    }
    
    .action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .video-detail-info {
        padding: 15px;
    }
    
    .video-detail-title {
        font-size: 20px;
    }
    
    .video-detail-description p {
        font-size: 15px;
    }
    
    .action-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
}

.video-zone .more-link {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #2e8b8b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;  /* 修改这里 */
}

.video-zone .more-link:hover {
    color: #1ca091;
    text-decoration: underline;
}

/* 搜索结果页面样式 */
.search-results .list-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #2e8b8b;
    padding-bottom: 15px;
}

.search-results .list-title h2 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0;
}

.search-results .search-keyword {
    color: #fff;
    font-weight: bold;
}

.search-results .search-summary {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

.search-results .search-summary strong {
    color: #2e8b8b;
    font-weight: bold;
}

@media (max-width: 768px) {
    .search-results .list-title h2 {
        font-size: 20px;
    }

    .search-results .search-summary {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .search-results .list-title h2 {
        font-size: 18px;
    }

    .search-results .search-summary {
        font-size: 11px;
    }
}