*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 24px;
}
body{
    background-color: rgba(231, 245, 240, 1);
    height: 150vh;
}

.title{
    position: fixed;
    top: 0;
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    background-color: #ddeeff;
    text-align: center;
}
.sp_title1{
    font-size: .9rem;
    font-weight: bold;
}

.nav{
    background-color:#ccccff;
    height: 2rem;
    position: fixed;
    top: 2rem;
    width: 100%;
    text-align: center;
}
.nav ul li{
    display: inline-block;
    margin-right: 1.5rem;
    height: 2rem; 
    background-color:#ccccff;
    position: relative;
}
.nav ul li ul{
    position: absolute;
    left: 0;
    top: 2rem;
    visibility: hidden;
}
.nav a{
    color:#333;
    height: 2rem;
    line-height: 2rem;
    font-size: 1rem;
    display: block;
 
}


.status{
    background-color:#1d80e9;
    height: 2rem;
    width: 100%;
    line-height: 2rem;
    text-align: center; 
       
    position: fixed;
    top: 4rem;
}
.status>p{
    color: #fff;
}

.status>ul{
    display: flex;
    list-style: none;
    justify-content: center;
    background-color: #ccccff;
}
.status>ul>li{
    margin-right: 1rem;
}



@media (max-width:700px) {

    html{
        font-size: 16px;
    }
    .status>ul>li>a{
        font-size: .9rem;
    }
}