
	.btn{
        color: #fff;
	    background-color: #337ab7;
	    border-color: #2e6da4; 
	    display: inline-block;
	    padding: 6px 12px;
	    margin-bottom: 0;
	    font-size: 14px;
	    font-weight: 400;
	    line-height: 1.42857143;
	    text-align: center;
	    white-space: nowrap;
	    text-decoration: none;
	    vertical-align: middle;
	    -ms-touch-action: manipulation;
	    touch-action: manipulation;
	    cursor: pointer;
	    -webkit-user-select: none;
	    -moz-user-select: none;
	    -ms-user-select: none;
	    user-select: none;
	    background-image: none;
	    border: 1px solid transparent;
	    border-radius: 4px;
	}
	a.btn:hover{
      background-color: #3366b7;
	}
	.progress{
		margin-top:2px;
	    width: 200px;
	    height: 14px;
	    margin-bottom: 10px;
	    overflow: hidden;
	    background-color: #f5f5f5;
	    border-radius: 4px;
	    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	}
	.progress-bar{ 
		background-color: rgb(92, 184, 92);
		background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.14902) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.14902) 50%, rgba(255, 255, 255, 0.14902) 75%, transparent 75%, transparent);
		background-size: 40px 40px;
		box-shadow: rgba(0, 0, 0, 0.14902) 0px -1px 0px 0px inset;
		box-sizing: border-box;
		color: rgb(255, 255, 255);
		display: block;
		float: left; 
		font-size: 12px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		transition-delay: 0s;
		transition-duration: 0.6s;
		transition-property: width;
		transition-timing-function: ease;
		width: 266.188px;
	}



/* 试用申请弹窗样式 */

.syshmask {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(1, 1, 1, 0.3);
	z-index: 20;
}
.trial-box {
	width: 500px;
	background: #fff;
	border-radius: 8px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 21;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.trial-header {
	padding: 20px 24px 16px;
	border-bottom: 1px solid #e7e7e7;
}

.trial-title {
	font-size: 18px;
	font-weight: bold;
	color: #353535;
}

.trial-close {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s;
}

	.trial-close:hover {
		background-color: #f5f5f5;
	}

.close-icon {
	font-size: 20px;
	color: #999;
	line-height: 1;
	cursor: pointer;
}

.trial-form {
	padding: 24px;
}

	.trial-form .form-item {
		margin-bottom: 16px;
	}

		.trial-form .form-item:last-child {
			margin-bottom: 0;
		}

.form-label {
	font-size: 14px;
	color: #353535;
	margin-bottom: 6px;
	display: block;
}

.required {
	color: #ff4757;
	margin-left: 2px;
}

.trial-form .ipt-box {
	width: 100%;
	height: 40px;
	line-height: 38px;
	padding-left: 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	margin-top: 0;
	transition: border-color 0.3s;
}

	.trial-form .ipt-box:focus-within {
		border-color: #2E62AE;
	}

.trial-form .ipt {
	width: 100%;
	height: 100%;
	outline: none;
	border: 0 none;
	font-size: 14px;
	color: #353535;
}

	.trial-form .ipt::placeholder {
		color: #999;
	}

.trial-submit-btn {
	width: 100%;
	height: 40px;
	text-align: center;
	background: #2E62AE;
	color: #fff;
	line-height: 40px;
	margin-top: 24px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}

	.trial-submit-btn:hover {
		background: #1e4a8a;
	}

	.trial-submit-btn:disabled {
		background: #ccc;
		cursor: not-allowed;
	}


/* 下拉样式 */
.form-section {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
}

.dropdown-menu, #companyList {
	position: relative;
	width: 100%;
	max-height: 220px;
	overflow-y: auto;
	z-index: 99;
	background: #fff;
	border: 1px solid #d9d9d9;
	transition: border-color 0.3s;
	border-top:none;
}
.dropdown-item{
	cursor:pointer;
}
/* 下拉样式 */