@CHARSET "UTF-8";
/* 统一flex布局样式 */
.box{
	margin:0 auto;
	width:var(--box-width);
}
.box_flex{
	display:flex;
	flex-flow:row nowrap;
}
.box_flex_wrap{
	display:flex;
	flex-flow:row wrap;
}
.box_flex_between{
	display:flex;
	flex-flow:row nowrap;
	justify-content:space-between
}
.box_flex_center{
	display:flex;
	flex-flow:row nowrap;
	justify-content:center;
	align-items:center
}
.box_flex_around{
	display:flex;
	flex-flow:row nowrap;
	justify-content:space-around
}
.box_flex_end{
	display:flex;
	flex-flow:row nowrap;
	justify-content:flex-end
}
.height_center{
  display:flex;
	flex-flow:column nowrap;
	justify-content:center;
}
.header{
	width:100%;
	color:#ffc107;
	background:#B40709
}
.header .webLogo{
	width:50px;
	height:auto;
	object-fit: scale-down;
}
.header .webTitle{
	font-size:14px;
}
.news{
	margin-top:20px
}
.news .wrap{
	background:#fff
}
.buzhuContent{
	color:#ffffff;
	padding:10px;
	border-radius:10px;
	margin:20px auto;
}
.buzhuContent .result-info h3{
	padding:10px 0;
}
.buzhuContent .result-info p{
	padding:5px 0;
}
.buzhuCard{
	padding:10px 20px;
	color:#fff;
	text-decoration:underline;
	text-align:center
}
.buzhuCard a{
	color:#fff;
}
.navTitle{
	color:#fff;
	font-size:26px;
	padding:10px 0	
}
.buzhufuli{
	color:#fff;
	padding:10px 0;
	text-align:center;
}

.teamPeople{
	text-align:center;
	margin-top:5px
}
.tab{
	font-size:20px;
}
.actived{
	color:#ffc107
}
.table-wrap .wrap .items,.table-wrap .wrap .items .item{
	border:none!important
}
.nickname .ident{
	font-size:10px;
	color:#fff;
	background:#ffffff55;
	padding:2px 10px;
	border-radius:5px;
	margin-left:10px;
}
.header-top .invite-wrap{
	width:fit-content
}


/* 进度条容器 */
        .progress-container {
            width: 100%;
            margin: 50px auto;
        }

        /* 进度条标题 */
        .progress-container .progress-title {
            font-size: 14px;
            color: #333;
            margin-bottom: 25px;
            font-weight: 600;
        }

        /* 进度条核心区域 - 垂直布局 */
        .progress-container .progress-steps {
            display: flex;
            flex-direction: column;
            position: relative;
            padding-left: 60px; /* 给图标和进度条留空间 */
        }

        /* 进度条背景线（垂直） */
        .progress-container .progress-steps::before {
            content: "";
            position: absolute;
            top: 0;
            left: 30px; /* 与图标居中对齐 */
            width: 3px;
            height: 100%;
            background-color: #e5e7eb; /* 未完成的线颜色 */
            z-index: 1;
        }

        /* 进度条完成部分（垂直） */
        .progress-container .progress-bar {
            position: absolute;
            top: 0;
            left: 30px; /* 与背景线对齐 */
            width: 3px;
            background-color: #409eff; /* 完成部分的主色调 */
            height: 20%; /* 正在审核（初步审核）阶段，进度到第一个节点 */
            z-index: 2;
            transition: height 0.3s ease;
        }
        .progress-container .progress-bar_1{
			height: 40%;
        }
		.progress-container .progress-bar_2{
					height: 60%;
		        }
		.progress-container .progress-bar_3{
					height: 80%;
		        }
		.progress-container .progress-bar_4{
			height: 100%;
        }

        /* 单个步骤节点 - 垂直排列 */
        .progress-container .step {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 3;
            margin-bottom: 30px; /* 步骤之间的间距 */
        }
		.progress-container .step::before {
			content: "";
            position: absolute;
            top: 29px;
            left: 12px; /* 与图标居中对齐 */
            width: 2px;
            height: 100%;
            background-color: #e5e7eb; /* 未完成的线颜色 */
            z-index: 1;
        }
        
		.progress-container .step.active::before {
			content: "";
            position: absolute;
            top: 29px;
            left: 12px; /* 与图标居中对齐 */
            width: 2px;
            height: 100%;
            background-color: #a0e984; /* 未完成的线颜色 */
            z-index: 1;
        }
        
        .progress-container .step:last-child::before{
			height:0
        }

        /* 节点圆形图标 */
        .progress-container .step-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 16px;
            color: #fff;
            background-color: #e5e7eb; /* 默认未完成颜色 */
            flex-shrink: 0; /* 防止图标被压缩 */
        }

        /* 节点文字 */
        .progress-container .step-text {
            font-size: 14px;
            color: #666;
            line-height: 1.2;
        }

        /* 已完成节点样式 */
        .progress-container .step.completed .step-icon {
            background-color: #409eff;
        }
        .progress-container .step.completed .step-text {
            color: #409eff;
            font-weight: 500;
        }

        /* 进行中节点样式 */
        .progress-container .step.active .step-icon {
            background-color: #67c23a;
            border: 2px solid #a0e984;
        	position:relative;
        	left:-2px
        }
        .progress-container .step.active .step-text {
            color: #67c23a;
            font-weight: 600;
        	position:relative;
        	left:-4px
        }

        /* 最后一个步骤取消底部间距 */
        .progress-container .step:last-child {
            margin-bottom: 0;
        }

        /* 响应式适配（手机端） */
        @media (max-width: 768px) {
            .progress-container {
                width: 100%;
            }
            .progress-container .step-text {
                font-size: 12px;
            }
            .progress-container .step-icon {
                width: 24px;
                height: 24px;
                font-size: 14px;
            }
        }