    @charset "utf-8";
    /* CSS Document */
    
    *,
    body {
        margin: 0;
        padding: 0;
    }
    
    html,
    body {
        font-size: 62.5%;
        color: #fff;
        width: 100%;
        height: 100%;
        font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
        background: #3b97f4;
    }
    
    a {
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    ul,
    li {
        list-style: none;
    }
    
    .main {
        height: 100%;
        position: relative;
    }
    
    .header {
        width: 70%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 0;
    }
    
    .logo {
        font-size: 2.4rem;
        line-height: 3rem;
        display: flex;
        align-items: center;
        color: #fff;
    }
    
    .logo:hover {
        text-decoration: none;
    }
    
    .logo img {
        margin-right: 2rem;
    }
    
    .menu {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 2rem;
        line-height: 3rem;
        padding: 1rem 3rem;
        border-radius: 30px;
    }
    
    .menu:hover {
        text-decoration: none;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .content {
        position: absolute;
        top: 117px;
        width: 70%;
        left: 15%;
        z-index: 5;
        height: calc(100% - 117px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
    }
    
    .title {
        flex: 1;
    }
    
    .title h1 {
        font-size: 5rem;
        line-height: 8rem;
        font-weight: normal;
    }
    
    .title a {
        margin-top: 5rem;
        display: block;
    }
    
    .pic {
        width: 50%;
        max-height: 100%;
    }
    
    .pic img {
        width: 100%;
    }
    
    .privacy {
        padding: 5rem 8rem;
        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;
    }
    p.b{
		font-weight: bold;
	}
    .privacy li {
        margin-top: 2rem;
    }
    .privacy h3 {
        font-size: 2.4rem;
        line-height: 3rem;
        margin: 5rem 0 1rem;
    }
    
    .privacy h4 {
        font-size: 2rem;
        line-height: 2.6rem;
        margin: 3rem 0 1rem;
    }
    
    .privacy .part {
        padding-top: 2rem;
    }
    
    .privacy a {
        color: #ffd70b;
    }
    
    @media screen and (max-width: 640px) {
        .header {
            display: block;
        }
        .menu {
            margin-top: 2rem;
            text-align: center;
        }
        .content {
            position: relative;
            top: 2rem;
            right: 15%;
            display: block;
        }
        .title a img {
            width: 100%;
        }
        .pic {
            display: block;
            width: 100%;
            margin: 5rem 0 0 -7%;
        }
        .privacy {
            padding: 5rem 3rem;
        }
    }