﻿@charset "UTF-8";

/*分类*/
.tab {
    padding: 25px;
    background: #FFFFFF;
    border-radius: 6px;
    position: relative;
    margin-top: -80px;
    z-index: 2;
}

.tab div {
    display: flex;
    font-size: 16px;
}

.tab div span {
    font-weight: bold;
    min-width: 5em;
    margin: 5px 0;
    line-height: 40px;
}

.tab div ul {
    display: flex;
    flex-wrap: wrap;
    height: max-content;
}

.tab div ul li {
    color: #666;
    padding: 7px 20px;
    margin: 5px 10px;
    background: #f9f9f9;
    border-radius: 6px;
    cursor: pointer;
}

.tab div ul li.on {
    color: #fff;
    background: var(--varColor);
}

/*应用中心*/
.app {
    display: flex;
    flex-wrap: wrap;
    margin: 13px -13px;
    overflow: hidden;
}

.app li {
    float: left;
    width: calc(25% - 26px);
    margin: 13px;
    padding: 20px 18px 15px;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
}

.app li .img {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.app li h2 {
    font-size: 20px;
    margin: 0.7em 0 0.5em;
}

.app li p {
    color: #999;
    font-size: 14px;
    height: 3.5em;
    line-height: 1.75em;
    margin-bottom: 1.2em;
}

.app li span {
    display: inline-flex;
    padding: 5px 10px;
    margin: 0 15px 10px 0;
    color: #4C6686;
    font-size: 14px;
    background: #F1F3F8;
    border-radius: 6px;
}

.app li span:last-of-type {
    margin-right: 0;
}
