.intro_data_show {
    padding: 20px;
    padding-top: 0;
}

.intro_data_show .sidebar-header {
    margin-bottom: 20px;
    margin-left: -20px;
}

.intro_data_show p {
    cursor: default;
    margin: 0;
}

.intro_data_show .top {
    background-color: #f1f1f15c;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 6px;
    height: 100px;
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

.intro_data_show .count {
    font-size: 1.5em;
    color: var(--mainColor);
    font-weight: bold;
}

.intro_data_show .bottom {
    display: flex;
    margin-top: 10px;
    gap: 10px;
    height: 100px;
}

.intro_data_show .bottom > div {
    flex: 1;
    background-color: #f1f1f15c;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

.intro_data_show .top i,
.intro_data_show .bottom > div i {
    font-size: 2rem;
    opacity: .2;
    position: absolute;
    left: -43px;
    bottom: -3px;
    transition: .3s;
    width: 100px;
    text-align: center;
    filter: blur(1.2px);
    color: #969696;
}

.intro_data_show .top:hover i,
.intro_data_show .bottom > div:hover i {
    filter: blur(0);
    color: var(--mainColor);
    opacity: 1;
}

/* 暗黑模式样式 */
.io-black-mode .intro_data_show .top i,
.io-black-mode .intro_data_show .bottom > div i {
    color: #c6c9cf;
}

.io-black-mode .intro_data_show .top,
.io-black-mode .intro_data_show .bottom > div {
    background: #363738;
    border: 1px solid #535353;
} 