/* 浮动登录对话框 */

/*登录/注册对话框*/
.signform {
	display: block;
	position: fixed;
	font-family: 微软雅黑;

  color:rgb(80, 80, 80);
  background-color: rgb(240, 240, 240);

	/*让弹出的页面居中*/
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: auto;

	width: 400px;
	height: 400px;
	border-radius: 1em;
	text-align: center;
	z-index: 1200;   /*设置堆叠顺序*/
}

/*重设注册页面高度*/
#registerform {
	height: 640px;
}

/*关闭图标*/
.signclose {
	position: relative;	
	height: 30px;
	width: 30px;
	margin-top: 10px;
	margin-right: 10px;

	cursor: pointer;
	float: right;
	overflow: hidden;
	text-align: center;
}

/*输入框*/
.signinput {
	position: relative;
	text-align: center;
	border-radius: 0.2em;

	border-width: 1.5px;
  border-color: rgb(0, 0, 0);

	width: 280px;
	height: 45px;


  color:rgb(80, 80, 80);
  background-color: rgb(250, 250, 250);

	font-size: 18px;
}

/*伪元素--输入框默认值的样式*/
.signinput::-webkit-input-placeholder {
	font-size: 18px;
}

/*顶部提示区*/
.login_tip,
.retister_tip {
	position: relative;
	text-align: center;	
	border-radius: 0.2em;

	width: 280px;
	height: 25px;
	border: none;

	margin: 0 auto; /*自动居div的中心*/

	color: red;
  background-color: rgb(240, 240, 240); 
	
	font-size: 14px;
}

/*兼容多种浏览器，部分是单冒号*/
.login_tip::-webkit-input-placeholder,
.retister_tip::-webkit-input-placeholder{    /* WebKit browsers */
  color: red;
}
s
.login_tip:-moz-placeholder,
.retister_tip:-moz-placeholder{   /* Firefox 4 to 18 */
  color: red;
}

.login_tip::-moz-placeholder,
.retister_tip::-moz-placeholder{  /* Firefox 19+ */
  color: red;
}

.login_tip:-ms-input-placeholder,
.retister_tip:-ms-input-placeholder{  /* IE */
  color: red;
}

/*提示区*/
.tipDiv {
	position: relative;
	margin-top: 40px;
}

/*登录对话框的用户名输入区*/
.userdiv {
	position: relative;
	margin-top: 20px;
}

/*注册对话框的用户名输入区*/
.userdiv_2,
.emaildiv,
.dynverifdiv,  /*动态验证码区*/
.pwddiv,
.postdiv {     /*注册或登录区*/
	position: relative;
	margin-top: 20px;
}

/*注册或登录区下的按钮元素*/
.postdiv button {
	position: relative;
	cursor: pointer;

	border: none;
	border-radius: 0.4em;
	width: 280px;
	height: 45px;

	font-size: 20px;

	color:rgb(80, 80, 80);
	background-color: #4caf50;
}

.postdiv button:hover {
	background-color: rgb(150, 150, 150); 
}

.postdiv button:active {
	background-color: #167487;
}

div.pwddiv lable#l_pwdNotVisible,
div.pwddiv lable#r_pwdNotVisible1,
div.pwddiv lable#r_pwdNotVisible2{
	pointer-events: auto;
	cursor: pointer;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 12px;
	right: 60px;
}


/*验证码及密码提示*/
div.pwddiv:hover div#pwd_tip, 
div.postdiv:hover div#pwd_tip 
{
	display: block;
}

div#pwd_tip {
	position: absolute;
	display: none;

	text-align: center;

	color:  red;
	background: rgb(240, 240, 240);
  font-size: 14px;

	border: solid 1px rgb(80, 80, 80);
	top: 0px;
	left: 342px;

	width: 266px;
	height: 100%px;
	padding: 5px;
}


/*注册提示*/

div#registerform:hover div#reg_tip
{
	display: block;
}

#registerform #reg_tip {
	position: absolute;
	display: none;

	text-align: left;

	color:  rgb(80, 80, 80);
	background: rgb(240, 240, 240);
  font-size: 14px;

	border: solid 1px rgb(80, 80, 80);
	top: 100px;
	left: 400px;

	width: 280px;

	padding: 5px;
}


/* 浮动登录对话框样式结束 */


