阳菜,放晴! | 2f98704 | 2025-06-08 14:54:50 +0800 | [diff] [blame^] | 1 | /* 外部容器:左右布局 */ |
2 | .wrapper { | ||||
3 | background:none; | ||||
4 | border:none; | ||||
5 | box-shadow: none; | ||||
6 | display: flex; | ||||
7 | align-items: flex-start; | ||||
8 | justify-content: center; | ||||
9 | padding: 40px; | ||||
10 | gap: 60px; | ||||
11 | } | ||||
12 | |||||
13 | /* 宠物区域 */ | ||||
14 | .petSection { | ||||
15 | display: flex; | ||||
16 | flex-direction: column; | ||||
17 | align-items: center; | ||||
18 | } | ||||
19 | |||||
20 | .petImage { | ||||
21 | width: 200px; | ||||
22 | height: 200px; | ||||
23 | object-fit: cover; | ||||
24 | cursor: pointer; | ||||
25 | margin-bottom: 12px; | ||||
26 | } | ||||
27 | |||||
28 | /* 卡片区域:紧跟宠物图下方,模拟右下角 */ | ||||
29 | .cardContainer { | ||||
30 | align-self: flex-end; /* 让它贴底部对齐 */ | ||||
31 | width: 280px; | ||||
32 | } | ||||
33 | |||||
34 | .card { | ||||
35 | |||||
36 | border-radius: 16px; | ||||
37 | |||||
38 | padding: 20px; | ||||
39 | } | ||||
40 | |||||
41 | .text { | ||||
42 | font-size: 16px; | ||||
43 | margin: 12px 0; | ||||
44 | color: #333; | ||||
45 | } | ||||
46 | |||||
47 | .feedButton { | ||||
48 | width: 100%; | ||||
49 | padding: 12px; | ||||
50 | font-size: 16px; | ||||
51 | background-color: #ff9800; | ||||
52 | color: white; | ||||
53 | border: none; | ||||
54 | border-radius: 10px; | ||||
55 | cursor: pointer; | ||||
56 | margin: 16px 0; | ||||
57 | transition: background-color 0.2s; | ||||
58 | } | ||||
59 | |||||
60 | .feedButton:hover { | ||||
61 | background-color: #fb8c00; | ||||
62 | } | ||||
63 | |||||
64 | .switchSection { | ||||
65 | margin-top: 20px; | ||||
66 | } | ||||
67 | |||||
68 | .switchTitle { | ||||
69 | font-weight: 600; | ||||
70 | font-size: 14px; | ||||
71 | } |