/*2026.1.25 爆改代码，从400多到1100多行 by白糖突然想到*/
* {
    box-sizing: border-box;
    margin: 0;
}

:root {
    --primary-color: #ff4848;
    --primary-gradient: #ff4848;
    --secondary-color: #ebbd92;
    --text-color: #333;
    --background-light: rgba(255, 255, 255, 0.6);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-highlight: rgba(255, 255, 255, 0.2);
}

p {
    margin: 15px;
}

body {
    font-family: myFont;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6190e8;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, rgb(97, 144, 232), rgb(167, 191, 232));
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, rgb(97, 144, 232), rgb(167, 191, 232));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -3;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    box-shadow:
        inset 0 0 200px rgba(255, 255, 255, 0.15),
        inset 0 0 100px rgba(255, 255, 255, 0.08),
        0 0 100px rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header {
    border-radius: 100px;
    margin-top: 5px;
    margin-left: 1%;
    margin-right: 1%;
    width: 98%;
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    color: black;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 0 2%;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.5);
}

.card_big {
    background-color: rgba(255, 255, 255, 0.9);
    width: 97%;
    border-radius: 20px;
    margin: 30px auto;
    padding: 40px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* 你妈的全给加上这模糊效果，手机端得卡成狗屎。mrz-2026.2.14 16:10*/
.card_m,
.card_s,
.kapian_heng,
.kapian_yinyue,
.card-sp,
.videoCard {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

button {
    border-radius: 25px;
    background: linear-gradient(135deg,
            rgba(255, 72, 72, 0.9) 0%,
            rgba(255, 107, 107, 0.9) 100%);
    color: rgb(255, 255, 255);
    border: 0;
    padding: 24px 24px;
    width: auto;
    min-width: 100px;
    transition: var(--transition-smooth);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 25px;
    z-index: 1;
    pointer-events: none;
}

button::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 30%,
            rgba(255, 255, 255, 0.05) 70%,
            rgba(255, 255, 255, 0.15) 100%);
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}

button span {
    position: relative;
    z-index: 2;
}

button:active {
    transform: translateY(0);
    box-shadow:
        0 5px 15px rgba(255, 72, 72, 0.25),
        inset 0 2px 0 rgba(0, 0, 0, 0.1);
}

button:disabled {
    background: linear-gradient(135deg,
            rgba(204, 204, 204, 0.7) 0%,
            rgba(187, 187, 187, 0.7) 100%);
    cursor: not-allowed;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.2);
}

button:disabled:hover {
    transform: none;
}

/* 角按钮的磨砂效果 */
.jiaoluobutton {
    border-radius: 25px;
    background: linear-gradient(135deg,
            rgba(255, 72, 72, 0.9) 0%,
            rgba(255, 107, 107, 0.9) 100%);
    transition: var(--transition-smooth);
    color: white;
    margin: 5%;
    padding: 12px;
    width: 90%;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.jiaoluobutton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 25px;
    z-index: 1;
    pointer-events: none;
}

.jiaoluobutton span {
    position: relative;
    z-index: 2;
}


/* 购买按钮的磨砂效果 */
.goumaibutton {
    width: 90%;
    margin: 15px 5% 5% 5%;
    border-radius: 25px;
    background: linear-gradient(135deg,
            rgba(255, 72, 72, 0.9) 0%,
            rgba(255, 107, 107, 0.9) 100%);
    color: white;
    font-weight: 600;
    padding: 12px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.goumaibutton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 25px;
    z-index: 1;
    pointer-events: none;
}

.goumaibutton span {
    position: relative;
    z-index: 2;
}

/* 表格中按钮的磨砂效果 */
table button {
    background: linear-gradient(135deg,
            rgba(255, 72, 72, 0.85) 0%,
            rgba(255, 107, 107, 0.85) 100%);
    padding: 12px 20px;
    font-size: 14px;
    min-width: 80px;
    margin: 10px;
}

/* 滚动按钮的磨砂效果 */
.scroll-btn {
    background: linear-gradient(135deg,
            rgba(255, 72, 72, 0.9) 0%,
            rgba(255, 107, 107, 0.9) 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 64px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;

}

.scroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.scroll-btn i {
    position: relative;
    z-index: 2;
}



.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
}



.nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.background-example::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3a6186, #89253e);
    z-index: 1;
}

.background-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-content {
    margin-top: 3rem;
    text-align: left;
}

