* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

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

.hjsqyy-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.hjsqyy-logo-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.hjsqyy-logo-section h1 a {
    color: #fff;
}

.hjsqyy-logo-section h1 a:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.hjsqyy-slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hjsqyy-navigation-menu {
    display: flex;
    gap: 2rem;
}

.hjsqyy-navigation-menu a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hjsqyy-navigation-menu a:hover,
.hjsqyy-navigation-menu a.hjsqyy-active-link {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hjsqyy-hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hjsqyy-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjsqyy-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hjsqyy-banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hjsqyy-banner-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hjsqyy-explore-button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    background-color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hjsqyy-explore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hjsqyy-featured-section,
.hjsqyy-category-section,
.hjsqyy-update-section,
.hjsqyy-community-section {
    padding: 5rem 0;
}

.hjsqyy-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hjsqyy-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.hjsqyy-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.hjsqyy-comic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.hjsqyy-comic-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hjsqyy-comic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hjsqyy-comic-cover {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.hjsqyy-comic-info {
    padding: 1.5rem;
}

.hjsqyy-comic-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.hjsqyy-comic-desc {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hjsqyy-comic-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 0.85rem;
    border-radius: 15px;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.hjsqyy-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.hjsqyy-category-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsqyy-category-item:hover {
    transform: scale(1.05);
}

.hjsqyy-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjsqyy-category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.hjsqyy-update-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.hjsqyy-update-item {
    display: flex;
    gap: 1.5rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hjsqyy-update-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.hjsqyy-update-thumb {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hjsqyy-update-details {
    flex: 1;
}

.hjsqyy-update-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.hjsqyy-update-time {
    font-size: 0.9rem;
    color: #95a5a6;
}

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

.hjsqyy-community-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hjsqyy-community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hjsqyy-community-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hjsqyy-community-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 0.5rem;
}

.hjsqyy-community-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    padding: 0 1.5rem 1.5rem;
}

.hjsqyy-main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

.hjsqyy-footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.hjsqyy-footer-title h1 {
    display: inline;
    font-size: inherit;
}

.hjsqyy-footer-title h1 a {
    color: #fff;
}

.hjsqyy-footer-desc,
.hjsqyy-footer-contact {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.hjsqyy-footer-links {
    list-style: none;
}

.hjsqyy-footer-links li {
    margin-bottom: 0.8rem;
}

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

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

.hjsqyy-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

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

.hjsqyy-page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    text-align: center;
}

.hjsqyy-banner-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hjsqyy-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.hjsqyy-page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hjsqyy-filter-bar,
.hjsqyy-time-filter,
.hjsqyy-ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hjsqyy-filter-btn,
.hjsqyy-time-btn,
.hjsqyy-tab-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #667eea;
    background-color: transparent;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsqyy-filter-btn:hover,
.hjsqyy-time-btn:hover,
.hjsqyy-tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.hjsqyy-active-filter,
.hjsqyy-active-time,
.hjsqyy-active-tab {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #764ba2;
}

.hjsqyy-hot-grid {
    display: grid;
    gap: 2rem;
}

.hjsqyy-hot-card {
    display: flex;
    gap: 2rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.hjsqyy-hot-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hjsqyy-rank-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hjsqyy-hot-cover {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.hjsqyy-hot-info {
    flex: 1;
}

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

.hjsqyy-hot-author {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.hjsqyy-hot-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hjsqyy-hot-stats span {
    font-size: 0.95rem;
    color: #95a5a6;
}

.hjsqyy-hot-tags {
    margin-bottom: 1rem;
}

.hjsqyy-tag-item {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 0.9rem;
    border-radius: 15px;
    margin-right: 0.5rem;
}

.hjsqyy-hot-summary {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.hjsqyy-new-list {
    display: grid;
    gap: 1.5rem;
}

.hjsqyy-new-item {
    display: flex;
    gap: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.hjsqyy-new-thumbnail {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hjsqyy-new-details {
    flex: 1;
}

.hjsqyy-new-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.hjsqyy-new-chapter {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hjsqyy-new-time {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 1rem;
}

.hjsqyy-new-preview {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hjsqyy-new-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hjsqyy-meta-tag {
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 0.85rem;
    border-radius: 12px;
}

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

.hjsqyy-category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.hjsqyy-category-box {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsqyy-category-box:hover {
    transform: scale(1.03);
}

.hjsqyy-category-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.hjsqyy-category-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.hjsqyy-category-button {
    align-self: flex-start;
    padding: 0.8rem 2rem;
    background-color: #fff;
    color: #667eea;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsqyy-category-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hjsqyy-tag-cloud {
    background-color: #fff;
    padding: 4rem 0;
    margin: 3rem 0;
}

.hjsqyy-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hjsqyy-cloud-tag {
    padding: 0.6rem 1.5rem;
    background-color: #f8f9fa;
    color: #667eea;
    font-size: 1rem;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsqyy-cloud-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #764ba2;
    transform: translateY(-2px);
}

.hjsqyy-ranking-list {
    display: grid;
    gap: 1.5rem;
}

.hjsqyy-ranking-item {
    display: flex;
    gap: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.hjsqyy-ranking-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.hjsqyy-top-rank {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6f0 100%);
}

.hjsqyy-rank-number {
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    color: #495057;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.hjsqyy-gold-rank {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.hjsqyy-silver-rank {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(192, 192, 192, 0.4);
}

.hjsqyy-bronze-rank {
    background: linear-gradient(135deg, #cd7f32 0%, #d4a76a 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(205, 127, 50, 0.4);
}

.hjsqyy-ranking-cover {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hjsqyy-ranking-info {
    flex: 1;
}

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

.hjsqyy-ranking-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0.8rem;
}

.hjsqyy-ranking-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.hjsqyy-stat-item {
    font-size: 0.9rem;
    color: #95a5a6;
}

.hjsqyy-ranking-summary {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.hjsqyy-trend-up,
.hjsqyy-trend-down,
.hjsqyy-trend-stable {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.hjsqyy-trend-up {
    color: #27ae60;
}

.hjsqyy-trend-down {
    color: #e74c3c;
}

.hjsqyy-trend-stable {
    color: #95a5a6;
}

.hjsqyy-about-intro {
    background-color: #fff;
    padding: 5rem 0;
}

.hjsqyy-intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hjsqyy-intro-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hjsqyy-intro-paragraph {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.hjsqyy-team-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hjsqyy-values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.hjsqyy-value-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hjsqyy-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hjsqyy-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
}

.hjsqyy-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjsqyy-value-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.hjsqyy-value-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.hjsqyy-stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hjsqyy-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.hjsqyy-stat-box {
    text-align: center;
    padding: 2rem;
}

.hjsqyy-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hjsqyy-stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hjsqyy-timeline-section {
    padding: 5rem 0;
    background-color: #fff;
}

.hjsqyy-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.hjsqyy-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.hjsqyy-timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.hjsqyy-timeline-item::before {
    content: '';
    position: absolute;
    left: -3.6rem;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: #667eea;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #667eea;
}

.hjsqyy-timeline-date {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

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

.hjsqyy-timeline-desc {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.hjsqyy-contact-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.hjsqyy-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hjsqyy-contact-info {
    display: grid;
    gap: 2rem;
}

.hjsqyy-contact-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hjsqyy-contact-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.hjsqyy-contact-detail {
    font-size: 1rem;
    color: #7f8c8d;
}

.hjsqyy-contact-banner {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .hjsqyy-intro-content,
    .hjsqyy-contact-content {
        grid-template-columns: 1fr;
    }

    .hjsqyy-hot-card {
        flex-direction: column;
    }

    .hjsqyy-hot-cover {
        width: 100%;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hjsqyy-header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hjsqyy-navigation-menu {
        gap: 1rem;
    }

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

    .hjsqyy-page-title {
        font-size: 2.2rem;
    }

    .hjsqyy-section-title {
        font-size: 2rem;
    }

    .hjsqyy-new-item,
    .hjsqyy-ranking-item {
        flex-direction: column;
    }

    .hjsqyy-new-thumbnail,
    .hjsqyy-ranking-cover {
        width: 100%;
    }

    .hjsqyy-timeline {
        padding-left: 2rem;
    }
}