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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.hjsq-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.hjsq-logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.hjsq-logo h1 {
    font-size: 24px;
    display: inline;
}

.hjsq-nav-menu {
    display: flex;
    gap: 30px;
}

.hjsq-nav-link {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

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

/* 横幅轮播 */
.hjsq-hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.hjsq-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hjsq-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.hjsq-slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hjsq-slide-content p {
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 特色栏目 */
.hjsq-features-section {
    padding: 60px 0;
    background-color: #fff;
}

.hjsq-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hjsq-feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transition: transform 0.3s ease;
}

.hjsq-feature-card:hover {
    transform: translateY(-10px);
}

.hjsq-feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hjsq-feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.hjsq-feature-card p {
    font-size: 16px;
    line-height: 1.8;
}

/* 热门作品 */
.hjsq-popular-works {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.hjsq-section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #2a5298;
}

.hjsq-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hjsq-work-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hjsq-work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hjsq-work-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.hjsq-work-info {
    padding: 20px;
}

.hjsq-work-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.hjsq-work-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.hjsq-rating {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* 分类导航 */
.hjsq-category-section {
    padding: 60px 0;
    background-color: #fff;
}

.hjsq-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hjsq-category-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hjsq-category-box:hover {
    transform: scale(1.05);
}

.hjsq-category-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.7);
}

.hjsq-category-box h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 最新更新 */
.hjsq-updates-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.hjsq-updates-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hjsq-update-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hjsq-update-item:hover {
    transform: translateY(-5px);
}

