.app-detail {
    display: flex;
    font-family: 'Roboto', Arial, "PingFang SC", "微软雅黑", sans-serif;
    margin: 20px 0 15px 0;
}

.app-detail .app-image {
    width: 100%;
}

.app-detail .app-name {
    display: block;
    margin-bottom: 5px;
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
    padding-top: 20px;
}

.app-detail .app-category {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #6d6d6d;
    font-size: 12px;
    opacity: .38;
}

.app-detail .download-button {
    margin-right: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background-color: #007dff;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    display: block;
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    margin-top: calc(50% - 18px)
}

.app-detail .download-button:hover {
    background-color: #117dee;
}

.banner-background {
    position: relative;
    margin: 20px 0;
}

.banner {
    height: 410px;
    padding: 15px 0;
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
}

.banner-button {
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 50px;
    opacity: 0;
    margin-top: 180px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.banner-left {
    left: 10px;
}

.banner-right {
    right: 10px;
}

.banner-background:hover .banner-left {
    background: rgba(0, 0, 0, 0.4);
    opacity: 0.8;
}

.banner-background:hover .banner-right {
    background: rgba(0, 0, 0, 0.4);
    opacity: 0.8;
}

.banner::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 10px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 6px;
}

.banner::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    background-color: #02adf7;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}

.banner::-webkit-scrollbar-track {
    /*滚动条里面轨道*/

}


.banner .banner-item {
    margin-right: 20px;

}

.banner .banner-item img {
    width: 230px;
    height: 410px;
    border-radius: 12px;
    display: block;
}

.banner-background .icon {
    opacity: 0.8;
}

.banner-item img {
    cursor: pointer;
}

.banner-item img:hover {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

.left-icon {
    transform: rotate(180deg);
}

.app-desc {

    width: 100%;
    padding: 40px 0;
    margin-top: -1px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;

}

.app-desc .title {

    font-size: 20px;
    color: #000;
    line-height: 28px;
    margin-bottom: 20px;
}

.app-desc .desc-content {
    margin-top: 40px;
    width: 100%;
    height: auto;
    opacity: .8;
    font-size: 14px;
    color: #000;
    padding-left: 20px;
}

.table-bar {
    display: flex;
    border-bottom: 1px solid #f7f7f7;
    justify-content: center;
}

.table-bar .bar-item {
    text-align: center;
    padding: 10px 20px;
    color: #007AFF;
    font-size: 16px;
    display: inline-block;
}

.table-bar .active {
    border-bottom: 2px solid #007AFF;
    font-weight: 700;
}

.table-content {
    padding: 20px;
}

.table-content .content-item {
    display: none;
    height: 350px;
    padding-top: 50px;
}

.content-active {
    display: flex !important;
}

#h5-content {
    flex-wrap: wrap;
}


#h5-content .url {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #007AFF;
    text-align: center;
}

#applet-content {
    justify-content: center;
}

#applet-content .item-tip {
    color: #777;
    font-size: 14px;
    text-align: center;
}

#applet-content .item-tip-type {
    font-size: 14px;
    text-align: center;
}

#app-content {
    flex-wrap: wrap;
    justify-content: center;
}

.content-qrcode {
    height: 256px;
    width: 256px;
}

@media only screen and (max-width: 767px) {
    .content-qrcode {
        height: 200px;
        width: 200px;
    }

    .table-content .content-item {
        display: none;
        height: 400px;
    }

}