/* 移动端全局重置 */
@media screen and (max-width: 768px) {

    /* 头部*/
    body {
        /* width: 100%; */
        overflow-x: hidden;
        max-width: 100vw
    }

    ;

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .top {
        width: 100vw;
        background-color: #153860;
        color: #fff;
        height: 54px;
        margin-top: 44px;
        position: relative;
        margin-bottom: 0;
        padding-top: 7px;
        box-sizing: border-box;

    }

    .top .m-logo {

        width: 281px;
        height: 36px;
        display: block;
        margin-left: 19px;
    }

    .top .pc-logo {
        display: none;
    }

    .top .search {
        display: none;
    }

    .wrapper {
        width: 100vw;

        margin: 0;
        /* padding: 0 15px; */
    }

    /* 汉堡菜单 */
    .nav {
        height: 0;
    }

    .nav .hamburger {
        display: block;
        width: 25px;
        height: 20px;
        position: absolute;
        top: -40px;
        right: 15px;
        z-index: 100;
        cursor: pointer;
    }

    .nav .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #FFFFFF;
        margin: 5px 0;
        border-radius: 2px;
    }

    .nav ul {
        display: none;
        flex-direction: column;
        background: #153860;
        position: absolute;
        top: -2px;
        left: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
        z-index: 99;
        padding: 10px 0;
        opacity: 0.85;
        padding-left: 27px;
    }

    .nav ul.active {
        display: flex;
    }

    .nav li {
        padding: 8px 15px;
        border-bottom: 1px solid #f5f5f5;
        height: 46px;
        width: 85vw;
    }

    .nav ul li a {
        display: block;
        width: 60px;
        height: 20px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
        text-align: left;
        font-style: normal;
        text-transform: none;
        line-height: 27px;
    }

    .nav li ul {
        position: static;
        border: none;
        padding-left: 15px;
    }

    .nav ul li:hover ul {
        display: none;
        float: none;
        position: absolute;
    }

    .content {
        width: 100vw;
        height: auto;
        padding: 0 4vw;
        margin: 0;
        background-color: #FFFFFF;
    }

    .center {
        width: 92vw;
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .center .title {
        display: block;
        width: 92vw;
    }

    .left1 {
        width: 170px;
        height: 30px;
        line-height: 30px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 12px;
        color: #CCCCCC;
        text-align: left;
        font-style: normal;
        text-transform: none;
    }

    .title h3 {
        width: 92vw;
        height: 36px;
        background-color: #153860;
        color: #FFFFFF;
        line-height: 36px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
        text-align: left;
        font-style: normal;
        text-transform: none;
        padding-left: 10px;
        box-sizing: border-box;
    }

    /* 1. 让 title 盒子变成弹性布局，方便汉堡按钮靠右 */

    /* 2. 汉堡按钮样式 */
    .title .hamburger {
        width: 23px;
        height: 24px;
        position: absolute;
        top: 138px;
        left: 82vw;
        cursor: pointer;
        /* 移动端才显示，PC端隐藏 */
        display: none;
    }

    .title span {
        padding-top: 0px;
    }

    .title .hamburger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 1px;
        background: #fff;
        /* 线条颜色，可根据你的标题栏背景调整 */
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* 三条线的位置 */
    .title .hamburger span:nth-child(1) {
        top: 0;
    }

    .title .hamburger span:nth-child(2) {
        top: 8px;
    }

    .title .hamburger span:nth-child(3) {
        top: 16px;
    }

    /* 点击后变成叉号的动画 */
    .title .hamburger.active span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .title .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .title .hamburger.active span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    /* 3. 列表的默认和激活状态 */
    .left2list {
        /* 默认隐藏 */
        display: none;
        background: #fff;
        /* 列表背景色，可根据需要修改 */
        /* 阴影效果 */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        padding: 10px 0;
        margin: 0;
    }

    /* 激活时显示 */
    .left2list.active {
        display: block;
    }

    /* 4. 响应式：仅在移动端显示汉堡按钮 */
    @media (max-width: 767px) {
        .title .hamburger {
            display: block;
        }
    }

    .left2list {
        width: 92vw;
        height: auto;
        background-color: #FFFFFF;
        padding-top: 0;
        padding-left: 10px;
        box-sizing: border-box;
        margin-top: 0px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .item2 {
        width: 100%;
        height: 41px;
        border-bottom: 1px solid #CCCCCC;
        background-color: #FFFFFF;
        padding-top: 10px;
    }

    .left2list li:hover {
        background-color: #FFFFFF;
    }

    .item2 a {
        padding: 0;
        width: 66px;
        height: 20px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 14px;
        color: #153860;
        text-align: left;
        font-style: normal;
        text-transform: none;
        padding-top: 10px;
        vertical-align: middle;
    }

    .center .left {
        width: 92vw;
        height: auto;
        padding-top: 22px;
        box-sizing: border-box;
        padding-left: 20.8vw;
        padding-right: 20.8vw;
        position: relative
    }

    .left img {
        width: 50vw;

        height: auto;
        display: flex;
    }

    .onimg {
        width: 50vw;
        height: 53px;
        position: relative;
        top: -11vh;

    }

    .onimg .name {
        width: 91px;
        height: 17px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 12px;
        color: #FFFFFF;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin-left: 9px;
    }

    .onimg .des {
        width: 98px;
        height: 15px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 10px;
        color: #FFFFFF;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin-left: 9px;
        margin-top: 0;
    }

    .right {
        width: 92vw;
        height: auto;
        margin: 0;
        margin-top: 25px;
    }

    .right1 {
        height: auto;
        margin-bottom: 20px;
    }

    .right1 .T {
        width: 157px;
        height: 20px;
        padding-left: 10px;
    }

    .right1 img {
        width: 30px;
        height: 21px;
    }

    .right1 span {
        width: 157px;
        height: 20px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: bold;
        font-size: 14px;
        color: #2F2F2F;
        text-align: left;
        font-style: normal;
        text-transform: none;
    }

    .rdes {
        width: 92vw;
        height: auto;

        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 12px;
        color: #454545;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin-top: 7px;
    }



    /* 底部 */
    .bottom {
        width: 100vw;
        margin: 0;
        height: auto;
    }

    .bottom_logo {
        width: auto;
        height: auto;
        margin-top: 14px;
    }

    .bottom_logo .boimgpc {
        display: none;
    }

    .bottom_center {
        width: 100vw;
        margin-top: 25px;
        height: auto;
        display: flex;
        justify-content: flex-start;
    }

    .list_link {
        width: 75vw;
        height: 29px;
    }

    .list_link ul {
        height: auto;
        padding-left: 35px;
    }

    .list_link ul li {
        width: 60px;
        height: 9px;
        padding: 0;
        line-height: 9px;
        margin-bottom: 8px;
    }

    .list_link ul li a {
        width: 54px;
        height: 9px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 6px;
        color: #FFFFFF;
        text-align: left;
        font-style: normal;
        text-transform: none;

    }

    .bottom_logo .boimgm {
        display: flex;
        width: 60vw;
        height: auto;
    }

    .ewm {
        width: auto;
        height: auto;
    }

    .ewm img {
        width: 29px;
        height: 29px;
    }

    .copyright {
        padding: 0;
        width: 100vw;
        box-sizing: border-box;
        padding-left: 30vw;
        padding-top: 25px;
    }

    .copyright p {
        width: 75px;
        height: 6px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 4px;
        color: #FFFFFF;
        text-align: center;
        font-style: normal;
        text-transform: none;
        line-height: 25px;
    }
}