
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        margin: 0;
        padding: 0;
        color: #e0e7f7;
        background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
        background-attachment: fixed;
        min-height: 100vh;
    }

    .header {
        max-width: 94vw;
        margin: 0 auto;
        margin-top: 25px;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }

    .header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #8f41e9 0%, #578aef 50%, #6bc5f8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 10px rgba(143, 65, 233, 0.2);
        letter-spacing: 1px;
        position: relative;
        display: inline-block;
    }

    .header h1::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #578aef, transparent);
        border-radius: 2px;
    }

    .header p {
        font-size: 1.2rem;
        color: #a8c6e0;
        margin-top: 20px;
        font-weight: 300;
        letter-spacing: 0.5px;
        line-height: 1.6;
        max-width: 600px;
        position: relative;
        padding: 0 20px;
    }

    .header p::before,
    .header p::after {
        content: '"';
        color: #8f41e9;
        font-size: 2rem;
        position: absolute;
        top: -10px;
        opacity: 0.5;
    }

    .header p::before {
        left: 0;
    }

    .header p::after {
        transform: rotate(180deg);
    }


    /* 主要内容区域 */
    .main-content {
        max-width: 94vw;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* 文章卡片容器 - 改为单列长条布局 */
    .cards-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    /* 文章卡片 - 改为横向长条布局 */
    .card {
        background: linear-gradient(145deg, rgba(25, 35, 50, 0.8), rgba(20, 30, 45, 0.8));
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(100, 150, 200, 0.15);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        height: auto;
        min-height: 120px;
    }

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(143, 65, 233, 0.5);
    }

    .card-header {
        padding: 20px;
        border-right: 1px solid rgba(100, 150, 200, 0.1);
        background: rgba(15, 25, 35, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: 180px;
        width: 180px;
    }

    .card-date {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        color: #8a9ba8;
        font-size: 0.9rem;
        margin-bottom: 5px;
        text-align: center;
    }

    .card-date i {
        color: #578aef;
        margin-bottom: 5px;
    }

    .card-length {
        text-align: center;
        color: #a8c6e0;
        font-size: 0.85rem;
        font-weight: 500;
        margin-top: 5px;
    }

    .card-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .card-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #e0e7f7;
        line-height: 1.4;
        transition: color 0.3s;
        text-align: left;
    }

    .card:hover .card-title {
        color: #8f41e9;
    }

    .card-tags {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .tag {
        background: rgba(87, 138, 239, 0.15);
        color: #8bb4ff;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        border: 1px solid rgba(87, 138, 239, 0.3);
    }


    /*底栏*/
    .bottom-bar{
        max-width: 94vw;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;

        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .cancel-btns{
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .cancel-btns button{

        min-width: 40px;
        background: rgba(47, 79, 110, 0.7);
        border: 1px solid rgba(100, 150, 200, 0.3);
        color: #c2d1dd;
        border-radius: 6px;
        padding: 8px 12px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cancel-btns button:hover {
        background: rgba(67, 99, 140, 0.9);
        color: #fff;
        border-color: #578aef;
        transform: translateY(-1px);
    }
    /* 分页控件 */
    .pagination {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pagination button {
        min-width: 40px;
        background: rgba(47, 79, 110, 0.7);
        border: 1px solid rgba(100, 150, 200, 0.3);
        color: #c2d1dd;
        border-radius: 6px;
        padding: 8px 12px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pagination button:hover {
        background: rgba(67, 99, 140, 0.9);
        color: #fff;
        border-color: #578aef;
        transform: translateY(-1px);
    }

    .pagination .page-info {
        color: #8a9ba8;
        font-size: 0.9rem;
        margin: 0 10px;
        white-space: nowrap;
    }

    .pagination .page-input {
        background: rgba(30, 45, 60, 0.8);
        border: 1px solid rgba(100, 150, 200, 0.3);
        color: #e0e7f7;
        border-radius: 6px;
        padding: 8px 12px;
        width: 70px;
        text-align: center;
        font-size: 0.9rem;
        outline: none;
    }

    .pagination .page-input:focus {
        border-color: #578aef;
        box-shadow: 0 0 0 2px rgba(87, 138, 239, 0.2);
    }

    /* 去掉数字输入框的上下选择按钮 */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }
    
    input[type="number"] {
        -moz-appearance: textfield;
    }
    /* 响应式设计 */