.biaoti {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.biaoti::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.xiaobiaoti {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.text_big {
    margin: 20px auto;
    font-size: 18px;
    width: 80%;
    line-height: 1.8;
    text-align: justify;
    hyphens: auto;
}

.text_small {
    margin: 12px;
    font-size: 18px;
    line-height: 1.6;
}

.text {
    margin: 12px;
    font-size: 24px;
}

.text_js {
    margin: 8px;
    font-size: 16px;
    color: dimgray;
    line-height: 1.5;
}

.card_big:nth-child(1) {
    animation-delay: 0.1s;
}

.card_big:nth-child(2) {
    animation-delay: 0.2s;
}

.card_big:nth-child(3) {
    animation-delay: 0.3s;
}

.card_big:nth-child(4) {
    animation-delay: 0.4s;
}

.card_big:nth-child(5) {
    animation-delay: 0.5s;
}

.d_flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.d_flex_nz {
    width: 100%;
    transition: var(--transition-smooth);
    padding: 10px;
    border-radius: 10px;
    margin: 5px 0;
}

.d_flex_nz:hover {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.804);
}

.jcc {
    justify-content: center;
}

.card_m {
    background-color: rgba(255, 255, 255, 0.8);
    width: 80%;
    margin: 15px auto;
    padding: 25px;
    transition: var(--transition-smooth);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .card_m {
        width: 95%;
        margin: 10px auto;
        padding: 20px 15px;
        border-radius: 12px;
    }

    .card_m:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .card_m {
        width: 98%;
        padding: 15px 12px;
        margin: 8px auto;
        border-radius: 10px;
    }
}


.card_s {
    background-color: rgba(255, 255, 255, 0.8);
    width: 45%;
    min-width: 300px;
    margin: 15px;
    padding: 20px;
    border-radius: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

img {
    margin: 10px;
    transition: var(--transition-smooth);
    object-fit: cover;
    border-radius: 0.2cm;
}


.kapian_heng {
    width: 45%;
    min-width: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 15px;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.8);
}

.kapian_yinyue {
    width: 45%;
    min-width: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 15px;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.8);
}

.card-sp {
    margin: 10px;
    border-radius: 15px;
    transition: var(--transition-smooth);
    width: 240px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
}

.jieshao {
    margin: 10px;
    font-size: 16px;
    color: #7e7e7e;
}

.juzhongjs {
    margin: 8px;
    font-size: 14px;
    color: #7e7e7e;
    text-align: center;
}

.juzhongjs_b {
    margin: 6px;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
}

.juzhongjs_c {
    margin: 12px;
    font-size: 14px;
    color: #c2c2c2;
    text-align: center;
    line-height: 1.6;
}

.baikewenzi {
    text-align: start;
    font-size: 28px;
    margin: 20px;
}

.hero1 {
    height: 320px;
    border-radius: 15px;
    background: url("../img/hd2.webp");
    background-size: cover;
    background-position: center;
    justify-self: center;
    min-width: 100%;
}

.hero2 {
    height: 600px;
    width: 80%;
    border-radius: 20px;
    background: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);

    z-index: 1;
}

.big_title {
    justify-self: center;
    backdrop-filter: blur(20px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    color: #000000;
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
    position: relative;
    top: 30%;
    transform: translateY(-50%);
    padding: 20px;
    width: 80%;
    max-width: 400px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
}

th {
    padding: 18px 15px;
    background: rgb(255, 72, 72);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    text-align: center;
}

td {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.6);
}

source {
    background-color: white;
}

audio {
    width: 98%;
    border-radius: 25px;
    outline: none;
}


::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, var(--primary-color) 100%);
    transform: scale(1.05);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

a:hover {
    color: #ff6b6b;
}


.yejio {
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    width: 100%;
    margin: 0;
    margin-top: 30px;
    bottom: 0;
    left: 0;
}

