* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    background-color: transparent;

    /* 统一box-sizing */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

    /* ios禁止点击效果 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    /* 字体 */
    font-family: Arial;
    font-size: 15px;
    font-weight: normal;
    color: #1f4e5a;

    line-height: 1;
}

a {
    text-decoration: none;
    outline: none;
    color: #1f4e5a;
}

body {
    user-select: none;
}

.app-download {
    width: 32px;
    height: 32px;
    background-color: #f6f6f6;
    padding: 8px;
    border-radius: 100px;
}

.app-footer {
    background-color: #36606B;
    padding: 16px;
    margin-top: 16px;
}

.app-footer > div:nth-child(1) {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.app-footer > div:nth-child(2) {
    color: #e2e2e2;
    padding-top: 8px;
}

.app-footer > div:nth-child(3) > a > img {
    width: 30px;
    height: 30px;
    padding: 4px;
    margin: 0px 2px 0px 2px;
    margin-top: 16px;
}

.app-footer > div:nth-child(4) {
    color: #9a9a9a;
    font-size: 13px;
    text-align: center;
    padding-top: 16px;
}

.app-detail-download {
    padding: 0px 16px 0px 16px;
}

.app-detail-download button {
    background-color: #517DA2;
    color: white;
    width: 100%;
    box-shadow: 0px 0px 5px #dddddd;
    height: 44px;
    border-radius: 8px;
}

.app-detail-gallery {
    padding: 16px 0px 16px 16px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.app-detail-gallery img {
    width: 80px;
    height: 160px;
    margin-right: 8px;
    box-shadow: 0px 0px 5px #dddddd;
    border-radius: 5px;
}

