﻿
.layui-layout-body {
    margin: 0 0;
}

.section img {
    width: 100%;

}

@font-face {
    font-family: "HarmonyOS_Sans_SC_Bold";
    src: url('../font/HarmonyOS_Sans_SC_Bold.woff2') format('truetype');/* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    font-display: swap;
}

.mobile_header{
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.5s;
    box-shadow: 0px 3px 15px 0px grey;
}

.mobile_header .mobile_container{
    display: flex;
    justify-content: space-between;
    height: 36px;
    align-items: center;
    padding: 0px 10px;
}

.mobile_header .logo{
    height: 36px;
    transform: scale(0.5);
    width: 18px;
}

.mobile_header .logo > a{
    display: block;
    height: 36px;
    width: 212px;
}

.mobile_header .mobile_container .menuList .imageClose{
    margin-right: 5px;
    margin-top: 5px;
    display: none;
}

.mobile_header .mobile_container .menuList .imageMenu{
    margin-right: 5px;
    margin-top: 5px;
}

.mobile_header .mobile_Menu{
    position: absolute;
    left: 0;
    top: 36px;
    width: 100%;
    overflow: hidden;
    background-color: #fffaf5;
    transition: all 0.5s;
    opacity: 0.9;
}

.mobile_header .mobile_Menu .hd_ul{
    display: flex;
    flex-direction: column;
}

.mobile_header .mobile_Menu .hd_ul .menu_item{
    border-bottom: 0.5vw dashed #f9d6a2;
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: bolder;
    font-family: 'HarmonyOS_Sans_SC_Bold';
    margin: 0px 10px;
}

.mobile_header .mobile_Menu .hd_ul .menu_item > a{
    line-height: 40px;
}

.mobile_header .mobile_Menu .hd_ul .menu_item:hover a{
    color: #F20D23;
}

.mobile_header .mobile_Menu .hd_ul .menu_item .bottomStyle{
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_header .mobile_Menu .hd_ul .menu_item .bottomStyle .solid{
    height: 3px;
    width: 10px;
    background-color: #f9d6a2;
    margin: 0 5px;
}

.mobile_header .mobile_Menu .hd_ul .menu_item .bottomStyle .circle{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #f9d6a2;
}

.mobile-qrcode-content {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.mobile-picture-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile_footer{
    display: flex;
    flex-direction: column;
    min-width: 360px;
    box-sizing: border-box;
    align-items: center;
    background: linear-gradient(to bottom, #fdf0d8, #f9d693);
}
.flexBox{
    background-color: #fdf0d8;
    padding: 20px 0px 0px 0px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.textMesg{
    margin: 30px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile_contain{
    min-height: 100vh;
    background-color: #fffaf5;
    display: flex;
    flex-direction: column;
    margin-top: 36px;
}
/*实现思路，当屏幕浏览器宽度小于* 768则启用*/
@media (max-width: 768px) {
    .page_pc {
        display: none;
    }
    .header-2020{
        display: none;
    }

    .story-content{
        display: none;
    }

    .page_mobile {
        display: block;
        max-width: 768px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .mobile_header{
        display: block;
    }

    .mobile_footer{
        display: block;
    }

    .story-content{
        display: none;
    }

}

@media (min-width: 768px) {
    .page_pc {
        display: block;
    }
    .header-2020{
        display: block;
    }

    .story-content{
        display: block;
    }

    .page_mobile {
        display: none;
    }

    .mobile_header{
        display: none;
    }

    .mobile_footer{
        display: none;
    }


}

