@charset "utf-8";

/* CSS Document */

*,
body {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    color: #fff;
    width: 100%;
    min-width: 640px;
    font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
    height: 100%;
}

body {
    background: #000;
}

.container {
    /* background: #fff; */
    text-align: center;
}

.main {
    /* max-width: 720px;
    margin: 0 auto; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.layout {
    padding: 12rem 0;
    width: 350px;
}

.logo {
    width: 15rem;
    border-radius: 50%;
    line-height: 0;
    margin: 0 auto;
    border: 3px solid #fff;
}

.logo img {
    width: 100%;
    border-radius: 50%;
}

.title {
    font-size: 3.2rem;
    line-height: 180%;
    margin-top: 1.3rem;
    font-weight: normal;
}

.start {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem 10rem;
    margin-top: 2rem;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7)
}

.start p {
    font-size: 2rem;
    line-height: 200%;
}

.welcome {
    font-size: 2rem;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.7)
}

.btn {
    width: 35rem;
    margin: 3rem auto;
    display: flex;
    justify-content: space-between;
}

.btn a {
    border: 1px solid #fff;
    border-radius: 2rem;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0.8rem 2rem;
    font-size: 1.6rem;
}

.btn a:hover {
    background: #fff;
    color: #000;
}

.apple_btn,.google_btn{width: 220px;height: 60px;border: 2px solid;border-radius: 12px;margin: 5rem auto;}
.apple_btn img,.google_btn img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 3rem 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.7)
}

footer p {
    font-size: 1.6rem;
    line-height: 3rem;
}

footer p:first-child {
    margin-bottom: 1rem;
}

footer a {
    color: #fff;
}

.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;
    color: rgb(255, 255, 255, 0.7);
}

.privacy li {
    margin-top: 2rem;
    list-style: none;
}

.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;
}

.privacy a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    html,
    body {
        min-width: 100%;
    }
    .privacy {
        padding: 5rem 3rem;
    }
}