/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Microsoft YaHei', Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 25%, #98d8c8 50%, #a1c4fd 75%, #c2e9fb 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 10%, #ffd700 0%, transparent 30%),
        radial-gradient(circle at 90% 20%, #98d8c8 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, #a1c4fd 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, #ff9a9e 0%, transparent 30%),
        linear-gradient(135deg, #ff9a9e 0%, #fecfef 25%, #98d8c8 50%, #a1c4fd 75%, #c2e9fb 100%);
    background-size: cover;
    background-attachment: fixed;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 容器样式 */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 
                0 5px 20px rgba(255, 105, 180, 0.3),
                0 5px 20px rgba(152, 216, 200, 0.3),
                0 5px 20px rgba(161, 196, 253, 0.3);
    margin-top: 50px;
    margin-bottom: 50px;
    border: 3px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: borderGlow 3s ease-in-out infinite;
    box-sizing: border-box;
}

@keyframes borderGlow {
    0%, 100% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 
                0 5px 20px rgba(255, 105, 180, 0.3),
                0 5px 20px rgba(152, 216, 200, 0.3),
                0 5px 20px rgba(161, 196, 253, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 
                0 5px 25px rgba(255, 105, 180, 0.5),
                0 5px 25px rgba(152, 216, 200, 0.5),
                0 5px 25px rgba(161, 196, 253, 0.5); }
}

/* 头部容器样式 */
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    height: auto;
    flex-wrap: wrap;
}

/* Logo样式 */
.logo {
    animation: bounce 1s ease-in-out infinite;
    transition: transform 0.3s ease;
    align-self: center;
    width: 60px;
    height: 60px;
}

.logo:hover {
    transform: rotate(10deg) scale(1.1);
}

/* 音乐播放按钮样式 */
.music-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 0;
    /* 移除默认的bounce动画，只在播放时显示rotate动画 */
}

.music-btn:hover {
    transform: scale(1.2);
    background-color: rgba(255, 105, 180, 0.1);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

/* 移除播放时的旋转动画 */
.music-btn.playing .music-icon {
    /* animation: rotate 3s linear infinite; */
}

.music-icon {
    transition: all 0.3s ease;
}

/* 旋转动画 */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 弹跳动画 */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 音乐提示文字样式 */
.music-hint {
    position: absolute;
    top: 70px;
    right: 10px;
    background-color: rgba(255, 105, 180, 0.1);
    color: #ff69b4;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.2);
    animation: pulse 1s ease-in-out infinite;
    z-index: 10;
    transition: all 0.3s ease;
}

.music-hint.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

/* 标题样式 */
h1 {
    text-align: center;
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

p {
    text-align: center;
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-size: 1.2em;
    font-weight: bold;
}

h2 {
    text-align: center;
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

h3 {
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.4em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 表单样式 */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ff69b4;
    font-size: 1.1em;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 3px solid #ff69b4;
    border-radius: 15px;
    background-color: #fff0f5;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-group input[type="file"]:hover {
    border-color: #ff1493;
    background-color: #ffe4e1;
    transform: scale(1.02);
}

.form-group select {
    width: 100%;
    padding: 15px;
    border: 3px solid #ff69b4;
    border-radius: 15px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff69b4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    transition: all 0.3s ease;
}

.form-group select:hover {
    border-color: #ff1493;
    transform: scale(1.02);
}

/* 按钮样式 */
button {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 25%, #98d8c8 50%, #a1c4fd 75%, #ffd700 100%);
    background-size: 400% 400%;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    animation: pulse 2s infinite, gradientShift 3s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.6);
    animation: gradientShift 1s ease infinite;
}

button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* 加载状态样式 */
.loading {
    text-align: center;
    padding: 50px 0;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #fff0f5;
    border-top: 6px solid #ff69b4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    color: #ff69b4;
    font-weight: bold;
    font-size: 1.3em;
    margin: 15px 0;
}

.loading .timer {
    font-size: 1.2em;
    animation: pulse 1s ease-in-out infinite;
}

.loading .timer span {
    color: #ff1493;
    font-size: 1.5em;
    font-weight: bold;
}

.loading .tip {
    font-size: 1.1em;
    color: #ff69b4;
    font-style: italic;
}

/* 美化文件选择按钮 */
.form-group input[type="file"] {
    position: relative;
    overflow: hidden;
    background-color: #fff0f5;
    border: 3px solid #ff69b4;
    border-radius: 15px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #ff69b4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.form-group input[type="file"]::file-selector-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.6);
}

.form-group input[type="file"]:hover {
    border-color: #ff1493;
    background-color: #ffe4e1;
    transform: scale(1.02);
}

/* 结果样式 */
.result {
    margin-top: 30px;
}

/* 对比容器样式 */
.comparison-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-item h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.comparison-arrow {
    font-size: 3em;
    font-weight: bold;
    margin: 0 10px;
    align-self: center;
    animation: bounce 1s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-image-container {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    border: 3px solid transparent;
    border-radius: 15px;
    background-image: 
        linear-gradient(#fff0f5, #fff0f5),
        linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2),
                0 5px 15px rgba(152, 216, 200, 0.2),
                0 5px 15px rgba(161, 196, 253, 0.2);
    transition: all 0.3s ease;
}

.result-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3),
                0 8px 20px rgba(152, 216, 200, 0.3),
                0 8px 20px rgba(161, 196, 253, 0.3);
}

.result-image-container img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #ffd700;
}

