@charset "utf-8";

/* tabs.css - 选项卡样式文档, 2012 © yamoo9.com
---------------------------------------------------------------- */
/* ///////////////////////////////////////// 
	=.tab_menu
///////////////////////////////////////// */
.tabs .tab_menu ol,ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tabs .tab_menu li {
  position: relative;
  float: left;
  
}
.ie6 .tabs .tab_menu li {
	display: inline;
}
.tabs .tab_menu li a {
  display: block;
  padding: 0.5em 1.5em;
  background: #f6f4f4;
  
  font-size: 16px;
  -webkit-border-radius: 7px 7px 0 0;
  -khtml-border-radius: 7px 7px 0 0;
  -moz-border-radius: 7px 7px 0 0;
  border-radius: 7px 7px 0 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.tabs .tab_menu li:hover a, .tabs .tab_menu li a:focus, .tabs .tab_menu li.active a {
  padding-left: 2.2em;
  padding-right: 0.8em;
  background: #e6e6e6;
  -webkit-box-shadow: 1px -1px 2px #5c5c5c;
  -moz-box-shadow: 1px -1px 2px #5c5c5c;
  box-shadow: 1px -1px 2px #5c5c5c;
}
.tabs .tab_menu li img {
  opacity: 0;
  position: absolute;
  top: 7px;
  left: 16px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.tabs .tab_menu li:hover img, .tabs .tab_menu li.active img {
  opacity: 1;
  left: 6px;
}

/* ///////////////////////////////////////// 
	=.tab_contents
///////////////////////////////////////// */
.tabs .tab_contents {
  position: relative;
  min-height: 80px;  
  color: #607291;
  background: #e6e6e6;  
  -webkit-box-shadow: 2px 2px 2px #5c5c5c;
  -moz-box-shadow: 2px 2px 2px #5c5c5c;
  box-shadow: 2px 2px 2px #5c5c5c;
}
.ie6 .tabs .tab_contents {
	height: 10%;
}
.tabs .tab_contents li {
  min-height: 80px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ededed;
  background: #e6e6e6;
}
.js .tabs .tab_contents li {
  position: absolute;
  top: 35px;
  left: 15px;
  width: 95%;
  margin-bottom: 0;
  border-bottom: 0;
}
.js .tabs .tab_contents li.active {
  z-index: 10;
}
.tabs .tab_contents img {
  float: left;
  margin-right: 10px;
}
.tabs .tab_contents select {
  flex: 1;
  width: auto;
  height: 40px;
  margin-left: 0.5em;
  border-radius: 4px;  
  box-sizing: border-box;  
  line-height: 40px;
  padding: 0 5px;
  position: relative;
  background: #eee;
  border: 1px solid #ddd;
  border-radius: 6px;
  -webkit-box-shadow: 0.5px 0.866px 4px 0px rgba(170, 170, 170, 0.45);
  box-shadow: 0.5px 0.866px 4px 0px rgba(170, 170, 170, 0.45);
}
.tabs .tab_contents #val1 {
    flex: 1;
    width: 50%; 
	height: 40px;
    box-sizing: border-box;
    padding: 4px 10px;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    opacity: 0.9;
    filter: alpha(opacity=90);
    -webkit-box-shadow: 0.5px 0.866px 4px 0px rgba(170, 170, 170, 0.45);
    box-shadow: 0.5px 0.866px 4px 0px rgba(170, 170, 170, 0.45);
}
.tabs .tab_contents #val2 {
    flex: 1;  
    box-sizing: border-box;
    outline: 0;
    border: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
    background-color: #074E68;
	width: 100px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-box-shadow: 0.5px 0.866px 4px 0px rgba(170, 170, 170, 0.45);
    box-shadow: 0.5px 0.866px 4px 0px rgba(170, 170, 170, 0.45);
}
.tabs .tab_contents a{
	padding-left: 10em;		
}
