html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;
}
.pc {
    display: block;
    width: 100%;
    padding-top: 64px;
    padding-bottom: 30px;
    min-width: 1200px;
}
.topBox{
    width: 100%;
    height: 64px;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #E5E5E5;
}
.topBox .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}
.topBox .top .logo{
    width: 200px;
}
.topBox .top .nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 16px;
    color: #333333;
}
.topBox .top .nav a{
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    line-height: 28px;
}
.topBox .top .nav a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #EA374D;
    transition: width 0.3s;
}
.topBox .top .nav a.active{
    color: #EA374D;
}
.topBox .top .nav a.active::after{
    width: 50%;
}
.pcItem{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    width: 100%;
    height: 900px;
}
.pcItem .mainImg{
    width: 530px;
}
.item1{
    height: 930px;
    background-image: url('../image/pc1Bg.png');
    background-size: 100% 100%;
}
.pc .footer{
    background: linear-gradient(0deg, #FFFFFF 0%, #FEF5EE 100%);
    width: 100%;
    text-align: center;
    color: #333333;
    font-size: 14px;
    line-height: 30px;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.mobile {
    text-align: center;
    display: none;
    width: 100%;
    position: relative;
    background-size: cover;
}
.mobile .wapbox{
    width: 100%;
    position: relative;
}
.mobile .mobileImg {
    width: 100%;
    display: block;
}
.mobile .first{
    position: relative;
}
.mobile .download{
    width: 250px;
    height: 45px;
    position: absolute;
    bottom: 50px;
    left: calc(50% - 125px);
    background: linear-gradient(0deg, #F5E5BD 0%, #FCF8EA 100%);
    border-radius: 23px;
    font-size: 16px;
    color: #2B2B2B;
    line-height: 45px;
}
.mobile .footer{
    width: 100%;
    text-align: center;
    color: #333333;
    font-size: 12px;
    line-height: 30px;
    padding: 60px 0;
}
.mobile .footer .email{
    margin-bottom: 10px;
    color: #9A4848;
}

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

    .mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }
}
