    @charset "utf-8";
    /* CSS Document */
    
    * {
        margin: 0;
        padding: 0;
    }
    
    html,
    body {
        font-size: 62.5%;
        color: #333;
        font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
        height: 100%;
        overflow: hidden;
        background: url(img/bg.jpg) no-repeat;
    }
    
    a {
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    ul,
    li {
        list-style: none;
    }
    
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0px;
        z-index: 999;
        padding: 20px 0;
    }
    
    .w {
        width: 80%;
        margin: 0 auto;
    }
    
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        line-height: 0;
    }
    
    .menu {
        display: flex;
    }
    
    .menu li:last-child {
        margin-left: 5rem;
    }
    
    .menu a {
        color: #fff;
        display: block;
        font-size: 3rem;
    }
    
    .menu a:hover {
        text-decoration: underline;
    }
    
    .container {
        width: 100%;
        margin-top: 148px;
    }
    
    .content {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 50px;
        overflow: hidden;
    }
    
    .content .left {
        width: 45%;
    }
    
    .content .right {
        width: 50%;
        display: flex;
        justify-content: space-between;
    }
    
    .content .left img {
        width: 100%;
    }
    
    .content .right img {
        width: 45%;
    }
    
    .privacy-body {
        overflow: auto;
    }
    
    .privacy {
        padding: 5rem 4rem;
        color: #fff;
    }
    
    .privacy h1 {
        text-align: center;
        font-size: 3rem;
        line-height: 6rem;
        margin-bottom: 2rem;
    }
    
    .privacy p {
        font-size: 1.6rem;
        line-height: 3.2rem;
        margin-top: 1rem;
    }
    
    .privacy li {
        margin-top: 2rem;
    }
    
    .privacy h3 {
        font-size: 2.4rem;
        line-height: 3rem;
        margin: 3rem 0 1rem;
    }
    
    .privacy h4 {
        font-size: 2rem;
        line-height: 2.6rem;
        margin: 2rem 0 1rem;
    }
    
    .privacy a {
        color: #fff;
        font-weight: bold;
        text-decoration: underline;
    }
    
    .privacy a:hover {
        text-decoration: none;
    }