/* 数字统计小部件样式 */
.number-stats-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.number-stats-wrapper {
    display: flex;
    align-items: center;
}

/* 数字区域 - 自适应内容大小 */
.number-stats-number-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 数字样式 - 图片作为文字背景裁剪 */
.number-stats-number {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* 内容区域 */
.number-stats-content {
    margin-left: 20px;
}

/* 标题样式 */
.number-stats-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
}

/* 描述样式 */
.number-stats-description {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}
