/* 顶部栏 */
.top-bar {
    background-color: #f5f5f5;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.top-bar a {
    color: #666;
    text-decoration: none;
    margin-left: 10px;
}

.top-bar a:hover {
    color: #ff4444;
}

/* 头部 */
.header {
    background-color: white;
    padding: 20px 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 300px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-bar button {
    background-color: #16a0e0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.header-right a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

/* 导航栏 */
.nav-bar {
    background-color: #59d5eb;
    display: flex;
    padding: 0 200px;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.nav-bar a.active {
    background-color: #6de7f7;
}

.nav-bar a:hover {
    background-color: #16a0e0;
}



/* 主体内容 */
.main-content {
    display: flex;
    padding: 0 200px;
    margin-bottom: 30px;
}

.left-section {
    width: 70%;
    background-color: white;
    padding: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 3px solid #ff4444;
    padding-left: 10px;
}

.comic-list {
    display: flex;
    justify-content: space-between;
}

.comic-item {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.comic-cover {
    width: 80%;
    height: 150px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
}

.comic-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.comic-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.read-btn {
    background-color: white;
    color: #666;
    border: 1px solid #ddd;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
}

.right-section {
    width: 28%;
    margin-left: 2%;
}

.sidebar-box {
    background-color: white;
    padding: 15px;
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    border-left: 3px solid #ff4444;
    padding-left: 10px;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.sidebar-list li a {
    color: #333;
    text-decoration: none;
}

.sidebar-list li a:hover {
    color: #ff4444;
}

.rank-list li {
    display: flex;
    align-items: center;
}

.rank-number {
    width: 20px;
    height: 20px;
    background-color: #ddd;
    color: white;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    font-size: 12px;
}

/* 页脚 */
.footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 3px solid #16a0e0;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #ff4444;
}

.footer p {
    margin-bottom: 5px;
}