@charset "utf-8";

* {
	margin:0;
	padding:0;
}

body,
html {
	margin: 0;
	height: 100%;
	background: #fafafa;
}

ul li {
	list-style-type: none;
}

h2 {
	margin: 0;
}

p {
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
}

input::placeholder,
textarea::placeholder {
	color: #cfcfcf;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
}

.matchCourse-wrapper {
	padding: 32px 40px 40px;
	width: 800px;
	/* height: 750px; */
	margin: 0 auto;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0px 2px 6px #7c8db11a;
	box-sizing: border-box;
}

.course__title {
	margin-bottom: 12px;
	text-align: center;
	color: #333333;
	font-weight: 800;
	font-size: 24px;
	line-height: 32px;
}

.course__tips {
	margin-bottom: 30px;
	text-align: center;
	color: #4a4a4a;
	font-weight: 200;
	font-size: 16px;
	line-height: 32px;
}

/* 步骤条样式 */
.steps {
	--normal-color: #9098a4;
	--active-color: #3385ff;
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 0 104px;
	counter-reset: order;
}

/* 步骤项 */
.steps>li {
	flex: auto;
	display: inline-flex;
	align-items: center;
	counter-increment: order;
	color: var(--normal-color);
	font-size: 16px;
	font-weight: 400;
}

.steps>li:last-child {
	flex: none;
}

/* 步骤编号（带圈数字） */
.steps>li::before {
	content: counter(order);
	flex-shrink: 0;
	width: 32px;
	line-height: 30px;
	margin-right: .5em;
	text-align: center;
	border-radius: 50%;
	border: 1px solid;
}

/* 步骤项引导线 */
.steps>li:not(:last-child)::after {
	content: '';
	flex: 1;
	margin: 0 1em;
	border-bottom: 1px dashed;
	opacity: .6;
}

/* 步骤状态 */
.steps>.active {
	color: var(--active-color);
	font-weight: 600;
}

.steps>.active::before {
	color: var(--active-color);
	border-color: var(--active-color);
}

.steps-default::after {
	color: var(--normal-color);
}

/* .steps>.active::after,
.steps>.active~li {
	color: var(--normal-color);
} */
.flex-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

/* 表单 */
.course-wrap {
	margin-top: 40px;
	width: 100%;
}

.form-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.form-item {
	display: flex;
	flex-direction: row;
	margin-bottom: 20px;
}

.form-item__label {
	width: 80px;
	text-align: left;
	vertical-align: middle;
	font-size: 14px;
	color: #585858;
	line-height: 40px;
	padding: 0 12px 0 0;
	box-sizing: border-box;
}

.form-item.is-required:not(.is-no-asterisk) .form-item__labwrap>.form-item__label:after,
.form-item.is-required:not(.is-no-asterisk)>.form-item__label::after {
	content: "*";
	color: #f56c6c;
	margin-right: 4px
}

.form-item__content {
	line-height: 40px;
	position: relative;
	font-size: 14px;
}

.form-input,
.form-select {
	position: relative;
	font-size: 14px;
	display: inline-block;
	width: 100%;
}

.input__inner:focus,
.textarea__inner:focus {
	outline: none;
	border-color: #409eff;
}

.input__inner,
.select__inner {
	-webkit-appearance: none;
	background-color: #fff;
	background-image: none;
	border-radius: 4px;
	border: 1px solid #dcdfe6;
	box-sizing: border-box;
	color: #606266;
	display: inline-block;
	font-size: inherit;
	height: 40px;
	line-height: 40px;
	outline: none;
	padding: 0 15px;
	transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
	width: 270px;
}

.textarea__inner {
	display: block;
	resize: vertical;
	padding: 5px 15px;
	line-height: 1.5;
	box-sizing: border-box;
	width: 640px;
	font-size: inherit;
	color: #606266;
	background-color: #fff;
	background-image: none;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	transition: border-color .2s cubic-bezier(.645, .045, .355, 1)
}

.upload__input {
	visibility: hidden;
}

.input__suffix {
	width: 25px;
	position: absolute;
	height: 100%;
	right: 5px;
	top: 0;
	text-align: center;
	color: #c0c4cc;
	transition: all .3s;
	pointer-events: none
}

.input__suffix-inner {
	display: inline-block;
	width: 25px;
	height: 100%;
	pointer-events: all;
	background: url("/static-dist/app/img/new-index/xialacaidan_icon@2x.png") no-repeat center;
	background-size: 11px 6px;
}

