@charset "utf-8";
/* 进度 */
.progress-container {
    width: 100%; /* 或者指定一个具体的宽度 */
    background-color: #eee; /* 容器背景颜色 */
    padding: 3px; /* 容器内边距 */
    box-sizing: border-box; /* 确保宽度包括内边距和边框 */
}
.progress-bar {
    height: 20px; /* 进度条高度 */
	background-color: #5289c2; /* 纯色背景 */
    background-image: linear-gradient(to right, #c059ba, #82277d); /* 渐变背景 */
     /*background-color: #5289c2; 进度条颜色 */
    text-align: center; /* 文本居中 */
    line-height: 20px; /* 文本垂直居中 */
    color: white; /* 文本颜色 */
}
.progress-bar {
    transition: width 0.4s ease-in-out; /* 添加动画效果 */
}