body {
    background-color: #FAFAFC;
}
.tmt-banner {
    width: 100%;
    height: 466px;
    background-image: url(../images/app-banner.png);
    background-size: cover;
    background-position: center;
}

.info {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.info .title {
    font-size: 36px;
    color: #010101;
    font-weight: 400;
    line-height: 56px;
}

.info .desc {
    font-size: 16px;
    color: #383838;
    margin-top: 10px;  
    font-weight: 400;  
}

.tmt-bg {
    min-height: calc(100vh - 466px - 84px - 12px);
    display: flex;
    align-items: space-between;
    padding-top: 32px;
}


.tmt-app {
    flex: 1;
}

/* 标签 */
.tmt-tab {
    width: auto;
    height: auto;
    display: flex;
}

.tmt-tab-item {
    width: 196px;
    height: 44px;
    line-height: 44px;
    background-color: #F0F2F3;
    text-align: center;
    cursor: pointer;
}

.active {
    background-image: url(../images/active.png);
    color: #fff;
}



/* app列表 */
.tmt-app-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 24px;
}

.tmt-app-item {
    width: 268px;
    height: 282px;
    border-radius: 24px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    margin-right: 14px;
    padding: 28px 24px;
    border: 1px solid #F5F7FE
}

.tmt-app-item:nth-child(3n){
    margin-right: 0;
}


/* .tmt-app-item:hover {
    background-color: #EFEFEE;
    border: 1px solid #F5F7FE
} */

.tmt-app-item img {
    width: 70px;
    height: 65px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.tmt-app-item .tmt-app-name {
    font-size: 16px;
    color: #010101;
    font-weight: 700;
    margin-bottom: 15px;
}

.tmt-app-item .tmt-app-desc {
    font-size: 12px;
    color: #9A9694;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 20px;
    /* 最多显示三行 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    height: 50px;
}

.tmt-app-item .tmt-app-btn {
    width: 204px;
    height: 38px;
    background-color: #FF8A000F;
    border-radius: 35px;
    font-size: 14px;
    color: #FF8A00;
    font-weight: 400;
    text-align: center;
    line-height: 38px;
}

.tmt-app-item .tmt-app-btn:hover{
    background: linear-gradient(253.58deg, #FFC000 1.55%, #F2444B 95.8%);
    color: #fff;
}

/* 分页 */
.tmt-page {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    margin-bottom: 32px;
}

.page-item {
    height: 32px;
    width: 32px;
    border: 1px solid #D9D9D9;
    color: #000000D9;
    margin-right: 8px;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
}

.disabled {
    color: #D9D9D9;
}

.page-num-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    height: auto;
}

.current {
    border: 1px solid #FF8A00;
    color: #FF8A00;
}

.dot {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: unset;
    color: #00000040;
}

.dot div {
    border: 2px solid #00000040;
    border-radius: 50%;
    margin-right: 3px;
}


