@charset "utf-8";
/* 技术在线交易的样式 */
/* 每一块的标题 */
.box-title {
	font-size: 28px;
	line-height: 1.8;
	text-align: center;
	color: #333;
}

.box-subtitle {
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	text-align: center;
	color: #999;
}

/* 第一块，在线流程 */
.online-process {
	padding-top: 45px;
	padding-bottom: 160px;
	margin-bottom: 28px;
}

/* 显示流程的区域 */
.process-box {
	position: relative;
	z-index: 0;
	padding-top: 78px;
}

.process-box::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 155px;
	left: 0;
	right: 0;
	height: 4px;
	background-color: var(--main-color);
}

.process-list {
	margin: 0;
	padding: 0;
	text-align: center;
}

.process-list .process-item {
	display: inline-block;
	list-style: none;
	margin: 0 58px;
}

.process-list .process-item .process-name {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 2.5;	
	color: #333;
}

.process-list .process-item .num {
	display: inline-block;
	width: 36px;
	height: 36px;
	font-size: 20px;
	text-align: center;
	line-height: 36px;
	color: #fff;
	background-color: var(--main-color);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.process-list .process-item:hover .process-name {
	color: var(--main-color);
}

.process-list .process-item:hover .num {
	-webkit-shadow: 0px 5px 10px 0px rgba(4, 132, 241, 0.3);
	box-shadow: 0px 5px 10px 0px rgba(4, 132, 241, 0.3);
}