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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 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;
}

/* 通用容器 */
.ecmh-container, .ecmw-container, .ecmc-container, .ecmn-container, .ecmr-container, .ecma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 首页样式 ==================== */

/* 首页导航 */
.ecmh-main-header {
    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;
}

.ecmh-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ecmh-logo h1 a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.ecmh-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.ecmh-nav-menu a {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.ecmh-nav-menu a:hover,
.ecmh-nav-menu .ecmh-active {
    background: rgba(255,255,255,0.2);
}

/* 首页英雄区 */
.ecmh-hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.ecmh-hero-content {
    position: relative;
    height: 100%;
}

.ecmh-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecmh-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.ecmh-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ecmh-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ecmh-hero-button {
    background: #ff6b6b;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ecmh-hero-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

/* 首页特色区 */
.ecmh-features-section {
    padding: 4rem 0;
    background: #fff;
}

.ecmh-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2a5298;
}

.ecmh-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ecmh-feature-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ecmh-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ecmh-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.ecmh-feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2a5298;
}

.ecmh-feature-desc {
    color: #666;
    line-height: 1.8;
}

/* 首页热门推荐 */
.ecmh-popular-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.ecmh-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ecmh-manga-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.ecmh-manga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ecmh-manga-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ecmh-manga-info {
    padding: 1.5rem;
}

.ecmh-manga-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2a5298;
}

.ecmh-manga-genre {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ecmh-manga-summary {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ecmh-manga-link {
    display: inline-block;
    color: #2a5298;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border: 2px solid #2a5298;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ecmh-manga-link:hover {
    background: #2a5298;
    color: #fff;
}

/* 首页角色展示 */
.ecmh-characters-section {
    padding: 4rem 0;
    background: #fff;
}

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

.ecmh-character-item {
    text-align: center;
    transition: all 0.3s ease;
}

.ecmh-character-item:hover {
    transform: scale(1.05);
}

.ecmh-character-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2a5298;
}

.ecmh-character-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.ecmh-character-role {
    color: #666;
    font-size: 0.9rem;
}

/* 首页新闻 */
.ecmh-news-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.ecmh-news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ecmh-news-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.ecmh-news-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.ecmh-news-thumb {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.ecmh-news-content {
    padding: 1.5rem;
    flex: 1;
}

.ecmh-news-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.ecmh-news-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2a5298;
}

.ecmh-news-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ecmh-news-more {
    color: #ff6b6b;
    font-weight: bold;
}

.ecmh-news-more:hover {
    text-decoration: underline;
}

/* 首页页脚 */
.ecmh-main-footer {
    background: #1e3c72;
    color: #fff;
    padding: 3rem 0 1rem;
}

.ecmh-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ecmh-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ecmh-footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.ecmh-footer-links a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
}

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

.ecmh-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ==================== 作品页样式 ==================== */

.ecmw-works-body {
    background: #f0f2f5;
}

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

