html,
body {
    padding: 0;
    margin: 0;
}

body {
    font-family: arial, 宋体, sans-serif;
    scrollbar-width: none;
    /* 针对 Firefox 浏览器 */
}

/* 隐藏滚动条 */
body::-webkit-scrollbar {
    display: none;
    /* 针对 Webkit 浏览器（如 Chrome 和 Safari） */
}

html {
    height: 100%;
    width: 100%;
}

.container {
    width: 100%;
    background-color: #FFFFFF;
    overflow: auto;
}

.menu{
    width: 35px;
    height: 35px;
    background-color: #E4007F;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.menu img{
    width: 28px;
    height: 28px;
    padding: 4px;
}

.banner {
    background-image: url(/statics/images/szwyn/mobile/indexBanner.png);
    width: 100%;
    height: 211px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bannerText {
    width: 100%;
    height: 85px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    top: 57px;
    font-family: Source Han Sans;
    font-size: 36px;
    font-weight: bold;
    line-height: 85px;
    text-align: center;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
}


.bottom {
    width: 100%;
    height: 93px;
    background-image: url(/statics/images/szwyn/mobile/bottomimg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 26px auto 0 auto;
    display: flex;
    flex-direction: column;
}

.bottomBtn {
    display: flex;
    flex-direction: row;
    padding: 48px 0 0 108px;
}


.bottomlogo {
    margin-left: auto;
    /* margin: 9px 65px 0 auto; */
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 100%;
    height: 93px;
    background: rgba(0, 0, 0, 0.83);
    padding-top: 13%;
}

.bottomlogo img {
    width: 18px;
    height: 18px;
    margin: 0 5px;
}


.qa {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0%;
    top: 87%;
}

.qa img {
    width: 34px;
    height: 34px;
    /* margin: 0 0 5px 30px; */
}


.menu-container {
    position: fixed;
    top: 0;
    right: -300px;
    width: 244px;
    height: 100%;
    background-color: #ffffff;
    transition: right 0.3s ease;
    z-index: 100;
    overflow: auto;
}

.menu-container.open {
    left: 0;
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 99;
}

.overlay.open {
    display: block;
    opacity: 1;
}

.menu1 {
    padding: 20px;
    color: #fff;
}

.close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 26px;
    right: 20px;
}

.menu1 ul {
    list-style: none;
    padding: 0;
}

.menu1 ul li {
    /* padding: 10px 0; */
    display: flex;
    flex-direction: row;
    border-top: 1px solid #F8F8F8;
    padding: 16px 0;
}

li img {
    width: 24px;
    height: 24px;
}


a{
    text-decoration: none;
    color: inherit;
}

li a {
    font-family: 思源黑体;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0em;
    font-variation-settings: "opsz"auto;
    font-feature-settings: "kern"on;
    color: #3D3D3D;
    margin-left: 10px;
    line-height: 26px;
}