.data-tab-title {
    display: flex;
    align-items: center;
    font-size: 22px;
    padding-bottom: 4px;
}

.data-tab-title > b {
    width: 5px;
    height: 30px;
    background: linear-gradient(to top, var(--theme-color), #38BDE9);
}

.data-tab-title > span {
    margin-left: 10px;
    color: var(--theme-color);
    cursor: pointer;
}

.data-nav {
    color: #787d83;
    padding: 8px 0;
    border-bottom: 1px solid;
}

.data-nav span {
    cursor: pointer;
}

.t-top {
    display: flex;
    margin: 30px;
    padding: 30px;
    border: 1px solid silver;
}

.t-top > img {
    width: 160px;
    height: 160px;
}

.t-top > div {
    display: flex;
    flex-direction: column;
    margin: 0 0 0 30px;
    width: 500px;
}

.t-top > div > span {
    font-size: 18px;
    margin-top: 10px;
}

.t-top > div > span:first-child {
    color: var(--theme-color);
}

.t-top > div > span:last-child {
    font-size: 14px;
}

.data-sub {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.data-sub-item {
    display: flex;
    padding: 10px;
    margin: 10px;
    border: 1px solid silver;
    width: 248px;
}

.data-sub-item > img {
    width: 80px;
    height: 80px;
}

.data-text{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.data-text > span:first-child {
    color: var(--theme-color);
}

.data-text > span:not(:first-child){
    margin-top: 5px;
}

.data-text > span:nth-child(2){
    color: silver;
}

.data-text > span:nth-child(3){
    color: #6c6c6c;
}