iframe {
    border-radius: 15px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.videoCard {
    margin: 15px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    padding-bottom: 25px;
    transition: var(--transition-smooth);
    width: 340px;
    min-width: 340px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.Author_a {
    font-size: 15px;
    color: #525252;
    margin: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
}

.Author_a:hover {
    color: #c41313;
    background-color: rgba(255, 72, 72, 0.1);
}

.videoCard_title {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    line-height: 1.4;
}

.table-zhengshi {
    background-color: #ff3838;
    color: white;
    border-radius: 20px;
    padding: 8px 15px;
    margin: 10px;
    transition: var(--transition-smooth);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.table-zhengshi:hover {
    background-color: #ae2525;
    color: #dbdbdb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.table-ceshi {
    background-color: #b3ff38;
    color: rgb(0, 0, 0);
    border-radius: 20px;
    padding: 8px 15px;
    margin: 10px;
    transition: var(--transition-smooth);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.table-ceshi:hover {
    background-color: #25ae5c;
    color: #ededed;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

[style*="overflow-x: scroll"] {
    position: relative;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 5%,
            rgba(255, 255, 255, 0.8) 95%,
            rgba(255, 255, 255, 0) 100%);
    padding: 60px 40px 40px !important;
    border-radius: 12px;
    margin: 20px 0;
}

[style*="overflow-x: scroll"]::before {
    content: "左右滑动查看更多剧情透露";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 72, 72, 0.3);
    white-space: nowrap;
}

.wenzi_daduan {
    padding: 12px 15px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    transition: var(--transition-smooth);
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.wenzi_daduan:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.yewei {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yewei a {
    margin: 0 15px;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.yewei a:hover {
    color: #ffffff;
    background: rgba(255, 72, 72, 0.2);
    text-decoration: underline;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .header {
        height: 70px;
        width: 97%;
        padding: 0 1%;
    }

    .logo {
        font-size: 18px;
    }

    .card_big {
        width: 95%;
        margin: 15px auto;
        padding: 20px;
        border-radius: 15px;
    }

    .hero2 {
        height: 400px;
        width: 95%;
        border-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .big_title {
        font-size: 24px;
        padding: 20px;
        border-radius: 15px;
        width: 85%;
    }

    .biaoti {
        font-size: 24px;
        text-align: center;
    }

    .xiaobiaoti {
        font-size: 18px;
    }

    .text_big {
        font-size: 16px;
        width: 95%;
    }

    .text_small {
        font-size: 16px;
    }

    table {
        font-size: 14px;
    }

    th,
    td {
        padding: 10px 8px;
    }

    button,
    .jiaoluobutton,
    .goumaibutton {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media print {

    .header,
    button,
    .videoCard,
    iframe,
    audio {
        display: none;
    }

    body {
        background: white;
        color: black;
        padding-top: 0;
    }

    .card_big {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

.card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgb(var(--mdui-color-primary));
    font-weight: var(--mdui-typescale-title-medium-weight);
    letter-spacing: var(--mdui-typescale-title-medium-tracking);
}

.scroll-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900;
}

@media (max-width: 768px) {
    .scroll-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .scroll-btn {
        width: 100px;
        height: 100px;
        font-size: 64px;
    }
}

.comment-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comment-form-header {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: myFont;
    font-size: 16px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
    background: rgba(255, 255, 255, 1);
}

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

.comments-list {
    margin-top: 30px;
}

.comment-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.comment-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.comment-info {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.comment-time {
    color: #7e7e7e;
    font-size: 14px;
}

.comment-content {
    line-height: 1.6;
    color: var(--text-color);
    padding: 10px 0;
    font-size: 16px;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.reply-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.reply-btn:hover {
    background: rgba(255, 107, 107, 0.1);
}

.reply-form {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.replies {
    margin-left: 30px;
    margin-top: 20px;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 107, 107, 0.3);
}

.comment-stats {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

#commentCount {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.loading-comments {
    text-align: center;
    padding: 40px;
}

.empty-comments {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 2px dashed rgba(255, 107, 107, 0.3);
}

.comment-error {
    background: rgba(255, 72, 72, 0.1);
    border: 1px solid rgba(255, 72, 72, 0.3);
    color: #ff4848;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    text-align: center;
}

.comment-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    text-align: center;
}

.comment-item:nth-child(1) {
    animation-delay: 0.1s;
}

.comment-item:nth-child(2) {
    animation-delay: 0.2s;
}

.comment-item:nth-child(3) {
    animation-delay: 0.3s;
}

.comment-item:nth-child(4) {
    animation-delay: 0.4s;
}

.comment-item:nth-child(5) {
    animation-delay: 0.5s;
}

@media (max-width: 768px) {
    .comment-form {
        padding: 15px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-avatar {
        margin-bottom: 10px;
    }

    .replies {
        margin-left: 15px;
        padding-left: 15px;
    }

    .comment-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/*以下是拜年祭的CSS*/
.bnj_h1 {
    text-align: center;
    font-size: 50px;
    color: rgb(255, 213, 0);
    font-family: url("https://jingjumao.top/STXINGKA.TTF");
    margin: 20px;
}

.bnj_jiemudan {
    background-position: center;
    justify-self: center;
    border-radius: 0.3cm;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.642);
    height: 1200px;
    min-width: 90%;
}