/* 右侧客户中心 */
.row_client {   
  float: left;
  width: 280px;
  height:200px;
  background-color: #ffffff;
  padding: 10px 10px 10px 20px;
  margin: 0px;
  border-style:solid;
  border-width:1px;
  border-color:#ffd295; /* 线框米黄色 */
  box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24),0 8px 25px 0 rgba(0,0,0,0.19); /* 立体阴影 */
}

/* 右侧客户中心文字 */
.txt_client {
	float: left;
	width: 220px;
	margin: 10px 0px 5px 10px;
	color: #000000;
	font: 14px Arial,sans-serif;
}
 
/* 右侧客户中心 文字链接 */
.txt_client a:link {
  color: 000079; /*(蓝色)*/
  text-decoration: none;
}
 
/* 右侧客户中心 移到文字链接上 */
.txt_client a:hover {
  color: #ff0000; /*(红色)*/
  text-decoration: none;
}

/* 右侧客户中心文字 */
.txt_client_ok {
	float: left;
	width: 220px;
	margin: 15px 0px 10px 10px;
	color: #000000;
	font: 16px Arial,sans-serif;
}

/* ------------------------------------------- */

/* 输入框 */
.input_client[type=text] {
  width: 100%;
  padding: 5px 10px;
  margin: 0px;
  box-sizing: border-box;
  border: 1px solid #555;
  outline: none;
  font: 16px Arial,sans-serif;
}

.input_client[type=text]:focus {
  background-color: #ffd295; /* 文本框内容米黄 略深 */
}

/* 输入框 */
.input_client[type=password] {
  width: 100%;
  padding: 5px 10px;
  margin: 0px;
  box-sizing: border-box;
  border: 1px solid #555;
  outline: none;
  font: 16px Arial,sans-serif;
}

.input_client:focus[type=password] {
  background-color: #ffd295; /* 文本框内容米黄 略深 */
}

/* 按钮 */
.input_client[type=submit] {
  width: 220px;
  background-color: #b77822; /* 按钮深卡其 */
  border: none;
  color: white;
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight:bold;
  font-size: 16px;
  margin: 4px 0px 0px 0px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.input_client[type=submit]:hover {
  box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24),0 8px 25px 0 rgba(0,0,0,0.19); /* 立体阴影 */
}

/* ------------------------------------------- */

/* 右侧个人中心 中间线 */
.txt_client_line {
	float: left;
	width: 220px;
	margin: 0px 10px 10px 10px;
	font: 1px Arial,sans-serif;
	border-bottom:1px solid #ffd295; /* 线框米黄色 */
}

/* ------------------------------------------- */
/* 右侧信息板 */
.row_info {   
  float: left;
  width: 280px;
  height:200px;
  background-color: #ffffff;
  padding: 0px 0px 10px 0px;
  margin: 0px;
  border-style:solid;
  border-width:1px;
  border-color:#ffd295; /* 线框米黄色 */
  box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24),0 8px 25px 0 rgba(0,0,0,0.19); /* 立体阴影 */
}