html {
    font-size: 16px;
}

body {
    margin: auto;
    display: flex;
    flex-direction: column;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    min-height: 100vh;
    cursor: default;
    width: auto;
    box-sizing: border-box;
    background-color: #F5F5F5;
}

/*主体内容*/
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 800px;
    margin: 0 auto;
    min-height: 100vh;
}

.xianlu {
    display: flex;
    flex-direction: column;
}

.xianluB,
.xianluA {
    display: flex;
    width: 100%;
    height: 60px;
    justify-content: space-around;
    align-items: center;
}


.xianlu4,
.xianlu3,
.xianlu2,
.xianlu1 {
    cursor: pointer;
    width: 50%;
    height: 44px;
    font-size: 24px;
    line-height: 44px;
    text-align: center;
    border: solid 1px #67a4f5;
    border-radius: 22px;
    background: #eee;
    background-image: linear-gradient(to top, #fff, #eee, #fff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    color: #0000FF;
    text-decoration: none;
}

.zhimingwangzhan {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    font-size: 20px;
}

.zhimingwangzhan_A {
    display: flex;
    width: 25%;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.zhimingwangzhan_A svg {
    width: 30px;
    height: 30px;
}



/******新闻样式*************/
.qingqiuxinwen {
    display: flex;
    width: 100%;
    min-height: 600px;
    background-color: #F7F3E9;
    flex-direction: column;
    box-sizing: border-box;
}

/* 每一条新闻 */
.content-item {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* 标题（建议用 a 标签） */
.content-item-title {
    flex: 1;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    /* a 标签也生效 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-item-title:hover {
    color: #1e90ff;
}

/* 时间 */
.content-item-time {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

@media (max-width: 600px) {

    html,
    body {
        font-size: 20px;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        overflow: hidden;
        /* 整个页面不滚动 */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .main-content {
        width: 100%;
        min-width: 0;
        padding: 0 2vw;
        box-sizing: border-box;
        gap: 8px;
        height: 100vh;
        /* 用自身滚动 */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .main-content::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .xianluA,
    .xianluB {
        height: 54px;
        gap: 2px;
    }

    .xianlu1,
    .xianlu2,
    .xianlu3,
    .xianlu4 {
        font-size: 20px;
        height: 36px;
        line-height: 36px;
        border-radius: 14px;
        padding: 0 2px;
    }

    .zhimingwangzhan {
        font-size: 18px;
        padding: 0;
    }

    .zhimingwangzhan_A {
        width: 25% !important;
        max-width: 25% !important;
        flex-basis: 25% !important;
        height: 54px !important;
        font-size: 18px !important;
        gap: 2px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .zhimingwangzhan_A svg {
        width: 18px;
        height: 18px;
    }

    .qingqiuxinwen {
        min-height: 0;
        padding: 0 1vw;
    }

    .content-item {
        padding: 4px 2px;
        gap: 4px;
    }

    .content-item-title {
        font-size: 16px;
    }

    .content-item-time {
        font-size: 16px;
    }
}