refactor(profile): restructure profile pages and add new features

This commit is contained in:
shenghuo2
2025-06-21 23:15:19 +08:00
parent f8452b319c
commit ef5eda8cf4
17 changed files with 1242 additions and 34 deletions

View File

@ -1,365 +0,0 @@
/* 米家众测页面样式 */
/* 页面容器 */
#mijiazhongce-page {
background: #f5f5f5;
min-height: 100vh;
padding-bottom: 80px;
}
/* 顶部导航 */
.header {
background: white;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 100;
}
.header-left {
display: flex;
align-items: center;
gap: 15px;
}
.header-left i {
font-size: 18px;
cursor: pointer;
color: #333;
}
.page-title {
font-size: 18px;
font-weight: 600;
color: #333;
}
/* 众测产品列表 */
.test-products {
padding: 20px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
/* 产品卡片 */
.product-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
}
.product-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
/* 产品头部 */
.product-header {
padding: 10px 12px;
display: flex;
justify-content: space-between;
align-items: center;
background: #fafafa;
border-bottom: 1px solid #f0f0f0;
position: relative;
}
.product-period {
font-size: 12px;
color: #666;
font-weight: 500;
}
.product-status {
font-size: 10px;
padding: 2px 6px;
border-radius: 8px;
font-weight: 500;
}
.product-status.new {
background: #ff6900;
color: white;
}
.product-status.free {
background: #4ECDC4;
color: white;
}
.my-test {
position: absolute;
top: -5px;
right: 10px;
background: #4CAF50;
color: white;
font-size: 10px;
padding: 2px 6px;
border-radius: 0 0 8px 8px;
font-weight: 500;
}
/* 产品图片 */
.product-image {
padding: 20px;
text-align: center;
background: #fafafa;
}
.product-image img {
width: 100%;
max-width: 120px;
height: auto;
border-radius: 8px;
}
/* 产品信息 */
.product-info {
padding: 15px 12px;
position: relative;
}
.status-badge {
position: absolute;
top: -8px;
left: 12px;
background: #999;
color: white;
font-size: 10px;
padding: 2px 8px;
border-radius: 10px;
font-weight: 500;
}
.status-badge.ended {
background: #999;
}
.status-badge.active {
background: #4CAF50;
}
.product-name {
font-size: 14px;
font-weight: 600;
color: #333;
margin: 8px 0;
line-height: 1.3;
}
.product-details {
display: flex;
justify-content: space-between;
align-items: center;
margin: 8px 0;
}
.market-price {
font-size: 11px;
color: #666;
}
.quota {
font-size: 11px;
color: #666;
}
/* 申请者信息 */
.applicant-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 12px;
}
.applicant-avatars {
display: flex;
gap: -8px;
}
.avatar {
width: 20px;
height: 20px;
border-radius: 50%;
background: linear-gradient(135deg, #4A90E2, #667eea);
border: 2px solid white;
margin-left: -8px;
}
.avatar:first-child {
margin-left: 0;
}
.avatar:nth-child(2) {
background: linear-gradient(135deg, #4ECDC4, #44A08D);
}
.avatar:nth-child(3) {
background: linear-gradient(135deg, #f093fb, #f5576c);
}
.applicant-count {
font-size: 11px;
color: #666;
font-weight: 500;
}
/* 响应式设计 */
@media (max-width: 480px) {
.test-products {
padding: 15px;
gap: 12px;
}
.product-card {
border-radius: 10px;
}
.product-header {
padding: 8px 10px;
}
.product-period {
font-size: 11px;
}
.product-status {
font-size: 9px;
padding: 1px 4px;
}
.product-image {
padding: 15px;
}
.product-image img {
max-width: 100px;
}
.product-info {
padding: 12px 10px;
}
.product-name {
font-size: 13px;
}
.market-price,
.quota,
.applicant-count {
font-size: 10px;
}
.avatar {
width: 18px;
height: 18px;
}
}
/* 动画效果 */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.product-card {
animation: fadeInUp 0.6s ease-out;
}
.product-card:nth-child(1) {
animation-delay: 0.1s;
}
.product-card:nth-child(2) {
animation-delay: 0.2s;
}
.product-card:nth-child(3) {
animation-delay: 0.3s;
}
.product-card:nth-child(4) {
animation-delay: 0.4s;
}
.product-card:nth-child(5) {
animation-delay: 0.5s;
}
.product-card:nth-child(6) {
animation-delay: 0.6s;
}
/* 特殊样式 */
.product-card:nth-child(2) {
position: relative;
}
.product-card:nth-child(2)::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #4CAF50, #45a049);
border-radius: 12px 12px 0 0;
}
/* 0元抽奖特殊样式 */
.product-card:has(.product-status.free) {
border: 2px solid #4ECDC4;
}
.product-card:has(.product-status.free) .product-header {
background: linear-gradient(135deg, #4ECDC4, #44A08D);
color: white;
}
.product-card:has(.product-status.free) .product-period {
color: white;
}
/* 滚动优化 */
.test-products {
scroll-behavior: smooth;
}
/* 加载状态 */
.product-card.loading {
opacity: 0.6;
pointer-events: none;
}
.product-card.loading::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
border: 2px solid #f3f3f3;
border-top: 2px solid #ff6900;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

View File

@ -315,6 +315,23 @@
align-self: center;
}
.menu-right {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.menu-right .menu-status {
font-size: 11px;
color: #999;
}
.menu-right i {
color: #ddd;
font-size: 11px;
}
.menu-item i:first-child {
font-size: 18px;
color: #ff6900;

View File

@ -1,368 +0,0 @@
/* 智能场景页面样式 */
/* 页面容器 */
#scene-page {
background: #f5f5f5;
min-height: 100vh;
padding-bottom: 80px;
}
/* 顶部导航 */
.header {
background: linear-gradient(135deg, #8B4513, #D2691E);
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
color: white;
position: sticky;
top: 0;
z-index: 100;
}
.header-left {
display: flex;
align-items: center;
gap: 15px;
}
.header-left i {
font-size: 18px;
cursor: pointer;
}
.page-title {
font-size: 18px;
font-weight: 600;
}
.header-right {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.tab-item {
font-size: 13px;
padding: 4px 8px;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
opacity: 0.7;
white-space: nowrap;
flex-shrink: 0;
}
.tab-item.active {
background: rgba(255, 255, 255, 0.2);
opacity: 1;
}
/* 主要场景卡片 */
.main-scene-card {
margin: 20px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.scene-background {
background: linear-gradient(135deg, #8B4513, #D2691E, #CD853F);
padding: 30px;
position: relative;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.scene-content {
color: white;
}
.scene-devices {
display: flex;
gap: 20px;
margin-bottom: 30px;
}
.device-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.15);
padding: 15px;
border-radius: 12px;
backdrop-filter: blur(10px);
transition: transform 0.3s ease;
}
.device-item:hover {
transform: translateY(-2px);
}
.device-item i {
font-size: 24px;
color: white;
}
.device-label {
font-size: 12px;
color: white;
text-align: center;
}
.scene-info h2 {
font-size: 24px;
font-weight: 600;
margin-bottom: 8px;
color: white;
}
.scene-info p {
font-size: 14px;
color: rgba(255, 255, 255, 0.8);
margin: 0;
}
/* 推荐卡片容器 */
.recommendation-cards {
padding: 0 20px;
display: flex;
flex-direction: column;
gap: 20px;
}
/* 推荐卡片 */
.recommendation-card {
background: white;
border-radius: 16px;
padding: 20px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}
.recommendation-card:hover {
transform: translateY(-2px);
}
/* 卡片头部 */
.card-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
}
.card-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, #ff6900, #ff8533);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 18px;
}
.card-header h3 {
font-size: 16px;
font-weight: 600;
color: #333;
margin: 0;
}
.card-subtitle {
font-size: 12px;
color: #999;
margin: 0;
margin-left: auto;
}
/* 产品网格 */
.product-grid {
display: flex;
gap: 15px;
overflow-x: auto;
padding-bottom: 10px;
}
.product-item {
flex: 0 0 auto;
width: 100px;
text-align: center;
}
.product-image {
width: 80px;
height: 80px;
background: #f8f8f8;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 10px;
transition: transform 0.3s ease;
}
.product-image:hover {
transform: scale(1.05);
}
.product-image i {
font-size: 24px;
color: #666;
}
.product-info {
display: flex;
flex-direction: column;
gap: 4px;
}
.product-name {
font-size: 12px;
color: #333;
font-weight: 500;
line-height: 1.2;
}
.product-price {
font-size: 12px;
color: #ff6900;
font-weight: 600;
}
/* 特殊卡片样式 */
.recommendation-card:nth-child(1) .card-icon {
background: linear-gradient(135deg, #4ECDC4, #44A08D);
}
.recommendation-card:nth-child(2) .card-icon {
background: linear-gradient(135deg, #FFD700, #FFA500);
}
.recommendation-card:nth-child(3) .card-icon {
background: linear-gradient(135deg, #667eea, #764ba2);
}
.recommendation-card:nth-child(4) .card-icon {
background: linear-gradient(135deg, #f093fb, #f5576c);
}
/* 响应式设计 */
@media (max-width: 480px) {
.header {
padding: 12px 15px;
}
.header-right {
gap: 10px;
}
.tab-item {
font-size: 12px;
padding: 4px 8px;
}
.main-scene-card {
margin: 15px;
}
.scene-background {
padding: 20px;
min-height: 180px;
}
.scene-devices {
gap: 15px;
margin-bottom: 20px;
}
.device-item {
padding: 12px;
}
.device-item i {
font-size: 20px;
}
.scene-info h2 {
font-size: 20px;
}
.recommendation-cards {
padding: 0 15px;
gap: 15px;
}
.recommendation-card {
padding: 15px;
}
.product-grid {
gap: 12px;
}
.product-item {
width: 90px;
}
.product-image {
width: 70px;
height: 70px;
}
}
/* 动画效果 */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.recommendation-card {
animation: fadeInUp 0.6s ease-out;
}
.recommendation-card:nth-child(1) {
animation-delay: 0.1s;
}
.recommendation-card:nth-child(2) {
animation-delay: 0.2s;
}
.recommendation-card:nth-child(3) {
animation-delay: 0.3s;
}
.recommendation-card:nth-child(4) {
animation-delay: 0.4s;
}
/* 滚动条样式 */
.product-grid::-webkit-scrollbar {
height: 4px;
}
.product-grid::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 2px;
}
.product-grid::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 2px;
}
.product-grid::-webkit-scrollbar-thumb:hover {
background: #999;
}

View File

@ -1,409 +0,0 @@
/* 个人资料页面样式 */
/* 页面容器 */
#user-profile-page {
background: #f5f5f5;
min-height: 100vh;
padding-bottom: 80px;
}
/* 顶部导航 */
.header {
background: white;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 100;
}
.header-left {
display: flex;
align-items: center;
gap: 15px;
}
.header-left i {
font-size: 18px;
cursor: pointer;
color: #333;
transition: color 0.3s ease;
}
.header-left i:hover {
color: #ff6900;
}
.page-title {
font-size: 18px;
font-weight: 600;
color: #333;
}
/* 用户头像区域 */
.profile-avatar-section {
background: white;
padding: 40px 20px;
text-align: center;
margin-bottom: 20px;
}
.avatar-container {
position: relative;
display: inline-block;
}
.user-avatar-large {
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
border: 4px solid #f0f0f0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.user-avatar-large:hover {
transform: scale(1.05);
}
.user-avatar-large img {
width: 100%;
height: 100%;
object-fit: cover;
}
.camera-icon {
position: absolute;
bottom: 0;
right: 0;
width: 32px;
height: 32px;
background: #ff6900;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 14px;
cursor: pointer;
border: 3px solid white;
transition: background 0.3s ease;
}
.camera-icon:hover {
background: #e55a00;
}
/* 资料区域 */
.profile-section {
background: white;
margin-bottom: 20px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.section-title {
padding: 20px 20px 10px;
font-size: 16px;
font-weight: 600;
color: #333;
border-bottom: 1px solid #f0f0f0;
}
/* 资料项目 */
.profile-item {
display: flex;
align-items: center;
padding: 15px 20px;
border-bottom: 1px solid #f8f8f8;
transition: background 0.3s ease;
}
.profile-item:last-child {
border-bottom: none;
}
.profile-item:hover {
background: #fafafa;
}
.item-label {
font-size: 15px;
color: #333;
min-width: 80px;
font-weight: 500;
}
.item-content {
flex: 1;
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
}
.item-value {
font-size: 15px;
color: #666;
}
.item-value.masked {
color: #999;
}
.item-status {
font-size: 13px;
padding: 2px 8px;
border-radius: 10px;
font-weight: 500;
}
.item-status.bound {
background: #e8f5e8;
color: #4CAF50;
}
.profile-item i.fa-chevron-right {
font-size: 14px;
color: #ccc;
margin-left: 10px;
}
/* 小头像 */
.mini-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
border: 2px solid #f0f0f0;
}
.mini-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* 开关按钮 */
.toggle-switch {
width: 50px;
height: 28px;
background: #ddd;
border-radius: 14px;
position: relative;
cursor: pointer;
transition: background 0.3s ease;
}
.toggle-switch.active {
background: #4CAF50;
}
.toggle-slider {
width: 24px;
height: 24px;
background: white;
border-radius: 50%;
position: absolute;
top: 2px;
left: 2px;
transition: transform 0.3s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.toggle-switch.active .toggle-slider {
transform: translateX(22px);
}
/* 注销登录区域 */
.logout-section {
padding: 40px 20px;
text-align: center;
}
.logout-btn {
width: 100%;
max-width: 300px;
padding: 15px;
background: white;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 16px;
color: #666;
cursor: pointer;
transition: all 0.3s ease;
}
.logout-btn:hover {
background: #f5f5f5;
border-color: #ccc;
}
.logout-btn:active {
background: #eeeeee;
}
/* 响应式设计 */
@media (max-width: 480px) {
.profile-avatar-section {
padding: 30px 15px;
}
.user-avatar-large {
width: 80px;
height: 80px;
}
.camera-icon {
width: 28px;
height: 28px;
font-size: 12px;
}
.section-title {
padding: 15px 15px 8px;
font-size: 15px;
}
.profile-item {
padding: 12px 15px;
}
.item-label {
font-size: 14px;
min-width: 70px;
}
.item-value {
font-size: 14px;
}
.mini-avatar {
width: 35px;
height: 35px;
}
.toggle-switch {
width: 45px;
height: 25px;
border-radius: 12.5px;
}
.toggle-slider {
width: 21px;
height: 21px;
}
.toggle-switch.active .toggle-slider {
transform: translateX(20px);
}
.logout-section {
padding: 30px 15px;
}
.logout-btn {
padding: 12px;
font-size: 15px;
}
}
/* 动画效果 */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.profile-section {
animation: fadeInUp 0.6s ease-out;
}
.profile-section:nth-child(2) {
animation-delay: 0.1s;
}
.profile-section:nth-child(3) {
animation-delay: 0.2s;
}
.profile-section:nth-child(4) {
animation-delay: 0.3s;
}
.profile-avatar-section {
animation: fadeInUp 0.6s ease-out;
}
/* 点击效果 */
.profile-item:active {
background: #f0f0f0;
transform: scale(0.98);
}
.camera-icon:active {
transform: scale(0.95);
}
/* 加载状态 */
.profile-item.loading {
opacity: 0.6;
pointer-events: none;
}
.profile-item.loading::after {
content: '';
position: absolute;
right: 20px;
width: 16px;
height: 16px;
border: 2px solid #f3f3f3;
border-top: 2px solid #ff6900;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 特殊样式 */
.profile-item:has(.fa-chevron-right) {
cursor: pointer;
}
.profile-item:has(.fa-chevron-right):hover {
background: #f8f8f8;
}
.profile-item:has(.fa-chevron-right):hover i.fa-chevron-right {
color: #ff6900;
transform: translateX(2px);
}
/* 滚动优化 */
#user-profile-page {
scroll-behavior: smooth;
}
/* 焦点状态 */
.toggle-switch:focus {
outline: 2px solid #ff6900;
outline-offset: 2px;
}
.logout-btn:focus {
outline: 2px solid #ff6900;
outline-offset: 2px;
}