    @charset "utf-8";
    /* CSS Document */

    *,
    body {
        margin: 0;
        padding: 0;
    }

    html {
        font-size: 62.5%;
        color: #fff;
        font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
    }

    body {
        background: url(images/bg.png) no-repeat;
        background-size: 100% 100%;
    }

    a {
        color: #1A1A1A;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    ul,
    li {
        list-style: none;
    }

    .main {
        height: 100%;
        position: relative;
    }

    .w {
        width: 80%;
        margin: auto;
    }

    .header {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 0;
    }

    .header span {
        font-size: 3rem;
    }

    .logo {
        font-size: 3rem;
        line-height: 150%;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .logo:hover {
        text-decoration: none;
    }

    .logo img {
        margin-right: 2rem;
    }

    .content {
        padding: 2% 0;
    }

    .title {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .title .txt {
        width: 60%;
        margin-right: 10%;
    }

    .title h1 {
        font-size: 7rem;
        line-height: 120%;
        font-weight: 500;
        margin-bottom: 2rem;
        color: #FFA696;
    }

    .title p {
        font-size: 3rem;
        line-height: 150%;
        color: #EFD5DB;
        margin-top: 10%;
    }


    .title a {
        margin-top: 6rem;
        display: inline-block;
    }

    .footer {
        padding: 2rem 0;
        text-align: center;
        font-size: 2.2rem;
        line-height: 4rem;
        color: rgba(239, 213, 219, 0.71);
    }


    @media screen and (max-width: 1024px) {
        .w {
            width: 90%;
        }


        .title h1 {
            font-size: 4rem;
        }
    }

    @media screen and (max-width: 640px) {
        .w {
            width: 90%;
        }

        .header, .title {
            flex-direction: column;
        }

        .menu {
            margin-top: 2rem;
        }

        .title .txt {
            width: auto;
            margin: 0 0 10%;
        }

        .title h1 {
            font-size: 4rem;
        }

    }