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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

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

/* 首页样式 - ecyh前缀 */
.ecyh-home-body {
    min-height: 100vh;
}

.ecyh-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.ecyh-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.ecyh-site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.ecyh-site-title a {
    color: white;
    transition: opacity 0.3s;
}

.ecyh-site-title a:hover {
    opacity: 0.9;
}

.ecyh-main-nav {
    display: flex;
    gap: 30px;
}

.ecyh-nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.ecyh-nav-link:hover,
.ecyh-nav-link.ecyh-active {
    background: rgba(255,255,255,0.2);
}

.ecyh-hero-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 80px 20px;
}

.ecyh-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ecyh-banner-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
}

.ecyh-banner-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}

.ecyh-banner-search {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.ecyh-search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.ecyh-search-btn {
    padding: 15px 40px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.ecyh-search-btn:hover {
    transform: scale(1.05);
}

.ecyh-banner-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ecyh-featured-section,
.ecyh-category-section,
.ecyh-update-section {
    padding: 60px 20px;
}

.ecyh-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ecyh-section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ecyh-title-icon {
    font-size: 2.2rem;
}

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

.ecyh-comic-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.ecyh-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.ecyh-hot-badge,
.ecyh-new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.ecyh-hot-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.ecyh-new-badge {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.ecyh-comic-title {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 15px 10px;
    color: #2d3748;
}

.ecyh-comic-desc {
    padding: 0 15px;
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ecyh-comic-meta {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ecyh-meta-tag {
    padding: 4px 12px;
    background: #edf2f7;
    color: #667eea;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ecyh-meta-chapter {
    font-size: 0.85rem;
    color: #a0aec0;
}

.ecyh-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ecyh-category-item {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.ecyh-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecyh-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.ecyh-category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.ecyh-category-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.ecyh-update-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ecyh-update-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    cursor: pointer;
}

.ecyh-update-item:hover {
    transform: translateX(5px);
}

.ecyh-update-thumb {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

.ecyh-update-info {
    flex: 1;
}

.ecyh-update-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.ecyh-update-desc {
    color: #718096;
    margin-bottom: 10px;
    line-height: 1.5;
}

.ecyh-update-time {
    font-size: 0.85rem;
    color: #a0aec0;
}

.ecyh-main-footer {
    background: #2d3748;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.ecyh-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.ecyh-footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.ecyh-footer-text {
    color: #cbd5e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.ecyh-footer-links li {
    margin-bottom: 8px;
}

.ecyh-footer-links a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.ecyh-footer-links a:hover {
    color: white;
}

.ecyh-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* 热门漫画页面样式 - rmyh前缀 */
.rmyh-popular-body {
    min-height: 100vh;
    background: #f8f9fa;
}

.rmyh-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.rmyh-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.rmyh-site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.rmyh-site-title a {
    color: white;
}

.rmyh-main-nav {
    display: flex;
    gap: 30px;
}

.rmyh-nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.rmyh-nav-link:hover,
.rmyh-nav-link.rmyh-active {
    background: rgba(255,255,255,0.2);
}

.rmyh-page-hero {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 60px 20px;
    text-align: center;
}

.rmyh-hero-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 10px;
}

.rmyh-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.rmyh-popular-content {
    padding: 60px 20px;
}

.rmyh-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rmyh-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.rmyh-filter-btn {
    padding: 10px 30px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.rmyh-filter-btn:hover,
.rmyh-filter-btn.rmyh-active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

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

.rmyh-comic-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    padding: 20px;
    transition: transform 0.3s;
}

.rmyh-comic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.rmyh-card-image {
    position: relative;
    flex-shrink: 0;
}

.rmyh-card-image img {
    width: 150px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.rmyh-rank-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.rmyh-comic-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.rmyh-comic-author {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.rmyh-comic-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.rmyh-stat-item {
    font-size: 0.9rem;
    color: #a0aec0;
}

.rmyh-comic-summary {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.rmyh-main-footer {
    background: #2d3748;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.rmyh-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.rmyh-footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.rmyh-footer-text {
    color: #cbd5e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.rmyh-footer-links li {
    margin-bottom: 8px;
}

.rmyh-footer-links a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.rmyh-footer-links a:hover {
    color: white;
}

.rmyh-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* 最新更新页面样式 - zxgx前缀 */
.zxgx-new-body {
    min-height: 100vh;
    background: #f8f9fa;
}

.zxgx-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
}

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

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

.zxgx-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.zxgx-site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.zxgx-site-title a {
    color: white;
}

.zxgx-main-nav {
    display: flex;
    gap: 30px;
}

.zxgx-nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.zxgx-nav-link:hover,
.zxgx-nav-link.zxgx-active {
    background: rgba(255,255,255,0.2);
}

.zxgx-page-hero {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    padding: 60px 20px;
    text-align: center;
}

.zxgx-hero-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 10px;
}

.zxgx-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.zxgx-update-content {
    padding: 60px 20px;
}

.zxgx-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.zxgx-time-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.zxgx-time-btn {
    padding: 10px 30px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.zxgx-time-btn:hover,
.zxgx-time-btn.zxgx-active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.zxgx-update-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.zxgx-update-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    gap: 25px;
    transition: transform 0.3s;
}

.zxgx-update-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.zxgx-card-thumb {
    width: 160px;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.zxgx-card-info {
    flex: 1;
}

.zxgx-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.zxgx-card-chapter {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
}

.zxgx-card-desc {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.zxgx-card-meta {
    display: flex;
    gap: 15px;
}

.zxgx-meta-time {
    padding: 5px 15px;
    background: #edf2f7;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #718096;
}

.zxgx-meta-tag {
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.zxgx-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.zxgx-page-btn {
    padding: 10px 20px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.zxgx-page-btn:hover:not(.zxgx-disabled) {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.zxgx-page-btn.zxgx-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.zxgx-page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.zxgx-page-num:hover,
.zxgx-page-num.zxgx-active {
    background: #667eea;
    color: white;
}

.zxgx-main-footer {
    background: #2d3748;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.zxgx-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.zxgx-footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.zxgx-footer-text {
    color: #cbd5e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.zxgx-footer-links li {
    margin-bottom: 8px;
}

.zxgx-footer-links a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.zxgx-footer-links a:hover {
    color: white;
}

.zxgx-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* 分类导航页面样式 - fldh前缀 */
.fldh-category-body {
    min-height: 100vh;
    background: #f8f9fa;
}

.fldh-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
}

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

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

.fldh-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.fldh-site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.fldh-site-title a {
    color: white;
}

.fldh-main-nav {
    display: flex;
    gap: 30px;
}

.fldh-nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.fldh-nav-link:hover,
.fldh-nav-link.fldh-active {
    background: rgba(255,255,255,0.2);
}

.fldh-page-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px 20px;
    text-align: center;
}

.fldh-hero-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 10px;
}

.fldh-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.fldh-category-section {
    padding: 60px 20px;
}

.fldh-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.fldh-category-block {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.fldh-category-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.fldh-block-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.fldh-header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fldh-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.fldh-category-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.fldh-category-count {
    font-size: 1rem;
    opacity: 0.9;
}

.fldh-block-content {
    padding: 20px;
}

.fldh-category-desc {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.fldh-comic-samples {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fldh-sample-title {
    padding: 6px 15px;
    background: #edf2f7;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
}

.fldh-main-footer {
    background: #2d3748;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.fldh-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.fldh-footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.fldh-footer-text {
    color: #cbd5e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.fldh-footer-links li {
    margin-bottom: 8px;
}

.fldh-footer-links a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.fldh-footer-links a:hover {
    color: white;
}

.fldh-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* 排行榜页面样式 - phb前缀 */
.phb-ranking-body {
    min-height: 100vh;
    background: #f8f9fa;
}

.phb-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
}

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

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

.phb-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.phb-site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.phb-site-title a {
    color: white;
}

.phb-main-nav {
    display: flex;
    gap: 30px;
}

.phb-nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.phb-nav-link:hover,
.phb-nav-link.phb-active {
    background: rgba(255,255,255,0.2);
}

.phb-page-hero {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    padding: 60px 20px;
    text-align: center;
}

.phb-hero-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 10px;
}

.phb-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.phb-ranking-content {
    padding: 60px 20px;
}

.phb-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.phb-tab-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.phb-tab-btn {
    padding: 12px 35px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 25px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

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

.phb-ranking-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.phb-rank-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    gap: 25px;
    align-items: center;
    transition: transform 0.3s;
}

.phb-rank-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.phb-rank-card.phb-top-three {
    border: 2px solid #f0e68c;
}

.phb-rank-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    background: #edf2f7;
    color: #4a5568;
}

.phb-rank-number.phb-gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: white;
}

.phb-rank-number.phb-silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.phb-rank-number.phb-bronze {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: white;
}

.phb-rank-image {
    width: 120px;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.phb-rank-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.phb-rank-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 12px;
}

.phb-stat-item {
    display: flex;
    flex-direction: column;
}

.phb-stat-label {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 4px;
}

.phb-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}

.phb-rank-desc {
    color: #4a5568;
    line-height: 1.6;
}

.phb-main-footer {
    background: #2d3748;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.phb-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.phb-footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.phb-footer-text {
    color: #cbd5e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.phb-footer-links li {
    margin-bottom: 8px;
}

.phb-footer-links a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.phb-footer-links a:hover {
    color: white;
}

.phb-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* 关于我们页面样式 - gywm前缀 */
.gywm-about-body {
    min-height: 100vh;
    background: #f8f9fa;
}

.gywm-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
}

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

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

.gywm-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.gywm-site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.gywm-site-title a {
    color: white;
}

.gywm-main-nav {
    display: flex;
    gap: 30px;
}

.gywm-nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.gywm-nav-link:hover,
.gywm-nav-link.gywm-active {
    background: rgba(255,255,255,0.2);
}

.gywm-page-hero {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 60px 20px;
    text-align: center;
}

.gywm-hero-title {
    font-size: 2.5rem;
    color: #2d3748;
    font-weight: 800;
    margin-bottom: 10px;
}

.gywm-hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
}

.gywm-intro-section,
.gywm-mission-section,
.gywm-values-section,
.gywm-stats-section,
.gywm-contact-section {
    padding: 60px 20px;
}

.gywm-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gywm-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gywm-intro-image img {
    width: 100%;
    border-radius: 12px;
}

.gywm-section-title {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 700;
}

.gywm-section-title.gywm-center {
    text-align: center;
}

.gywm-intro-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

.gywm-mission-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.gywm-mission-card:hover {
    transform: translateY(-5px);
}

.gywm-mission-icon {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
}

.gywm-mission-icon img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.gywm-mission-title {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
}

.gywm-mission-text {
    color: #718096;
    line-height: 1.7;
}

.gywm-values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gywm-value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.gywm-value-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.gywm-value-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.gywm-value-title {
    font-size: 1.4rem;
    color: #2d3748;
    font-weight: 700;
}

.gywm-value-text {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.gywm-stat-card {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.gywm-stat-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gywm-stat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.gywm-stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.gywm-stat-label {
    font-size: 1.2rem;
}

.gywm-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.gywm-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gywm-contact-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.gywm-contact-title {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.gywm-contact-text {
    color: #667eea;
    font-size: 1.1rem;
}

.gywm-contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.gywm-form-title {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.gywm-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gywm-form-input,
.gywm-form-textarea {
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.gywm-form-input:focus,
.gywm-form-textarea:focus {
    border-color: #667eea;
}

.gywm-form-submit {
    padding: 12px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.gywm-form-submit:hover {
    transform: translateY(-2px);
}

.gywm-main-footer {
    background: #2d3748;
    color: white;
    padding: 50px 20px 20px;
}

.gywm-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.gywm-footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.gywm-footer-text {
    color: #cbd5e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.gywm-footer-links li {
    margin-bottom: 8px;
}

.gywm-footer-links a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.gywm-footer-links a:hover {
    color: white;
}

.gywm-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .ecyh-banner-container,
    .rmyh-comics-grid,
    .fldh-category-wrapper,
    .gywm-intro-grid,
    .gywm-mission-grid,
    .gywm-stats-grid,
    .gywm-contact-content {
        grid-template-columns: 1fr;
    }

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

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