body {
            font-family: "Inter", "Microsoft YaHei", sans-serif;
            background-color: #F5F7FA;
        }
        /* 隐藏滚动条但保留功能 */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

         .main-container {
            width: 100%;
            box-sizing: border-box;
            min-height: 900px;
            background: white;
            box-shadow: 0 40px 100px -20px rgba(0,0,0,0.1);
            border-radius: 1rem;
            padding-top: 20px;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .avatar-huge {
            width: 520px;
            height: 680px;
            object-fit: cover;
            border-radius: 40px;
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
        }
        .medal-icon {
            background: linear-gradient(135deg, #FFD700 0%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .info-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .info-card:hover {
            transform: translateY(-8px);
            background: #FFF;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        /* PC端固定元素居中 */
        @media (min-width: 768px) {
            .fixed {
                left: 50%;
                transform: translateX(-50%);
                max-width: 1280px;
            }

            .section-adaptive{
                padding-left:111px ; 
                padding-right:111px;
            }
        }