html {
    box-sizing: border-box;
}

*,
*::before,
*:after {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    background-color: #f1f5f6;
    font-size: 20px;
}
@font-face {
    font-family: 'fonts';
    src: url('//png.pookcdn.net/hw/romance/pc/fonts/No-move-1.woff');
}
.wrapper {
    min-width: 1440px;
}

.wrapper-center {
    width: 1440px;
    height: 1221px;
    margin: 0 auto;
    position: relative;
}

.header {
    width: 1920px;
    height: 1221px;
    font-family: 'fonts';
    background: url('//png.pookcdn.net/hw/romance/pc/communitity-bg.jpg') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-960px);
    -webkit-transform: translateX(-960px);
    -moz-transform: translateX(-960px);
    -ms-transform: translateX(-960px);
    -o-transform: translateX(-960px);
}

.header-content {
    width: 1440px;
    height: 100px;
    position: absolute;
    top: 320px;
    left: 50%;
    transform: translateX(-720px);
    z-index: 2;
    -webkit-transform: translateX(-720px);
    -moz-transform: translateX(-720px);
    -ms-transform: translateX(-720px);
    -o-transform: translateX(-720px);
    text-align: center;
}

.header-content p {
    color: #fff;
    margin-top: 4px;
    font-size: 24px;
    font-family: Arial;
}

.header-content img {
    margin-top: 30px;
}


/* nav */

.nav-container {
    width: 1440px;
    height: 100px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-720px);
    z-index: 2;
    -webkit-transform: translateX(-720px);
    -moz-transform: translateX(-720px);
    -ms-transform: translateX(-720px);
    -o-transform: translateX(-720px);
}

.logo {
    width: 180px;
    height: 70px;
    float: left;
}

.menu {
    width: 800px;
    height: 60px;
    float: right;
}

.menu ul {
    width: 800px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu .li a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}


/* footer */

.footer {
    width: 1920px;
    height: 280px;
    font-family: 'fonts';
    background: url('//png.pookcdn.net/hw/romance/pc/footer-bg.png') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-960px);
    -webkit-transform: translateX(-960px);
    -moz-transform: translateX(-960px);
    -ms-transform: translateX(-960px);
    -o-transform: translateX(-960px);
}

.up {
    width: 1440px;
    height: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
}

.up a {
    margin-left: 50px;
}

.down ul {
    width: 1440px;
    height: 125px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.li {
    color: #fff;
    line-height: 60px;
}

.li a {
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 1440px) {
    .wrapper {
        min-width: 1200px;
    }
    .wrapper-center {
        width: 1200px;
    }
    .header-content {
        width: 1200px;
        transform: translateX(-600px);
        -webkit-transform: translateX(-600px);
        -moz-transform: translateX(-600px);
        -ms-transform: translateX(-600px);
        -o-transform: translateX(-600px);
        text-align: center;
    }
    .nav-container {
        width: 1200px;
        transform: translateX(-600px);
        -webkit-transform: translateX(-600px);
        -moz-transform: translateX(-600px);
        -ms-transform: translateX(-600px);
        -o-transform: translateX(-600px);
    }
    .up {
        width: 1200px;
    }
    .down ul {
        width: 1200px;
    }
}