/* 全局重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #e6edff;
    min-height: 100vh;
}

/* 主容器 */
.wode-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #e6edff;
}

/* 顶部导航栏 */
.wode-header {
    background: linear-gradient(to bottom, #4080ff, #e6edff);
    display: flex;
    align-items: center;
    padding: 16px;
    height: 80px;
    position: relative;
}

.wode-back-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    margin-right: 16px;
}

.wode-title {
    font-size:16px;
    font-weight: 500;
    color: #333;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* 主内容区 */
.wode-main {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

/* 卡片通用样式 */
.wode-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wode-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* 照片卡片样式 */
.wode-photo-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wode-photo-wrapper {
    flex-shrink: 0;
}

.wode-photo-img {
    width: 160px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.wode-photo-desc {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

/* 信息卡片样式 */
.wode-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wode-info-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
}

.wode-info-label {
    flex-shrink: 0;
    width: 100px;
    color: #333;
}

.wode-info-value {
    color: #333;
    word-break: break-all;
}

/* 底部导航栏 */
.wode-footer-nav {
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.wode-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.wode-nav-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
}

.wode-nav-active {
    color: #4080ff;
}

/* 响应式适配 */
@media (max-width: 375px) {
    .wode-photo-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wode-photo-desc {
        margin-top: 12px;
        font-size: 15px;
    }
    
    .wode-info-item {
        font-size: 18px;
    }
    
    .wode-info-label {
        width: 80px;
    }
}

/*以下是报名样式*/
/* 全局重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #e0e9ff;
    min-height: 100vh;
}

/* 主容器 */
.baom-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #e0e9ff;
}

/* 顶部导航栏 */
.baom-header {
    background: linear-gradient(to bottom, #4080ff, #e0e9ff);
    display: flex;
    align-items: center;
    padding: 16px;
    height: 80px;
    position: relative;
}

.baom-back-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    margin-right: 16px;
}

.baom-title {
    font-size: 20px;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* 主表单区 */
.baom-main {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

.baom-form-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 表单输入项 */
.baom-form-item {
    margin-bottom: 20px;
}

.baom-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #94b8f0;
    border-radius: 8px;
    padding: 12px;
}

.baom-input-label {
    flex-shrink: 0;
    width: 100px;
    font-size: 15px;
    color: #333;
}

.baom-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
}

.baom-input::placeholder {
    color: #aaa;
}

/* 图片上传模块 */
.baom-upload-section {
    margin: 30px 0;
}

.baom-section-title {
    font-size: 16px;
   
    color: #333;
    margin-bottom: 20px;
}

.baom-upload-box {
    display: flex;
    align-items: center;
}

.baom-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    background-color: #eee;
    border-radius: 12px;
    cursor: pointer;
}

.baom-upload-icon {
    width: 60px;
    height: 60px;
}

.baom-upload-input {
    display: none;
}

/* 图片描述文本框 */
.baom-textarea-section {
    margin-bottom: 30px;
}

.baom-textarea {
    width: 100%;
    border: 1px solid #94b8f0;
    border-radius: 8px;
    padding: 16px;
    font-size: 15px;
    color: #333;
    min-height: 130px;
    resize: none;
    outline: none;
}

.baom-textarea::placeholder {
    color: #aaa;
}

/* 提交按钮 */
.baom-submit-container {
    padding: 16px;
    padding-bottom: 30px;
}

.baom-submit-btn {
    width: 100%;
    background: linear-gradient(to right, #4080ff, #ff5555);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* 响应式适配 */
@media (max-width: 375px) {
    .baom-input-label {
        width: 80px;
        font-size: 18px;
    }
    
    .baom-input {
        font-size: 16px;
    }
    
    .baom-section-title {
        font-size: 22px;
    }
    
    .baom-upload-label {
        width: 140px;
        height: 140px;
    }
    
    .baom-submit-btn {
        font-size: 24px;
        padding: 16px;
    }
}

/*首页样式*/
/* 全局重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #e0e9ff;
    min-height: 100vh;
}

/* 主容器 */
.ind-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #e0e9ff;
}

/* 顶部标题 */
.ind-header {
    background: linear-gradient(to bottom, #4080ff, #e0e9ff);
    padding: 0;
    text-align: center;
}

.ind-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    background: linear-gradient(to right, #4080ff, #66e0cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 主内容区 */
.ind-main {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

/* 通用卡片样式（统一所有模块） */
.ind-card {
    background-color: #ffffff;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.ind-card-title {
    background-color: #3366dd;
    color: #fff;
    font-size: 16px;
    padding: 16px;
    text-align: center;
}

.ind-card-content {
    padding: 20px;
}

/* 文本样式 */
.ind-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.ind-text:last-child {
    margin-bottom: 0;
}

.ind-text-bold {
    font-weight: 600;
}

.ind-text-blue {
    color: #3366dd;
    font-weight: 600;
}

/* 红色标签样式 */
.ind-section-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 15px;
    margin: 16px 0 12px;
}

.ind-tag-red {
    background-color: #ff5555;
}

/* 底部导航栏 */
.ind-footer-nav {
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.ind-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.ind-nav-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
}

.ind-nav-active {
    color: #3366dd;
}

/* 响应式适配 */
@media (max-width: 375px) {
    .ind-title {
        font-size: 28px;
    }
    
    .ind-card-title {
        font-size: 24px;
        padding: 12px;
    }
    
    .ind-text {
        font-size: 16px;
    }
    
    .ind-section-tag {
        font-size: 18px;
    }
}

/*按钮样式*/
/* 按钮公共样式（统一复用，减少冗余） */
.ind-btn {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

/* 通栏按钮（宽度100%，表单提交首选） */
.ind-btn-block {
    width: 100%;
    background: linear-gradient(to right, #76F1D8, #3662EC);
    color: #fff;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 18px;
	font-weight: 600;
}