.result-image-container img:hover {
    transform: scale(1.05);
}

/* 结果文字样式 */
.result-text {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background-color: white;
    border-radius: 20px;
    border-left: 5px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(90deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.8s ease-out 0.3s both;
}

.result-text p {
    margin: 15px 0;
    font-size: 1.3em;
    font-weight: bold;
}

.profession-highlight {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.5em;
    animation: pulse 1s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.encouragement {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 50%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-style: italic;
    margin-top: 20px;
    animation: bounce 1s ease-in-out infinite;
}

/* 结果按钮容器 */
.result-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideIn 0.8s ease-out 0.6s both;
}

.result-buttons button {
    flex: 1;
    min-width: 200px;
    margin-top: 0;
    animation: pulse 2s infinite;
}

.result-buttons button:hover {
    animation: none;
}

/* 图片预览样式 */
.photo-preview {
    margin-top: 15px;
    text-align: center;
    border: 3px dashed #ff69b4;
    border-radius: 15px;
    padding: 20px;
    background-color: #fff0f5;
    display: none;
    transition: all 0.3s ease;
}

.photo-preview:hover {
    transform: scale(1.02);
    border-color: #ff1493;
}

.photo-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-preview img:hover {
    transform: scale(1.05);
}

/* 其他职业输入框样式 */
#other-profession {
    width: 100%;
    padding: 15px;
    border: 3px solid #ff69b4;
    border-radius: 15px;
    font-size: 16px;
    background-color: white;
    transition: all 0.3s ease;
    font-family: 'Comic Sans MS', 'Microsoft YaHei', Arial, sans-serif;
}

#other-profession:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
    transform: scale(1.02);
}

/* 版权信息样式 */
.copyright {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #ff69b4;
    color: white;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.1em;
}

.copyright p {
    color: white;
    margin: 0;
}

/* 示例展示区域样式 */
.examples-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    border: 3px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.examples-section h2 {
    margin-bottom: 25px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.example-item {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.example-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.example-photo {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.example-photo h4 {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: bold;
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.example-photo img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #ffd700;
}

.example-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.example-arrow {
    font-size: 1.5em;
    font-weight: bold;
    align-self: center;
    margin: 0 5px;
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bounce 1s ease-in-out infinite;
}

/* 自定义模态框样式 */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
                0 5px 20px rgba(255, 105, 180, 0.3),
                0 5px 20px rgba(152, 216, 200, 0.3),
                0 5px 20px rgba(161, 196, 253, 0.3);
    border: 3px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: slideIn 0.3s ease;
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8em;
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #ff69b4;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: #fff0f5;
    color: #ff1493;
    transform: rotate(90deg);
}

.modal-body {
    margin-bottom: 25px;
}

.modal-body p {
    font-size: 1.3em;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.retry-btn {
    background: linear-gradient(135deg, #ff69b4 0%, #98d8c8 50%, #a1c4fd 100%);
    background-size: 400% 400%;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    min-width: 150px;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.6);
    animation: gradientShift 1s ease infinite;
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 基础样式 */
    body {
        font-size: 14px;
    }
    
    /* 容器样式 */
    .container {
        margin: 5px;
        padding: 15px;
    }
    
    /* 头部容器样式 */
    .header-container {
        flex-wrap: wrap;
        height: auto;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    /* Logo样式 */
    .logo {
        width: 45px;
        height: 45px;
    }
    
    /* 标题样式 */
    h1 {
        font-size: 1.6em;
        flex: 1 1 100%;
        margin: 5px 0;
        line-height: 1.2;
    }
    
    /* 音乐按钮样式 */
    .music-btn {
        align-self: center;
        margin-top: 0;
        width: 50px;
        height: 50px;
    }
    
    .music-icon {
        width: 30px;
        height: 30px;
    }
    
    /* 音乐提示文字样式 */
    .music-hint {
        position: static;
        margin-top: 5px;
        width: 100%;
        text-align: center;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    /* 其他标题样式 */
    h2 {
        font-size: 1.3em;
    }
    
    /* 按钮样式 */
    button {
        font-size: 14px;
        padding: 10px;
    }
    
    /* 图片预览样式 */
    .photo-preview {
        padding: 8px;
    }
    
    .photo-preview img {
        max-height: 180px;
    }
    
    /* 比较容器样式 */
    .comparison-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
        font-size: 2em;
    }
    
    /* 示例展示样式 */
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .example-comparison {
        flex-direction: column;
        gap: 10px;
    }
    
    .example-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
        font-size: 1.2em;
    }
    
    /* 示例照片样式 */
    .example-photo img {
        max-height: 150px;
    }
    
    /* 模态框样式 */
    .modal-content {
        padding: 15px;
        width: 95%;
    }
    
    .modal-header h3 {
        font-size: 1.3em;
    }
    
    .modal-body p {
        font-size: 1em;
    }
    
    .retry-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    /* 结果按钮样式 */
    .result-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* 表单样式 */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    .form-group input[type="file"],
    .form-group select,
    #other-profession {
        padding: 10px;
        font-size: 14px;
    }
    
    /* 初始提示文字样式 */
    .container > p {
        font-size: 1em;
        margin-bottom: 20px;
    }
}