.hjsq-update-item img {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.hjsq-update-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.hjsq-update-details p {
    font-size: 14px;
    color: #666;
}

/* 页面横幅 */
.hjsq-page-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hjsq-page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hjsq-page-banner h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 精品推荐页面 */
.hjsq-recommend-content {
    padding: 60px 0;
    background-color: #fff;
}

.hjsq-recommend-intro {
    text-align: center;
    margin-bottom: 50px;
}

.hjsq-recommend-intro h2 {
    font-size: 36px;
    color: #2a5298;
    margin-bottom: 20px;
}

.hjsq-recommend-intro p {
    font-size: 18px;
    color: #666;
}

.hjsq-featured-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hjsq-featured-item {
    display: flex;
    gap: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hjsq-featured-item img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.hjsq-featured-text h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.hjsq-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.hjsq-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hjsq-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

/* 分类页面 */
.hjsq-category-main {
    padding: 60px 0;
    background-color: #fff;
}

.hjsq-category-header {
    text-align: center;
    margin-bottom: 50px;
}

.hjsq-category-header h2 {
    font-size: 36px;
    color: #2a5298;
    margin-bottom: 20px;
}

.hjsq-category-header p {
    font-size: 18px;
    color: #666;
}

.hjsq-category-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hjsq-cat-block {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hjsq-cat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hjsq-cat-header img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.hjsq-cat-header h3 {
    font-size: 28px;
    color: #2a5298;
}

.hjsq-cat-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.hjsq-mini-work {
    text-align: center;
}

.hjsq-mini-work img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.hjsq-mini-work span {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

/* 排行榜页面 */
.hjsq-ranking-main {
    padding: 60px 0;
    background-color: #fff;
}

.hjsq-ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hjsq-tab-btn {
    padding: 12px 40px;
    font-size: 18px;
    background: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsq-tab-btn.active,
.hjsq-tab-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hjsq-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hjsq-rank-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hjsq-rank-item:hover {
    transform: translateX(10px);
}

.hjsq-rank-number {
    font-size: 36px;
    font-weight: bold;
    color: #999;
    min-width: 60px;
    text-align: center;
}

.hjsq-top-three .hjsq-rank-number {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hjsq-rank-item img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.hjsq-rank-info {
    flex: 1;
}

.hjsq-rank-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.hjsq-rank-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.hjsq-rank-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.hjsq-rank-stats {
    display: flex;
    gap: 30px;
}

.hjsq-rank-stats span {
    font-size: 14px;
    color: #2a5298;
    font-weight: bold;
}

/* 社区页面 */
.hjsq-community-main {
    padding: 60px 0;
    background-color: #fff;
}

.hjsq-community-intro {
    text-align: center;
    margin-bottom: 50px;
}

.hjsq-community-intro h2 {
    font-size: 36px;
    color: #2a5298;
    margin-bottom: 20px;
}

.hjsq-community-intro p {
    font-size: 18px;
    color: #666;
}

.hjsq-topics-section,
.hjsq-reviews-section,
.hjsq-community-stats,
.hjsq-community-rules {
    margin-bottom: 60px;
}

.hjsq-topics-section h3,
.hjsq-reviews-section h3,
.hjsq-community-stats h3,
.hjsq-community-rules h3 {
    font-size: 28px;
    color: #2a5298;
    margin-bottom: 30px;
}

.hjsq-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hjsq-topic-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hjsq-topic-card:hover {
    transform: translateY(-5px);
}

.hjsq-topic-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hjsq-topic-content {
    padding: 20px;
}

.hjsq-topic-content h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.hjsq-topic-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.hjsq-topic-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #999;
}

.hjsq-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hjsq-review-item {
    display: flex;
    gap: 20px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hjsq-user-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

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

.hjsq-user-name {
    font-size: 18px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 10px;
}

.hjsq-review-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hjsq-review-time {
    font-size: 14px;
    color: #999;
}

.hjsq-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hjsq-stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

.hjsq-stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hjsq-stat-label {
    font-size: 18px;
}

.hjsq-rules-content {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.hjsq-rules-content ul {
    list-style: none;
}

.hjsq-rules-content li {
    font-size: 16px;
    color: #666;
    line-height: 2;
    padding-left: 30px;
    position: relative;
}

.hjsq-rules-content li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #2a5298;
}

/* 关于我们页面 */
.hjsq-about-main {
    padding: 60px 0;
    background-color: #fff;
}

.hjsq-about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.hjsq-about-intro h2 {
    font-size: 36px;
    color: #2a5298;
    margin-bottom: 20px;
}

.hjsq-about-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.hjsq-mission-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.hjsq-mission-section img {
    width: 40%;
    border-radius: 10px;
}

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

.hjsq-mission-content h3 {
    font-size: 28px;
    color: #2a5298;
    margin-bottom: 20px;
}

.hjsq-mission-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.hjsq-values-section {
    margin-bottom: 60px;
}

.hjsq-values-section h3 {
    font-size: 28px;
    color: #2a5298;
    margin-bottom: 40px;
    text-align: center;
}

.hjsq-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hjsq-value-item {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hjsq-value-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.hjsq-value-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.hjsq-value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.hjsq-achievements-section {
    margin-bottom: 60px;
}

.hjsq-achievements-section h3 {
    font-size: 28px;
    color: #2a5298;
    margin-bottom: 40px;
    text-align: center;
}

.hjsq-achievements-list {
    position: relative;
}

.hjsq-achievement-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.hjsq-year {
    font-size: 24px;
    font-weight: bold;
    color: #2a5298;
    min-width: 100px;
}

.hjsq-event {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
}

.hjsq-event h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.hjsq-event p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.hjsq-team-section {
    margin-bottom: 60px;
    text-align: center;
}

.hjsq-team-section h3 {
    font-size: 28px;
    color: #2a5298;
    margin-bottom: 20px;
}

.hjsq-team-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hjsq-team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.hjsq-team-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hjsq-team-stat .hjsq-number {
    font-size: 48px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 10px;
}

.hjsq-team-stat .hjsq-label {
    font-size: 18px;
    color: #666;
}

.hjsq-contact-section {
    margin-bottom: 60px;
}

.hjsq-contact-section h3 {
    font-size: 28px;
    color: #2a5298;
    margin-bottom: 40px;
    text-align: center;
}

.hjsq-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hjsq-contact-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.hjsq-contact-item h4 {
    font-size: 20px;
    color: #2a5298;
    margin-bottom: 15px;
}

.hjsq-contact-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hjsq-future-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.hjsq-future-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.hjsq-future-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 底部样式 */
.hjsq-footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.hjsq-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.hjsq-footer-about h4 h1 {
    font-size: 20px;
    display: inline;
}

.hjsq-footer-about p,
.hjsq-footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

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

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

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

.hjsq-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hjsq-works-grid,
    .hjsq-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hjsq-features-grid,
    .hjsq-updates-list,
    .hjsq-cat-works,
    .hjsq-contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .hjsq-nav-menu {
        display: none;
    }

    .hjsq-works-grid,
    .hjsq-category-grid,
    .hjsq-features-grid,
    .hjsq-updates-list,
    .hjsq-topics-grid,
    .hjsq-cat-works,
    .hjsq-stats-grid,
    .hjsq-values-grid,
    .hjsq-contact-info {
        grid-template-columns: 1fr;
    }

    .hjsq-slide-content h2 {
        font-size: 32px;
    }

    .hjsq-slide-content p {
        font-size: 18px;
    }

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

    .hjsq-featured-item img {
        width: 100%;
    }

    .hjsq-mission-section {
        flex-direction: column;
    }

    .hjsq-mission-section img {
        width: 100%;
    }

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