@charset "utf-8";

/* 选项输入框栏 */
.label_table {   
  float: left;
  width: 970px;
  height:380px;
  background-color: #ffffff;
  padding: 20px 0px 20px 0px;
  margin-top: 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); /* 立体阴影 */
}

/* 表格（搜索排名） */
#tb_plabel {
  width:700px;
  border-collapse:collapse;
  margin-left: 130px;
}
#tb_plabel td {
  font: 16px Arial,sans-serif;
  border: 0px;
  height: 50px;
  text-align: left;
  padding: 5px 10px 5px 10px;
  color: #444444; /* 深灰色 */
}
#tb_plabel td.alt_small {
  height:30px;
}
#tb_plabel td.alt {
  text-align: center;
}
#tb_plabel td.alt_red {
  color: #FF0000;
}
#tb_plabel td.alt_grey {
  color: #9d9d9d;
}
#tb_plabel td.alt_con {
  text-align: center;
  color: #ff6000;
  line-height:160%;
}
#tb_plabel td.alt_empty {
  font: 10px Arial,sans-serif;
}

.txt_label_price {
  color: #FF0000; /* 红色 */
  font: 16px Arial,sans-serif;
}

/* ------------------------------------------- */
/* 输入框 */
.input_label[type=text] {
  width: 100%;
  padding: 5px 10px;
  margin: 0px;
  box-sizing: border-box;
  border: 1px solid #b77822; /* 文本框深卡其 */
  outline: none;
  border-radius: 4px;
  font: 16px Arial,sans-serif;
}

.input_label[type=text]:focus {
  background-color: #fce2c0; /* 文本框内容米黄 */
}