/* 海角网 - 全站样式表 */

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

/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

.hjw-body-main {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.hjw-body-secondary {
    background-color: #fafbfc;
}

.hjw-body-emotion {
    background: linear-gradient(to bottom, #fff5f5 0%, #f5f7fa 100%);
}

.hjw-body-travel {
    background-color: #f8f9fa;
}

.hjw-body-food {
    background: linear-gradient(135deg, #fff9f0 0%, #f5f7fa 100%);
}

.hjw-body-hobbies {
    background-color: #f7f8fa;
}

.hjw-body-community {
    background: linear-gradient(to bottom, #f0f8ff 0%, #f5f7fa 100%);
}

/* 头部导航 */
.hjw-header-container {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hjw-header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hjw-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.hjw-logo-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.hjw-site-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.hjw-home-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hjw-home-link:hover {
    color: #3498db;
}

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

.hjw-nav-list {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
}

.hjw-nav-item {
    position: relative;
}

.hjw-nav-link {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hjw-nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.hjw-nav-link.hjw-active {
    background-color: #3498db;
    color: #fff;
}

/* 轮播横幅 */
.hjw-banner-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.hjw-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: none;
}

.hjw-slide-active {
    display: block;
}

.hjw-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

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

.hjw-banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hjw-banner-text {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* 主内容容器 */
.hjw-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.hjw-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.hjw-content-wrapper.hjw-full-width {
    grid-template-columns: 1fr;
}

.hjw-left-content {
    min-width: 0;
}

.hjw-right-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

/* 页面头部 */
.hjw-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hjw-emotion-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hjw-travel-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
}

.hjw-food-header {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hjw-hobbies-header {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.hjw-community-header {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.hjw-header-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    top: 0;
    left: 0;
}

.hjw-page-header-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hjw-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hjw-page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* 分类导航 */
.hjw-category-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hjw-category-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjw-category-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

.hjw-category-btn.hjw-cat-active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

/* 版块样式 */
.hjw-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hjw-title-icon {
    font-size: 28px;
}

.hjw-content-section {
    margin-bottom: 40px;
}

/* 热门话题 */
.hjw-hot-topics-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-topics-grid {
    display: grid;
    gap: 25px;
}

.hjw-topic-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hjw-topic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.hjw-topic-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hjw-topic-info {
    flex: 1;
}

.hjw-topic-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.hjw-topic-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.hjw-topic-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #95a5a6;
}

.hjw-author, .hjw-views, .hjw-comments {
    display: flex;
    align-items: center;
}

/* 最新讨论 */
.hjw-latest-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-discussion-list {
    display: grid;
    gap: 20px;
}

.hjw-discussion-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fafbfc;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.hjw-discussion-item:hover {
    background: #f0f3f7;
}

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

.hjw-discussion-content {
    flex: 1;
}

.hjw-discussion-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.hjw-discussion-preview {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.hjw-discussion-footer {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #95a5a6;
}

.hjw-discussion-user, .hjw-discussion-time, .hjw-discussion-replies {
    display: flex;
    align-items: center;
}

/* 精华推荐 */
.hjw-featured-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-featured-list {
    display: grid;
    gap: 25px;
}

.hjw-featured-item {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.hjw-featured-item:hover {
    transform: translateX(5px);
}

.hjw-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b6b;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.hjw-featured-thumb {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.hjw-featured-info {
    flex: 1;
}

.hjw-featured-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hjw-featured-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.hjw-featured-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

/* 右侧边栏 */
.hjw-user-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.hjw-panel-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid rgba(255,255,255,0.3);
}

.hjw-panel-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hjw-panel-text {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 18px;
}

.hjw-join-button {
    background: #fff;
    color: #667eea;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hjw-join-button:hover {
    transform: scale(1.05);
}

/* 社区统计 */
.hjw-stats-panel {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 18px;
}

.hjw-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hjw-stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.hjw-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.hjw-stat-label {
    font-size: 13px;
    color: #666;
}

/* 热门标签 */
.hjw-tags-panel {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hjw-tag {
    padding: 8px 16px;
    background: #f0f3f7;
    color: #555;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hjw-tag:hover {
    background: #3498db;
    color: #fff;
}

/* 推荐用户 */
.hjw-users-panel {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-user-list {
    display: grid;
    gap: 15px;
}

.hjw-user-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hjw-user-thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.hjw-user-info {
    flex: 1;
}

.hjw-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.hjw-user-desc {
    font-size: 12px;
    color: #95a5a6;
}

.hjw-follow-btn {
    padding: 6px 18px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hjw-follow-btn:hover {
    background: #2980b9;
}

/* 友情链接 */
.hjw-links-panel {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-links-list {
    display: grid;
    gap: 10px;
}

.hjw-link-item {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
}

.hjw-link-item:hover {
    background: #3498db;
    color: #fff;
}

/* 生活分享页面样式 */
.hjw-life-post {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-post-featured-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hjw-post-body {
    padding: 30px;
}

.hjw-post-title {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.hjw-post-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8ecef;
}

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

.hjw-author-name {
    font-weight: 600;
    color: #2c3e50;
}

.hjw-post-date {
    color: #95a5a6;
    font-size: 14px;
}

.hjw-post-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 500;
}

.hjw-post-content {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

.hjw-post-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.hjw-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.hjw-post-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e8ecef;
}

.hjw-post-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.hjw-stat-item {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hjw-stat-item:hover {
    color: #3498db;
}

.hjw-post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hjw-post-tag {
    padding: 6px 14px;
    background: #e8f4f8;
    color: #3498db;
    border-radius: 15px;
    font-size: 13px;
}

/* 生活技巧列表 */
.hjw-tips-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.hjw-tip-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hjw-tip-item:last-child {
    margin-bottom: 0;
}

.hjw-tip-number {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    flex-shrink: 0;
}

.hjw-tip-content {
    flex: 1;
}

.hjw-tip-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.hjw-tip-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* 侧边栏小部件 */
.hjw-sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 18px;
}

.hjw-hot-list {
    list-style: none;
}

.hjw-hot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3f7;
}

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

.hjw-hot-rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    background: #f0f3f7;
    color: #666;
    flex-shrink: 0;
}

.hjw-hot-rank.hjw-rank-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hjw-hot-link {
    flex: 1;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
}

.hjw-hot-link:hover {
    color: #3498db;
}

.hjw-topics-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hjw-topic-link {
    padding: 8px 16px;
    background: #f0f3f7;
    color: #555;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hjw-topic-link:hover {
    background: #3498db;
    color: #fff;
}

/* 情感页面样式 */
.hjw-emotion-post {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-emotion-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f3f7;
}

.hjw-emotion-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.hjw-emotion-meta {
    flex: 1;
}

.hjw-emotion-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.hjw-emotion-info {
    display: flex;
    gap: 15px;
    font-size: 14px;
}

.hjw-emotion-author {
    font-weight: 600;
    color: #555;
}

.hjw-emotion-time {
    color: #95a5a6;
}

.hjw-emotion-content {
    margin-bottom: 20px;
}

.hjw-emotion-text {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.hjw-emotion-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

.hjw-emotion-footer {
    padding-top: 20px;
    border-top: 1px solid #f0f3f7;
}

.hjw-emotion-actions {
    display: flex;
    gap: 15px;
}

.hjw-action-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e8ecef;
    border-radius: 25px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjw-action-btn:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.hjw-topic-list {
    list-style: none;
}

.hjw-topic-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

/* 旅行页面样式 */
.hjw-travel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-travel-images {
    position: relative;
}

.hjw-travel-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hjw-travel-gallery {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.hjw-gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hjw-gallery-thumb:hover {
    transform: scale(1.1);
}

.hjw-travel-content {
    padding: 30px;
}

.hjw-travel-title {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hjw-travel-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.hjw-travel-author, .hjw-travel-location, .hjw-travel-date {
    display: flex;
    align-items: center;
}

.hjw-travel-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.hjw-travel-tips {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.hjw-tips-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.hjw-tips-list {
    list-style: none;
    padding-left: 0;
}

.hjw-tips-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.hjw-tips-list li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #ffc107;
    font-size: 18px;
}

.hjw-travel-route {
    background: #f0f8ff;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.hjw-route-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hjw-route-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #d6ebff;
}

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

.hjw-route-day {
    font-weight: 600;
    color: #3498db;
    flex-shrink: 0;
}

.hjw-route-plan {
    color: #555;
    font-size: 14px;
}

.hjw-travel-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e8ecef;
}

.hjw-travel-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.hjw-travel-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hjw-tag-item {
    padding: 6px 14px;
    background: #e8f4f8;
    color: #3498db;
    border-radius: 15px;
    font-size: 13px;
}

.hjw-destination-list {
    list-style: none;
}

.hjw-dest-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hjw-dest-item:hover {
    background: #3498db;
    color: #fff;
}

.hjw-season-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hjw-season-tag {
    padding: 8px 16px;
    background: #f0f3f7;
    color: #555;
    border-radius: 20px;
    font-size: 13px;
}

/* 美食页面样式 */
.hjw-food-grid {
    display: grid;
    gap: 30px;
}

.hjw-food-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.hjw-food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hjw-food-image-wrap {
    position: relative;
}

.hjw-food-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hjw-food-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    color: #e74c3c;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.hjw-food-content {
    padding: 25px;
}

.hjw-food-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hjw-food-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f3f7;
}

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

.hjw-food-user {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.hjw-food-time {
    color: #95a5a6;
    font-size: 13px;
}

.hjw-food-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hjw-recipe-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.hjw-recipe-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.hjw-ingredient-list {
    list-style: none;
    padding-left: 0;
}

.hjw-ingredient-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.hjw-ingredient-list li:before {
    content: "▪";
    position: absolute;
    left: 5px;
    color: #e74c3c;
}

.hjw-steps-list {
    padding-left: 20px;
}

.hjw-steps-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.hjw-tips-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 18px;
    margin: 20px 0;
}

.hjw-tips-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hjw-tips-content {
    list-style: none;
    padding-left: 0;
}

.hjw-tips-content li {
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.hjw-tips-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.hjw-baking-tips {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.hjw-baking-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.hjw-tip-card {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    border-left: 3px solid #e74c3c;
}

.hjw-tip-card:last-child {
    margin-bottom: 0;
}

.hjw-recommend-dishes {
    background: #f0f8ff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.hjw-recommend-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.hjw-dish-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #d6ebff;
}

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

.hjw-dish-name {
    font-size: 14px;
    color: #555;
}

.hjw-dish-rate {
    font-size: 13px;
}

.hjw-food-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8ecef;
}

.hjw-food-actions {
    display: flex;
    gap: 15px;
}

.hjw-food-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e8ecef;
    border-radius: 25px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjw-food-btn:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.hjw-food-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hjw-cat-link {
    padding: 10px 16px;
    background: #f8f9fa;
    color: #555;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
}

.hjw-cat-link:hover {
    background: #e74c3c;
    color: #fff;
}

.hjw-hot-dishes {
    list-style: none;
}

.hjw-dish-rank {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

/* 兴趣爱好页面样式 */
.hjw-hobbies-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hjw-tab-btn {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjw-tab-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

.hjw-tab-btn.hjw-tab-active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.hjw-hobbies-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.hjw-hobby-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    position: relative;
}

.hjw-hobby-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.hjw-card-large {
    grid-column: span 2;
}

.hjw-card-tall {
    grid-row: span 2;
}

.hjw-card-wide {
    grid-column: span 2;
}

.hjw-hobby-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hjw-hobby-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    padding: 25px;
    color: #fff;
}

.hjw-hobby-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.hjw-hobby-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hjw-hobby-excerpt {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.6;
}

.hjw-hobby-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.hjw-hobby-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.hjw-hobby-author {
    flex: 1;
}

.hjw-hobby-likes {
    font-weight: 600;
}

.hjw-hobby-content-only {
    padding: 25px;
}

.hjw-hobby-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hjw-hobby-time {
    color: #95a5a6;
    font-size: 13px;
}

.hjw-writing-card {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.hjw-hobby-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hjw-hobby-grid-left {
    position: relative;
}

.hjw-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjw-hobby-grid-right {
    padding: 25px;
}

.hjw-tips-mini {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.hjw-tips-mini strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
}

.hjw-tips-mini ul {
    list-style: none;
    padding-left: 0;
}

.hjw-tips-mini li {
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.hjw-tips-mini li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

/* 社区活动页面样式 */
.hjw-featured-activity {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 350px;
}

.hjw-activity-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hjw-activity-highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 700px;
}

.hjw-activity-badge {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hjw-activity-main-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hjw-activity-desc {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hjw-activity-info-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 14px;
}

.hjw-info-item {
    display: flex;
    align-items: center;
}

.hjw-join-activity-btn {
    padding: 14px 40px;
    background: #fff;
    color: #3498db;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjw-join-activity-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.hjw-activities-section {
    margin-bottom: 30px;
}

.hjw-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.hjw-heading-text {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.hjw-activity-filters {
    display: flex;
    gap: 10px;
}

.hjw-filter-btn {
    padding: 8px 18px;
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjw-filter-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

.hjw-filter-btn.hjw-filter-active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.hjw-activities-list {
    display: grid;
    gap: 25px;
}

.hjw-activity-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.hjw-activity-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hjw-activity-left {
    position: relative;
    flex-shrink: 0;
}

.hjw-activity-img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.hjw-activity-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.hjw-status-ongoing {
    background: #28a745;
    color: #fff;
}

.hjw-status-upcoming {
    background: #ffc107;
    color: #fff;
}

.hjw-status-ended {
    background: #6c757d;
    color: #fff;
}

.hjw-activity-right {
    flex: 1;
}

.hjw-activity-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.hjw-activity-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.hjw-activity-type {
    padding: 5px 12px;
    background: #e8f4f8;
    color: #3498db;
    border-radius: 15px;
    font-size: 13px;
    white-space: nowrap;
}

.hjw-activity-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.hjw-activity-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.hjw-detail-row {
    display: flex;
    padding: 6px 0;
    font-size: 14px;
}

.hjw-detail-label {
    color: #666;
    min-width: 100px;
}

.hjw-detail-value {
    color: #2c3e50;
    font-weight: 500;
}

.hjw-activity-footer {
    display: flex;
    gap: 12px;
}

.hjw-activity-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjw-btn-primary {
    background: #3498db;
    color: #fff;
}

.hjw-btn-primary:hover {
    background: #2980b9;
}

.hjw-btn-secondary {
    background: #f8f9fa;
    color: #555;
    border: 1px solid #e1e8ed;
}

.hjw-btn-secondary:hover {
    background: #e8ecef;
}

.hjw-create-activity {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hjw-widget-text {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 18px;
    line-height: 1.6;
}

.hjw-create-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hjw-create-btn:hover {
    transform: scale(1.05);
}

.hjw-calendar-widget {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.hjw-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.hjw-cal-nav {
    background: none;
    border: none;
    font-size: 20px;
    color: #3498db;
    cursor: pointer;
    padding: 5px 10px;
}

.hjw-cal-month {
    font-weight: 600;
    color: #2c3e50;
}

.hjw-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.hjw-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 6px;
    color: #555;
}

.hjw-cal-day.hjw-cal-header {
    color: #95a5a6;
    font-weight: 600;
    font-size: 12px;
}

.hjw-cal-day.hjw-cal-active {
    background: #3498db;
    color: #fff;
    font-weight: 600;
}

.hjw-calendar-legend {
    margin-top: 12px;
    font-size: 12px;
    color: #666;
}

.hjw-legend-item {
    display: flex;
    align-items: center;
}

.hjw-legend-item:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    margin-right: 8px;
}

.hjw-stats-simple {
    display: grid;
    gap: 12px;
}

.hjw-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.hjw-stat-name {
    font-size: 14px;
    color: #666;
}

.hjw-stat-val {
    font-size: 16px;
    font-weight: 700;
    color: #3498db;
}

/* 页脚 */
.hjw-footer-section {
    background: #2c3e50;
    color: rgba(255,255,255,0.8);
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.hjw-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.hjw-footer-about {
    padding-right: 40px;
}

.hjw-footer-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.hjw-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
}

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

.hjw-footer-column {
    min-width: 0;
}

.hjw-footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.hjw-footer-list {
    list-style: none;
}

.hjw-footer-list li {
    margin-bottom: 10px;
}

.hjw-footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.hjw-footer-link:hover {
    color: #3498db;
}

.hjw-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.hjw-copyright {
    font-size: 13px;
    opacity: 0.7;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hjw-content-wrapper {
        grid-template-columns: 1fr 300px;
    }

    .hjw-hobbies-masonry {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .hjw-content-wrapper {
        grid-template-columns: 1fr;
    }

    .hjw-right-sidebar {
        position: static;
    }

    .hjw-header-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .hjw-main-navigation {
        justify-content: center;
    }

    .hjw-nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hjw-topic-card {
        flex-direction: column;
    }

    .hjw-topic-image {
        width: 100%;
        height: 200px;
    }

    .hjw-activity-card {
        flex-direction: column;
    }

    .hjw-activity-img {
        width: 100%;
        height: 220px;
    }

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

@media (max-width: 768px) {
    .hjw-banner-title {
        font-size: 32px;
    }

    .hjw-banner-text {
        font-size: 16px;
    }

    .hjw-page-title {
        font-size: 32px;
    }

    .hjw-post-images-grid {
        grid-template-columns: 1fr;
    }

    .hjw-gallery-image {
        height: 250px;
    }

    .hjw-travel-gallery {
        position: static;
        padding: 15px;
        justify-content: center;
    }

    .hjw-hobby-grid-content {
        grid-template-columns: 1fr;
    }

    .hjw-card-large, .hjw-card-wide {
        grid-column: span 1;
    }

    .hjw-section-heading {
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }

    .hjw-activity-info-bar {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hjw-nav-list {
        gap: 3px;
    }

    .hjw-nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }

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

    .hjw-discussion-item {
        flex-direction: column;
    }

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

    .hjw-featured-thumb {
        width: 100%;
        height: 200px;
    }

    .hjw-footer-links {
        grid-template-columns: 1fr;
    }
}