| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- .page-container {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: #f5f6fb;
- }
- .scroll-view {
- flex: 1;
- height: 0;
- }
- .content-wrapper {
- padding: 32rpx;
- background: #f5f6fb;
- min-height: 100%;
- }
- .card {
- background: #ffffff;
- border-radius: 24rpx;
- padding: 32rpx;
- box-shadow: 0 16rpx 40rpx rgba(37, 52, 94, 0.08);
- margin-bottom: 32rpx;
- }
- .pool-header-section {
- margin-bottom: 24rpx;
- }
- .pool-header {
- display: flex;
- align-items: center;
- margin-bottom: 12rpx;
- }
- .pool-icon {
- font-size: 32rpx;
- margin-right: 12rpx;
- }
- .pool-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #222222;
- }
- .pool-desc {
- font-size: 26rpx;
- color: #666a7f;
- }
- .pool-card {
- padding: 32rpx;
- }
- .locked-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 60rpx 0 40rpx;
- }
- .lock-icon-wrapper {
- margin-bottom: 32rpx;
- }
- .lock-icon {
- font-size: 80rpx;
- }
- .lock-text {
- font-size: 28rpx;
- color: #222222;
- margin-bottom: 16rpx;
- text-align: center;
- }
- .lock-desc {
- font-size: 24rpx;
- color: #9ca2b5;
- margin-bottom: 48rpx;
- text-align: center;
- line-height: 1.6;
- }
- .unlock-button {
- width: 100%;
- background: linear-gradient(135deg, #5d55e8, #7568ff);
- border-radius: 16rpx;
- padding: 28rpx 0;
- text-align: center;
- box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.4);
- }
- .unlock-button-text {
- font-size: 30rpx;
- font-weight: 600;
- color: #ffffff;
- }
- .unlocked-content {
- padding: 8rpx 0;
- }
- .unlocked-header {
- display: flex;
- align-items: center;
- margin-bottom: 32rpx;
- }
- .unlocked-dot {
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- background: #3abf81;
- margin-right: 12rpx;
- }
- .unlocked-tip {
- font-size: 26rpx;
- font-weight: 500;
- color: #3abf81;
- letter-spacing: 1rpx;
- }
- .stock-list {
- display: flex;
- flex-direction: column;
- gap: 24rpx;
- }
- .stock-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 28rpx 24rpx;
- background: #fafbfc;
- border-radius: 20rpx;
- }
- .stock-main {
- display: flex;
- align-items: center;
- flex: 1;
- }
- .stock-info {
- display: flex;
- flex-direction: column;
- width: 140rpx;
- }
- .stock-name {
- font-size: 30rpx;
- font-weight: 700;
- color: #1a1a2e;
- margin-bottom: 6rpx;
- letter-spacing: 1rpx;
- }
- .stock-code {
- font-size: 22rpx;
- color: #9ca3af;
- font-weight: 400;
- }
- .stock-quote {
- display: flex;
- align-items: center;
- flex: 1;
- justify-content: flex-end;
- }
- .stock-price {
- font-size: 32rpx;
- font-weight: 800;
- color: #1a1a2e;
- margin-right: 16rpx;
- min-width: 120rpx;
- text-align: right;
- font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
- }
- .stock-change {
- font-size: 24rpx;
- font-weight: 600;
- padding: 6rpx 12rpx;
- border-radius: 8rpx;
- min-width: 100rpx;
- text-align: center;
- }
- .text-red {
- color: #ef4444;
- background: rgba(239, 68, 68, 0.1);
- }
- .text-green {
- color: #22c55e;
- background: rgba(34, 197, 94, 0.1);
- }
- .stock-action {
- margin-left: 20rpx;
- }
- .add-btn {
- background: #5B5AEA;
- border-radius: 40rpx;
- padding: 16rpx 28rpx;
- box-shadow: 0 8rpx 20rpx rgba(91, 90, 234, 0.3);
- }
- .add-btn-text {
- font-size: 24rpx;
- font-weight: 600;
- color: #ffffff;
- letter-spacing: 1rpx;
- }
- .bottom-safe-area {
- height: 80rpx;
- }
|