   /* 全局样式 */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            background-image: url('https://zjw.1215420.xyz/images/bj.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        /* 毛玻璃效果 */
        .container {
            width: 90%;
            max-width: 800px;
            margin: 20px auto;
            background-color: rgba(255, 255, 255, 0.5);
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            position: relative;
            backdrop-filter: blur(10px);
            border-radius: 10px;
        }

        h1 {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
        }

        .basic-info {
            margin-bottom: 20px;
        }

        .basic-info p {
            margin: 5px 0;
        }

        .basic-info strong {
            font-weight: bold;
            margin-right: 10px;
        }

        .profile-photo {
            position: absolute;
            top: 20px;
            right: 50px;
            width: 100px;
            border: 1px solid #ddd;
            padding: 5px;
            background-color: #fff;
            border-radius: 5px;
        }

        .profile-photo img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }

        .content {
            margin-top: 20px;
        }

        .content h2 {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }

        .content p {
            text-indent: 2em;
            margin-bottom: 15px;
        }

        .content ul {
            list-style-type: disc;
            margin-left: 40px;
        }

        .content li {
            margin-bottom: 10px;
        }

        .carousel {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .carousel-item {
            min-width: 100%;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-item img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }

        .carousel-control.prev {
            left: 10px;
        }

        .carousel-control.next {
            right: 10px;
        }

        .works {
            margin-top: 20px;
        }

        .works h2 {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }

        .works ul {
            list-style-type: none;
            padding: 0;
        }

        .works li {
            margin-bottom: 10px;
        }

        /* 验证码弹窗样式 */
        #captchaModal {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            z-index: 1000;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        #captchaModal input {
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            width: 80%;
        }

        #captchaModal button {
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }

        #captchaModal button:hover {
            background-color: #0056b3;
        }

        #captchaError {
            color: red;
            display: none;
            margin-top: 10px;
        }

        #captchaDisplay {
            margin-left: 10px;
            font-weight: bold;
            cursor: pointer;
            color: #007BFF;
            text-decoration: underline;
        }

        #captchaDisplay:hover {
            color: #0056b3;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .container {
                width: 95%;
                padding: 15px;
            }

            h1 {
                font-size: 20px;
            }

            .profile-photo {
                width: 80px;
                top: 15px;
                right: 15px;
            }

            .carousel-item img {
                max-width: 90%;
            }

            .carousel-control {
                padding: 8px;
                font-size: 14px;
            }

            .content h2 {
                font-size: 18px;
            }

            .content p {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 18px;
            }

            .profile-photo {
                width: 60px;
                top: 10px;
                right: 10px;
            }

            .carousel-item img {
                max-width: 85%;
            }

            .carousel-control {
                padding: 6px;
                font-size: 12px;
            }

            .content h2 {
                font-size: 16px;
            }

            .content p {
                font-size: 12px;
            }
        }