.ecmw-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ecmw-logo h1 a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.ecmw-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.ecmw-nav-menu a {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.ecmw-nav-menu a:hover,
.ecmw-nav-menu .ecmw-active {
    background: rgba(255,255,255,0.2);
}

.ecmw-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.ecmw-page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.ecmw-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.ecmw-filter-section {
    background: #fff;
    padding: 2rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ecmw-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ecmw-filter-btn {
    background: #f0f2f5;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ecmw-filter-btn:hover,
.ecmw-filter-active {
    background: #667eea;
    color: #fff;
}

.ecmw-works-section {
    padding: 3rem 0;
}

.ecmw-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.ecmw-work-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ecmw-work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ecmw-work-image-wrapper {
    position: relative;
    overflow: hidden;
}

.ecmw-work-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.ecmw-work-card:hover .ecmw-work-image {
    transform: scale(1.1);
}

.ecmw-work-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.ecmw-work-details {
    padding: 1.5rem;
}

.ecmw-work-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #667eea;
}

.ecmw-work-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.ecmw-work-genre {
    color: #999;
    font-size: 0.9rem;
}

.ecmw-work-rating {
    color: #ffa500;
    font-weight: bold;
}

.ecmw-work-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ecmw-work-stats {
    display: flex;
    gap: 1.5rem;
    color: #999;
    font-size: 0.85rem;
}

.ecmw-main-footer {
    background: #667eea;
    color: #fff;
    padding: 3rem 0 1rem;
}

.ecmw-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ecmw-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ecmw-footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.ecmw-footer-links a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
}

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

.ecmw-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ==================== 角色页样式 ==================== */

.ecmc-characters-body {
    background: #fafafa;
}

.ecmc-main-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ecmc-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ecmc-logo h1 a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.ecmc-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.ecmc-nav-menu a {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.ecmc-nav-menu a:hover,
.ecmc-nav-menu .ecmc-active {
    background: rgba(255,255,255,0.2);
}

.ecmc-page-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.ecmc-page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.ecmc-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.ecmc-characters-section {
    padding: 3rem 0;
}

.ecmc-characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.ecmc-character-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ecmc-character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ecmc-character-image-box {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.ecmc-character-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.ecmc-character-card:hover .ecmc-character-portrait {
    transform: scale(1.05);
}

.ecmc-character-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.ecmc-character-role-tag {
    background: rgba(245,87,108,0.9);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.ecmc-character-info {
    padding: 1.5rem;
}

.ecmc-character-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f5576c;
}

.ecmc-character-from {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ecmc-character-traits {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.ecmc-trait-badge {
    background: #f0f2f5;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.ecmc-character-bio {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ecmc-character-stats {
    margin-top: 1rem;
}

.ecmc-stat-item {
    margin-bottom: 0.5rem;
}

.ecmc-stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
    display: block;
}

.ecmc-stat-bar {
    background: #f0f2f5;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.ecmc-stat-fill {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    height: 100%;
    transition: all 0.3s ease;
}

.ecmc-main-footer {
    background: #f5576c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.ecmc-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ecmc-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ecmc-footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.ecmc-footer-links a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
}

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

.ecmc-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ==================== 新闻页样式 ==================== */

.ecmn-news-body {
    background: #f5f7fa;
}

.ecmn-main-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ecmn-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ecmn-logo h1 a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.ecmn-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.ecmn-nav-menu a {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.ecmn-nav-menu a:hover,
.ecmn-nav-menu .ecmn-active {
    background: rgba(255,255,255,0.2);
}

.ecmn-page-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.ecmn-page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.ecmn-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.ecmn-featured-news {
    padding: 3rem 0;
    background: #fff;
}

.ecmn-headline-card {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.ecmn-headline-image {
    width: 450px;
    height: 100%;
    object-fit: cover;
}

.ecmn-headline-content {
    flex: 1;
    padding: 2rem;
}

.ecmn-news-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.ecmn-tag-hot {
    background: #ff6b6b;
    color: #fff;
}

.ecmn-tag-event {
    background: #4facfe;
    color: #fff;
}

.ecmn-tag-new {
    background: #51cf66;
    color: #fff;
}

.ecmn-tag-rank {
    background: #ffa500;
    color: #fff;
}

.ecmn-tag-film {
    background: #9b59b6;
    color: #fff;
}

.ecmn-tag-product {
    background: #f093fb;
    color: #fff;
}

.ecmn-headline-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4facfe;
}

.ecmn-news-meta {
    display: flex;
    gap: 2rem;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.ecmn-headline-excerpt {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ecmn-news-section {
    padding: 3rem 0;
}

.ecmn-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.ecmn-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ecmn-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.ecmn-news-content {
    padding: 1.5rem;
}

.ecmn-news-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.ecmn-news-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ecmn-main-footer {
    background: #4facfe;
    color: #fff;
    padding: 3rem 0 1rem;
}

.ecmn-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ecmn-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ecmn-footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.ecmn-footer-links a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
}

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

.ecmn-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ==================== 推荐页样式 ==================== */

.ecmr-recommend-body {
    background: #f9f9f9;
}

.ecmr-main-header {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ecmr-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ecmr-logo h1 a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.ecmr-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.ecmr-nav-menu a {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.ecmr-nav-menu a:hover,
.ecmr-nav-menu .ecmr-active {
    background: rgba(255,255,255,0.2);
}

.ecmr-page-header {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.ecmr-page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.ecmr-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.ecmr-ranking-section {
    padding: 3rem 0;
}

.ecmr-ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.ecmr-tab-btn {
    background: #fff;
    border: 2px solid #fa709a;
    color: #fa709a;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.ecmr-tab-btn:hover,
.ecmr-tab-active {
    background: #fa709a;
    color: #fff;
}

.ecmr-rank-content {
    display: none;
}

.ecmr-rank-active {
    display: block;
}

.ecmr-rank-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ecmr-rank-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ecmr-rank-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.ecmr-rank-top {
    border-left: 4px solid #fa709a;
}

.ecmr-rank-number {
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    min-width: 50px;
    text-align: center;
}

.ecmr-rank-gold {
    color: #ffd700;
}

.ecmr-rank-silver {
    color: #c0c0c0;
}

.ecmr-rank-bronze {
    color: #cd7f32;
}

.ecmr-rank-cover {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

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

.ecmr-rank-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fa709a;
}

.ecmr-rank-genre {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ecmr-rank-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ecmr-rank-stats {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.ecmr-stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.ecmr-main-footer {
    background: #fa709a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.ecmr-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ecmr-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ecmr-footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.ecmr-footer-links a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
}

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

.ecmr-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ==================== 关于页样式 ==================== */

.ecma-about-body {
    background: #fff;
}

.ecma-main-header {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ecma-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ecma-logo h1 a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.ecma-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.ecma-nav-menu a {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.ecma-nav-menu a:hover,
.ecma-nav-menu .ecma-active {
    background: rgba(255,255,255,0.2);
}

.ecma-page-header {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.ecma-page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.ecma-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.ecma-intro-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.ecma-section-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #30cfd0;
}

.ecma-intro-paragraph {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.ecma-about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ecma-mission-section {
    padding: 4rem 0;
    background: #fff;
}

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

.ecma-mission-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ecma-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ecma-mission-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.ecma-mission-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #30cfd0;
}

.ecma-mission-text {
    color: #555;
    line-height: 1.8;
}

.ecma-advantages-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.ecma-text-center {
    text-align: center;
}

.ecma-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ecma-advantage-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ecma-advantage-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ecma-advantage-number {
    font-size: 3rem;
    font-weight: bold;
    color: #30cfd0;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.ecma-advantage-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.ecma-advantage-desc {
    color: #666;
    line-height: 1.8;
}

.ecma-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: #fff;
}

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

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

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

.ecma-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ecma-contact-section {
    padding: 4rem 0;
    background: #fff;
}

.ecma-contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-top: 2rem;
}

.ecma-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ecma-contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.ecma-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.ecma-contact-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #30cfd0;
}

.ecma-contact-text {
    color: #333;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.ecma-contact-desc {
    color: #666;
    font-size: 0.9rem;
}

.ecma-contact-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ecma-join-section {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.ecma-join-content {
    max-width: 800px;
    margin: 0 auto;
}

.ecma-join-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #30cfd0;
}

.ecma-join-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ecma-join-positions {
    color: #30cfd0;
    font-weight: bold;
    font-size: 1.1rem;
}

.ecma-main-footer {
    background: #30cfd0;
    color: #fff;
    padding: 3rem 0 1rem;
}

.ecma-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ecma-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ecma-footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.ecma-footer-links a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
}

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

.ecma-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .ecmh-hero-title { font-size: 2rem; }
    .ecmh-hero-subtitle { font-size: 1rem; }
    .ecmh-features-grid { grid-template-columns: 1fr; }
    .ecmh-popular-grid { grid-template-columns: 1fr; }
    .ecmh-characters-grid { grid-template-columns: repeat(2, 1fr); }
    .ecmh-news-item { flex-direction: column; }
    .ecmh-news-thumb { width: 100%; }

    .ecmw-works-grid { grid-template-columns: 1fr; }
    .ecmc-characters-grid { grid-template-columns: 1fr; }
    .ecmn-headline-card { flex-direction: column; }
    .ecmn-headline-image { width: 100%; height: 300px; }
    .ecmn-news-grid { grid-template-columns: 1fr; }

    .ecma-intro-content { grid-template-columns: 1fr; }
    .ecma-contact-content { grid-template-columns: 1fr; }
    .ecma-intro-image, .ecma-contact-image { order: -1; }
}