
/* 
 *  对于移动设备，px是抽象单位（对应电脑显示器可能是2px到30px物理像素不等），一般移动设备的浏览器为980px，BlackBerry、IE为1024px。
 *  以下css类都在本文档定义的，不会在具体应用中增添属性，可以直接在文末定义其相应的移动版式样，以求在移动端尽快响应
*/
@media only screen and (max-width: 840px) {
    :root {
        --box-main-width: 100%;
    }

    .menu-float-left, .menu-float-right, .tb-footer {
        display: none; /*隐藏*/
    }

    #toTop {
        right: -25px;
        bottom: 50%;
        /*竖向椭圆*/
        clip-path: ellipse(25px 32px);
    }

    /* 普通网页版头 */
    header {
        margin: 0 auto;
        padding: 0;
        height: auto;
        background: none;
    }

        header table {
            display: none;
        }

    .box-site-title {
        display: none;
    }

    .box-site-title-mob {
        display: flex;
    }
    /* ---------------- */

    footer {
        background-color: transparent;
    }


    /*--移动版菜快捷导航--*/
    .tb-nav-mob {
        width: 100%;
        display: table;
    }
    /* ------------------- */

    .box-main-bg {
        margin: 0 auto 30px auto;
        padding: 0 0 10px 0;
        width: 100%;
    }

    .box-main {
        margin: 0 auto;
        padding: 0 10px;
        width: 100%;
        min-height: 200px;
        height: auto;
        border: none;
        box-shadow: none;
    }

    .adv-footer-shell {
        width: 100%;
        padding: 20px 10px 10px 10px;
    }


    /* 移动端显示显示 */
    .img-mob {
        display: inline-block;
    }

    /*分页导航（展后报告、新闻、咨询等的list列表页）*/
    .box-list-nav {
        line-height: 40px;
    }

    /* 新闻图片类 */
    .news-img {
        padding: 0;
    }

        .news-img img {
            width: initial;
            max-width: 100%;
        }
}
