/* 首页移动端双列布局。此文件只由 index.jsp 引入，避免影响产品体验页。 */
@media screen and (max-width: 768px) {
    .home-page .second_screen > .screen > section,
    .home-page .third_screen > .screen > section,
    .home-page .fourth_screen > .screen > section {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        align-items: stretch;
        gap: 12px !important;
    }

    .home-page .second_screen > .screen > section > a,
    .home-page .third_screen > .screen > section > a {
        box-sizing: border-box;
        display: flex !important;
        float: none !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100% !important;
        min-width: 0;
        min-height: 164px;
        height: auto !important;
        margin: 0 !important;
        padding: 16px 8px !important;
        overflow: hidden;
    }

    .home-page .second_screen > .screen > section > a img,
    .home-page .third_screen > .screen > section > a img {
        flex: 0 0 auto;
        width: 56px !important;
        height: 56px !important;
        margin: 0 auto !important;
        object-fit: contain;
    }

    .home-page .second_screen > .screen > section > a h4,
    .home-page .third_screen > .screen > section > a h4 {
        display: -webkit-box;
        width: 100%;
        min-height: 42px;
        margin: 10px 0 5px !important;
        overflow: hidden;
        color: #333;
        font-size: 15px !important;
        line-height: 21px !important;
        text-align: center;
        word-break: break-word;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .home-page .second_screen > .screen > section > a p,
    .home-page .third_screen > .screen > section > a p {
        display: -webkit-box;
        width: 100%;
        min-height: 38px;
        max-height: 38px;
        margin: 0 !important;
        overflow: hidden;
        color: #777;
        font-size: 12px !important;
        line-height: 19px !important;
        text-align: center;
        word-break: break-word;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .home-page .second_screen > .screen > section > a > span,
    .home-page .third_screen > .screen > section > a > span {
        display: none !important;
    }

    .home-page .third_screen > .screen > section > a.more img {
        margin-top: 8px !important;
    }

    .home-page .fourth_screen > .screen > section {
        margin-bottom: 28px !important;
    }

    .home-page .fourth_screen > .screen > section > article {
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        min-width: 0;
        min-height: 190px;
        margin: 0 !important;
        padding: 16px 8px !important;
        border: 1px solid #edf0f4 !important;
        border-radius: 8px;
        background: #fff;
        text-align: center;
    }

    .home-page .fourth_screen > .screen > section > article img {
        width: 54px !important;
        height: 54px !important;
        object-fit: contain;
    }

    .home-page .fourth_screen > .screen > section > article h4 {
        display: -webkit-box;
        width: 100%;
        min-height: 42px;
        margin: 10px 0 5px !important;
        overflow: hidden;
        font-size: 15px !important;
        line-height: 21px !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .home-page .fourth_screen > .screen > section > article p {
        display: -webkit-box;
        width: 100%;
        max-height: 57px;
        margin: 0 !important;
        overflow: hidden;
        color: #777;
        font-size: 12px !important;
        line-height: 19px !important;
        word-break: break-word;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    /* 数据统计：去掉 PC 端占位列，移动端三项等宽并列。 */
    .home-page .Counter {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 190px;
        height: auto !important;
        overflow: hidden;
        background-position: center center !important;
    }

    .home-page .Counter::before {
        position: absolute;
        z-index: 0;
        inset: 0;
        content: "";
        background: rgba(20, 61, 111, .20);
        pointer-events: none;
    }

    .home-page .Counter > div,
    .home-page .Counter > section > span {
        display: none !important;
    }

    .home-page .Counter > section {
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-items: start;
        width: 100% !important;
        margin: 0 !important;
        padding: 38px 10px !important;
        gap: 0 !important;
    }

    .home-page .Counter > section > dl {
        position: relative;
        box-sizing: border-box;
        display: block !important;
        width: 100% !important;
        min-width: 0;
        margin: 0 !important;
        padding: 0 8px;
        text-align: center;
    }

    .home-page .Counter > section > dl + dl::before {
        position: absolute;
        top: 3px;
        bottom: 3px;
        left: 0;
        width: 1px;
        content: "";
        background: rgba(255, 255, 255, .35);
    }

    .home-page .Counter > section > dl dt {
        margin: 0 0 10px;
        color: #e5ff22;
        font-size: 30px !important;
        font-weight: 500;
        line-height: 1;
        white-space: nowrap;
    }

    .home-page .Counter > section > dl dd {
        margin: 0;
        color: #fff;
        font-size: 12px !important;
        line-height: 18px;
        text-align: center;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .home-page .fifth_screen > .screen > section > .this_div {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        align-items: stretch;
        gap: 12px 10px;
        width: 100% !important;
    }

    .home-page .fifth_screen > .screen > section > .this_div > dl {
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100% !important;
        min-width: 0;
        margin: 0 !important;
        padding: 10px 6px !important;
    }

    .home-page .fifth_screen > .screen > section > .this_div > dl dt {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 68px;
    }

    .home-page .fifth_screen > .screen > section > .this_div > dl img {
        width: 100% !important;
        max-width: 135px;
        height: 64px !important;
        object-fit: contain;
    }

    .home-page .fifth_screen > .screen > section > .this_div > dl dd {
        display: -webkit-box;
        width: 100%;
        min-height: 38px;
        margin-top: 7px;
        overflow: hidden;
        font-size: 13px !important;
        line-height: 19px !important;
        text-align: center;
        word-break: break-word;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

@media screen and (max-width: 360px) {
    .home-page .second_screen > .screen > section,
    .home-page .third_screen > .screen > section,
    .home-page .fourth_screen > .screen > section {
        gap: 9px !important;
    }

    .home-page .second_screen > .screen > section > a,
    .home-page .third_screen > .screen > section > a,
    .home-page .fourth_screen > .screen > section > article {
        padding-right: 6px !important;
        padding-left: 6px !important;
    }

    .home-page .second_screen > .screen > section > a h4,
    .home-page .third_screen > .screen > section > a h4,
    .home-page .fourth_screen > .screen > section > article h4 {
        font-size: 14px !important;
    }

    .home-page .Counter {
        min-height: 178px;
    }

    .home-page .Counter > section {
        padding-right: 6px !important;
        padding-left: 6px !important;
    }

    .home-page .Counter > section > dl {
        padding-right: 4px;
        padding-left: 4px;
    }

    .home-page .Counter > section > dl dt {
        font-size: 27px !important;
    }

    .home-page .Counter > section > dl dd {
        font-size: 11px !important;
        line-height: 17px;
    }
}
