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