San3yuan | 03ab064 | 2025-04-29 18:00:25 +0800 | [diff] [blame] | 1 | .panel{ |
| 2 | background-color: var(--card-bg); |
| 3 | height:100%; |
| 4 | width:100%; |
San3yuan | a2ee30b | 2025-06-05 21:20:17 +0800 | [diff] [blame] | 5 | padding:0px 5px; |
San3yuan | 03ab064 | 2025-04-29 18:00:25 +0800 | [diff] [blame] | 6 | } |
San3yuan | 292794c | 2025-06-08 20:02:46 +0800 | [diff] [blame^] | 7 | span { |
| 8 | color:var(--text-color) |
| 9 | } |
San3yuan | 03ab064 | 2025-04-29 18:00:25 +0800 | [diff] [blame] | 10 | .header{ |
| 11 | border-bottom:1px solid var(--border-color); |
| 12 | box-shadow: 1px; |
| 13 | height:10%; |
| 14 | width:100%; |
| 15 | display:flex; |
| 16 | justify-content: space-between; |
| 17 | } |
| 18 | |
| 19 | .header .title{ |
| 20 | font:bold ; |
| 21 | color:var(--text-color); |
| 22 | |
| 23 | } |
| 24 | |
| 25 | .header .more{ |
| 26 | font:bold ; |
| 27 | color:var(--text-color); |
| 28 | } |
| 29 | |
| 30 | .content .item{ |
| 31 | display:flex; |
| 32 | justify-content:space-between; |
San3yuan | a2ee30b | 2025-06-05 21:20:17 +0800 | [diff] [blame] | 33 | align-items:center; |
| 34 | padding-top:10px; |
| 35 | padding-bottom:10px; |
| 36 | box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* 添加边框阴影 */ |
| 37 | border:1px solid rgba(0,0,0,0.04); |
| 38 | } |
San3yuan | 03ab064 | 2025-04-29 18:00:25 +0800 | [diff] [blame] | 39 | |
San3yuan | a2ee30b | 2025-06-05 21:20:17 +0800 | [diff] [blame] | 40 | .content .item:hover { |
| 41 | background:var(--select-bg-color); |
| 42 | cursor:pointer |
San3yuan | 03ab064 | 2025-04-29 18:00:25 +0800 | [diff] [blame] | 43 | } |
| 44 | .content .item .text{ |
| 45 | width:70%; |
| 46 | overflow-x:hidden; |
| 47 | color:var(--text-color); |
| 48 | } |
| 49 | |
| 50 | |