@CHARSET "UTF-8";
*{
	padding:0;
	margin:0;
	font-size:14px;
}
body{
	background-image: url(../../images/background.jpg);
	/*background-image: url(../../images/background-1.jpg);*/
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-moz-background-size:100% 100%;
	background-position:0px;
}
.head{
	width:100%;
	min-width:1024px;
	background-color:white;
	height:100px;
}
.hcontent{
	width:1024px;
	margin:0 auto;
	height:75px;
	padding-top:25px;
}
.hcontent li{
    list-style: none;
    height:40px;
    float:left;
    color:#3a393a;
    font-size:18px;
    line-height:40px;
    padding-left:15px;
}
.logo{
    padding-right:20px;
	border-right:1px solid #7c7c7c;
}
.center{
	width: 100%;
	min-width: 1024px;
	/* 关键1：高度覆盖页面可用区域（100vh=视口高度，减去头部100px+底部100px） */
	height: calc(100vh - 200px);
	background: transparent; /* 保留：不覆盖底层 background.jpg */
	/* 关键2：Flex 布局让子元素（.center-content）垂直+水平居中 */
	display: flex;
	align-items: center; /* 子元素垂直居中（核心：实现整体上下居中） */
	justify-content: center; /* 子元素水平居中（可选：确保整体在页面中间） */
	padding: 20px 0; /* 上下留白，避免整体贴边（可选，优化视觉） */
}
.center-content{
	width: 1024px; /* 固定宽度（与原有一致），确保左右子元素有足够空间 */
	height: auto; /* 自动适应子元素高度（关键：不强制高度，避免压缩表单） */
	/* 关键1：Flex 布局让左右子元素并列 */
	display: flex;
	align-items: center; /* 左右子元素垂直对齐（避免一高一低） */
	justify-content: space-between; /* 左右子元素分别靠两侧，中间留白 */
	gap: 40px; /* 左右子元素之间的间距（可选，避免拥挤） */
	padding: 0 20px; /* 左右留白，避免子元素贴边 */
	/* 移除原有 position: relative（Flex 布局无需定位参考，避免影响子元素） */
}
.center-content-left{
	width: 55%; /* 占父容器宽度（可按需调整，如 50%/60%） */
	height: auto; /* 自动适应图片高度 */
	text-align: center; /* 图片水平居中（原有样式，保留） */
	z-index: 1; /* 层级：低于表单，高于背景（原有逻辑，保留） */
	/* 移除干扰属性：浮动和定位（避免与 Flex 冲突） */
	float: none;
	position: static;
}
.center-content-left img{
	width:100%;
	position:relative;
}
.center-content-right{
	width: 35%; /* 占父容器宽度（匹配原有表单尺寸，避免压缩） */
	height: auto; /* 自动适应表单高度（关键：不影响内部内容） */
	z-index: 2; /* 层级：高于素材图（原有逻辑，保留） */
	/* 移除干扰属性：浮动、定位、左边距（避免与 Flex 冲突，不影响内部） */
	float: none;
	position: static;
	margin-left: 0; /* 清除原有 80px 左边距，依赖父容器 gap 控制间距 */
}
.center-content-right_c{
	width:350px;
	height:420px;
	background-color:white;
	border-radius:5px;
	overflow: hidden;
	-moz-box-shadow:1px 1px 8px #9E9E9E;
	-webkit-box-shadow:1px 2px 8px #9E9E9E;
	box-shadow:1px 1px 8px #9E9E9E;
	margin-left: 80px;
	position:relative;
}
.center-content-right_c_h{
	width:100%;
	height:40px;
	background-color:#f3f7fa;
	border-bottom:1px solid #bfdae3;
	line-height:40px;
	font-size:16px;
}
.center-content-right_c_h ul li{
	list-style: none;
	float:left;
	width:50%;
	height:40px;
	padding-left:5%;
	font-size:14px
}
.center-content-right_c_h ul .register{
	text-align:right;
	width:40%;
	padding-right:5%;
}
a{
	text-decoration:none;
	color:#0093dd;
	font-size:12px;
}
.center-content-right_c_c{
	padding:25px 0;
}
.center-content-right_c_c *{
	/* margin-bottom:20px; */
}
.center-content-right_c_c .input{
	font-size:12px;
	width:96%;
	padding:0 2%;
	height:30px;
	border:1px solid #ddd;
	border-radius:5px;
}
.grille-rl{
	width:280px;
	height:30px;
	clear: both;
	margin:auto;
	padding-top:15px;
}
.grille-rl .grille-r{
	font-size:12px;
	float:right;
}
.grille-rl .grille-l{
	font-size:12px;
	float:left;
}
.grille-l input[type='checkbox']{
	position:relative;
	top:2px;
	margin:2px;
}
.login_btn{
	width:280px;
	height:35px;
	margin:auto;
	background-color:#0093dd;
	border-radius:5px;
	line-height:35px;
	text-align:center;
	color:white;
	font-size:12px;
	margin-bottom:10px;
	cursor:pointer;
}
.login_btn:active{
	background-color:#21abf1;
}
.tel{
	font-size:12px;
	margin:auto;
	width:280px;
	/*padding-top:20px;*/
}
.footer{
	width:100%;
	min-width:1024px;
	height:100px;
	line-height:100px;
	text-align:center;
	font-size:12px;
	color:#454545;
	border-top:1px solid #bfbfbd;
}
.sf-component-group {
	margin-bottom:10px;
}

.select2-container .select2-selection--single{  
  height:27px;  
  line-height: 27px;  
}
.select2-container--default .select2-selection--single .select2-selection__rendered
{
    line-height: 27px;
}

#getSmsButton {
	display: inline-block;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	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-radius: 4px;
	border: 1px solid #7a7676;
	background-color: #fff;
}

#getSmsButton[disabled] {
	background-color: #ccc;
	border-color: #dee5e7;
}
