﻿        .message-page { background: linear-gradient(135deg, #f5f0e8, #e8dcc8); padding: 40px 0; min-height: 80vh; }
        .message-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }

        .message-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .message-header h1 {
            color: #8B4513;
            font-size: 36px;
            margin-bottom: 15px;
        }
        .message-header h1 i {
            color: #FFD700;
            font-size: 40px;
        }
        .message-header p {
            color: #666;
            font-size: 16px;
        }

        .message-form-box {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(139, 69, 19, 0.2);
            border: 3px solid #FFD700;
            margin-bottom: 40px;
        }

        .message-form-box h2 {
            text-align: center;
            color: #8B4513;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #8B4513;
            font-weight: bold;
            font-size: 14px;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0d5c8;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #FFD700;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .btn-primary {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #8B4513;
            border: none;
            padding: 15px 50px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
        }

        .message-list-box {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(139, 69, 19, 0.2);
        }

        .message-list-box h2 {
            text-align: center;
            color: #8B4513;
            margin-bottom: 30px;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 15px;
        }

        .message-item {
            padding: 25px;
            border-bottom: 2px solid #f0e6d3;
            transition: all 0.3s;
        }

        .message-item:hover {
            background: #FFF8DC;
            border-radius: 15px;
        }

        .message-header-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .message-author {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #8B4513;
            font-weight: bold;
        }

        .message-author i {
            font-size: 24px;
            color: #FFD700;
        }

        .message-time {
            color: #999;
            font-size: 14px;
        }

        .message-content {
            color: #666;
            line-height: 1.8;
            padding-left: 34px;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        .message-reply {
            background: linear-gradient(135deg, #FFF8DC, #FFE4B5);
            padding: 20px;
            border-radius: 15px;
            margin-top: 15px;
            margin-left: 34px;
            border: 2px solid #FFD700;
        }

        .message-reply .reply-label {
            color: #8B4513;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }

        .message-reply-content {
            color: #666;
            line-height: 1.8;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        /* 分页样式 */
        .pagination {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #f0e6d3;
        }
        .pagination .page-info {
            display: inline-block;
            padding: 8px 15px;
            margin: 0 5px 10px 0;
            color: #8B4513;
            font-size: 14px;
            font-weight: bold;
        }
        .pagination a, .pagination span {
            display: inline-block;
            padding: 8px 14px;
            margin: 0 3px;
            border: 2px solid #e0d5c8;
            color: #8B4513;
            text-decoration: none;
            font-size: 14px;
            background: #fff;
            border-radius: 6px;
            transition: all 0.2s;
        }
        .pagination a:hover {
            border-color: #FFD700;
            background: #FFF8DC;
        }
        .pagination span.current {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #8B4513;
            border-color: #FFD700;
            font-weight: bold;
        }
        .pagination span.page-disabled {
            color: #ccc;
            border-color: #eee;
            background: #f9f9f9;
            cursor: not-allowed;
        }
        .no-message {
            text-align: center;
            padding: 50px;
            color: #999;
            font-size: 16px;
        }