/* 移动端全局重置 */
@media screen and (max-width: 768px) {

    /* 头部*/
    html,
    body {
        /* width: 100%; */
        overflow-x: hidden;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }

    

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .top {
        width: 100vw;
        background-color: #153860;
        color: #fff;
        height: 54px;
        margin-top: 0px;
        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;
        margin: 0;
        padding: 0 4vw;
        position: relative;
        background-color: #FFFFFF;
        box-sizing: border-box;
        padding-top: 57px;
    }




    .content {
        margin: 0;
        width: 100vw;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .content .left {
        height: auto;
    }

    .content .left .left1 {
        width: 170px;
        height: 17px;
        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;
        position: absolute;
        top: 10px;
    }

    .left .left2list {
        width: 92vw;
        height: auto;
        background-color: #FFFFFF;
        padding-top: 0;
        padding-left: 10px;
        box-sizing: border-box;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .item2 {
        width: 100%;
        height: 41px;
        border-bottom: 1px solid #CCCCCC;
        background-color: #FFFFFF;
    }

    .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;
    }

    /* 1. 让 title 盒子变成弹性布局，方便汉堡按钮靠右 */
    .title span {
        display: none;
    }

    .title h3 {
        width: 75px;
        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;
        margin-top: 0px;
    }

    .right .title {
        display: block;
        width: 92vw;
        height: 36px;
        background-color: #153860;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0;
        padding-left: 10px;
        box-sizing: border-box;
        position: absolute;
        top: 32px;

    }

    /* .right img {
        display: block;
        position: relative;
    } */

    .right .title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }

    /* 2. 汉堡按钮样式 */
    .title .hamburger1 {
        width: 23px;
        height: 24px;
        position: absolute;

        top: 10px;
        left: 81vw;
        cursor: pointer;
        /* 移动端才显示，PC端隐藏 */
        display: none;
    }

    .content .title span {
        display: none;

    }

    .title .hamburger1 span {
        display: block;
        position: absolute;
        width: 100%;
        height: 1px;
        background: #fff;
        /* 线条颜色，可根据你的标题栏背景调整 */
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* 三条线的位置 */
    .title .hamburger1 span:nth-child(1) {
        top: 0;
    }

    .title .hamburger1 span:nth-child(2) {
        top: 8px;
    }

    .title .hamburger1 span:nth-child(3) {
        top: 16px;
    }

    /* 点击后变成叉号的动画 */
    .title .hamburger1.active span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .title .hamburger1.active span:nth-child(2) {
        opacity: 0;
    }

    .title .hamburger1.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;
    }
.child {
        padding: 0;
        width: auto;
        height: 35px;
        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;
        border-bottom: 1px dashed #CCCCCC;
        /* display: block;
        box-sizing: border-box; */
    }
    /* 4. 响应式：仅在移动端显示汉堡按钮 */
    @media (max-width: 767px) {
        .title .hamburger1 {
            display: block;
        }
    }

    .content .right {
        width: 92vw;
        margin-top: 11px;
        height: auto;
        position: static;
    }

    .imgcon {
        width: 92vw;
        height: auto;

    }

    .imgcon img {
        width: 92vw;
        height: auto;
        display: flex;
    }

    .white {
        width: 92vw;
        color: black;
        background: #F7F7F7;
        height: auto;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 12px;
        color: #000000;
        text-align: left;
        font-style: normal;
        text-transform: none;
        height: 33px;
    }

    .white h4 {
        margin: 0;
        margin-top: 7px;
        width: 98px;
        height: 10px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 12px;
        color: #000000;
        text-align: center;
        font-style: normal;
        text-transform: none;
    }

    .corner-top-left,
    .corner-bottom-right {
        display: none;
    }

    .xiimg {

        width: 100%;
        height: auto;

        display: flex;

        margin-top: 0;



    }

    .xiimg img {
        display: block;
        width: 15vw;
        display: flex;
        height: auto;

    }

    .imgdes {
        /* padding-left: 5px; */
        display: block;
        width: 92vw;
        padding-left: 0;
        background-color: #F7F7F7;
        height: auto;
        margin-bottom: 21px;
    }
.imgdes ul{
gap:0;
}
    .imgdes li {
        
        width: 15vw;
        padding-right:0.45vw;
    }

    .imgdes li a {
        width: 100%;
        height: auto;

    }
.imgdes ul li:nth-child(1) img {
    width: 100%;
    height: 150px;
   
 }
.imgdes ul li:nth-child(2) img {
    width: 100%;
    height: 150px;
   
 }
.imgdes ul li:nth-child(3) img {
    width: 100%;
    height: 150px;
  
 }
.imgdes ul li:nth-child(4) img {
    width: 100%;
    height: 150px;
   
 }
.imgdes ul li:nth-child(5) img {
    width: 100%;
    height: 150px;
  
 }
.imgdes ul li:nth-child(6) img {
    width: 100%;
    height: 150px;
   
 }
.name{
        width: 10.4vw;
        height: 17px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 12px;
        color: #11365D;
        text-align: left;
        font-style: normal;
        text-transform: none;
        border-bottom: 1px solid #10355D;
        padding-bottom: 0.8vw;

    }

    .job {
        width: 14vw;
        height: 15px;
        font-family: Source Han Sans SC, Source Han Sans SC;
        font-weight: 400;
        font-size: 10px;
        color: #454545;
        text-align: left;
        font-style: normal;
        text-transform: none;
        padding-bottom: 4px;
    }





    /* 底部 */
    .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: block;
        width: 60vw;
        height: auto;
        display: flex;
    }

    .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;
    }
}