/* ==================== 基础样式 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #0d0d12;
    color: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #ff4757;
}

/* ==================== 容器 ==================== */
.box {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.topzwf {
    height: 20px;
}

/* ==================== 头部导航 ==================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header .left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header .logo img {
    height: 40px;
    display: block;
}

.header .nav {
    display: flex;
    gap: 8px;
}

.header .nav .ta {
    padding: 10px 20px;
    color: #a0a0b0;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    display: block;
}

.header .nav .ta:hover,
.header .nav .ta.on {
    color: #fff;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
}

.header .right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
}

/* 搜索框 */
.search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    width: 220px;
    outline: none;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
}

/* 用户入口 */
.user-entry {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-entry .login-link,
.user-entry .register-link {
    color: #a0a0b0;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
}

.user-entry .login-link:hover,
.user-entry .register-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.user-entry .register-link {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #fff;
}

.user-entry .register-link:hover {
    transform: scale(1.05);
}

.user-entry .separator {
    color: #666;
}

.user-entry .j-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* ==================== 轮播图 ==================== */
.lbt {
    margin-bottom: 30px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(26, 26, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 480px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide .li {
    display: flex;
    gap: 50px;
    align-items: center;
}

.carousel-slide .img {
    flex-shrink: 0;
    width: 280px;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.carousel-slide .info {
    flex: 1;
}

.carousel-slide .top {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.carousel-slide .name {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #fff 0%, #ffcccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-slide .text {
    font-size: 16px;
    color: #a0a0b0;
    margin-bottom: 32px;
    line-height: 1.8;
}

.carousel-slide .btn {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.carousel-slide .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-nav.prev {
    left: 25px;
}

.carousel-nav.next {
    right: 25px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    width: 32px;
    border-radius: 6px;
}

/* ==================== 标签列表 ==================== */
.taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.taglist .item {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #a0a0b0;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.taglist .item:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

/* ==================== 主内容区域 ==================== */
.mian {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-bottom: 40px;
}

.mian .left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==================== 模块 ==================== */
.module {
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.module .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.module .title .h1 {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.module .title .h1 i {
    width: 4px;
    height: 22px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 2px;
    display: block;
}

.module .title .h1 text {
    font-size: 13px;
    color: #888;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.module .title .btns {
    display: flex;
    gap: 8px;
}

.module .title .btns .ta {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.module .title .btns .ta:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
}

.module .title .more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0b0;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px;
}

.module .title .more:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

/* ==================== 横向列表 ==================== */
.hlist {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: #ff4757 transparent;
    flex-wrap: wrap;
}

.hlist::-webkit-scrollbar {
    height: 6px;
}

.hlist::-webkit-scrollbar-track {
    background: transparent;
}

.hlist::-webkit-scrollbar-thumb {
    background: #ff4757;
    border-radius: 3px;
}

.hlist .li {
    flex-shrink: 0;
    width: calc(20% - 16px);
    transition: all 0.3s;
    display: block;
}

.hlist .li:hover {
    transform: translateY(-8px);
}

.hlist .img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hlist .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
}

.hlist .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hlist .li:hover .img img {
    transform: scale(1.08);
}

.hlist .zj {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
    color: #fff;
}

.hlist .name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hlist .tag {
    font-size: 13px;
    color: #888;
}

/* ==================== 网格列表 ==================== */
.list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.list .li {
    width: 146px;
    transition: all 0.3s;
    display: block;
}

.list .li:hover {
    transform: translateY(-5px);
}

.list .img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.list .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

.list .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.list .li:hover .img img {
    transform: scale(1.08);
}

.list .zj {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
    color: #fff;
}

.list .name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list .tag {
    font-size: 13px;
    color: #888;
}

/* ==================== 特殊列表 ==================== */
.slist {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
}

.slist .item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    align-items: center;
}

.slist .item:hover {
    background: rgba(35, 35, 50, 0.9);
    border-color: rgba(255, 71, 87, 0.3);
    transform: translateY(-3px);
}

.slist .item img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.slist .item .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slist .top {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffab00;
    margin-bottom: 8px;
    font-weight: 700;
}

.slist .name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.slist .text {
    font-size: 13px;
    color: #a0a0b0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slist .nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slist .ite {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    flex: 1;
}

.slist .ite:hover {
    background: rgba(35, 35, 50, 0.9);
    border-color: rgba(255, 107, 53, 0.3);
}

.slist .ite img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.slist .ite .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slist .ite .name {
    font-size: 14px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slist .ite .text {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== 右侧栏 ==================== */
.right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.right .hot,
.right .new {
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.right .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.right .title::before {
    content: "";
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 2px;
}

/* 热门排行 */
.right .hot .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-template-columns: none;
}

.right .hot .li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    width: 100%;
}

.right .hot .li:hover {
    background: rgba(255, 255, 255, 0.04);
}

.right .hot .comic,
.right .hot .comic2 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.right .hot .sort {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #888;
    flex-shrink: 0;
}

.right .hot .sort.t1,
.right .hot .sort.t2,
.right .hot .sort.t3 {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
}

.right .hot .img {
    width: 50px;
    height: 66px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.right .hot .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right .hot .info {
    flex: 1;
    min-width: 0;
}

.right .hot .name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.right .hot .text {
    font-size: 12px;
    color: #888;
}

.right .hot .icon {
    color: #ff4757;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s;
}

.right .hot .li:hover .icon {
    opacity: 1;
}

.right .hot .comic2 .name {
    font-size: 14px;
    font-weight: 500;
}

.right .hot .text2 {
    font-size: 12px;
    color: #888;
}

.right .hot .more {
    display: block;
    text-align: center;
    padding: 12px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    color: #a0a0b0;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.right .hot .more:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #fff;
    border-color: transparent;
}

/* 最新更新 */
.right .new .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.right .new .li {
    width: 82px;
    transition: all 0.3s;
    display: block;
}

.right .new .li:hover {
    transform: translateY(-5px);
}

.right .new .img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.right .new .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.right .new .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.right .new .li:hover .img img {
    transform: scale(1.08);
}

.right .new .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.right .new .name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.right .new .text {
    font-size: 11px;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== 友情链接 ==================== */
.friend {
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 40px;
}

.friend .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.friend .title .h1 {
    font-size: 22px;
    font-weight: 700;
}

.friend .title .line {
    font-size: 13px;
    color: #888;
}

.friend .list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    grid-template-columns: none;
}

.friend .list a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #a0a0b0;
    font-size: 13px;
    transition: all 0.3s;
}

.friend .list a:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.3);
}

/* ==================== 底部 ==================== */
.footbox {
    background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 12, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 20px;
    text-align: center;
}

.footbox .p {
    margin-bottom: 15px;
}

.footbox .p:first-child {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footbox .p a {
    color: #a0a0b0;
    font-size: 14px;
    transition: all 0.3s;
}

.footbox .p a:hover {
    color: #ff4757;
}

.footbox .p:last-child {
    color: #777;
    font-size: 13px;
}

/* 回到顶部 */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* ==================== 响应式 ==================== */
@media (max-width: 1200px) {
    .list {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .slist {
        grid-template-columns: 1fr;
    }
    
    .slist .nav {
        flex-direction: row;
    }
    
    .mian {
        grid-template-columns: 1fr;
    }
    
    .right .new .list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header .nav {
        display: none;
    }
    
    .carousel-slide .li {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-slide .name {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .box {
        padding: 0 15px;
    }
    
    .list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .right .new .list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header .search-input {
        width: 120px;
    }
    
    .carousel-slide .img {
        width: 220px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .list {
        grid-template-columns: 1fr;
    }
    
    .right .new .list {
        grid-template-columns: 1fr;
    }
    
    .header .box {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
    
    .header .left {
        gap: 20px;
    }
}

/* ==================== 分类页 ==================== */
.classify {
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 30px;
}

.classify .nav {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    gap: 15px;
}

.classify .nav:last-child {
    margin-bottom: 0;
}

.classify .nav .h1 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
    min-width: 60px;
    padding: 8px 0;
}

.classify .nav .ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.classify .nav .ul a {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    color: #a0a0b0;
    font-size: 14px;
    transition: all 0.3s;
}

.classify .nav .ul a:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #fff;
}

.classify .nav .ul a.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.3);
}

/* 分类页列表 */
.category .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.category .list .li {
    width: 160px;
    flex-shrink: 0;
}

/* 分页 */
.page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 20px;
}

.page .title {
    font-size: 14px;
    color: #888;
}

.page .ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.page .ul a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: #a0a0b0;
    font-size: 14px;
    transition: all 0.3s;
}

.page .ul a:hover:not(.disabled) {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.page .ul a.active,
.page .ul a.on {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.page .ul a.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* 分类页响应式 */
@media (max-width: 992px) {
    .classify .nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .classify {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .category .list .li {
        width: 140px;
    }
    
    .classify .nav .ul a {
        padding: 6px 14px;
        font-size: 13px;
    }
}

/* ==================== 最新更新页 ==================== */
.category .list .h1 {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 30px 0 20px;
    padding-left: 15px;
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%) 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category .list .h1:first-child {
    margin-top: 0;
}

.category .list .h1::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

/* ==================== 排行榜页 ==================== */
.hotbox .box.hot {
    display: flex !important;
    gap: 20px !important;
    margin-top: 20px !important;
    align-items: flex-start !important;
}

.hotbox .hotleft {
    width: 200px;
    flex-shrink: 0;
    background: rgba(26, 26, 35, 0.8);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hotbox .hotleft a {
    display: block;
    padding: 12px 20px;
    margin-bottom: 8px;
    color: #a0a0b0;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s;
}

.hotbox .hotleft a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #fff;
}

.hotbox .hotleft a.on {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.hotbox .hotright {
    flex: 1;
    background: rgba(26, 26, 35, 0.8);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hotbox .hotright .title {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 15px 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    font-size: 14px !important;
    color: #888 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.hotbox .hotright .title .ta {
    width: 60px !important;
    min-width: 60px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
}

.hotbox .hotright .title .ta1 {
    flex: 1 !important;
    padding-left: 15px !important;
    min-width: 0 !important;
}

.hotbox .hotright .title .ta2 {
    width: 120px !important;
    min-width: 120px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    margin-right: 100px !important;
}

.hotbox .hotright .list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    grid-template-columns: none !important;
}

.hotbox .hotright .list .li {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 15px 20px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 12px !important;
    transition: all 0.3s !important;
    border: 1px solid transparent !important;
    width: 100% !important;
    box-sizing: border-box !important;
    grid-template-columns: none !important;
    grid-column: auto !important;
}

.hotbox .hotright .list .li .sort {
    width: 60px !important;
    min-width: 60px !important;
    text-align: center !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #555 !important;
    flex-shrink: 0 !important;
}

.hotbox .hotright .list .li:nth-child(1) .sort {
    color: #ffd700 !important;
    font-size: 24px !important;
}

.hotbox .hotright .list .li:nth-child(2) .sort {
    color: #c0c0c0 !important;
    font-size: 22px !important;
}

.hotbox .hotright .list .li:nth-child(3) .sort {
    color: #cd7f32 !important;
    font-size: 20px !important;
}

.hotbox .hotright .list .li .comic {
    flex: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    cursor: pointer !important;
    min-width: 0 !important;
}

.hotbox .hotright .list .li .comic .img {
    width: 60px !important;
    height: 80px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    aspect-ratio: auto !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    position: relative !important;
}

.hotbox .hotright .list .li .comic .img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
}

.hotbox .hotright .list .li .comic .info {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.hotbox .hotright .list .li .comic .info .name {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 6px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.hotbox .hotright .list .li .comic .info .text {
    font-size: 13px !important;
    color: #888 !important;
    margin-bottom: 6px !important;
}

.hotbox .hotright .list .li .comic .info .tags {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.hotbox .hotright .list .li .comic .info .tags a {
    font-size: 12px !important;
    padding: 3px 10px !important;
    background: rgba(255, 107, 53, 0.1) !important;
    color: #ff6b35 !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    text-decoration: none !important;
}

.hotbox .hotright .list .li .heat {
    width: 120px !important;
    min-width: 120px !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    flex-shrink: 0 !important;
}

.hotbox .hotright .list .li .btn {
    width: 100px !important;
    min-width: 100px !important;
    padding: 10px 0 !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #a0a0b0 !important;
    font-size: 13px !important;
    transition: all 0.3s !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
}

.hotbox .hotright .list .li .btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3) !important;
}

/* 排行榜响应式 */
@media (max-width: 992px) {
    .hotbox .box.hot {
        flex-direction: column;
    }
    
    .hotbox .hotleft {
        width: 100%;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 12px;
    }
    
    .hotbox .hotleft a {
        margin-bottom: 0;
        white-space: nowrap;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .hotbox .hotright .title .ta2,
    .hotbox .hotright .list .li .heat {
        display: none;
    }
    
    .hotbox .hotright .list .li .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hotbox .hotright .list .li .comic .img {
        width: 50px;
        height: 66px;
    }
}

/* ==================== 漫画详情页 ==================== */
.comic-detail .topzwf {
    height: 20px;
}

/* 漫画信息区域 */
.comic-info {
    display: flex;
    gap: 40px;
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 40px;
}

.comic-info .cover {
    flex-shrink: 0;
}

.comic-info .cover .img {
    position: relative;
    width: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.comic-info .cover .img img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.comic-info .cover .status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.comic-info .info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comic-info .info .title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.comic-info .info .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.comic-info .info .meta .item {
    color: #a0a0b0;
    font-size: 14px;
}

.comic-info .info .meta .item strong {
    color: #fff;
    font-weight: 500;
}

.comic-info .info .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.comic-info .info .tags a {
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s;
    text-decoration: none;
}

.comic-info .info .tags a:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: white;
    border-color: transparent;
}

.comic-info .info .desc {
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comic-info .info .desc.expanded {
    -webkit-line-clamp: unset;
}

.comic-info .info .expand-btn {
    color: #ff6b35;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 25px;
    transition: color 0.3s;
}

.comic-info .info .expand-btn:hover {
    color: #ff4757;
}

.comic-info .info .actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.comic-info .info .actions .btn {
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.comic-info .info .actions .btn.read {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.comic-info .info .actions .btn.read:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.comic-info .info .actions .btn.collect {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0b0;
}

.comic-info .info .actions .btn.collect:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.comic-info .info .actions .btn.collect .txt2 {
    display: none;
}

.comic-info .info .actions .btn.collect.active {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.comic-info .info .actions .btn.collect.active .txt1 {
    display: none;
}

.comic-info .info .actions .btn.collect.active .txt2 {
    display: inline;
}

/* 章节列表区域 */
.chapter-list {
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 40px;
}

.chapter-list .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chapter-list .title span:first-child {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.chapter-list .title .sort {
    color: #a0a0b0;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.chapter-list .title .sort:hover {
    color: #ff6b35;
}

.chapter-list .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.chapter-list .list::-webkit-scrollbar {
    width: 6px;
}

.chapter-list .list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
}

.chapter-list .list::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.3);
    border-radius: 3px;
}

.chapter-list .list .item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
}

.chapter-list .list .item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateX(3px);
}

.chapter-list .list .item .chapter-name {
    flex: 1;
    color: #a0a0b0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chapter-list .list .item:hover .chapter-name {
    color: #ff6b35;
}

.chapter-list .list .item .chapter-tag {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.chapter-list .list .item .chapter-tag.vip {
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
    color: #333;
}

.chapter-list .list .item .chapter-tag.pay {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b35 100%);
    color: white;
}

.chapter-list .load-more {
    display: none;
    margin-top: 25px;
    text-align: center;
}

.chapter-list .load-more.show {
    display: block;
}

.chapter-list .load-more .btn {
    display: inline-block;
    padding: 12px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #a0a0b0;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.chapter-list .load-more .btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

/* 相关推荐区域 */
.related {
    background: rgba(26, 26, 35, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.related .title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.related .list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.related .list .item {
    text-decoration: none;
    transition: transform 0.3s;
}

.related .list .item:hover {
    transform: translateY(-5px);
}

.related .list .item .img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.related .list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related .list .item .name {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.related .list .item:hover .name {
    color: #ff6b35;
}

/* 漫画详情页响应式 */
@media (max-width: 1200px) {
    .chapter-list .list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .related .list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .comic-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .comic-info .cover .img {
        width: 200px;
    }
    
    .chapter-list .list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related .list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .comic-info {
        padding: 25px;
    }
    
    .comic-info .info .title {
        font-size: 24px;
    }
    
    .comic-info .info .actions {
        flex-direction: column;
    }
    
    .comic-info .info .actions .btn {
        width: 100%;
    }
    
    .chapter-list {
        padding: 20px;
    }
    
    .chapter-list .list {
        grid-template-columns: 1fr;
    }
    
    .related {
        padding: 20px;
    }
    
    .related .list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .related .list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comic-info .cover .img {
        width: 160px;
    }
}

/* ==================== 登录/注册页 ==================== */
.loginbody {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.login-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background: rgba(26, 26, 35, 0.9);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.login-left {
    flex: 1;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-section {
    text-align: center;
    color: white;
}

.brand-logo {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.brand-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.brand-content {
    margin-bottom: 40px;
}

.brand-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.brand-title span {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.brand-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.brand-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(26, 26, 35, 0.9);
    margin-left: -10px;
}

.brand-avatar:first-child {
    margin-left: 0;
}

.brand-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-users {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.login-right {
    flex: 1;
    padding: 50px 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 14px;
    color: #a0a0b0;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    color: #a0a0b0;
    margin-bottom: 8px;
    font-weight: 500;
}

.verification-code {
    position: relative;
    display: flex;
    gap: 12px;
}

.verification-code .form-input {
    flex: 1;
}

.form-group .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #a0a0b0;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.pcode-send,
.code_pic {
    flex-shrink: 0;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.pcode-send:hover,
.code_pic:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.code_pic {
    height: 46px;
    padding: 0;
    width: 120px;
    object-fit: cover;
}

.error-message {
    color: #ff4757;
    font-size: 12px;
    margin-top: 6px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #a0a0b0;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ff6b35;
}

.forgot-password {
    font-size: 13px;
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #ff4757;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.social-login {
    margin-bottom: 24px;
}

.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-divider span {
    padding: 0 16px;
    font-size: 13px;
    color: #a0a0b0;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #a0a0b0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.social-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.register-link {
    text-align: center;
    font-size: 14px;
    color: #a0a0b0;
}

.register-link a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.register-link a:hover {
    color: #ff4757;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
}

.login-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #a0a0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.login-footer a:hover {
    color: #ff6b35;
    transform: translateX(-4px);
}

/* 登录/注册页响应式 */
@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
        max-width: 500px;
    }
    
    .login-left {
        padding: 30px;
    }
    
    .login-right {
        padding: 30px;
    }
    
    .brand-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .login-page {
        padding: 20px 12px;
    }
    
    .login-left,
    .login-right {
        padding: 24px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .brand-title {
        font-size: 20px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .verification-code {
        flex-direction: column;
    }
    
    .pcode-send,
    .code_pic {
        width: 100%;
    }
}

/* ==================== 漫画阅读页面 ==================== */
.chapterbox {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.reader-main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeInUp 0.5s ease-out;
}

/* 阅读控制栏 */
.reader-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(26, 26, 35, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.control-left,
.control-right {
    display: flex;
    gap: 12px;
}

.control-center {
    flex: 1;
    text-align: center;
}

.control-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.chapter-title {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* 阅读进度指示器 */
.progress-container {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #ff4757 100%);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* 漫画内容区域 */
.rd-article-wr {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rd-article__pic {
    width: 100%;
    display: block;
    transition: all 0.3s ease;
}

.rd-article__pic.hide {
    display: none;
}

.rd-article__pic img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.rd-article__pic:hover img {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 35, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.modal-body {
    margin-bottom: 32px;
}

.vip-info,
.coin-info {
    margin-bottom: 24px;
}

.vip-text p,
.coin-text p {
    color: #a0a0b0;
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.6;
}

.current-coins,
.price-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-coins span:first-child,
.price-info span:first-child {
    color: #a0a0b0;
}

.coin-amount,
.chapter-price {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-vip,
.btn-recharge {
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-vip:hover,
.btn-recharge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

/* 阅读页面响应式 */
@media (max-width: 768px) {
    .reader-main-content {
        padding: 12px;
    }
    
    .reader-controls {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .control-left,
    .control-right {
        width: 100%;
        justify-content: center;
    }
    
    .chapter-title {
        font-size: 14px;
    }
    
    .control-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .modal-content {
        padding: 24px;
    }
}

/* ==================== 用户中心 ==================== */
.user-container {
    display: flex;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-sidebar {
    width: 260px;
    flex-shrink: 0;
}

.user-nav {
    background: rgba(26, 26, 35, 0.9);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.user-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-nav li {
    margin-bottom: 4px;
}

.user-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #a0a0b0;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.user-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 3px 3px 0;
}

.user-nav li a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    transform: translateX(4px);
}

.user-nav li a:hover::before {
    transform: scaleY(1);
}

.user-nav li a.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 71, 87, 0.15) 100%);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.user-nav li a.active::before {
    transform: scaleY(1);
}

.nav-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.user-nav li a:hover .nav-icon {
    transform: scale(1.1);
}

.user-content {
    flex: 1;
    min-width: 0;
}

.section-card {
    background: rgba(26, 26, 35, 0.9);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
}

.section-title svg {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.3));
}

.view-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.view-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transition: width 0.3s ease;
}

.view-more:hover {
    color: #ff4757;
    transform: translateX(4px);
}

.view-more:hover::after {
    width: 100%;
}

.clear-btn {
    padding: 10px 20px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 10px;
    color: #ff4757;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.clear-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,71,87,0.15), transparent);
    transition: left 0.5s ease;
}

.clear-btn:hover::before {
    left: 100%;
}

.clear-btn:hover {
    background: rgba(255, 71, 87, 0.2);
    border-color: rgba(255, 71, 87, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.25);
}

/* 个人主页头部 */
.user-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(26, 26, 35, 0.6) 0%, rgba(26, 26, 35, 0.9) 100%);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.user-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid transparent;
    background: linear-gradient(135deg, rgba(26, 26, 35, 1), rgba(26, 26, 35, 1)) padding-box,
                linear-gradient(135deg, #ff6b35, #ff4757) border-box;
    position: relative;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-avatar:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.3);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.username-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.username {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-badge {
    padding: 6px 16px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ff9500 100%);
    color: #333;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 183, 0, 0.3);
    animation: shimmer 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.vip-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.normal-badge {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #a0a0b0;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.user-bio {
    color: #a0a0b0;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.user-stats {
    display: flex;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 71, 87, 0.2) 100%);
    border-radius: 14px;
    color: #ff6b35;
    font-size: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: #a0a0b0;
    margin-top: 2px;
}

.user-actions {
    display: flex;
    gap: 12px;
}

.user-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.user-btn.primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.user-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.user-btn.primary:hover::before {
    left: 100%;
}

.user-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

.user-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #a0a0b0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.user-btn.secondary:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.35);
    color: #ff6b35;
    transform: translateY(-3px);
}

/* 漫画网格 */
.comics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.comic-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: slideInUp 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comic-item:nth-child(1) { animation-delay: 0.1s; }
.comic-item:nth-child(2) { animation-delay: 0.2s; }
.comic-item:nth-child(3) { animation-delay: 0.3s; }
.comic-item:nth-child(4) { animation-delay: 0.4s; }
.comic-item:nth-child(5) { animation-delay: 0.5s; }
.comic-item:nth-child(6) { animation-delay: 0.6s; }
.comic-item:nth-child(7) { animation-delay: 0.7s; }
.comic-item:nth-child(8) { animation-delay: 0.8s; }

.comic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.comic-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 107, 53, 0.1);
}

.comic-item:hover::before {
    opacity: 1;
}

.comic-cover {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.comic-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comic-item:hover .comic-cover::after {
    opacity: 1;
}

.comic-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comic-item:hover .comic-cover img {
    transform: scale(1.1);
}

.comic-content {
    padding: 16px;
    position: relative;
    z-index: 1;
}

.comic-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.comic-title:hover {
    color: #ff6b35;
    transform: translateX(4px);
}

.comic-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0px;
}

.comic-author,
.comic-chapter {
    font-size: 13px;
    color: #a0a0b0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comic-author::before,
.comic-chapter::before {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
}

.continue-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 71, 87, 0.2) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: #ff6b35;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.continue-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: white;
    border-color: transparent;
}

/* 最近阅读列表 */
.reading-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reading-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reading-item:nth-child(1) { animation-delay: 0.1s; }
.reading-item:nth-child(2) { animation-delay: 0.2s; }
.reading-item:nth-child(3) { animation-delay: 0.3s; }
.reading-item:nth-child(4) { animation-delay: 0.4s; }
.reading-item:nth-child(5) { animation-delay: 0.5s; }

.reading-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.reading-item:hover {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.08);
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.reading-item:hover::before {
    opacity: 1;
}

.reading-item .comic-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 0;
}

.reading-item .comic-cover {
    width: 100px;
    aspect-ratio: 3/4;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.reading-item:hover .comic-cover {
    transform: scale(1.05);
}

.reading-item .comic-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reading-item:hover .comic-cover img {
    transform: scale(1.1);
}

.reading-item .comic-details {
    flex: 1;
    min-width: 0;
}

.reading-item .comic-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.reading-item:hover .comic-title {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reading-item .comic-author,
.reading-item .comic-chapter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #a0a0b0;
    margin-bottom: 6px;
}

.reading-item .comic-author::before,
.reading-item .comic-chapter::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.action-buttons {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.continue-reading {
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.continue-reading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.continue-reading:hover::before {
    left: 100%;
}

.continue-reading:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

/* 订单表格 */
.order-table-container {
    overflow-x: auto;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.order-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #a0a0b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #d0d0d0;
    font-size: 14px;
}

.order-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comic-name-cell {
    color: white;
    font-weight: 500;
}

.chapter-cell,
.time-cell {
    color: #a0a0b0;
}

.bought-cell {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border-radius: 6px;
    font-size: 13px;
}

/* 表单样式 */
.layui-form-item {
    margin-bottom: 20px;
}

.layui-form-label {
    width: 110px !important;
    font-size: 14px;
    color: #a0a0b0;
    font-weight: 500;
}

.layui-input-block {
    margin-left: 140px !important;
}

.layui-input,
.layui-textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    color: white !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
}

.layui-input::placeholder,
.layui-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.layui-input:focus,
.layui-textarea:focus {
    border-color: rgba(255, 107, 53, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

.layui-textarea {
    min-height: 120px;
    resize: vertical;
}

.status-disabled {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #707080 !important;
    cursor: not-allowed !important;
    padding: 0 12px !important;
}

.label-tips {
    font-size: 12px;
    color: #707080;
    margin-top: 6px;
}

.label-required-symbol {
    color: #ff4757;
}

.layui-btn-danger {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%) !important;
    padding: 12px 32px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    border: none !important;
    transition: all 0.3s !important;
}

.layui-btn-danger:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4) !important;
}

.btn--submit {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%) !important;
}

/* 空状态 */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.empty-state::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.empty-icon {
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-text {
    font-size: 16px;
    color: #808090;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* 分页 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 10px;
}

.page-info {
    color: #a0a0b0;
    font-size: 15px;
    font-weight: 500;
}

.page-controls {
    display: flex;
    gap: 10px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #a0a0b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pagination a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
    transition: left 0.5s ease;
}

.pagination a:hover::before {
    left: 100%;
}

.pagination a:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.4);
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.pagination a.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.pagination a.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.pagination a.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination a.disabled:hover {
    transform: none;
    box-shadow: none;
}

.pagination a.prev,
.pagination a.next {
    min-width: 90px;
}

/* 用户中心响应式 */
@media (max-width: 1200px) {
    .comics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .user-container {
        flex-direction: column;
    }
    
    .user-sidebar {
        width: 100%;
    }
    
    .user-nav ul {
        display: flex;
        overflow-x: auto;
        gap: 8px;
    }
    
    .user-nav li {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .user-nav li a {
        white-space: nowrap;
    }
    
    .comics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .user-header {
        flex-direction: column;
        text-align: center;
    }
    
    .user-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .user-container {
        padding: 20px 12px;
    }
    
    .comics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .reading-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .action-buttons {
        width: 100%;
    }
    
    .continue-reading {
        width: 100%;
    }
    
    .pagination {
        flex-direction: column;
        gap: 16px;
    }
    
    .layui-form-label {
        width: 80px !important;
    }
    
    .layui-input-block {
        margin-left: 110px !important;
    }
}

@media (max-width: 480px) {
    .comics-grid {
        grid-template-columns: 1fr;
    }
    
    .user-stats {
        flex-direction: column;
        width: 100%;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .layui-form-item {
        display: flex;
        flex-direction: column;
    }
    
    .layui-form-label {
        width: 100% !important;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .layui-input-block {
        margin-left: 0 !important;
    }
}

/* ==================== 登录弹窗样式 ==================== */
.dialog-login {
    background: rgba(26, 26, 35, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.j-dialog-login-header,
.dialog-login__header {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-end;
}

.j-dialog-login-close,
.dialog-login__header--close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    color: #a0a0b0;
    transition: all 0.3s;
}

.j-dialog-login-close:hover,
.dialog-login__header--close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dialog-login_content {
    padding: 32px;
}

.tab-content {
    position: relative;
}

.j-tab-item,
.tab-item {
    display: none;
}

.j-tab-item.active,
.tab-item.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dialog-login_form {
    display: flex;
    flex-direction: column;
}

.form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.form-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.form-title span {
    color: #a0a0b0;
    font-size: 14px;
}

.j-dialog-login-mode {
    color: #ff6b35;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.j-dialog-login-mode:hover {
    color: #ff4757;
}

.form-item {
    margin-bottom: 20px;
}

.input-block {
    position: relative;
}

.input-block input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
    box-sizing: border-box;
}

.input-block input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-block input:focus {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.input-block--inline {
    display: flex;
    gap: 12px;
    align-items: center;
}

.input-block--inline input {
    flex: 1;
}

.code_pic,
.code_pic2 {
    flex-shrink: 0;
    height: 46px;
    width: 110px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: all 0.3s;
}

.code_pic:hover,
.code_pic2:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.pcode-send,
.tcode-send,
.sms-btn {
    flex-shrink: 0;
    padding: 0 20px;
    height: 46px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.pcode-send:hover,
.tcode-send:hover,
.sms-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.sms-btn[data-status="true"] {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.j-login-submit,
.j-register-submit,
.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.j-login-submit:hover,
.j-register-submit:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.j-login-submit.disabled-select,
.j-register-submit.disabled-select,
.submit-btn.disabled-select {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-item.clearfix {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.j-remember-link,
.remember-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0b0;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
}

.j-remember-link:hover,
.remember-link:hover {
    color: #ff6b35;
}

.remember-link .checkbox {
    color: #ff6b35;
    font-size: 18px;
}

.forgot-link {
    font-size: 14px;
}

.forgot-link a {
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-link a:hover {
    color: #ff6b35;
}

.tip-protocol {
    font-size: 12px;
    color: #707080;
    text-align: center;
}

.tip-protocol a {
    color: #ff6b35;
    text-decoration: none;
}

.tip-protocol a:hover {
    color: #ff4757;
}

.j-dialog-other-login,
.other-login {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.j-dialog-other-title,
.other-login .title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.other-login .title-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.other-login .title-text {
    padding: 0 16px;
    color: #a0a0b0;
    font-size: 13px;
}

.other-link {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.other-link a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #a0a0b0;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.other-link a:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    transform: translateY(-3px);
}

.other-login-qq:hover {
    color: #12b7f5;
    border-color: rgba(18, 183, 245, 0.3);
    background: rgba(18, 183, 245, 0.1);
}

.other-login-wx:hover {
    color: #07c160;
    border-color: rgba(7, 193, 96, 0.3);
    background: rgba(7, 193, 96, 0.1);
}

.other-login-sina:hover {
    color: #ff6b35;
}

.j-verify-err {
    padding: 10px 14px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 8px;
    color: #ff4757;
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.j-verify-err i {
    flex-shrink: 0;
}

/* 弹窗响应式 */
@media (max-width: 576px) {
    .dialog-login,
    .dialog-pay {
        max-width: 100%;
        margin: 0 16px;
        border-radius: 12px;
    }
    
    .dialog-login_content {
        padding: 20px;
    }
    
    .dialog-pay_body {
        padding: 16px;
    }
    
    .item--content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .paytype-box {
        flex-direction: column;
    }
    
    .form-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .other-link {
        gap: 16px;
    }
}

/* ==================== 关于我们页面 ==================== */
.main-content {
    min-height: calc(100vh - 140px);
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease-out;
}

/* 页面头部 */
.page-header {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 71, 87, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 16px;
    color: #a0a0b0;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* 关于部分 */
.about-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 2px;
}

/* 故事部分 */
.story-section,
.history-section {
    background: rgba(26, 26, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.story-section:hover,
.history-section:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
}

.story-section h3,
.history-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    color: #a0a0b0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* 历史时间线 */
.history-content {
    position: relative;
    padding-left: 30px;
}

.history-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #ff6b35 0%, rgba(255, 107, 53, 0.2) 100%);
    border-radius: 1px;
}

.history-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 20px;
    transition: transform 0.3s ease;
}

.history-item:hover {
    transform: translateX(8px);
}

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

.history-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.history-year {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.history-desc {
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.6;
}

/* 联系方式 */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.contact-item {
    background: rgba(26, 26, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-4px);
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item h4::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-radius: 6px;
}

.contact-item p {
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.8;
    margin: 8px 0;
}

/* 社交链接 */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.4);
}

/* 关于我们页面响应式 */
@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }
    
    .page-header {
        padding: 40px 16px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .story-section,
    .history-section,
    .contact-item {
        padding: 24px 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}
