修改提交

This commit is contained in:
筱野
2025-08-19 23:57:04 +08:00
parent 3c91ee0e88
commit 3a45212737
7 changed files with 139 additions and 79 deletions

View File

@@ -0,0 +1,175 @@
@use '~@/scss/themeColor.scss' as theme;
.publish-ball {
min-height: 100vh;
background: theme.$page-background-color;
position: relative;
&__scroll {
height: calc(100vh - 120px);
overflow: auto;
padding: 4px 16px 0 16px;
box-sizing: border-box;
}
&__content {
padding-bottom: 72px;
}
.activity-type-switch{
padding: 4px 16px 0 16px;
}
.publish-form{
}
// 标题区域 - 独立白色块
.bg-section {
background: white;
border-radius: 12px;
margin-bottom: 8px;
position: relative;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0px 4px 36px 0px rgba(0, 0, 0, 0.06);
display: flex;
.ntrp-range{
:global(.rangeContent){
border: none!important;
}
}
}
// 活动描述文本 - 灰色背景
.activity-description {
margin-bottom: 20px;
padding: 0 8px;
.description-text {
font-size: 12px;
color:rgba(60, 60, 67, 0.6) ;
line-height: 1.5;
}
}
// 表单分组区域 - 费用地点玩法白色块
.form-group-section {
background: white;
border-radius: 16px;
padding: 20px 16px;
margin-bottom: 16px;
}
// 区域标题 - 灰色背景
.section-title-wrapper {
padding: 0 4px;
display: flex;
align-items: center;
justify-content: space-between;
height: 44px;
padding-top: 5px;
box-sizing: border-box;
font-size: 14px;
.section-title {
font-size: 16px;
color: theme.$primary-color;
font-weight: 600;
}
.section-summary {
font-size: 14px;
color: theme.$input-placeholder-color;
white-space: nowrap;
}
}
// 提交区域
.submit-section {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 16px;
.submit-btn {
width: 100%;
color: white;
font-size: 16px;
font-weight: 600;
height: 52px;
line-height: 52px;
padding: 2px 6px;
border-radius: 16px;
border: 1px solid rgba(0, 0, 0, 0.06);
background: #000;
box-shadow: 0 8px 64px 0 rgba(0, 0, 0, 0.10);
}
.submit-tip {
text-align: center;
font-size: 12px;
color: #999;
line-height: 1.4;
display: flex;
justify-content: center;
padding: 12px 0;
.link {
color: #007AFF;
}
}
}
// 加载状态遮罩保持原样
&__loading {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 9999;
.loading-spinner {
width: 40px;
height: 40px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-top: 3px solid #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 16px;
}
.loading-text {
color: #fff;
font-size: 16px;
font-weight: 500;
}
}
}
// 旋转动画
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}