| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- body {
- background-color: #F5F6FA;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
- }
- .nav-bar {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 2.75rem;
- padding-top: var(--status-bar-height);
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 0.9375rem;
- box-sizing: border-box;
- z-index: 100;
- }
- .nav-placeholder {
- height: calc(2.75rem + var(--status-bar-height));
- }
- .back-icon {
- width: 1.25rem;
- height: 1.25rem;
- }
- .nav-title {
- font-size: 1.0625rem;
- font-weight: bold;
- color: #333;
- }
- .nav-right { width: 1.25rem;
- }
- .msg-group {
- padding: 0.625rem 0.9375rem;
- }
- .date-label {
- text-align: center;
- font-size: 0.75rem;
- color: #ccc;
- margin: 0.625rem 0;
- }
- .msg-card {
- background-color: #fff;
- border-radius: 0.5rem;
- padding: 0.9375rem;
- margin-bottom: 0.625rem;
- box-shadow: 0 0.125rem 0.3125rem rgba(0,0,0,0.02);
- }
- .card-header {
- display: flex;
- align-items: center;
- margin-bottom: 0.5rem;
- }
- .card-title {
- font-size: 0.875rem;
- font-weight: bold;
- color: #333;
- }
- .red-dot {
- width: 0.375rem;
- height: 0.375rem;
- background-color: #FF3B30;
- border-radius: 50%;
- margin-left: 0.3125rem;
- }
- .card-body {
- margin-bottom: 0.75rem;
- padding-bottom: 0.75rem;
- border-bottom: 0.03125rem solid #f5f5f5;
- }
- .msg-text {
- font-size: 0.8125rem;
- color: #666;
- line-height: 1.5;
- }
- .card-footer {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .order-id {
- font-size: 0.75rem;
- color: #999;
- }
- .arrow-icon {
- width: 0.75rem;
- height: 0.75rem;
- opacity: 0.3;
- }
|