* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.tip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 1000;
    display: none;
}
#content {
    width: 80%;
    margin: 0 auto;
}
html {
    overflow: auto;  /* 允许滚动 */
    scrollbar-width: none; /* 针对Firefox */
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #EEF2FF 0%, #ffffff 50%, #F3E8FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    -ms-overflow-style: none;  /* 针对IE和Edge */
    overflow: auto;  /* 允许滚动 */
}
body::-webkit-scrollbar {
    display: none;  /* 针对Chrome, Safari 和 Opera */
}

.container {
    width: 100%;
    max-width: 28rem;
    margin-bottom: 150px;
}

.profile-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.profile-header {
    height: 8rem;
    background: linear-gradient(to right, #8B5CF6, #A855F7);
    position: relative;
}

.profile-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3rem;
    width: 6rem;
    height: 6rem;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
}

.profile-content {
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}

h2 {
    color: #1F2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 0.75rem;
}

.icon-wrapper {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper.violet {
    background: #EDE9FE;
    color: #7C3AED;
}

.icon-wrapper.purple {
    background: #F3E8FF;
    color: #9333EA;
}

.icon-wrapper.indigo {
    background: #E0E7FF;
    color: #4F46E5;
}

.info-text {
    margin-left: 1rem;
    text-align: left;
}

.label {
    color: #6B7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.value {
    color: #1F2937;
    font-size: 1rem;
    font-weight: 600;
}