:root {
            --primary-color: #8b4513;
            --secondary-color: #a67c52;
            --background-color: #f8f3e6;
            --accent-color: #d9c7a7;
            --text-color: #5a3921;
            --light-text: #f5f0e1;
        }
        
        body {
            font-family: 'STKaiti', 'KaiTi', 'SimSun', serif;
            min-height: 100vh;
            background: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            line-height: 1.8;
        }
        
        /* 宣纸纹理背景 */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L100 0 L100 100 L0 100 Z' fill='none' stroke='%23d9c7a7' stroke-width='0.5' stroke-opacity='0.3'/%3E%3C/svg%3E");
            background-size: 100px 100px;
            pointer-events: none;
            z-index: -2;
            opacity: 0.6;
        }
        
        /* 水印效果 - 文字水印 */
        .watermark {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.15;
            background: 
                repeating-linear-gradient(
                    30deg,
                    transparent,
                    transparent 40px,
                    rgba(150, 100, 50, 0.1) 40px,
                    rgba(150, 100, 50, 0.1) 80px
                );
        }
        
        .watermark::after {
            content: "诗 词 雅 韵";
            position: absolute;
            top: 50%;
            left: 50%;
            font-size: 70px;
            font-weight: bold;
            transform: translate(-50%, -50%) rotate(-25deg);
            color: rgba(150, 100, 50, 0.2);
            white-space: nowrap;
            letter-spacing: 20px;
            font-family: 'STKaiti', 'KaiTi', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        /* 随机分布的文字水印 */
        .watermark-text {
            position: absolute;
            pointer-events: none;
            opacity: 0.1;
            font-size: 24px;
            color: #8b4513;
            font-family: 'STKaiti', 'KaiTi', serif;
            animation: floatText 30s infinite linear;
        }
        
        /* 顶部导航栏 */
        .top-header {
            background: rgba(139, 69, 19, 0.95);
            color: var(--light-text);
            padding: 0 5%;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 11;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(217, 199, 167, 0.5);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            font-size: 28px;
        }
        
        .logo-text {
            font-size: 24px;
            letter-spacing: 3px;
            font-family: 'STXingkai', 'Xingkai SC', cursive;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 18px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .user-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-box input {
            padding: 8px 15px 8px 35px;
            border: 1px solid rgba(217, 199, 167, 0.3);
            border-radius: 20px;
            width: 200px;
            transition: all 0.3s ease;
        }
        
        .search-box input:focus {
            outline: none;
            width: 250px;
           /* background: linear-gradient(to right, #bbb2a8, #6c3e11);*/
        }
        
        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-color);
        }
        
        .login-btn {
            background: linear-gradient(to right, #a67c52, #8b5a2b);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
	.logout{
            display: none;
	}
        .queryall{
        	background: linear-gradient(to right, #bbb2a8, #8b5a2b);
        }
        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 30px;
        }
        
        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
            }
            
            .top-header {
                flex-direction: column;
                height: auto;
                padding: 15px;
                gap: 15px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }
            
            .user-actions {
                flex-wrap: wrap;
                justify-content: center;
            }
        }


        
        /* 书本设计 */
        .book {
            position: fixed;
            width: 100px;
            height: 140px;
            transform-style: preserve-3d;
            z-index: 5;
            filter: drop-shadow(0 10px 15px rgba(90, 57, 33, 0.3));
            animation: float 18s infinite ease-in-out;
        }
        
        .book::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #8b5a2b, #d2b48c);
            border-radius: 0 10px 10px 0;
            transform-origin: left center;
            transform: rotateY(0deg);
            transition: transform 1s ease;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .book::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 98%;
            height: 98%;
            background: #f5edd6;
            border-radius: 0 10px 10px 0;
            transform: translateZ(-10px);
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .book-spine {
            position: absolute;
            top: 5px;
            left: 0;
            width: 10px;
            height: 130px;
            background: linear-gradient(to right, #5a3921, #8b5a2b);
            transform: translateZ(-5px);
            border-radius: 5px 0 0 5px;
        }
        
        .book-title {
            position: absolute;
            top: 50%;
            left: 25px;
            transform: translateY(-50%) rotateY(30deg) rotateZ(90deg);
            font-size: 14px;
            font-weight: bold;
            color: var(--text-color);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            z-index: 2;
            font-family: 'STKaiti', 'KaiTi', serif;
            letter-spacing: 2px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        
        .book-pages {
            position: absolute;
            top: 5px;
            left: 5px;
            width: 90px;
            height: 130px;
            background: #f9f9f9;
            border-radius: 0 8px 8px 0;
            transform: translateZ(1px);
            box-shadow: inset 2px 0 5px rgba(0, 0, 0, 0.05);
        }
        
        /* 翻页动画 */
        @keyframes pageFlip {
            0%, 100% {
                transform: rotateY(0deg);
            }
            50% {
                transform: rotateY(-30deg);
            }
        }
        
        .book::before {
            animation: pageFlip 8s infinite ease-in-out;
        }
        
        /* 书本动画 */
        @keyframes float {
            0% {
                top: 20%;
                left: -10%;
                transform: translate(-50%, -50%) rotateY(30deg) rotateZ(-5deg);
            }
            25% {
                top: 80%;
                left: 15%;
                transform: translate(-50%, -50%) rotateY(60deg) rotateZ(5deg);
            }
            50% {
                top: 40%;
                left: 110%;
                transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            }
            75% {
                top: 85%;
                left: 85%;
                transform: translate(-50%, -50%) rotateY(-30deg) rotateZ(-5deg);
            }
            100% {
                top: 20%;
                left: -10%;
                transform: translate(-50%, -50%) rotateY(30deg) rotateZ(-5deg);
            }
        }
        
        /* 水印文字动画 */
        @keyframes floatText {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-100px) rotate(10deg);
            }
        }


        
        .decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            opacity: 0.08;
            z-index: -1;
        }
        
        .decoration-1 {
            top: 50px;
            right: 50px;
            border-radius: 50%;
            border: 8px solid var(--accent-color);
        }
        
        .decoration-2 {
            bottom: 100px;
            left: 40px;
            transform: rotate(45deg);
            border: 6px solid transparent;
            border-top: 6px solid var(--accent-color);
            border-right: 6px solid var(--accent-color);
        }
        
        .floating-text {
            position: absolute;
            font-size: 18px;
            color: rgba(139, 69, 19, 0.2);
            writing-mode: vertical-rl;
            font-family: 'STKaiti', 'KaiTi', serif;
            z-index: -1;
            animation: floatText 25s infinite linear;
        }
        
        .stamp {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 2px solid rgba(139, 69, 19, 0.3);
            border-radius: 5px;
            transform: rotate(15deg);
            opacity: 0.2;
            z-index: 1;
        }
        
        .stamp::before {
            content: "雅";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
            color: rgba(139, 69, 19, 0.3);
            font-family: 'STKaiti', 'KaiTi', serif;
        }
        
	.regiszc{
		display:none;
	}
        .login-content {
            background: var(--background-color);
            z-index: 2000;
            display: none;
            width: 90%;
            max-width: 500px;
            border-radius: 12px;
            padding: 30px 30px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
            align-items: center;
            position: fixed;
            border: 2px solid var(--accent-color);
	    top: 50%;
 	    left: 50%;
 	    transform: translate(-50%, -50%);
 	    overflow-x: hidden;
        }
        
        #tishi {
            background: var(--background-color);
            z-index: 2000;
            display: none;
            width: 90%;
            max-width: 500px;
            border-radius: 12px;
            padding: 30px 30px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
            align-items: center;
            position: fixed;
            border: 2px solid var(--accent-color);
	    top: 50%;
 	    left: 50%;
 	    transform: translate(-50%, -50%);
 	    overflow-x: hidden;
	    height: 50%;	
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: var(--primary-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-modal:hover {
            transform: rotate(90deg);
            color: #c00;
        }
        
        .modal-title {
            text-align: center;
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-family: 'STXingkai', 'Xingkai SC', cursive;
	    margin-top: -20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--text-color);
            font-size: 18px;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--accent-color);
            border-radius: 8px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.7);
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 5px rgba(139, 69, 19, 0.3);
        }
        
        .captcha-container {
            background: rgba(217, 199, 167, 0.3);
            padding: 5px;
            border-radius: 8px;
            margin: 5px 0;
            text-align: center;
        }
        
        .captcha-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .captcha-instruction {
            font-size: 16px;
            color: #E38F1E;;
            margin-bottom: 20px;
        }
        
        .captcha-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .captcha-char {
            background: white;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--accent-color);
            user-select: none;
        }
        
        .captcha-char:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .captcha-char.selected {
            background: var(--accent-color);
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .captcha-sequence {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            min-height: 60px;
        }
        
        .sequence-char {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px dashed var(--accent-color);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, #a67c52, #8b5a2b);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            font-family: 'STKaiti', 'KaiTi', serif;
            letter-spacing: 2px;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* 底部设计 */
        .footer {
            background: rgba(139, 69, 19, 0.95);
            color: var(--light-text);
            padding: 50px 5% 30px;
            margin-top: auto;
            border-top: 1px solid rgba(217, 199, 167, 0.5);
	    z-index: 6;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            font-family: 'STXingkai', 'Xingkai SC', cursive;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-color);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 8px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        
        .contact-icon {
            color: #F9F9F9;
            font-size: 20px;
            margin-top: 4px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--light-text);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /*end */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Serif SC', serif, 'Microsoft YaHei', sans-serif;
        }

        :root {
            --primary-color: #8B4513;
            --secondary-color: #D2B48C;
            --accent-color: #A0522D;
            --text-color: #4A2C2A;
            --paper-color: #F5F0E5;
            --shadow-color: rgba(0, 0, 0, 0.2);
        }

        body {
            color: var(--text-color);
            min-height: 100vh;
            background-size: 200px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            z-index: 10;
        }

        /* 卷轴样式 */
        .scroll-container {
            background: var(--scroll-color);
            padding: 10px;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--shadow-color);
            margin-bottom: 30px;
            position: relative;
        }

        .scroll-container::before,
        .scroll-container::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 40px;
            background: repeating-linear-gradient(
                90deg,
                var(--scroll-color),
                var(--scroll-color) 5px,
                #CD853F 5px,
                #CD853F 10px
            );
            border-radius: 8px;
        }

        .scroll-container::before {
            left: -20px;
        }

        .scroll-container::after {
            right: -20px;
        }

        /* 纸张样式 */
        .paper {
            background: var(--paper-color);
            padding: 30px;
            border-radius: 5px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
            position: relative;
            min-height: 500px;
        }

        .paper::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 30px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
        }

        /* 导航栏样式 */
        .nav-container {
            margin-bottom: 30px;
        }

        .nav-scroll {
            background: var(--scroll-color);
            padding: 10px 50px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgb(43, 26, 26);;
        }

        nav {
            display: flex;
            justify-content: space-around;
            background: var(--paper-color);
            padding: 15px;
            border-radius: 8px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 18px;
            font-weight: bold;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s;
            padding: 5px 15px;
            border-radius: 5px;
        }

        nav a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        nav a i {
            font-size: 24px;
            margin-bottom: 5px;
        }

        nav a.active {
            background: var(--accent-color);
            color: white;
        }

        /* 标题样式 */
        .section-title {
            text-align: center;
            margin: 20px 0 30px;
            position: relative;
        }

        .section-title h1 {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 28px;
            box-shadow: 0 5px 15px var(--shadow-color);
        }

        .section-title::before,
        .section-title::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 30%;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--accent-color), transparent);
        }

        .section-title::before {
            left: 0;
        }

        .section-title::after {
            right: 0;
        }

        /* 列表样式 */
        .list-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .list-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .list-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .list-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--accent-color);
        }

        .list-item h3 {
            color: var(--accent-color);
            margin-bottom: 10px;
            font-size: 22px;
            border-bottom: 1px dashed var(--secondary-color);
            padding-bottom: 8px;
        }

        .list-item p {
            margin: 5px 0;
            font-size: 16px;
	    color: #6f6f6f;
	    font-weight: 900;
        }

        .list-item .meta {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 14px;
            color: #888;
        }

        /* 详情页样式 */
        .detail-container {
            padding: 30px;
        }

        .detail-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px dashed var(--secondary-color);
        }

        .detail-header h1 {
            font-size: 36px;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .detail-content {
            line-height: 1.8;
        }

        .detail-section {
            margin-bottom: 25px;
        }

        .detail-section h2 {
            font-size: 24px;
            color: var(--accent-color);
            margin-bottom: 15px;
            padding-left: 15px;
            border-left: 4px solid var(--accent-color);
        }

        .detail-section p {
            margin: 10px 0;
            font-size: 18px;
        }

        .detail-section .sub-section {
            margin-left: 20px;
        }

        .detail-section .sub-section h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin: 15px 0 8px;
        }

        .back-button {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 25px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .back-button:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        /* 朗读按钮 */
        .speak-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 20px;
            right: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }

        .speak-btn:hover {
            transform: scale(1.1);
            background: var(--accent-color);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .list-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            nav {
                flex-wrap: wrap;
            }
            
            nav a {
                width: 45%;
                margin: 5px;
            }
            
            .section-title h1 {
                font-size: 22px;
                padding: 8px 20px;
            }
        }

        @media (max-width: 480px) {
            nav a {
                width: 100%;
            }
            
            .detail-header h1 {
                font-size: 28px;
            }
        }

        /* 飞花令输入 */
        .feihua-input {
            text-align: center;
            margin: 30px 0;
        }

        .feihua-input input {
            padding: 12px 20px;
            width: 300px;
            max-width: 80%;
            border: 2px solid var(--accent-color);
            border-radius: 50px;
            font-size: 18px;
            background: rgba(255, 255, 255, 0.9);
        }

        .feihua-input button {
            padding: 12px 25px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            margin-left: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .feihua-input button:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        /* 诗人卡片 */
        .poet-card {
            display: flex;
            align-items: center;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .poet-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .poet-info {
            flex-grow: 1;
        }

        .poet-info h3 {
            font-size: 24px;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .poet-info p {
            margin: 5px 0;
            font-size: 16px;
            color: #666;
        }
	.mengban,.zhezhao{
		position: fixed; 
		top: 0px; 
		left: 0px; 
		width: 100%; 
		height: 100%; 
		background-color: rgba(0, 0, 0, 0.5); 
		z-index: 11;
		display:none;	
	}
	.register{
                 color: #fbfbfb;
                 float: right;
                 padding: 2px;
                 background-color: #53321a;
                 margin: 1%;
                 border-radius: 6px;
                 font-family: 'STKaiti', 'KaiTi', serif;
        }

	.contenttshi {
            background-color: var(--background-color);
            width: 90%;
            max-width: 450px;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: translateY(50px);
            transition: transform 0.4s ease;
            text-align: center;
        }

        .contenttshi {
            transform: translateY(0);
        }



        .captcha-topsty {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 25px 0;
            position: relative;
            height: 100px;
        }

       .fa-xmark, .fa-check {
            font-size: 60px;
            width: 100px;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

       .fa-check {
            color: #4CAF50;
            background-color: rgba(76, 175, 80, 0.1);
            animation: success 1.5s infinite;
        }

       .fa-xmark {
            color: red;
            animation: fail 1.5s infinite;
            background-color:rgba(175, 76, 76, 0.1);;
        }

        @keyframes success {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
            }
            70% {
                box-shadow: 0 0 0 25px rgba(76, 175, 80, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
            }
        }
        @keyframes fail {
            0% {
                box-shadow: 0 0 0 0 rgba(175, 76, 76, 0.4);
            }
            70% {
                box-shadow: 0 0 0 25px rgba(175, 76, 76, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(175, 76, 76, 0);
            }	
        }

        .submit-btntopsty, .tsregister {
            display: inline-block;
            padding: 12px 30px;
            margin: 10px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }

        .submit-btntopsty {
            background-color: #4CAF50;
            color: white;
            min-width: 120px;
        }

        .submit-btntopsty:hover {
            background-color: #388E3C;
            transform: translateY(-2px);
        }

        .tsregister {
            background-color: #f1f1f1;
            color: #555;
            text-decoration: none;
            min-width: 120px;
        }

        .tsregister:hover {
            background-color: #e0e0e0;
            transform: translateY(-2px);
        }

        .button-topsty {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }


       .topsty-title {
            text-align: center;
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-family: 'STXingkai', 'Xingkai SC', cursive;
            margin-top: -20px;
        }
        .close-topsty {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: var(--primary-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-topsty:hover {
            transform: rotate(90deg);
            color: #c00;
        }
	.page-content{
		display:none;	
	}
	        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            position: relative;
        }

        .page-btn {
            background: none;
            border: 1px solid #b39f7c;
            color: #7a4f38;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 8px;
            font-family: 'SimSun', '宋体', serif;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            outline: none;
            background: #f8f4eb;
        }

        .page-btn:hover {
            background: #e8dfce;
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .page-btn.active {
            background: #7a4f38;
            color: #f8f4eb;
            font-weight: bold;
        }

        .page-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .page-info {
            margin: 0 15px;
            color: #7a4f38;
            font-size: 16px;
            min-width: 120px;
            text-align: center;
        }
	/*loadingCSS */
        .containerloading {
		background: var(--background-color);
		z-index: 11;
		display: none;
		width: 90%;
		max-width: 500px;
		border-radius: 12px;
		padding: 30px 30px;
		box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
		align-items: center;
		position: fixed;
		border: 2px solid var(--accent-color);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: 60%;
	}

        .containerloading::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 15px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
            border-radius: 3px 3px 0 0;
        }

        .poem-container {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .poem-title {
            font-size: 28px;
            margin-bottom: 30px;
            color: #8c4e1b;
            font-weight: normal;
            letter-spacing: 4px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .poem-content {
            font-size: 22px;
            line-height: 2.2;
            margin-bottom: 30px;
            color: #5e3c23;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .poem-line {
            display: block;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s forwards;
        }

        .poem-line:nth-child(1) { animation-delay: 0.5s; }
        .poem-line:nth-child(2) { animation-delay: 1.2s; }
        .poem-line:nth-child(3) { animation-delay: 1.9s; }
        .poem-line:nth-child(4) { animation-delay: 2.6s; }

        .loading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 40px;
        }

        .loading-text {
            font-size: 18px;
            color: #8c7b6b;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .loading-animation {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .brush {
            width: 35px;
            height: 35px;
            background: #332821;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            position: relative;
            margin-right: 20px;
            animation: brushMove 2s infinite alternate;
        }

        .brush::after {
            content: "";
            position: absolute;
            width: 18px;
            height: 50px;
            background: #d4c9a6;
            bottom: -25px;
            left: 8px;
            border-radius: 0 0 8px 8px;
            transform: rotate(45deg);
        }

        .ink-blot {
            width: 15px;
            height: 15px;
            background: #332821;
            border-radius: 50%;
            margin: 0 5px;
            opacity: 0;
        }

        .ink-blot:nth-child(1) { animation: inkDrop 1.8s infinite; }
        .ink-blot:nth-child(2) { animation: inkDrop 1.8s infinite 0.6s; }
        .ink-blot:nth-child(3) { animation: inkDrop 1.8s infinite 1.2s; }
        /* 动画定义 */
        @keyframes scrollOpen {
            0% {
                transform: scale(0.9) translateY(50px);
                opacity: 0;
            }
            100% {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

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

        @keyframes inkDrop {
            0% {
                transform: translateY(-15px) scale(0.8);
                opacity: 0;
            }
            50% {
                opacity: 1;
                transform: translateY(0) scale(1.1);
            }
            100% {
                transform: translateY(15px) scale(0.9);
                opacity: 0;
            }
        }

        @keyframes brushMove {
            0% {
                transform: rotate(-45deg) translateX(0);
            }
            100% {
                transform: rotate(-45deg) translateX(20px);
            }
        }
	.cyqal {
    width: 100%;
    font-size: 0; /* 消除空白间隙 */
}

.qcycs {
    text-decoration: underline;
    display: inline-block;
    text-align: center;
    padding: 10px;
    color: #804040;
    font-weight: bold;
    font-size: 16px; /* 恢复字体大小 */
    box-sizing: border-box;
    margin-right: 15px; /* 间距 */
}

.qcycs:last-child {
    margin-right: 0;
}
.questye{
        margin-top: 45%;
        background: #fff;
        margin-left: 10%;
        width: 80%;
}
.qfubc{
        width: 20%;
        z-index: 10;
        text-align: center;
}
.tag-active {
	background: var(--accent-color);
	color: white;
	padding: 8px;
	border-radius: 50px;
}
.tagal-active {
	background: var(--accent-color);
	color: white;
	padding: 8px;
	border-radius: 50px;
}
.userdetail{
	width: 50;
	height: 50px;
	border-radius: 50%;
	background: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 20px;
}
