﻿.login-button { /* 按钮美化 */
	width: 90%; /* 宽度 */
	height: 30px; /* 高度 */
	border-width: 0px; /* 边框宽度 */
	border-radius: 4px; /* 边框半径 */
	background: #3BC3F5; /* 背景颜色 */
	cursor: pointer; /* 鼠标移入按钮范围时出现手势 */
	outline: none; /* 不显示轮廓线 */
	font-family: Microsoft YaHei; /* 设置字体 */
	color: white; /* 字体颜色 */
	font-size: 15px; /* 字体大小 */
}
.login-button:hover { /* 鼠标移入按钮范围时改变颜色 */
	background: #5599FF;
}

.sdw{

 transition:border linear .2s,box-shadow linear .5s;
 -moz-transition:border linear .2s,-moz-box-shadow linear .5s;
 -webkit-transition:border linear .2s,-webkit-box-shadow linear .5s;
 outline:none;border-color:rgba(231,197,63,.75);
 box-shadow:0 0 8px rgba(231,197,63,.5);
 -moz-box-shadow:0 0 8px rgba(231,197,63,.5);
 -webkit-box-shadow:0 0 8px rgba(231,197,63,3);
}

.round_div{
text-align:left;
border:1px solid #a1a1a1;
padding:10px 40px; 
background:#dddddd;
width:350px;
border-radius:5px;
-moz-border-radius:5px; /* 老的 Firefox */
}