/* pages/profile/authentication/index.wxss */ .container { background-color: #f5f5f5; min-height: 100vh; padding-bottom: 40rpx; } /* 顶部导航栏 */ .header { display: flex; align-items: center; justify-content: space-between; background-color: #07c160; color: white; padding: 20rpx 30rpx; height: 100rpx; box-sizing: border-box; } .back-btn { width: 80rpx; display: flex; align-items: center; } .title { font-size: 32rpx; font-weight: bold; flex: 1; text-align: center; } .right-icon { width: 80rpx; } /* 上传区域 */ .upload-section { background-color: white; margin: 20rpx 0; padding: 30rpx; } .upload-item { display: flex; margin-bottom: 40rpx; align-items: center; } .upload-label { flex: 1; margin-right: 30rpx; } .label-title { font-size: 28rpx; font-weight: bold; color: #333; margin-bottom: 8rpx; } .label-desc { font-size: 24rpx; color: #999; } .upload-area { width: 320rpx; height: 200rpx; border: 2rpx dashed #ddd; border-radius: 12rpx; display: flex; align-items: center; justify-content: center; position: relative; } .upload-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; } .upload-icon { width: 80rpx; height: 80rpx; border-radius: 50%; background-color: #f0f0f0; display: flex; align-items: center; justify-content: center; margin-bottom: 16rpx; } .upload-text { font-size: 24rpx; color: #999; } .uploaded-container { width: 100%; height: 100%; position: relative; border-radius: 12rpx; } .uploaded-image { width: 100%; height: 100%; border-radius: 12rpx; } .replace-tip { position: absolute; bottom: 0; left: 0; right: 0; background-color: rgba(0, 0, 0, 0.6); color: white; font-size: 24rpx; text-align: center; padding: 12rpx; border-radius: 0 0 12rpx 12rpx; } /* 信息展示区域 */ .info-section { background-color: white; margin: 20rpx 0; padding: 0 30rpx; } .info-item { display: flex; align-items: center; padding: 24rpx 0; border-bottom: 1rpx solid #f0f0f0; } .info-item:last-child { border-bottom: none; } .info-label { width: 180rpx; font-size: 28rpx; color: #333; } .info-value { flex: 1; font-size: 28rpx; color: #999; } /* 提示信息 */ .tip-section { padding: 30rpx; margin: 20rpx 0; } .tip-text { font-size: 24rpx; color: #ff6b6b; line-height: 1.5; } /* 认证按钮 */ .auth-btn { background-color: #07c160; color: white; font-size: 32rpx; font-weight: bold; text-align: center; padding: 30rpx; margin: 0 30rpx; border-radius: 20rpx; margin-top: 40rpx; } .auth-btn-text { display: block; }