* {
    margin: 0px;
    padding: 0px;
}
@media screen and (min-width:800px){
    .h5-container {
        display: none;
    }
    .container {
        width: 100%;
        height: 100vh;
        background: #000;
        color: #fff;
        display: grid;
        grid-template-rows: 108px 1fr 108px;
    }
    .nav{
        display: flex;
        align-items: center;
        padding-left: 100px;
    }
    .logo {
        font-size: 30px;
        display: flex;
        align-items: center;
    }
    .logo img {
        display: block;
        width: 50px;
        margin-right: 10px;
    }
    .content{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pics {
        width: 300px;
        height: 550px;
        margin-right: 40px;
        overflow: hidden;
        border-radius: 16px;
    }
    .pics img {
        display: block;
        width: 100%;
        object-fit: cover;
    }
    .text {
        width: 460px;
    }
    .name {
        font-size: 54px;
        font-weight: 600;
    }
    .slogen{
        height: 52px;
        line-height: 52px;
        display: block;
        font-size: 34px;
        display: flex;
        margin: 27px 0 46px;
    }
    .slogen span {
        margin-left: 5px;
        padding: 0 5px;
        display: inline-block;
        background: #24C373;
        color:#0c0e15;
    }
    .desc{
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        text-align: justify;
    }
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        color: #b8c0cc;
        background: #131620;
    }
    .copyright {
        display: flex;
        color: #8c8d91;
        font-size: 14px;
    }
    .copyright a {
        color:#8c8d91; 
        display: inline-block;
    }
    .copyright div {
        margin: 0 16px;
    }
    .footer .desc span{
        display: inline-block;
        padding: 0 20px; 
        height: 20px;
        line-height: 20px;
    }
    .footer .desc span:nth-child(2) {
        border-left: 1px solid #b8c0cc;
    }
}
@media screen and (max-width: 800px) { 
    .container {
        display: none;
    }
    .h5-container {
        display: block;
        background: #000;
        color: #fff;
    }
    .nav{
        display: flex;
        align-items: center;
        height: 55px;
        padding-left: 30px;
        padding-top: 20px;
    }
    .logo {
        font-size: 26px;
        display: flex;
        align-items: center;
    }
    .logo img {
        display: block;
        width: 40px;
        margin-right: 10px;
    }
    .content{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    .pics {
        width: 80%;
        margin-top: 20px;
        border-radius: 10px;
        overflow: hidden;
    }
    .pics img {
        display: block;
        width: 100%;
    }
    .text {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
    }
    .name {
        font-size: 36px;
        font-weight: 600;
    }
    .slogen{
        height: 30px;
        line-height: 30px;
        display: block;
        font-size: 22px;
        display: flex;
        margin: 16px 0;
    }
    .slogen span {
        margin-left: 5px;
        padding: 0 5px;
        display: inline-block;
        background: #24C373;
        color:#0c0e15;
    }
    .desc{
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        text-align: justify;
    }
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        color: #b8c0cc;
        background: #131620;
        height: 126px;
        font-size: 14px;
    }
    .copyright {
        display: flex;
        flex-direction: column;
        color: #8c8d91;
        font-size: 12px;
    }
    .copyright a {
        color:#8c8d91; 
        display: inline-block;
    }
    .copyright div {
        margin: 0 16px;
    }
    .copyright span {
        margin-bottom: 6px;
    }
    .footer .desc span{
        display: inline-block;
        padding: 0 20px; 
        height: 20px;
        line-height: 20px;
    }
    .footer .desc span:nth-child(2) {
        border-left: 1px solid #b8c0cc;
    }
}