Files
huangjingfen/pro_v3.5.1_副本/public/install/css/step1.css

180 lines
3.2 KiB
CSS
Raw Normal View History

feat(fsgx): 完成全部24项开发任务 Phase1-7 Phase1 后端核心: - 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess) - SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机) - StoreOrderCreateServices 周期循环佣金计算 - StoreOrderTakeServices 佣金发放后同步冻结积分 - StoreProductServices/StoreProduct 保存 is_queue_goods Phase2 后端接口: - GET /api/hjf/brokerage/progress 佣金周期进度 - GET /api/hjf/assets/overview 资产总览 - HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务 - PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口 - GET /adminapi/hjf/points/release_log 积分日志接口 Phase3 前端清理: - hjfCustom.js 路由精简(仅保留 points/log) - hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口 - pages.json 公排→推荐佣金/佣金记录/佣金规则 Phase4-5 前端改造: - queue/status.vue 推荐佣金进度页整体重写 - 商品详情/订单确认/支付结果页文案与逻辑改造 - 个人中心/资产页/引导页/规则页文案改造 - HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造 - 推广中心嵌入佣金进度摘要 - hjfMockData.js 全量更新(公排字段→佣金字段) Phase6 Admin 增强: - 用户列表新增 frozen_points/available_points 列及不考核操作按钮 - hjfPoints.js USE_MOCK=false 对接真实积分日志接口 Phase7 配置文档: - docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单 Made-with: Cursor
2026-03-23 22:32:19 +08:00
.wrap {
display: flex;
justify-content: center;
align-items: center;
position: relative;
/* 背景渐变色 */
text-align: center;
text-decoration: none;
text-transform: uppercase;
background-image: linear-gradient(to right, #134392, #132FBB, #5F38C1, #134392);
/* 背景渐变色大小 */
background-size: 300%;
box-shadow: none;
animation: light 10s infinite;
animation-direction: alternate;
}
/* 下面设计 发光效果 */
.wrap::before {
content: '';
position: absolute;
top: -6px;
bottom: -6px;
left: -6px;
right: -6px;
border-radius: 60px;
/* 背景渐变色 */
background-image: linear-gradient(to right, rgba(48,114,229,0.15), rgba(48,114,229,0.15));
/* 背景渐变色大小 */
background-size: 300%;
/* 元素的位置 底层或者顶层 -值表示底层 + 值表示顶层 */
z-index: -1;
/* 设置模糊度 显示发光效果 */
filter: blur(20px);
}
@keyframes light {
100% {
background-position: -100% 0;
}
}
.section {
height: 100%;
z-index: 11;
text-align: left;
position: absolute;
background: rgba(34, 34, 34, 0.6);
border-radius: 36px 36px 36px 36px;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
.logo {
width: 186px;
height: 70px;
margin-bottom: 20px;
transition: all 0.3s;
cursor: pointer;
}
.logo:hover {
transform: scale(1.1);
}
.bottom {
color: #5A487D;
width: 110px;
height: 32px;
background: #FFFFFF;
border-radius: 137px 137px 137px 137px;
font-size: 14px;
line-height: 32px;
margin: 0 auto;
margin-top: 20px;
cursor: pointer;
text-align: center;
/*font-size: 400px;*/
transition: all 0.3s;
}
.bottom:hover {
box-shadow: 0 2px 25px rgba(0, 234, 250, 0.5);
}
.bottom .btn {
display: block;
width: 100%;
height: 100%;
font-weight: 600;
}
.more-text {
background: linear-gradient(to right, #134392 0%, #363A8A 100%);
-webkit-background-clip: text;
color: transparent;
}
.agreement {
height: 21px;
margin: 6px 0 10px 0;
}
.agreements {
color: #A8CDE7;
}
.solgen {
position: absolute;
width: 364px;
height: 16px;
bottom: 45px;
left: 218px;
}
.radio-box {
border: 1px solid #fff;
border-radius: 50%;
width: 14px;
height: 14px;
position: relative;
margin-right: 10px;
font-size: 14px;
}
.is-shock {
animation: shock 0.5s infinite;
}
.agreement span {
line-height: 14px;
}
.radio-box img {
position: absolute;
left: -1px;
top: -1px;
width: 16px;
height: 16px;
animation: show 0.3s;
}
@keyframes show {
0% {
transform: scale(0);
-moz-transform: scale(0);
-webkit-transform: scale(0);
}
100% {
transform: scale(1);
-moz-transform: scale(1);
-webkit-transform: scale(1);
}
}
@keyframes shock {
0% {
margin-top: 0px;
}
20% {
margin-bottom: 10px;
}
40% {
margin-bottom: 0px;
}
60% {
margin-bottom: 8px;
}
70% {
margin-bottom: 0px;
}
90% {
margin-bottom: 4px;
}
100% {
margin-bottom: 0px;
}
}