body {
    background: #fff;
    color: #666;
    padding: 0;
    margin: 0;
    user-select: none;
    font-family: 'Raleway', sans-serif, '微软雅黑';
    font-size: 14px;
}
a {
    text-decoration: none;
    color: #666;
}
body,
html,
.main {
    width: 600px;
    height: 100%;
    margin: auto;
    color: #fff;
}
.main {
    background-color: #555;
    background-image: url('/images/cxx/wallpaper.jpg');
    background-blend-mode: multiply;
    background-size: 100% 100%;
    overflow: auto;
    position: relative;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 10px 15px;
}
.main > .header, .main > .footer {
    position: fixed;
    width: 600px;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 60px;
    display: flex;
    z-index: 1;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
}
.main > .header {
    top: 0;
    bottom: auto;
}
.main > .footer i {
    font-size: 1.25em;
    padding-right: 3px;
}
.main > .footer > a {
    flex: 0 0 19%;
    margin: 0 0.5%;
}
.main > .footer > a > div {
    box-sizing: border-box;
    background-color: #eee;
    font-size: 16px;
    color: #000;
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main > .footer > a > div:hover {
    background-color: #fff;
    font-weight: bold;
}
.main > .body {
    margin: 60px 0;
}
.apps .app {
    display: flex;
    padding: 10px 0;
    border-bottom: #666 1px dashed;
    color: #fff;
}
.apps .app:hover {
    background-color: rgba(255,255,255,0.1);
}
.apps .app > .left {
    flex: 0 0 12%;
    margin-right: 2%;
    display: flex;
    align-items: flex-start;
}
.apps .app > .right {
    position: relative;
}
.apps .app > .right > div:nth-child(1) {
    display: flex;
    align-items: flex-start;
    font-size: 1.25em;
    padding-bottom: 5px;
}
.apps .app > .right > div:nth-child(1) > i {
    font-size: 1.2em;
    padding-left: 10px;
}
.apps .app .app-logo {
    width: 100%;
    padding-top: 100%;
    border-radius: 8px;
    background-color: #fff;
    background-size: 100% 100%;
}
.logo-container {
    width: 100%;
    padding-top: 60px;
    padding-left: 20px;
    position: relative;
    animation: colorChange 5s linear infinite;
}
.logo-container .logo {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    background-color: transparent;
    animation: textChange 5s linear infinite;
}
.logo-container .logo a {
    all: unset;
    cursor: pointer;
}
.app-detail {
    position: relative;
}
.app-detail .title {
    display: flex;
    padding: 10px 0;
}
.app-detail .title > .logo {
    flex: 0 0 100px;
}
.app-detail .title > .logo img {
    width: 90%;
}
.app-detail .title > .brief {
    flex: 1;
    padding-bottom: 5px;
}
.app-detail .title > .brief h1 {
    margin: 0;
}
.app-detail .title > .brief > div {
    padding: 4px 0;
}
.app-detail .title > .brief i.device {
    font-size: 20px;
    padding-right: 10px;
}
.app-detail .intro {
    padding: 10px 0;
    font-size: 16px;
    line-height: 150%;
}
.app-detail .snapshots {
    display: flex;
}
.app-detail .snapshots > div {
    flex : 0 0 33.33%;
    display: flex;
    justify-content: center;
}
.app-detail .snapshots img {
    width: 95%;
}
.app-detail .or {
    padding: 15px 0;
}
.button {
    padding: 5px 10px;
    background-color: #18bc9c;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    margin-rigth: 5px;
    border-radius: 8px;
}
.button:hover {
    background-color: #06aa88;
}
.button[disabled] {
    background-color: #d8d8d8;
    color: #888;
}
.button i {
    padding-right: 5px;
}

@keyframes textChange {
    0%, 100% {
        color: #FF5733;
    }
    25% {
        color: #33FF57;
    }
    50% {
        color: #5733FF;
    }
    75% {
        color: #33FF57;
    }
}

@media only screen and (max-width: 1024px) {
    body,
    html,
    .main {
        width: 100%;
    }
    .main > .header, .main > .footer {
        width: 100%;
    }
    .main > .footer > a > div {
        font-size: 12px !important;
    }
}
