     /* 修改sweetalert2样式 */
     .swal2-popup {
           width: 280px !important;
           padding: 10px !important;
     }

     .swal2-title {
           font-size: 16px !important;
     }

     .swal2-html-container {
           font-size: 14px !important;
           line-height: 1.4 !important;
           margin-bottom: 6px !important;
     }

     .swal2-actions button {
           padding: 5px 15px !important;
           font-size: 14px !important;
     }


     .hidden {
      display: none;
}

/* 全局样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-weight: 300;
}

/* 容器宽度 */
.container-main {
    width: 1200px;
    margin: 0 auto;
}

/* 主色调 */
.text-primary {
    color: #fc6976;
}

.bg-primary {
    background-color: #fc6976;
}

.border-primary {
    border-color: #fc6976;
}

/* 无圆角风格 */
.no-rounded {
    border-radius: 0 !important;
}

/* 按钮样式 */
.btn-primary {
    background-color: #fc6976;
    color: white;
    border: none;
    padding: 8px 24px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid #fc6976;
    color: #fc6976;
    background: transparent;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #fc6976;
    color: white;
}

/* 输入框样式 */
.input-field {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: #fc6976;
}

/* 页眉样式 */
.header-top {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

/* 导航栏样式 */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-link {
    color: #333;
    padding: 12px 20px;
    display: inline-block;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #fc6976;
}

.nav-link.active {
    color: #fc6976;
}

/* 页脚样式 */
.footer {
    background-color: #2d2d2d;
    color: #999;
    padding: 40px 0 20px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-weight: 400;
}

.footer-section p,
.footer-section a {
    color: #999;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #fc6976;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

/* Banner样式 */
.banner {
    background: linear-gradient(135deg, #fc6976 0%, #ff8a92 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 漫画卡片样式 */
.manhua-card {
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.manhua-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.manhua-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.manhua-card-title {
    padding: 12px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 章节列表样式 */
.chapter-item {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.chapter-item:hover {
    background-color: #f9f9f9;
}

.chapter-item.free::after {
    content: "免费";
    color: #52c41a;
    font-size: 12px;
}

.chapter-item.paid::after {
    content: "付费";
    color: #fc6976;
    font-size: 12px;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 16px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #fc6976;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

/* 充值选项 */
.recharge-option {
    border: 1px solid #ddd;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.recharge-option:hover,
.recharge-option.selected {
    border-color: #fc6976;
    background-color: rgba(252, 105, 118, 0.05);
}

.recharge-option .amount {
    font-size: 24px;
    font-weight: 500;
    color: #fc6976;
}

.recharge-option .price {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* 协议弹窗 */
.protocol-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.protocol-content {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.protocol-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.protocol-body {
    padding: 20px;
}

/* 标签样式 */
.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 12px;
    margin-right: 8px;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a {
    padding: 8px 16px;
    border: 1px solid #ddd;
    color: #666;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #fc6976;
    color: white;
    border-color: #fc6976;
}

/* 网站主色样式 */
.text-pink-500 {
    color: #fb1251;
}

.text-pink-600 {
    color: #fb1251;
}

.bg-pink-500 {
    background-color: #fb1251;
}

.bg-pink-600 {
    background-color: #fb1251;
}

.bg-pink-50 {
    background-color: #ffe2e2;
}

.border-pink-500 {
    border-color: #fb1251;
}

.hover\:bg-pink-600:hover {
    background-color: #fb1251;
}

.hover\:bg-pink-100:hover {
    background-color: #ffe2e2;
}

.hover\:text-pink-600:hover {
    color: #fb1251;
}

/* 圆角风格 */
.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

/* 阴影效果 */
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* 过渡效果 */
.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* 响应式布局 */
.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.grid {
    display: grid;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.ml-64 {
    margin-left: 16rem;
}

.ml-6 {
    margin-left: 1.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mr-6 {
    margin-right: 1.5rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-2 {
    padding: 0.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.w-full {
    width: 100%;
}

.w-800 {
    width: 800px;
}

.w-64 {
    width: 16rem;
}

.w-48 {
    width: 12rem;
}

.w-32 {
    width: 8rem;
}

.w-10 {
    width: 2.5rem;
}

.h-screen {
    height: 100vh;
}

.h-48 {
    height: 12rem;
}

.h-10 {
    height: 2.5rem;
}

.h-4 {
    height: 1rem;
}

.object-cover {
    object-fit: cover;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.top-16 {
    top: 4rem;
}

.left-0 {
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-1000 {
    z-index: 1000;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-4xl {
    font-size: 2.5rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.font-normal {
    font-weight: 400;
}

.text-white {
    color: #ffffff;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-700 {
    color: #4b5563;
}

.text-gray-600 {
    color: #6b7280;
}

.text-gray-500 {
    color: #9ca3af;
}

.text-gray-400 {
    color: #d1d5db;
}

.text-gray-300 {
    color: #e5e7eb;
}

.text-green-500 {
    color: #10b981;
}

.border {
    border-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-r {
    border-right-width: 1px;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-gray-400 {
    border-color: #9ca3af;
}

.border-gray-500 {
    border-color: #6b7280;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.hover\:opacity-90:hover {
    opacity: 0.9;
}

/* 自定义样式 */
.header {
    background-color: #ffe2e2;
    border-bottom: 1px solid #fb1251;
}

.sidebar {
    background-color: #ffe2e2;
    border-right: 1px solid #fb1251;
}

.footer {
    background-color: #ffe2e2;
    border-top: 1px solid #fb1251;
}

.banner {
    background: linear-gradient(135deg, #ffe2e2, #fb1251);
}

.comic-card {
    transition: transform 0.3s ease;
}

.comic-card:hover {
    transform: translateY(-5px);
}

.form-input {
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #fb1251;
}

.chapter-item {
    transition: background-color 0.3s ease;
}

.chapter-item:hover {
    background-color: #f8f9fa;
}

.recharge-option {
    transition: transform 0.3s ease;
}

.recharge-option:hover {
    transform: translateY(-5px);
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #ffe2e2;
    color: #fb1251;
    border-radius: 16px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.breadcrumb {
    background-color: white;
    border-radius: 8px;
    padding: 12px;
}

.chapter-content {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
}

.recharge-card {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}
