Akane1217 | 65b61a7 | 2025-05-17 13:52:25 +0800 | [diff] [blame] | 1 | .announcement-container {
|
| 2 | max-width: 800px;
|
| 3 | margin: 0 auto;
|
| 4 | padding: 20px;
|
| 5 | }
|
| 6 |
|
| 7 | .back-button {
|
| 8 | background: none;
|
| 9 | border: none;
|
| 10 | color: #1890ff;
|
| 11 | font-size: 16px;
|
| 12 | cursor: pointer;
|
| 13 | margin-bottom: 20px;
|
| 14 | }
|
| 15 |
|
| 16 | .announcement-detail {
|
| 17 | background: white;
|
| 18 | padding: 25px;
|
| 19 | border-radius: 8px;
|
| 20 | box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
| 21 | }
|
| 22 |
|
| 23 | .announcement-header {
|
| 24 | border-bottom: 1px solid #f0f0f0;
|
| 25 | padding-bottom: 15px;
|
| 26 | margin-bottom: 20px;
|
| 27 | }
|
| 28 |
|
| 29 | .announcement-header h1 {
|
| 30 | margin: 0 0 10px 0;
|
| 31 | font-size: 24px;
|
| 32 | }
|
| 33 |
|
| 34 | .announcement-meta {
|
| 35 | display: flex;
|
| 36 | gap: 15px;
|
| 37 | color: #666;
|
| 38 | font-size: 14px;
|
| 39 | align-items: center;
|
| 40 | }
|
| 41 |
|
| 42 | .category-badge {
|
| 43 | background: #e6f7ff;
|
| 44 | color: #1890ff;
|
| 45 | padding: 2px 8px;
|
| 46 | border-radius: 4px;
|
| 47 | font-size: 12px;
|
| 48 | }
|
| 49 |
|
| 50 | .announcement-content {
|
| 51 | line-height: 1.8;
|
| 52 | font-size: 15px;
|
| 53 | }
|
| 54 |
|
| 55 | .announcement-content p {
|
| 56 | margin: 0 0 16px 0;
|
| 57 | }
|
| 58 |
|
| 59 | .error-message {
|
| 60 | text-align: center;
|
| 61 | padding: 50px;
|
| 62 | color: #ff4d4f;
|
| 63 | font-size: 16px;
|
| 64 | } |