183 lines
3.0 KiB
CSS
183 lines
3.0 KiB
CSS
/* ============================================================
|
|
* 商家入驻 - 确认信息页(预览信息)
|
|
* 主色 #FF370B 背景 #F6F7F9
|
|
* ============================================================ */
|
|
page {
|
|
background-color: #F6F7F9;
|
|
min-height: 100vh;
|
|
padding-bottom: 200rpx;
|
|
}
|
|
|
|
.container {
|
|
padding-bottom: 40rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* 顶部进度条(复用主页样式) */
|
|
.step-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 24rpx 30rpx 28rpx;
|
|
background: linear-gradient(91deg, #FF7658 0%, #FF370B 100%);
|
|
}
|
|
|
|
.step-pill {
|
|
flex: 1;
|
|
height: 60rpx;
|
|
margin: 0 8rpx;
|
|
border-radius: 30rpx;
|
|
background: rgba(255, 255, 255, 0.18);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: rgba(255, 255, 255, 0.65);
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.step-pill.active {
|
|
background: #FFFFFF;
|
|
color: #FF370B;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.confirm-head {
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
color: #222;
|
|
padding: 28rpx 24rpx 8rpx;
|
|
}
|
|
|
|
/* 分组卡片 */
|
|
.cf-group {
|
|
background: #FFFFFF;
|
|
margin: 16rpx 24rpx 0;
|
|
border-radius: 16rpx;
|
|
padding: 8rpx 24rpx;
|
|
}
|
|
|
|
.cf-group-title {
|
|
font-size: 28rpx;
|
|
font-weight: 600;
|
|
color: #222;
|
|
padding: 20rpx 0 12rpx;
|
|
border-bottom: 1rpx solid #F2F2F2;
|
|
}
|
|
|
|
.cf-row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
padding: 22rpx 0;
|
|
border-bottom: 1rpx solid #F7F7F7;
|
|
}
|
|
|
|
.cf-row:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.cf-k {
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
flex-shrink: 0;
|
|
margin-right: 24rpx;
|
|
}
|
|
|
|
.cf-v {
|
|
font-size: 26rpx;
|
|
color: #222;
|
|
text-align: right;
|
|
flex: 1;
|
|
word-break: break-all;
|
|
}
|
|
|
|
/* 文件资料行 */
|
|
.cf-file-row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
padding: 22rpx 0;
|
|
border-bottom: 1rpx solid #F7F7F7;
|
|
}
|
|
|
|
.cf-file-row:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.cf-thumbs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12rpx;
|
|
justify-content: flex-end;
|
|
flex: 1;
|
|
margin-left: 24rpx;
|
|
}
|
|
|
|
.cf-thumb {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
border-radius: 8rpx;
|
|
border: 1rpx solid #EEE;
|
|
}
|
|
|
|
.cf-empty {
|
|
font-size: 24rpx;
|
|
color: #B7B7B7;
|
|
}
|
|
|
|
/* 协议勾选 */
|
|
.agreement {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 24rpx 24rpx 0;
|
|
}
|
|
|
|
.agreement-text {
|
|
font-size: 24rpx;
|
|
color: #666;
|
|
margin-left: 8rpx;
|
|
}
|
|
|
|
.agreement-link {
|
|
color: #FF370B;
|
|
}
|
|
|
|
/* 底部按钮(吸底) */
|
|
.bottom-bar {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: #FFFFFF;
|
|
padding: 16rpx 24rpx calc(16rpx + env(safe-area-inset-bottom));
|
|
display: flex;
|
|
gap: 16rpx;
|
|
box-shadow: 0 -4rpx 20rpx rgba(0, 0, 0, 0.04);
|
|
z-index: 99;
|
|
}
|
|
|
|
.btn-primary {
|
|
flex: 1;
|
|
height: 88rpx;
|
|
background: linear-gradient(91deg, #FF7658 0%, #FF370B 100%);
|
|
border-radius: 44rpx;
|
|
color: #FFFFFF;
|
|
font-size: 30rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn-secondary {
|
|
flex: 1;
|
|
height: 88rpx;
|
|
background: #FFFFFF;
|
|
border: 1rpx solid #FF370B;
|
|
border-radius: 44rpx;
|
|
color: #FF370B;
|
|
font-size: 30rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|