
        .profile-card {
            background: white;
            border-radius: 0px;
            box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
            max-width: 420px;
            width: 100%;
            overflow: hidden;
            border: 1px solid rgba(255, 182, 193, 0.3);
        }

        .profile-header {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffa8c5 100%);
            color: white;
            padding: 28px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .profile-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .profile-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .profile-header svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            position: relative;
            z-index: 1;
        }

        .profile-header h2 {
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }

        .profile-content {
            padding: 10px;
            background: linear-gradient(to bottom, #ffffff 0%, #fff9fc 100%);
        }

        .profile-item {
            display: flex;
            align-items: center;
            padding: 18px 16px;
            border-bottom: 1px solid #ffe4f0;
            transition: all 0.3s ease;
            border-radius: 0px;
            margin-bottom: 4px;
        }

        .profile-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .profile-item:hover {
            /* 粉色悬停效果 */
            background: linear-gradient(135deg, #fff0f6 0%, #ffe4f0 100%);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(255, 105, 180, 0.1);
        }

        .profile-item svg {
            width: 22px;
            height: 22px;
            margin-right: 16px;
            color: #ff6b9d;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .profile-item:hover svg {
            transform: scale(1.1);
        }

        .profile-item-label {
            color: #666;
            font-size: 14px;
            min-width: 10px;
            font-weight: 500;
        }

        .profile-item-separator {
            color: #ffb6c1;
            margin: 0 12px;
            font-weight: 300;
        }

        .profile-item-value {
            color: #333;
            font-size: 15px;
            font-weight: 500;
        }

        .profile-item.highlight {
            background: linear-gradient(135deg, #ffe4f0 0%, #ffd6e8 100%);
            border: 1px solid #ffb6c1;
            border-radius: 10px;
        }

        .profile-item.highlight .profile-item-value {
            /*color: #ff1493;*/
            font-weight: 600;
            font-size: 16px;
        }

        .profile-item.highlight svg {
            /*color: #ff1493;*/
        }

        @media (max-width: 480px) {
            .profile-card {
                border-radius: 0px;
                /*margin-top: 10px;*/
            }

            .profile-header {
                display: none;
                padding: 10px;
            }

            .profile-content {
                padding: 10px;
            }

            .profile-item {
                padding: 15px 12px;
            }
        }