/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

/* 标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #2c3e50;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #e74c3c;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* 头部样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #e74c3c;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
    color: #2c3e50;
    font-weight: 700;
}

/* 导航样式 */
.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link.active {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* 下拉菜单 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #e74c3c;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* 移动端导航 */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1002;
    padding-top: 80px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-item {
    margin-bottom: 20px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #e74c3c;
}

.mobile-nav-link.active {
    color: #e74c3c;
}

.mobile-dropdown-menu {
    list-style: none;
    margin-top: 10px;
    display: none;
}

.mobile-nav-item.dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    margin-bottom: 10px;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    color: #e74c3c;
}

/* 轮播图样式 */
.banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 60px 20px 40px;
    /* 为左侧轮播箭头留出空间，避免遮挡标题与描述 */
    padding-left: 96px;
    box-sizing: border-box;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    max-width: 800px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 600px;
}

.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.banner-controls button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-controls button:hover {
    background-color: #fff;
}

/* 主要内容样式 */
.main {
    padding: 40px 0;
}

/* 新闻部分 */
.news-section {
    margin-bottom: 50px;
}

.news-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

/* 主新闻样式 */
.news-main {
    flex: 0 0 65%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-main-image {
    height: 250px;
    overflow: hidden;
}

.news-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-main:hover .news-main-image img {
    transform: scale(1.05);
}

.news-main-content {
    padding: 20px;
}

/* 新闻列表样式 */
.news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-list-item {
    display: flex;
    gap: 15px;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

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

.news-list-image {
    flex: 0 0 100px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-list-item:hover .news-list-image img {
    transform: scale(1.1);
}

/* 通用新闻样式 */
.news-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: #e74c3c;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.news-list-item .news-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #e74c3c;
}

.news-excerpt {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-meta i {
    margin-right: 5px;
}

/* 视频部分 */
.video-section {
    margin-bottom: 50px;
}

.video-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

/* 主视频样式 */
.video-main {
    flex: 0 0 65%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.video-main-thumbnail {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.video-main-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-main:hover .video-main-thumbnail img {
    transform: scale(1.05);
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(231, 76, 60, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-btn-large:hover {
    background-color: #e74c3c;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-main-content {
    padding: 20px;
}

/* 视频列表样式 */
.video-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-list-item {
    display: flex;
    gap: 15px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-list-thumbnail {
    position: relative;
    flex: 0 0 120px;
    height: 80px;
    overflow: hidden;
}

.video-list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-list-item:hover .video-list-thumbnail img {
    transform: scale(1.1);
}

.play-btn-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(231, 76, 60, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-btn-small:hover {
    background-color: #e74c3c;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.video-list-title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.4;
}

.video-list-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-list-title a:hover {
    color: #3498db;
}

/* 通用视频样式 */
.video-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: #3498db;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.video-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.video-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-title a:hover {
    color: #3498db;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.video-meta span {
    display: flex;
    align-items: center;
}

.video-meta i {
    margin-right: 5px;
}

/* 观点专栏 */
.opinion-section {
    margin-bottom: 50px;
}

.opinion-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

/* 专题观点样式 */
.opinion-featured {
    flex: 0 0 65%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opinion-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.opinion-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.opinion-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e74c3c;
    color: #fff;
    font-size: 12px;
    border-radius: 15px;
    font-weight: 600;
}

.opinion-featured-content {
    padding: 20px;
}

/* 观点列表样式 */
.opinion-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.opinion-list-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opinion-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.opinion-list-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opinion-list-title {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.opinion-list-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.opinion-list-title a:hover {
    color: #e74c3c;
}

.opinion-list-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

.author-title {
    font-size: 11px;
    color: #999;
}

/* 通用观点样式 */
.opinion-author {
    display: flex;
    align-items: center;
}

.opinion-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #999;
}

.opinion-content {
    padding: 20px;
}

.opinion-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.opinion-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.opinion-title a:hover {
    color: #e74c3c;
}

.opinion-excerpt {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.opinion-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

.opinion-meta span {
    display: flex;
    align-items: center;
}

.opinion-meta i {
    margin-right: 5px;
}

/* 更多按钮 */
.more-btn {
    text-align: center;
}

/* 页脚样式 */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-info p {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact ul i {
    margin-right: 10px;
    color: #e74c3c;
    margin-top: 5px;
}

.footer-contact p {
    color: #bdc3c7;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social a i {
    margin: 0;
    line-height: 1;
    font-size: 18px;
}

.footer-social a:hover {
    background-color: #e74c3c;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 14px;
}

/* 资讯列表页 */
.news-list-page {
    padding: 40px 0;
}

.category-filter {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.category-filter h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tab {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.category-tab.active,
.category-tab:hover {
    background-color: #e74c3c;
    color: #fff;
}

/* 视频列表页 */
.video-list-page {
    padding: 40px 0;
}

/* 内容页 */
.article-page {
    padding: 40px 0;
}

.article-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
}

.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-text {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.article-text p {
    margin-bottom: 20px;
}

.article-text h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.article-text h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* 医疗表单页 */
.complaint-page {
    padding: 40px 0;
}

.complaint-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #fafafa;
}

/* 医疗页日期：文本框 + Flatpickr（弹窗可自定义尺寸） */
.complaint-form .complaint-date-input {
    min-height: 52px;
    font-size: 16px;
    padding: 0 14px;
    line-height: 1.2;
    cursor: pointer;
    background-color: #fafafa;
}

.complaint-form .complaint-date-input:hover {
    background-color: #fff;
}

/* Flatpickr 弹窗放大、贴近站点配色 */
.flatpickr-calendar {
    border-radius: 14px !important;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18) !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 16px !important;
    width: 340px !important;
}

.flatpickr-months {
    padding: 8px 0 !important;
}

.flatpickr-weekdays {
    padding: 4px 0 8px !important;
}

.flatpickr-weekday {
    font-size: 13px !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

.flatpickr-day {
    height: 44px !important;
    line-height: 44px !important;
    max-width: 44px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    margin: 2px auto !important;
}

.flatpickr-day.today {
    border-color: #e74c3c !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
    color: #fff !important;
}

.flatpickr-day:hover {
    background: #fef2f2 !important;
    border-color: #fecaca !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month .numInputWrapper input {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
    line-height: 1.6;
}

.form-group input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 14px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    transform: scale(1.2);
}

.form-group input[type="checkbox"]:focus {
    box-shadow: none;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit button {
    padding: 14px 50px;
    font-size: 18px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-submit button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
}

/* 关于我们页 */
.about-page {
    padding: 40px 0;
}

.about-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.about-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 头部 */
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    /* 轮播图 */
    .banner {
        height: 300px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-content p {
        font-size: 14px;
    }

    .banner-content {
        padding: 48px 16px 28px 84px;
    }
    
    /* 内容布局 */
    .news-grid,
    .video-grid,
    .opinion-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    /* 页脚 */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    /* 新闻部分响应式 */
    .news-container {
        flex-direction: column;
        gap: 20px;
    }

    .news-main {
        flex: none;
    }

    .news-list-item {
        flex-direction: column;
        gap: 10px;
    }

    .news-list-image {
        flex: none;
        height: 150px;
    }

    /* 内容页 */
    .article-page .article-content {
        padding: 0;
    }

    .article-title {
        font-size: 24px;
    }

    .article-page .article-content .article-image {
        height: auto;
        max-height: 280px;
    }

    .article-image {
        height: 200px;
    }
    
    /* 视频部分响应式 */
    .video-container {
        flex-direction: column;
        gap: 20px;
    }

    .video-main {
        flex: none;
    }

    .video-main-thumbnail {
        height: 200px;
    }

    .video-list-item {
        flex-direction: column;
        gap: 10px;
    }

    .video-list-thumbnail {
        flex: none;
        height: 150px;
    }

    /* 医疗表单 */
    .complaint-form {
        padding: 20px;
    }

    /* 关于我们 */
    .about-content {
        padding: 20px;
    }
    
    /* 观点专栏响应式 */
    .opinion-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .opinion-featured {
        flex: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .banner {
        height: 250px;
    }
    
    .banner-content h2 {
        font-size: 20px;
    }
    
    .banner-content {
        padding: 40px 10px 20px 72px;
    }
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination-list {
    display: inline-flex;
    list-style: none;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.pagination-item {
    margin: 0;
}

.pagination-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-right: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.pagination-item:last-child .pagination-link {
    border-right: none;
}

.pagination-link:hover {
    background-color: #f5f5f5;
}

.pagination-item.active .pagination-link {
    background-color: #e74c3c;
    color: #fff;
}

.pagination-item.disabled .pagination-link {
    color: #999;
    cursor: not-allowed;
}

.pagination-item.disabled .pagination-link:hover {
    background-color: #fff;
}

/* 首页强化视觉 */
body {
    background: linear-gradient(180deg, #f3f7ff 0%, #f8f8f8 300px, #f5f5f5 100%);
}

.header {
    backdrop-filter: saturate(150%) blur(6px);
}

.banner {
    border-radius: 0 0 18px 18px;
}

.news-main,
.video-main,
.opinion-featured,
.news-list-item,
.video-list-item,
.opinion-list-item {
    border: 1px solid #eef2f7;
}

.news-ticker {
    background: #ffffff;
    border-bottom: 1px solid #ebeff5;
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
}

.ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e74c3c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.ticker-text {
    color: #4b5563;
    font-size: 14px;
}

.home-focus {
    padding: 24px 0 8px;
}

.focus-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.focus-main-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.focus-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.focus-main-card:hover img {
    transform: scale(1.04);
}

.focus-main-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.84));
}

.focus-tag {
    display: inline-block;
    width: fit-content;
    background: #ef4444;
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    margin-bottom: 10px;
}

.focus-main-overlay h2 {
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.focus-main-overlay h2 a {
    color: #fff;
    text-decoration: none;
}

.focus-main-overlay p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
}

.focus-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.focus-side-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #e7edf7;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.focus-side-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1e293b;
}

.focus-side-card ul {
    list-style: none;
}

.focus-side-card li {
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.focus-side-card li:last-child {
    border-bottom: none;
}

.focus-side-card a {
    text-decoration: none;
    color: #334155;
}

.focus-side-card a:hover {
    color: #e74c3c;
}

.focus-side-card p {
    color: #475569;
    margin-bottom: 12px;
}

.home-complaint-board,
.topic-section,
.service-section {
    margin-bottom: 50px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #e8edf5;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.stat-label {
    color: #64748b;
    font-size: 13px;
}

.stat-value {
    margin: 10px 0 8px;
    font-size: 34px;
    color: #1e293b;
}

.stat-trend {
    color: #475569;
    font-size: 13px;
}

.stat-trend.up {
    color: #16a34a;
}

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

.topic-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e8edf5;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.12);
}

.topic-card h3 {
    color: #1e3a8a;
    margin-bottom: 8px;
    font-size: 18px;
}

.topic-card p {
    color: #4b5563;
    font-size: 14px;
}

.service-box {
    background: linear-gradient(120deg, #1d4ed8, #1e40af);
    color: #fff;
    border-radius: 14px;
    padding: 28px;
}

.service-box p {
    max-width: 900px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.service-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .ticker-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-main-card {
        min-height: 340px;
    }

    .focus-main-overlay h2 {
        font-size: 24px;
    }

    .dashboard-grid,
    .topic-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 28px;
    }
}

@media (max-width: 1100px) {
    .news-container,
    .video-container,
    .opinion-container {
        flex-direction: column;
    }

    .news-main,
    .video-main,
    .opinion-featured {
        flex: none;
    }

    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 三大内容区重设计 */
.news-section,
.video-section,
.opinion-section,
.home-complaint-board {
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

/* 首页：医疗公示双轨滚动（与 complaint-public 字段对齐，供接口渲染） */
.home-complaint-board .section-subtitle a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.home-complaint-board .section-subtitle a:hover {
    text-decoration: underline;
}

.home-complaint-double-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 4px;
}

.home-complaint-column {
    min-width: 0;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 48px);
    overflow: hidden;
}

.home-complaint-column-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 12px 14px 10px;
    border-bottom: 1px solid #f1f5f9;
}

.home-complaint-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.home-complaint-badge--anon {
    color: #475569;
    background: #f1f5f9;
}

.home-complaint-badge--named {
    color: #1d4ed8;
    background: #eff6ff;
}

.home-complaint-column-desc {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

.home-complaint-marquee {
    overflow: hidden;
    padding: 12px 0 14px;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.home-complaint-marquee:hover .home-complaint-marquee-track,
.home-complaint-marquee:focus-within .home-complaint-marquee-track {
    animation-play-state: paused;
}

.home-complaint-marquee-track {
    display: flex;
    width: max-content;
    animation: homeComplaintMarqueeX 48s linear infinite;
}

.home-complaint-marquee-track--slow {
    animation-duration: 56s;
}

@keyframes homeComplaintMarqueeX {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.home-complaint-marquee-segment {
    display: flex;
    gap: 14px;
    padding: 0 14px 0 14px;
    flex-shrink: 0;
    align-items: stretch;
}

.home-complaint-snippet {
    flex: 0 0 auto;
    width: 280px;
    max-width: 72vw;
}

.home-complaint-snippet-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px 14px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-complaint-snippet-link:hover {
    border-color: #fecaca;
    box-shadow: 0 8px 22px rgba(231, 76, 60, 0.12);
    transform: translateY(-2px);
}

.hc-snippet-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.hc-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1e40af;
    background: #dbeafe;
    padding: 3px 8px;
    border-radius: 6px;
}

.hc-privacy {
    font-size: 11px;
    font-weight: 600;
}

.hc-privacy--anon {
    color: #64748b;
}

.hc-privacy--named {
    color: #2563eb;
}

.hc-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hc-summary {
    margin: 0 0 10px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #94a3b8;
}

.hc-meta--named {
    flex-direction: column;
    align-items: flex-start;
}

.hc-no {
    font-family: ui-monospace, monospace;
    color: #64748b;
}

.hc-date {
    color: #94a3b8;
}

.hc-party {
    color: #334155;
    font-weight: 500;
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .home-complaint-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }

    .home-complaint-marquee-segment[aria-hidden="true"] {
        display: none;
    }

    .home-complaint-marquee {
        mask-image: none;
        -webkit-mask-image: none;
        overflow-x: auto;
    }

    .home-complaint-marquee-segment {
        flex-wrap: wrap;
        width: 100%;
        padding: 0 12px 12px;
    }

    .home-complaint-snippet {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 900px) {
    .home-complaint-double-track {
        grid-template-columns: 1fr;
    }
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 18px;
}

.section-head .section-title {
    text-align: left;
    margin: 0 0 6px;
}

.section-head .section-title::after {
    margin: 10px 0 0;
}

.section-subtitle {
    color: #64748b;
    font-size: 14px;
}

.section-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.section-more:hover {
    color: #1d4ed8;
}

.news-section .news-container,
.video-section .video-container,
.opinion-section .opinion-container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.news-section .news-main,
.video-section .video-main,
.opinion-section .opinion-featured {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid #e8edf6;
    box-shadow: none;
    overflow: hidden;
}

.news-section .news-list,
.video-section .video-list,
.opinion-section .opinion-list {
    align-content: start;
}

.news-section .news-main-content,
.video-section .video-main-content,
.opinion-section .opinion-featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.news-section .news-main-content .news-meta,
.video-section .video-main-content .video-meta,
.opinion-section .opinion-featured-content .opinion-meta {
    margin-top: auto;
    padding-top: 14px;
}

/* 主卡下方延伸条：平衡左右高度，承接更多条目 */
.main-follow {
    border-top: 1px solid #eef2f7;
    background: #fafbfd;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.main-follow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
    border-top: 1px solid #f1f5f9;
}

.main-follow-row:first-child {
    border-top: none;
}

.main-follow-row:hover {
    background-color: #f1f5f9;
}

.main-follow-row > img:not(.main-follow-avatar) {
    width: 76px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.main-follow-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-follow-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-follow-meta {
    font-size: 12px;
    color: #94a3b8;
}

.main-follow-thumb-wrap {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
}

.main-follow-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-follow-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.35);
    color: #fff;
    font-size: 12px;
}

.main-follow--video .main-follow-row {
    padding: 10px 14px;
}

.main-follow-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.news-section .news-list {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 12px;
}

.news-section .news-list-item {
    align-items: stretch;
    padding: 12px;
    border: 1px solid #e9eef7;
    border-radius: 12px;
    box-shadow: none;
}

.news-list-desc {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.news-section .news-list-image {
    flex: 0 0 112px;
    height: 92px;
    border-radius: 10px;
}

.video-section .video-list {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 12px;
}

.video-section .video-list-item {
    border: 1px solid #e9eef7;
    border-radius: 12px;
    padding: 8px;
    box-shadow: none;
}

.video-list-tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    margin-bottom: 8px;
}

.video-section .video-list-thumbnail {
    border-radius: 10px;
    overflow: hidden;
}

.opinion-section .opinion-list {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 12px;
}

.opinion-section .opinion-list-item {
    border: 1px solid #e9eef7;
    border-radius: 12px;
    padding: 14px;
    box-shadow: none;
}

.news-section .news-container {
    min-height: auto;
}

.video-section .video-container {
    min-height: auto;
}

.opinion-section .opinion-container {
    min-height: auto;
}

.opinion-list-desc {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .news-section,
    .video-section,
    .opinion-section {
        padding: 16px;
        border-radius: 12px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .news-section .news-container,
    .video-section .video-container,
    .opinion-section .opinion-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-section .news-list,
    .video-section .video-list,
    .opinion-section .opinion-list {
        grid-template-rows: none;
    }
}

/* ========== 内页统一：列表页 & 内容页 ========== */
.news-list-page,
.video-list-page,
.opinion-page {
    padding: 28px 0 56px;
    background: linear-gradient(180deg, #eef2fb 0%, #f5f6f8 320px, #f5f5f5 100%);
}

.article-page,
.video-page,
.about-page,
.complaint-page,
.complaint-public-page {
    padding: 28px 0 56px;
    background: linear-gradient(180deg, #eef2fb 0%, #f5f6f8 240px, #f5f5f5 100%);
}

.about-page .about-content {
    border: 1px solid #e7edf7;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    padding: 32px 36px 40px;
    background: #fff;
}

.about-page .about-content > h2:first-of-type {
    margin-top: 0;
}

.complaint-page .complaint-form {
    border: 1px solid #e7edf7;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.page-intro {
    margin-bottom: 24px;
}

.page-intro--compact {
    margin-bottom: 16px;
}

.page-intro .page-heading {
    text-align: left;
    margin-bottom: 8px;
}

.page-intro .page-heading::after {
    margin: 10px 0 0;
    width: 56px;
}

.page-lead {
    margin: 0;
    max-width: 640px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #cbd5e1;
    font-size: 12px;
}

.breadcrumb-current {
    color: #475569;
}

.article-breadcrumb {
    margin-bottom: 20px;
}

/* 分类筛选 */
.category-filter {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 24px;
}

.category-filter h3 {
    margin: 0 0 14px;
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
}

.category-tabs {
    gap: 8px;
}

.category-tab {
    border-radius: 999px;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.category-tab:hover {
    background: #f1f5f9;
}

.category-tab.active {
    border-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

/* 资讯列表网格 */
.news-list-page .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.news-list-page .news-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-list-page .news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.news-list-page .news-item .news-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-list-page .news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-list-page .news-item:hover .news-image img {
    transform: scale(1.04);
}

.news-list-page .news-item .news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 18px 18px;
}

.news-list-page .news-item .news-excerpt {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.news-list-page .news-item .news-meta {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

/* 文章页 */
.article-page .article-content {
    padding: 0;
    border: 1px solid #e7edf7;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.article-page .article-header {
    padding: 28px 32px 20px;
    margin-bottom: 0;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}

.article-content .article-title {
    margin-bottom: 16px;
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.35;
    color: #0f172a;
}

.article-content .article-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 24px;
    color: #64748b;
    font-size: 14px;
}

.article-content .article-meta span {
    gap: 6px;
}

.article-content .article-image {
    margin: 0;
    height: auto;
    max-height: 480px;
    border-radius: 0;
}

.article-content .article-text {
    padding: 28px 32px 36px;
    font-size: 17px;
    color: #334155;
}

.article-content .article-text h2 {
    margin-top: 28px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
    font-size: 22px;
    color: #0f172a;
}

.article-content .article-text h3 {
    font-size: 18px;
    color: #1e293b;
}

.related-block {
    margin-top: 28px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.related-block .related-block-title {
    text-align: left;
    margin-bottom: 20px;
}

.related-block .related-block-title::after {
    margin: 10px 0 0;
}

.related-block .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 0;
}

.related-block .news-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9eef7;
    border-radius: 12px;
    overflow: hidden;
    background: #fafbfd;
    transition: box-shadow 0.2s ease;
}

.related-block .news-item:hover {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.related-block .news-item .news-image {
    aspect-ratio: 16 / 10;
}

.related-block .news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-block .news-item .news-content {
    padding: 14px 16px;
}

/* 视频列表网格 */
.video-list-page .video-grid,
.related-videos .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.related-videos .video-grid {
    margin-bottom: 0;
}

.video-list-page .video-item,
.related-videos .video-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-list-page .video-item:hover,
.related-videos .video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.video-list-page .video-thumbnail,
.related-videos .video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-list-page .video-thumbnail img,
.related-videos .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.video-list-page .video-item:hover .video-thumbnail img,
.related-videos .video-item:hover .video-thumbnail img {
    transform: scale(1.04);
}

.video-list-page .play-btn,
.related-videos .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.88);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.video-list-page .video-item:hover .play-btn,
.related-videos .video-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    background: #e74c3c;
}

.video-list-page .video-item .video-content,
.related-videos .video-item .video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 16px 16px;
}

.video-list-page .video-item .video-title,
.related-videos .video-item .video-title {
    flex: 1;
    font-size: 16px;
}

.video-list-page .video-item .video-meta,
.related-videos .video-item .video-meta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

/* 观点列表 */
.opinion-page .opinion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.opinion-page .opinion-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.opinion-page .opinion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.opinion-page .opinion-item .opinion-author {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    gap: 12px;
    background: #fafbfd;
}

.opinion-page .opinion-item .opinion-content {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.opinion-page .opinion-item .opinion-excerpt {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opinion-page .opinion-item .news-meta {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

/* 分页 */
.pagination {
    margin-top: 8px;
}

.pagination-list {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.pagination-link {
    padding: 12px 16px;
    border-right-color: #e2e8f0;
    font-weight: 500;
}

.pagination-item.active .pagination-link {
    background: linear-gradient(180deg, #ef4444, #e74c3c);
}

/* 视频播放页 */
.video-detail-card {
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    margin-bottom: 28px;
}

.video-page .video-player {
    margin: 0;
    background: #0f172a;
    border-radius: 0;
}

.video-page .video-detail-player {
    display: block;
    width: 100%;
    max-height: min(70vh, 520px);
}

.video-page .video-info {
    padding: 24px 28px 28px;
}

.video-page .video-page-title {
    margin: 0 0 16px;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.35;
    color: #0f172a;
    font-weight: 700;
}

.video-page .video-info .video-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-bottom: 24px;
    color: #64748b;
    font-size: 14px;
}

.video-page .video-info .video-meta span {
    display: inline-flex;
    align-items: center;
}

.video-description h3,
.video-share h3 {
    font-size: 16px;
    color: #1e293b;
    margin: 0 0 10px;
}

.video-description {
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
}

.video-description p {
    margin: 0;
    color: #475569;
    line-height: 1.8;
}

.video-share {
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.share-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.share-btn i {
    margin-right: 6px;
}

.share-btn.weixin {
    background-color: #07c160;
}

.share-btn.weibo {
    background-color: #e6162d;
}

.share-btn.qq {
    background-color: #12b7f5;
}

.share-btn.copy {
    background-color: #475569;
}

@media (max-width: 768px) {
    .news-list-page .news-grid,
    .video-list-page .video-grid,
    .related-videos .video-grid,
    .opinion-page .opinion-grid {
        grid-template-columns: 1fr;
    }

    .article-header {
        padding: 20px 18px 16px;
    }

    .article-content .article-text {
        padding: 20px 18px 28px;
        font-size: 16px;
    }

    .related-block {
        padding: 18px;
    }

    .video-page .video-info {
        padding: 18px 16px 20px;
    }

    .category-filter {
        padding: 14px 16px;
    }
}

/* 医疗页增强 */
.complaint-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.complaint-form-wrap {
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.complaint-form-head {
    padding: 20px 24px 14px;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
}

.complaint-form-head h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #0f172a;
}

.complaint-form-head p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

.complaint-form-wrap .complaint-form {
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
}

.form-section-title {
    margin: 4px 0 14px;
    font-size: 15px;
    color: #1e293b;
    border-left: 3px solid #e74c3c;
    padding-left: 10px;
}

.form-section-title i {
    margin-right: 6px;
    color: #e74c3c;
}

.complaint-notice {
    position: sticky;
    top: 92px;
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
    padding: 18px 18px 14px;
}

.complaint-notice h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #0f172a;
}

.notice-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-content li {
    position: relative;
    padding: 10px 0 10px 18px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    border-bottom: 1px dashed #e2e8f0;
}

.notice-content li:last-child {
    border-bottom: none;
}

.notice-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e74c3c;
}

.complaint-tips {
    margin-top: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.complaint-notice-mobile {
    display: none;
}

@media (max-width: 900px) {
    .complaint-layout {
        grid-template-columns: 1fr;
    }

    .complaint-notice {
        position: static;
    }

    .complaint-layout > .complaint-notice {
        display: none;
    }

    .complaint-notice-mobile {
        display: block;
        margin-top: 16px;
    }
}

/* 关于我们页 */
.btn-outline-muted {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid #cbd5e1;
    color: #334155;
    background: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-muted:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fffafb;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    align-items: stretch;
}

.about-hero-main {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 45%, #2563eb 100%);
    color: #fff;
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.35);
}

.about-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 14px;
}

.about-hero-badge i {
    margin-right: 6px;
}

.about-hero-lead {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-hero-actions .btn {
    background: #fff;
    color: #1e40af;
}

.about-hero-actions .btn:hover {
    background: #f8fafc;
    color: #1d4ed8;
}

.about-stats {
    list-style: none;
    margin: 0;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.about-stats li {
    padding: 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}

.about-stats strong {
    display: block;
    font-size: 22px;
    color: #e74c3c;
    margin-bottom: 4px;
}

.about-stats span {
    font-size: 13px;
    color: #64748b;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.about-pillar-card {
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.about-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.about-pillar-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: #0f172a;
}

.about-pillar-card p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.about-panel {
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.about-panel-title {
    margin: 0 0 14px;
    font-size: 17px;
    color: #0f172a;
}

.about-panel-title i {
    color: #e74c3c;
    margin-right: 8px;
}

.about-panel-list {
    margin: 0;
    padding-left: 18px;
    color: #475569;
    line-height: 1.75;
    font-size: 14px;
}

.about-panel-list li {
    margin-bottom: 8px;
}

.about-panel-list--check {
    list-style: none;
    padding-left: 0;
}

.about-panel-list--check li {
    padding-left: 18px;
    position: relative;
}

.about-panel-list--check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.about-timeline-section {
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.about-section-heading {
    margin: 0 0 14px;
    font-size: 20px;
    color: #0f172a;
}

.about-section-lead {
    margin: -6px 0 18px;
    font-size: 14px;
    color: #64748b;
}

.about-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-timeline li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
}

.about-timeline li:last-child {
    border-bottom: none;
}

.about-timeline time {
    font-weight: 700;
    color: #e74c3c;
}

.about-team-section {
    margin-bottom: 24px;
}

.about-team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.about-team-section .team-member {
    text-align: center;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-team-section .team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.about-team-section .team-member img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #eef2f7;
}

.about-team-section .team-member h4 {
    margin: 0 0 4px;
    font-size: 17px;
    color: #0f172a;
}

.team-role {
    margin: 0 0 10px;
    font-size: 13px;
    color: #e74c3c;
    font-weight: 600;
}

.team-bio {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.65;
    text-align: left;
}

.about-contact-section {
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    padding: 22px 24px 18px;
    margin-bottom: 24px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.about-contact-section .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 12px;
}

.about-contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-contact-section .contact-item i {
    font-size: 22px;
    color: #e74c3c;
    margin-top: 4px;
}

.about-contact-section .contact-item h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: #0f172a;
}

.about-contact-section .contact-item p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.about-contact-note {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.65;
}

.about-legal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 16px;
}

.about-legal-card {
    background: #fafbfd;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    padding: 20px 22px;
}

.about-legal-title {
    margin: 0 0 10px;
    font-size: 16px;
    color: #0f172a;
}

.about-legal-title i {
    color: #e74c3c;
    margin-right: 8px;
}

.about-legal-card p {
    margin: 0 0 10px;
    font-size: 13px;
    color: #475569;
    line-height: 1.75;
}

.about-legal-card p:last-child {
    margin-bottom: 0;
}

/* 文章页丰富模块 */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.article-tags span {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
}

.article-keypoints {
    margin: 0 0 22px;
    padding: 18px 20px;
    background: linear-gradient(120deg, #eff6ff 0%, #f8fafc 100%);
    border: 1px solid #dbeafe;
    border-radius: 12px;
}

.article-keypoints-title {
    margin: 0 0 12px;
    font-size: 16px;
    color: #1e40af;
}

.article-keypoints-title i {
    margin-right: 6px;
    color: #e74c3c;
}

.article-keypoints ul {
    margin: 0;
    padding-left: 18px;
    color: #334155;
    line-height: 1.75;
    font-size: 14px;
}

.article-pullquote {
    margin: 24px 0;
    padding: 16px 18px;
    border-left: 4px solid #e74c3c;
    background: #fffbeb;
    border-radius: 0 12px 12px 0;
}

.article-pullquote p {
    margin: 0;
    font-size: 15px;
    color: #713f12;
    line-height: 1.75;
}

.article-editor-note {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.article-editor-note h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #0f172a;
}

.article-editor-note h3 i {
    color: #e74c3c;
    margin-right: 8px;
}

.article-editor-note p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.75;
}

.article-editor-note a {
    color: #2563eb;
}

.article-share--inline {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.article-share-title {
    margin: 0 0 12px;
    font-size: 15px;
    color: #1e293b;
}

.article-read-more-lead {
    margin: -8px 0 16px;
    font-size: 14px;
    color: #64748b;
}

.article-read-more-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-read-more-list li {
    margin-bottom: 10px;
}

.article-read-more-list a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #1e40af;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
}

.article-read-more-list a:hover {
    color: #e74c3c;
}

.article-read-more-list i {
    margin-top: 4px;
    font-size: 12px;
    color: #94a3b8;
}

/* 视频页丰富模块 */
.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 18px;
}

.video-tags span {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.video-side-heading {
    margin: 0 0 10px;
    font-size: 15px;
    color: #0f172a;
}

.video-specs,
.video-highlights,
.video-chapters,
.video-transcript {
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
}

.video-specs-dl {
    margin: 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px 12px;
    font-size: 14px;
}

.video-specs-dl dt {
    margin: 0;
    color: #64748b;
    font-weight: 600;
}

.video-specs-dl dd {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}

.video-highlights ul {
    margin: 0;
    padding-left: 18px;
    color: #475569;
    line-height: 1.75;
    font-size: 14px;
}

.video-chapters ol {
    margin: 0;
    padding-left: 18px;
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
}

.video-chapter-t {
    display: inline-block;
    min-width: 52px;
    font-family: ui-monospace, monospace;
    color: #64748b;
    margin-right: 6px;
}

.video-transcript blockquote {
    margin: 0 0 10px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #2563eb;
}

.video-transcript blockquote p {
    margin: 0;
    font-size: 15px;
    color: #334155;
    line-height: 1.75;
    font-style: italic;
}

.video-transcript-note {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-split,
    .about-legal-split {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .video-specs-dl {
        grid-template-columns: 1fr;
    }

    .video-specs-dl dt {
        margin-top: 6px;
    }
}

/* ========== 医疗公示页 ========== */
.complaint-public-page .page-lead {
    max-width: 720px;
}

.public-notice-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 22px;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    color: #334155;
    font-size: 14px;
    line-height: 1.65;
}

.public-notice-banner > i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2563eb;
    font-size: 18px;
}

.public-notice-banner p {
    margin: 0;
}

.public-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding: 16px 18px;
    margin-bottom: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.public-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.public-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.public-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.public-filter-tab:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.public-filter-tab.active {
    border-color: #e74c3c;
    background: #fff5f5;
    color: #c0392b;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.18);
}

.public-complaint-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.public-complaint-card {
    border: 1px solid #e7edf7;
    border-radius: 14px;
    padding: 20px 22px 22px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease;
}

.public-complaint-card:hover {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
}

.pc-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 12px;
}

.pc-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1e40af;
    background: #dbeafe;
}

.pc-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.pc-status--done {
    color: #047857;
    background: #d1fae5;
}

.pc-status--progress {
    color: #b45309;
    background: #fef3c7;
}

.pc-privacy {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.pc-privacy--anon {
    color: #64748b;
    background: #f1f5f9;
}

.pc-privacy--named {
    color: #1d4ed8;
    background: #eff6ff;
}

.pc-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.pc-summary {
    margin: 0 0 14px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.pc-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px 16px;
    margin: 0 0 14px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.pc-meta > div {
    margin: 0;
}

.pc-meta dt {
    margin: 0 0 2px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.pc-meta dd {
    margin: 0;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.pc-party--hidden {
    color: #94a3b8;
    font-style: italic;
}

.pc-result {
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
    line-height: 1.65;
}

.pc-result strong {
    color: #1e293b;
}

.public-pagination {
    text-align: center;
    margin: 24px 0 8px;
}

.public-pagination .pagination-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.complaint-public-page .pagination-list button.pagination-link {
    width: 100%;
    margin: 0;
    font: inherit;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: center;
    color: inherit;
}

.complaint-public-page .pagination-list .pagination-item.disabled button.pagination-link:hover,
.complaint-public-page .pagination-list .pagination-item.disabled button.pagination-link {
    background-color: #fff;
}

.complaint-public-page .pagination-ellipsis .pagination-link {
    cursor: default;
    pointer-events: none;
    color: #94a3b8;
}

.public-pagination .public-page-info {
    margin: 14px 0 0;
    font-size: 13px;
    color: #64748b;
}

.public-page-footnote {
    margin: 28px 0 0;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

.public-page-footnote a {
    color: #2563eb;
    text-decoration: none;
}

.public-page-footnote a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .pc-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .pc-privacy {
        margin-left: 0;
    }

    .public-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .public-filter-tabs {
        flex-direction: column;
    }

    .public-filter-tab {
        justify-content: center;
    }
}