 body {
            font-weight: bold;
            font-family: "Microsoft YaHei", sans-serif !important;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            margin: 0;
            padding: 10px 20px 20px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .box {
            width: 100%;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .main {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #333;
            margin: 0 auto;
            border-radius: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 25px;
            margin-top: 48px;
            padding-top: 80px;
            max-width: 550px;
            position: relative;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
            transition: all 0.3s ease;
        }

        .main:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
        }

        .list {
            width: 100%;
            margin-bottom: 24px;
        }

        .item {
            padding: 16px 20px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 0;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(5px);
        }

        .item-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .item-left>img {
            width: 20px;
            transition: transform 0.3s ease;
        }

        .item:hover .item-left>img {
            transform: rotate(15deg);
        }

        .item-right {
            margin-left: 10px;
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            padding: 10px 20px;
            border-radius: 0;
            color: white;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .item-right:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .link {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            padding: 12px 16px;
            border-radius: 0;
            font-size: 14px;
            margin: 12px 0;
            margin-bottom: 24px;
            width: 90%;
            text-align: center;
            transition: all 0.3s ease;
        }

        .link:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .copy {
            width: 100%;
            text-align: center;
            margin-top: 36px;
            color: #666;
            font-size: 14px;
        }

        .logo {
            width: 100px;
            border-radius: 0;
            position: absolute;
            top: -50px;
            border: 3px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.1) rotate(5deg);
        }

        a {
            color: #333;
            text-decoration: none;
        }

        h2 {
            margin-bottom: 16px;
            color: #4a5568;
        }

        p {
            margin-bottom: 24px;
            color: #718096;
        }