/* pages/index/index.wxss - 主菜单样式 */ .container { display: flex; flex-direction: column; align-items: center; justify-content: space-between; min-height: 100vh; padding: 60rpx 40rpx; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } /* 标题区域 */ .title-section { display: flex; flex-direction: column; align-items: center; margin-top: 80rpx; } .game-title { font-size: 72rpx; font-weight: bold; color: white; text-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.3); margin-bottom: 20rpx; } .game-subtitle { font-size: 32rpx; color: rgba(255, 255, 255, 0.9); letter-spacing: 4rpx; } /* 统计数据区域 */ .stats-section { display: flex; gap: 60rpx; margin: 40rpx 0; } .stat-item { display: flex; flex-direction: column; align-items: center; background: rgba(255, 255, 255, 0.2); padding: 30rpx 40rpx; border-radius: 20rpx; backdrop-filter: blur(10rpx); } .stat-label { font-size: 28rpx; color: rgba(255, 255, 255, 0.8); margin-bottom: 10rpx; } .stat-value { font-size: 48rpx; font-weight: bold; color: white; } /* 按钮区域 */ .button-section { display: flex; flex-direction: column; gap: 30rpx; width: 100%; max-width: 500rpx; } .start-btn, .continue-btn { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); border: none; border-radius: 50rpx; padding: 30rpx 0; box-shadow: 0 8rpx 16rpx rgba(0, 0, 0, 0.2); transition: transform 0.2s; } .start-btn:active, .continue-btn:active { transform: scale(0.95); } .btn-text { font-size: 40rpx; font-weight: bold; color: white; } .continue-btn { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); } /* 图鉴入口 */ .collection-entry { margin: 20rpx 0; padding: 20rpx 40rpx; background: rgba(255, 255, 255, 0.15); border-radius: 30rpx; backdrop-filter: blur(10rpx); } .collection-text { font-size: 32rpx; color: white; } /* 底部说明 */ .footer { display: flex; flex-direction: column; align-items: center; gap: 10rpx; margin-bottom: 40rpx; } .footer-text { font-size: 26rpx; color: rgba(255, 255, 255, 0.7); text-align: center; line-height: 1.6; }