.select-dropdown {
	position: absolute;
	z-index: 1001;
	border: 1px solid #e4e7ed;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
	box-sizing: border-box;
	margin: 5px 0
}

.scrollbar__wrap {
	overflow: scroll;
	height: 100%;
	max-height: 274px;
}

.scrollbar__wrap::-webkit-scrollbar {
	display: none;
}

.select-dropdown__list {
	list-style: none;
	padding: 6px 0;
	margin: 0;
	box-sizing: border-box
}

.select-dropdown__item {
	font-size: 14px;
	padding: 0 20px;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #606266;
	height: 34px;
	line-height: 34px;
	box-sizing: border-box;
	cursor: pointer
}

.form-scrollbar {
	overflow: hidden;
	position: relative;
}

.select-popper {
	min-width: 380px;
	transform-origin: center top;
	z-index: 2005;
}

.select-dropdown__item.hover,
.select-dropdown__item:hover {
	background-color: #f5f7fa
}

.select-dropdown__item.selected {
	color: #409eff;
	font-weight: 700
}

.upload-button {
	cursor: pointer;
	width: 274px;
	height: 40px;
	border-radius: 4px;
	border: 1px solid #d5dadf;
	box-sizing: border-box;
	background: #ffffff;
	text-align: center;
}

.upload-button::before {
	display:inline-block;
	content: '';
	width: 16px;
	height: 12px;
	display: inline-table;
	background: url(/static-dist/app/img/new-index/upload@2x.png) no-repeat 0px center;
	background-size: 12px;
}

.form-button {
	display: inline-block;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	width: 120px;
	height: 40px;
	border-radius: 6px;
	border: 1px solid #dcdfe6;
	box-sizing: border-box;
	background: #ffffff;
	color: #76787b;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
}

.form-button--primary {
	color: #ffffff;
	background: #3385ff;
}

.form-button+.form-button {
	margin-left: 20px
}

.finish-wrap {
	margin-top: 73px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.finish__img {
	margin-bottom: 14px;
	width: 94px;
	height: 118px;
}

.finish-wrap p {
	margin-bottom: 60px;
	color: #5c6879;
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
}

.info-item {
	position: relative;
	margin-left: 16px;
	padding:0 10px 0 27px;
	width: 358px;
	height: 32px;
	line-height: 32px;
	border-radius: 4px;
	background: #f1f8ff;
	color: #333333;
	font-weight: 400;
	font-size: 12px;
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.info-item::before {
	position:absolute; 
	top: 10px;
	left: 10px;
	display: inline-block;
	content: '';
	width: 12px;
	height: 13px;
	background: url(/static-dist/app/img/new-index/attachment_@2x.png) no-repeat left center;
	background-size: 12px 13px;
}
.info-item::after {
	position:absolute; 
	top: 10px;
	right: 10px;
	display:inline-block;
	content: '';
	width: 12px;
	height: 12px;
	display: inline-table;
	background: url(/static-dist/app/img/new-index/completed_icon@2x.png) no-repeat right center;
	background-size: 12px;
}
.el-form-item__error {
	color: #FF3232;
	font-size: 12px;
	line-height: 1;
	position: absolute;
	top: 100%;
	left: 0;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.clearfix {
	zoom: 1;
}
@media (max-width:767px) {
	.matchCourse-wrapper {
		margin-bottom: 20px;
		padding: 20px 20px 40px;
		width: 100%;
		height: 100%;
	}
	.steps {
		margin: 0;
	}
	.steps>li {
		flex:none;
		position: relative;
		flex-direction: column;
	}
	.steps>li::before {
		margin-bottom: 10px;
	}
	.steps>li:not(:last-child)::after {
		border-bottom: 1px dashed ;
		position: absolute;
		top: 16px;
		left: 48px;
		width: 58px;
		height: 1px;
	}
	.form-row{
    flex-direction: column;
	}
	.form-item {
    flex-direction: column;
		align-items: normal;
	}
	.form-item__content {
		margin-left: 0px;
	}
	.input__inner, .select__inner, .textarea__inner {
		width: 100%;
	}
	
	.upload-button {
		width: 100%;
	}
	.info-item {
		margin-left: 0px;
		margin-top: 10px;
		width: 84vw;
	}
	
}