
    .horizontal-divider {
        width: 100%;
        height: 12px;
        background: linear-gradient(to right, #694E1F, #FFE896, #694E1F);
        /* 从左到右的渐变背景 */
        position: relative;
        /* 相对定位，以便使用 z-index */
        z-index: 1;
        /* 低于侧边栏的 z-index，假设侧边栏至少是 2 */
    }

    button {
        background-image: linear-gradient(to right, #ffbf3a, #fef2b6, #b05200);
        /* 按钮背景的左到右渐变 */
        color: #562a0e;
        /* 按钮文本颜色 */
        font-family: 'Noto Sans SC', sans-serif;
        /* 指定字体为Noto Sans CJK SC */
        font-size: 16px;
        /* 字体大小，可根据需求调整 */
        padding: 10px 20px;
        /* 按钮内边距 */
        border: none;
        /* 移除边框 */
        border-radius: 5px;
        /* 设置边角为圆角 */
        cursor: pointer;
        /* 设置鼠标为指针样式 */
        transition: background-color 0.3s, color 0.3s;
        /* 平滑过渡动画 */
    }




    .custom-row {
        background: linear-gradient(to bottom, #FFE69D, #CA7D36);
        /* 設置背景色漸變 */
        padding: 30px;
        /* 内边距 */
        color: #572806;
        /* 文本颜色 */
        font-family: 'Noto Sans SC', sans-serif;
        flex: 1;
        /* 根據比例，row 占用的比例為1 */
        margin-top: 50px;
        margin-bottom: 10px;
        /* 與下方窗格的間隔 */
        margin-left: 50px;
        margin-right: 50px;
        border-radius: 15px;
        /* 添加圓角 */
    }

    .text-description {
        font-size: 30px;
        /* 字体大小 */
        font-weight: bold;
        /* 加粗 */
        margin-bottom: 10px;
        /* 与下方元素的间隔 */
    }

    .input-button-group {
   
        /* 用于水平布局输入框和按钮 */
        align-items: center;
        /* 垂直居中 */
        width: 50%;
        /* 占据父元素的50%宽度 */
        margin-top: 30px;
    }

    .input-button-group input {
        flex: 1;
        /* 输入框占据大部分空间 */
        padding: 15px;
        /* 输入框内边距 */
        font-size: 18px;
        /* 输入框字体大小 */
        font-family: 'Noto Sans SC', sans-serif;
        color: #000000;
        /* 输入文字颜色 */
        border: 1px solid #ccc;
        /* 输入框边框 */
        background: #FFFFFF;
        /* 输入框背景透明 */
        margin-right: 10px;
        /* 与按钮的间隔 */
        border-radius: 15px;
        /* 添加圓角 */

    }

    .input-button-group button {
        background: linear-gradient(to right, #572b0e, #311507);
        /* 按钮背景渐变 */
        color: #FFFFFF;
        /* 按钮文字颜色 */
        font-size: 26px;
        /* 按钮字体大小 */
        font-weight: 500;
        /* 中等字重 */
        padding: 10px 20px;
        /* 按钮内边距 */
        border: none;
        /* 无边框 */
        cursor: pointer;
        /* 鼠标样式 */
        border-radius: 15px;
        /* 添加圓角 */

    }


    .panel-container {
        display: flex;
        /* 使用 Flexbox 來布置下方的兩個窗格 */
        flex: 2;
        /* 根據比例，panel 容器占用的比例為2 */
        margin-bottom: 45px;
        /* 與底部邊界的間隔 */
    }

    .panel {
        flex: 1;
        /* 兩個 panel 平分空間 */
        margin: 40px;
        /* 兩側窗格的間距，確保總間隔為 20px */
        background: linear-gradient(to bottom, #FFFFFF, #FFE69D);
        /* 設置背景色漸變 */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* 為 panel 添加陰影，如果需要 */
        border-radius: 15px;
        /* 添加圓角 */

    }


    .center-div {
        margin-left: 10px;
        margin-right: 10px;
    }

  


    .panel.left-panel {
        background: linear-gradient(to bottom, #FFFFFF, #FFE69D);
        /* 背景渐变 */
        padding: 20px;
        /* 内边距 */
        border-radius: 10px;
        /* 圆角 */
        font-family: 'Noto Sans SC', sans-serif;
        /* 字体 */
        color: #572806;
        /* 文字颜色 */
    }

    .notification-header {
        color: #572806;
        /* 文字颜色 */

        font-size: 5vw;
        /* 标题字号 */
        font-weight: bold;
        /* 加粗 */
        font-size: 30pt;
        margin-bottom: 20px;
        /* 标题与表格间距 */
        margin-left: 20px;
    }

    .notification-table {
        width: 100%;
        /* 表格宽度 */
        border-collapse: collapse;
        /* 边框合并 */
    }

    .notification-table th,
    .notification-table td {
        text-align: left;
        /* 文字对齐 */
        padding: 8px;
        /* 单元格内边距 */
        border-bottom: 1px solid #000000;
        /* 表格行间边框 */
    }

    .notification-table th {
        color: #000000;
        /* 表头文字颜色 */
        font-weight: bold;
        /* 加粗 */
        font-size: 16pt;
        /* 字号 */
    }

    .notification-table td {
        color: #000000;
        /* 单元格文字颜色 */
        font-weight: lighter;
        /* 较轻的字重 */
        font-size: 10pt;
        /* 字号，与表头相同 */
    }

    .notification-table tbody tr:hover {
        background-color: #FFEFCA;
        /* 悬停效果 */
    }

    .panel.right-panel {
        background: linear-gradient(to bottom, #FFFFFF, #FFE69D);
        /* 背景渐变 */
        padding: 20px;
        /* 内边距 */
        border-radius: 10px;
        /* 圆角 */

        font-family: 'Noto Sans SC', sans-serif;
        /* 字体 */
        color: #572806;
        /* 文字颜色 */
    }

    .table-title {
        color: #572806;
        /* 文字颜色 */
        font-size: 30px;
        /* 标题字号 */
        font-weight: bold;
        /* 加粗 */
        font-size: 30pt;
        margin-bottom: 20px;
        /* 标题与表格间距 */
        margin-left: 20px;
    }

    .custom-table {
        width: 100%;
        /* 表格宽度 */
        border-collapse: collapse;
        /* 边框合并 */
    }

    .custom-table th,
    .custom-table td {
        text-align: left;
        /* 文字对齐 */
        padding: 8px;
        /* 单元格内边距 */
        border-bottom: 1px solid #000000;
        /* 表格行间边框 */
    }

    .custom-table thead th {
        color: #000000;
        /* 表头文字颜色 */
        font-weight: bold;
        /* 加粗 */
        font-size: 16pt;
        /* 字号 */
    }

    .custom-table thead td {
        color: #000000;
        /* 单元格文字颜色 */
        font-weight: lighter;
        /* 较轻的字重 */
        font-size: 10pt;
        /* 字号，与表头相同 */
    }

    .custom-table tbody tr:hover {
        background-color: #FFEFCA;
        /* 悬停效果 */
    }
    @media (min-width:500px) {
        .input-button-group {
            display: flex;
        }
        .mini-right-panel{
            display: none;
        }
        .container-background {
            height: 100vh;
        }
    }
    @media (max-width:500px) {
        .container-background {
            height: 120vh;
        }
        .panel-container{
            margin-bottom: 0px;
        }
        .page-wrapper {
            background: #311507;
            /* overflow-x: auto;  */

        }

        .col-md-3 {
            padding-left: 0px;
            padding-right: 0px;
            width: 50%;
            margin-left: 25%;
            height: 50%;
           
        }

        .container-background {
            height: 130vh;
        }

        .info-box {
            background: #311507;
            padding: 0px 0px 20px 25px;

        }
        .custom-row{
            margin-top: 0px;
            margin-right: 0px;
        }
        .input-button-group input{
            width:105%;
        }
        .input-button-group button{
          font-size:  20px;
          margin-top: 10%;
          margin-left: 33%;
  
        }
        .input-button-group{
             width: 100%;
        }
        .text-description{
            font-size: 25px;
        }
        .notification-header{
            font-size: 6vw;
        }
        .right-panel{
            display: none;
        }
        .left-panel{
            height: 50%;
            margin-left: 25%;
            width: 140%;
        }
        .notification-table th{
            font-size: 15px;
        }
        .panel{
            margin-top: 5%;
            margin-right: 0%;
            margin-left: 15%;
            height: 75%;
        }
        .mini-right-panel{
           font-family: 'Noto Sans SC', sans-serif;
        }
        .notification-mini-header{
            color: #572806;
        /* 文字颜色 */

        font-size: 5vw;
        /* 标题字号 */
        font-weight: bold;
        /* 加粗 */
        font-size: 6vw;
        margin-top: 20px;
        margin-bottom: 20px;
        /* 标题与表格间距 */
        margin-left: 40px;
        }
    }
