/* 海角社区入口 - 全站样式表 */

/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #e74c3c;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 头部导航样式 */
.hjsq-main-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.hjsq-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hjsq-logo-section {
    display: flex;
    flex-direction: column;
}

.hjsq-site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.hjsq-site-title a {
    color: #ffffff;
}

.hjsq-site-slogan {
    font-size: 0.9rem;
    color: #e0e6ed;
    margin-top: 0.2rem;
}

.hjsq-main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hjsq-nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.hjsq-nav-list li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hjsq-nav-list li a:hover,
.hjsq-nav-list li a.hjsq-nav-active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffd700;
}

/* Banner 横幅样式 */
.hjsq-hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/edg202501.jpg') center/cover no-repeat;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
}

.hjsq-banner-overlay {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hjsq-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hjsq-banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    line-height: 1.8;
}

.hjsq-banner-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hjsq-btn-primary,
.hjsq-btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hjsq-btn-primary {
    background-color: #e74c3c;
    color: #ffffff;
}

.hjsq-btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hjsq-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hjsq-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 页面 Banner */
.hjsq-page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hjsq-movies-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hjsq-tv-banner {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hjsq-anime-banner {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hjsq-doc-banner {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.hjsq-about-banner {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.hjsq-page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hjsq-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* 主要内容区域 */
.hjsq-main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hjsq-section-container {
    margin-bottom: 4rem;
}

.hjsq-section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #e74c3c;
    display: inline-block;
}

/* 筛选栏 */
.hjsq-filter-bar {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

.hjsq-filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
}

.hjsq-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hjsq-tag {
    padding: 0.5rem 1.2rem;
    background-color: #ecf0f1;
    color: #7f8c8d;
    border-radius: 20px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsq-tag:hover,
.hjsq-tag-active {
    background-color: #e74c3c;
    color: #ffffff;
}

/* 卡片网格布局 */
.hjsq-movie-grid,
.hjsq-tv-grid,
.hjsq-anime-grid,
.hjsq-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.hjsq-movie-card,
.hjsq-tv-card,
.hjsq-anime-card,
.hjsq-doc-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hjsq-movie-card:hover,
.hjsq-tv-card:hover,
.hjsq-anime-card:hover,
.hjsq-doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hjsq-card-image {
    position: relative;
    overflow: hidden;
    height: 380px;
}

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

.hjsq-movie-card:hover .hjsq-img-cover,
.hjsq-tv-card:hover .hjsq-img-cover,
.hjsq-anime-card:hover .hjsq-img-cover,
.hjsq-doc-card:hover .hjsq-img-cover {
    transform: scale(1.1);
}

.hjsq-card-badge,
.hjsq-update-badge,
.hjsq-doc-episodes {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hjsq-badge-hot {
    background-color: #e74c3c;
}

.hjsq-badge-new {
    background-color: #3498db;
}

.hjsq-badge-recommend {
    background-color: #f39c12;
}

.hjsq-badge-classic {
    background-color: #9b59b6;
}

.hjsq-card-info {
    padding: 1.5rem;
}

.hjsq-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.hjsq-card-desc {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hjsq-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hjsq-rating {
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hjsq-views {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* 分类展示 */
.hjsq-category-showcase {
    background-color: #ecf0f1;
    padding: 4rem 0;
    margin: 4rem 0;
}

.hjsq-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hjsq-category-item {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.hjsq-category-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hjsq-category-item:hover .hjsq-category-bg {
    transform: scale(1.15);
}

.hjsq-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #ffffff;
}

.hjsq-category-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hjsq-category-count {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hjsq-category-link {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.hjsq-category-link:hover {
    background-color: #c0392b;
}

/* 最新更新列表 */
.hjsq-updates-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hjsq-update-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hjsq-update-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateX(8px);
}

.hjsq-update-thumb {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hjsq-update-content {
    flex: 1;
}

.hjsq-update-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.hjsq-update-info {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 0.8rem;
}

.hjsq-update-desc {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* 特色功能区 */
.hjsq-features-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    color: #ffffff;
}

.hjsq-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.hjsq-feature-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hjsq-feature-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.hjsq-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hjsq-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hjsq-feature-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* 经典列表 */
.hjsq-classic-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hjsq-classic-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hjsq-classic-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hjsq-classic-poster {
    width: 300px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}

.hjsq-classic-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hjsq-classic-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hjsq-classic-info {
    font-size: 1rem;
    color: #95a5a6;
    margin-bottom: 1.5rem;
}

.hjsq-classic-desc {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hjsq-classic-rating {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hjsq-score {
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.hjsq-classic-views {
    color: #95a5a6;
    font-size: 1rem;
}

/* 完结剧集列表 */
.hjsq-finished-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hjsq-finished-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hjsq-finished-poster {
    width: 280px;
    height: 360px;
    object-fit: cover;
    flex-shrink: 0;
}

.hjsq-finished-content {
    padding: 2.5rem;
    flex: 1;
}

.hjsq-finished-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.hjsq-finished-info {
    font-size: 0.95rem;
    color: #95a5a6;
    margin-bottom: 1.2rem;
}

.hjsq-finished-desc {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hjsq-finished-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hjsq-finished-views {
    color: #95a5a6;
    font-size: 1rem;
}

/* 动漫经典 */
.hjsq-classic-anime {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hjsq-anime-classic-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hjsq-anime-classic-poster {
    width: 300px;
    height: 380px;
    object-fit: cover;
    flex-shrink: 0;
}

.hjsq-anime-classic-content {
    padding: 2.5rem;
    flex: 1;
}

.hjsq-anime-classic-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.hjsq-anime-classic-info {
    font-size: 0.95rem;
    color: #95a5a6;
    margin-bottom: 1.2rem;
}

.hjsq-anime-classic-desc {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hjsq-anime-classic-rating {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hjsq-anime-classic-views {
    color: #95a5a6;
    font-size: 1rem;
}

/* 国产动漫网格 */
.hjsq-domestic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.hjsq-domestic-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hjsq-domestic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hjsq-domestic-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hjsq-domestic-info {
    padding: 1.5rem;
}

.hjsq-domestic-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.hjsq-domestic-desc {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hjsq-domestic-rating {
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* 纪录片精品展示 */
.hjsq-doc-featured {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.hjsq-doc-featured-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hjsq-doc-featured-img {
    width: 400px;
    height: 450px;
    object-fit: cover;
    flex-shrink: 0;
}

.hjsq-doc-featured-content {
    padding: 3rem;
    flex: 1;
}

.hjsq-doc-featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hjsq-doc-featured-info {
    font-size: 1rem;
    color: #95a5a6;
    margin-bottom: 1.5rem;
}

.hjsq-doc-featured-desc {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.hjsq-doc-featured-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hjsq-doc-views {
    color: #95a5a6;
    font-size: 1rem;
}

/* 自然探索区 */
.hjsq-nature-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.hjsq-nature-item {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.hjsq-nature-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hjsq-nature-item:hover .hjsq-nature-bg {
    transform: scale(1.15);
}

.hjsq-nature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: #ffffff;
}

.hjsq-nature-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hjsq-nature-info {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.hjsq-nature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* 文化之旅列表 */
.hjsq-culture-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hjsq-culture-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hjsq-culture-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hjsq-culture-thumb {
    width: 250px;
    height: 180px;
    flex-shrink: 0;
}

.hjsq-culture-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjsq-culture-content {
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hjsq-culture-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.hjsq-culture-info {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 0.8rem;
}

.hjsq-culture-desc {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hjsq-culture-rating {
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    width: fit-content;
}

/* 关于页面特殊样式 */
.hjsq-about-intro {
    background: #ffffff;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.hjsq-intro-content {
    margin-bottom: 2rem;
}

.hjsq-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hjsq-paragraph {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.9;
    text-align: justify;
}

.hjsq-intro-image {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.hjsq-about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hjsq-mission-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    color: #ffffff;
}

.hjsq-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.hjsq-mission-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.hjsq-mission-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.hjsq-mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hjsq-mission-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hjsq-mission-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hjsq-values-section {
    padding: 3rem 0;
}

.hjsq-values-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hjsq-values-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hjsq-values-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hjsq-values-text {
    flex: 1;
}

.hjsq-values-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hjsq-values-desc {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.hjsq-advantages-section {
    background: #ecf0f1;
    padding: 4rem 0;
    margin: 3rem 0;
}

.hjsq-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.hjsq-adv-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hjsq-adv-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hjsq-adv-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.hjsq-adv-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hjsq-adv-text {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.hjsq-contact-section {
    padding: 3rem 0;
}

.hjsq-contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hjsq-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.hjsq-contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hjsq-contact-icon {
    font-size: 2.5rem;
}

.hjsq-contact-label {
    font-size: 1rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
}

.hjsq-contact-value {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.hjsq-contact-message {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hjsq-message-text {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.hjsq-message-text:last-child {
    margin-bottom: 0;
}

/* 工具类 */
.hjsq-mt-large {
    margin-top: 4rem;
}

/* 页脚样式 */
.hjsq-main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.hjsq-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.hjsq-footer-section {
    display: flex;
    flex-direction: column;
}

.hjsq-footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.hjsq-footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 0.8rem;
}

.hjsq-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hjsq-footer-links li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.hjsq-footer-links li a:hover {
    color: #ffffff;
}

.hjsq-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
    text-align: center;
}

.hjsq-copyright {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hjsq-header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hjsq-nav-list {
        gap: 1.5rem;
    }

    .hjsq-banner-title {
        font-size: 2.5rem;
    }

    .hjsq-classic-poster,
    .hjsq-finished-poster,
    .hjsq-anime-classic-poster,
    .hjsq-doc-featured-img {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .hjsq-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hjsq-hero-banner {
        height: 400px;
    }

    .hjsq-banner-title {
        font-size: 2rem;
    }

    .hjsq-banner-subtitle {
        font-size: 1rem;
    }

    .hjsq-banner-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hjsq-movie-grid,
    .hjsq-tv-grid,
    .hjsq-anime-grid,
    .hjsq-doc-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .hjsq-classic-item,
    .hjsq-finished-item,
    .hjsq-anime-classic-item,
    .hjsq-doc-featured-item {
        flex-direction: column;
    }

    .hjsq-classic-poster,
    .hjsq-finished-poster,
    .hjsq-anime-classic-poster,
    .hjsq-doc-featured-img {
        width: 100%;
        height: 300px;
    }

    .hjsq-update-item {
        flex-direction: column;
    }

    .hjsq-update-thumb {
        width: 100%;
        height: 180px;
    }

    .hjsq-values-item {
        flex-direction: column;
        text-align: center;
    }

    .hjsq-values-img {
        width: 100%;
        height: 250px;
    }

    .hjsq-culture-item {
        flex-direction: column;
    }

    .hjsq-culture-thumb {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hjsq-site-title {
        font-size: 1.4rem;
    }

    .hjsq-nav-list li a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .hjsq-section-heading {
        font-size: 1.5rem;
    }

    .hjsq-page-title {
        font-size: 2rem;
    }

    .hjsq-footer-container {
        grid-template-columns: 1fr;
    }
}