body {
    background-color: #FAFAFC;
}

.tmt-bg {
    display: flex;
    align-items: space-between;
    padding-top: 32px;
}

.tmt-detail {
    flex: 1;
    margin-right: 32px;
    background-color: #fff;
    border-radius: 24px;
    padding-bottom: 34px;
    max-width: calc(1200px - 32px - 336px);
}

.app-detail-intro {
    display: flex;
    width: 100%;
    padding: 24px 12px;
    justify-content: space-around;
}

.app-img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    margin-right: 16px;
}

/* 下载按钮 */
.local-down-btn{
    width: 124px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(253.58deg, #FFC000 1.55%, #F2444B 95.8%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}
.local-down-btn .btn-img {
    width: 24px;
    height: 24px;
}
.local-down-btn span {
    font-size: 16px;
}
.btn-center {
    margin: 0 auto;
}


.app-detail-intro-con {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 6px 0;
    margin-right: 24px;
    max-width: calc(100% - 140px - 16px - 124px - 24px);
}

.top-info, .bot-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.top-info .app-name {
    font-size: 24px;
    color: #2E2E2E;
    font-weight: bold;
}

.top-info .star-icon {
    margin: 0 24px;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.star-icon .star {
    width: 132px;
    height: 20px;
    margin-right: 8px;
}

.star-icon .star-num {
    font-size: 18px;
    color: #FFB23E;
}

.download-num {
    display: flex;
    justify-content: flex-start;
}

.download-num img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.download-num .download-num-text {
    font-size: 14px;
    color: #B2B4C7;
}

.bot-info .info-item {
    display: flex;
    width: 0;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex: 1;
}

.bot-info .info-item:last-child {
    margin-right: 0;
}

.bot-info .info-item span {
    font-size: 14px;
    font-weight: 400;
    color: #FF8A00;
}

.bot-info .info-item span:first-child {
    width: 63px;
}

.bot-info .info-item span:last-child {
    flex: 1;
    /* 超出内容点点点 */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.text-info {
    font-size: 14px;
    line-height: 24px;
    color: #B2B4C7;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-desc {
    height: auto;
    margin: 24px 0;
    padding: 48px;
    padding-top: 0;
    margin-top: 0;
}

.app-desc img {
    max-width: 100%;
    aspect-ratio: auto !important;
    width: unset !important;
    height: auto !important;
}


