@charset "utf-8";
/* CSS Document */

body {
  font-family: tahoma, SimSun, "宋体";
  font-size: 12px;
  padding: 0;
  margin: 0 0.5em 0 0;
  color: #000;
  background: #fff;

}

.Dtable_set {
  border: 1px solid #3A80A7; /* 表格边框 */
  font-family: tahoma, SimSun, "宋体";
  border-collapse: collapse; /* 边框重叠 */
  background-color: #eee; /* 表格背景色 */
  font-size: 12px;
  padding: 5px;
  font-style: normal;
  font-variant: normal;
  width: 100%
}

.Dtable_set caption {
  padding-bottom: 5px;
  font-size: 1.4em;
  font-weight: bold;
  text-align: left;
}

.Dtable_set th {
  height: 30px;
  text-align: center;
  cursor: pointer;
  min-width: 10px;
}

.Dtable_set td {
  border: 1px solid #3A80A7; /* 单元格边框 */
  text-align: left;
  padding: 2px 4px;
  color: #333;
}

.Dtable_set tr.tworow {
  background-color: #ffffff; /* 隔行变色 */
}

.Dtable_set tr:hover td, .Dtable_set tr.altrow td{
  border: 1px solid #fff;
  background-color: #3A80A7; /* 动态变色 */
  color:#fff;				//行名称颜色
}

input, select, textarea {
  font-size: 12px;
  color: #000;
  border: 1px solid #ddd;
  padding: 5px;
  margin: 5px;
}

input[type=text] {
  padding:5px;
  margin: 5px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  /* background:url(./img/pmahomme/img/input_bg.gif);*/
}

input[type=checkbox] {
  width: 16px;
  height: 20px;
  position: relative;
  top: 6px;
}

#button {
  padding: 7px 15px;
  background: #63A9D0;
  color: #fff;
  border-radius: 4px;
  transition: color .5s ease;
  cursor: pointer;
}

#button:hover {
  background: #3A80A7;
  color: #fff;
  transition: all .5s ease;
}

/**/
input[type=submit]:hover {
  position: relative;
  background-size: 100% 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
  background: -webkit-linear-gradient(top, #cccccc, #dddddd);
  background: -moz-linear-gradient(top, #cccccc, #dddddd);
  background: -ms-linear-gradient(top, #cccccc, #dddddd);
  background: -o-linear-gradient(top, #cccccc, #dddddd);
  cursor: pointer;
}

/**/
input[type=submit]:active {
  position: relative;
  top: 1px;
  left: 1px;
}
