    /* Copyright (C) 2025 陈子涵
    Contact information:
    Tel:18750386615
    Email:2502820816@qq.com

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>. */

    * {
        border-radius: 5px;
        margin: 5px;
    }

    table {
        width: 49.5%;
        height: 80%;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(30px);
    }

    #reward {
        margin-left: 0px;
        margin-right: 0.5%;
    }

    #task {
        margin-left: 0.5%;
        margin-right: 0px;
    }

    #tables {
        display: flex;
        width: 100%;
        height: 100%;
        margin: 0px;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        text-align: right;
        margin-right: 50px;
    }

    .tables-container {
        display: flex;
        width: 100%;
        height: 100%;
    }

    /* 基础样式保持不变 */
    html,
    body {
        height: 100%;
        width: 100%;
        margin: 0;
        background-color: #ad998b;
        /*取背景的平均色*/
        background-image: url("https://foruda.gitee.com/images/1751104375576115618/0a2c3c96_12357965.jpeg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-attachment: fixed;
    }



    a {
        color: #000000;
    }

    footer {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        z-index: 1000;
    }

    button,
    .a_as_button {
        text-decoration: none;
        /*去掉下划线，针对a标签*/
        text-align: center;
        padding: 10px 20px;
        background-color: #0099ff;
        color: #ffffff;
        border: none;
    }

    input {
        display: block;
        border-radius: 0px;
        background-color: rgba(255, 255, 255, 0);
        border: 0px;
        border-bottom: 1px solid #000000;
        outline: 0px;
    }

    input[type="checkbox"],
    input[type="radio"] {
        width: auto;
        display: inline;
    }

    .btn-link {
        /* 重置按钮默认样式 */
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        font: inherit;
        color: #000000;
        /* 链接默认颜色 */
        text-decoration: underline;
        /* 下划线 */
        cursor: pointer;
        /* 鼠标指针样式 */
        outline: none;
        /* 移除聚焦时的轮廓 */
        display: inline;
    }

    fieldset {
        border: 1px #000000 solid;
    }

    /* 移动端适配样式 */
    @media (max-width: 768px) {

        #tables {
            display: block;
        }

        .tables-container {
            flex-direction: column;
            align-items: center;
        }

        html,
        body {
            background-size: auto 100%;
        }

        table {
            width: 100%;
            font-size: 14px;
        }

        #reward,
        #task {
            margin-left: 0px;
            margin-right: 0px;
        }

        .nav-links {
            margin-right: 20px;
            text-align: center;
        }

        a {
            padding: 10px 15px;
            display: inline-block;
        }

        /* 表单元素优化 */
        input {
            width: 90%;
            padding: 10px;
            margin: 10px 0;
            font-size: 16px;
            display: inline;
        }

        button {
            padding: 12px 20px;
            font-size: 16px;
            margin: 8px 0;
        }
    }