@charset "utf-8";
/*
名称：PC端 public.css 模板
日期：2015.11.30
更新：2016.11.24
*/
body {
  font-family: "Microsoft Yahei", "SimSun", arial, sans-serif;
  font-size: 14px;
  line-height: 28px;
}
body,
h1,
h2,
h3,
ul,
dl,
dd,
p {
  margin: 0;
  padding: 0;
}
button,
select,
input[type='checkbox'],
input[type='radio'] {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
img {
  border: 0;
  outline: none;
  vertical-align: top;
}
li {
  list-style: none;
}
select,
a,
button {
  outline: none;
}
em{
  font-style:normal;  
}
/* 容器 */
.container-full {
  width: 100%;
}
.container {
  margin: 0 auto;
}
.pagewidth {
  width: 1000px;
}
/* 边框 */
.noborder {
  border: none !important;
}
.border {
  border: 1px solid #e6e6e6;
}
.border-t {
  border-top: 1px solid #e6e6e6;
}
.border-l {
  border-left: 1px solid #e6e6e6;
}
.border-r {
  border-right: 1px solid #e6e6e6;
}
.border-b {
  border-bottom: 1px solid #e6e6e6;
}
/* 对齐 */
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
/* clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* 显示/隐藏 */
.show {
  display: block;
}
.hide {
  display: none;
}
/* 链接 */
a {
  text-decoration: none;
  outline:none;
  color: #666;
}
a:hover {
  text-decoration: underline;
  color:#e13a3b !important;
}
/* 文字 */
.bold {
  font-weight: bolder !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fs12 {
  font-size: 12px !important;
}
.fs14 {
  font-size: 14px !important;
}
.fs16 {
  font-size: 16px !important;
}
.fs18 {
  font-size: 18px !important;
}
.fs22{
  font-size: 18px !important;
}
.fs24 {
  font-size: 24px !important;
}
.fc000{
  color:#000 !important;
}
.fc333 {
  color: #333 !important;
}
.fc666 {
  color: #666 !important;
}
.fc999 {
  color: #999 !important;
}
.fcRed{
  color:#e13a3b;
}

/* 间距 */
.mTop10 {
  margin-top: 10px !important;
}
.mTop15 {
  margin-top: 15px !important;
}
.mTop20 {
  margin-top: 20px !important;
}
.mTop30 {
  margin-top: 30px !important;
}
.padded-10 {
  padding: 10px !important;
}
.padded-15 {
  padding: 15px !important;
}
.padded-20 {
  padding: 20px !important;
}
.padded-30 {
  padding: 30px !important;
}
.padded-0-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.padded-0-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.padded-0-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.padded-0-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.padded-10-0 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.padded-15-0 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.padded-20-0 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.padded-30-0 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
/* 默认按钮 */
.btn {
  width: 140px;
  height: 40px;
  display: block;
  font-size: 14px;
  line-height: 40px;
  background-color: #1068aa;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: none !important;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.btn:hover {
  background-color: #1485d9;
  color: #fff;
  text-decoration: none;
}
.btn-radius {
  border-radius: 6px;
}
/* 表单 */
input{
  outline:none;
  border:0;
}
input[type=text],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=email],
input[type=file],
input[type=date],
input[type=time],
select,
textarea {
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
  padding: 5px;
  outline: none;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=file]:focus,
input[type=date]:focus,
input[type=time]:focus,
textarea:focus {
  border-color: #63b4f0;
}
input[type=text],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=email],
input[type=file],
input[type=date],
input[type=time],
select {
  height: 30px;
}
input[type=checkbox],
input[type=radio] {
  display: inline-block;
  border: 1px solid #e6e6e6;
  vertical-align: middle;
}
textarea {
  resize: none;
}
.input-row input:disabled, .input-row textarea:disabled{
    border: 1px solid #e6e6e6;
    background-color: transparent;
}
.input-row {
  margin-bottom: 15px;
}
.input-row select,
.input-row input[type=checkbox],
.input-row input[type=radio] {
  width: auto;
  display: inline-block;
}
.label {
  min-width: 80px;
  margin-right: 5px;
  display: inline-block;
  text-align: right;
  color: #666;
  vertical-align: top;
}
.label .must {
  margin-right: 2px;
  font-size: inherit;
  color: red;
  vertical-align: top;
  display: inline-block;
}
.input-tips {
  margin-left: 20px;
  display: inline-block;
  vertical-align: top;
}
button{
  border:0;
}
/* table */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #e6e6e6;
}
table thead {
  background-color: #eee;
  font-weight: bolder;
  line-height: 38px;
}
table thead th {
  line-height: 35px;
}
table th {
  font-weight: bolder;
}
table th,
table td {
  padding: 0 10px;
  font-size: 14px;
  line-height: 28px;
  color: #333;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #e6e6e6;
}
table td a:hover {
  color: #1485d9;
}
/* other */
.more {
  color: #666;
  padding: 0 10px;
  font-weight: normal;
}
/* 图片比例 */
.box-img[class*='percent'] {
  overflow: hidden;
  background-color: #e0e0e0;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
.box-img[class*='percent'] .box-img-object {
  width: 100%;
  height: 100%;
  margin: auto;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.box-img.percent1-1 {
  padding-top: 100%;
}
.box-img.percent3-1 {
  padding-top: 33.3333333%;
}
.box-img.percent3-2 {
  padding-top: 66.666666%;
}
.box-img.percent2-1 {
  padding-top: 50%;
}
/* 头部 */
/* foot */
/* article */
.content {
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.content p {
  margin-bottom: 14px;
  /*text-indent: 2em;*/
}
.content p img,
.content p embed {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.content p span {
  display: inline-block;
  font-size: 12px;
  color: #666;
}
.content p a {
  margin: 0 2px;
  color: inherit;
  text-decoration: underline;
}
.content p a:hover {
  color: #1068aa;
}
.content ul,
.content ol {
  text-indent: 2em;
}

/*翻页*/
.pages{
  text-align: center;
}
.pages a{
  padding:5px 10px;
  border:1px solid #464f60;
  margin:0 5px;
}
.pages span{
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    margin: 0 5px;
    color: #999;
}
.pages a:hover, .pages a.current{
  background-color: #464f60;
  color:#fff !important;
  text-decoration: none;
}


body{
    background: url("../images/bg.png") no-repeat left top;
}
/*header*/
.header{

}
.logo-search{
    height:117px;
    overflow: hidden;
}
.logo{
    margin-left:5px;
    margin-top:35px;
}
.search{
    background: url("../css/img/border.png") no-repeat;
    width:545px;
    height:40px;
    margin-top:43px;
    display: block;
    position: relative;
}
.search .search-input{
    width:463px;
    height:40px;
    position: absolute;
    top:0;
    left:0;
    background: transparent;
    border:none;
    outline:none;
    font-size:14px;
    color:#666;
    padding-left:20px;
    line-height: 40px;
}
input:-ms-input-placeholder{ color:#666;font-size:14px;}
input::-webkit-input-placeholder{ color:#666;font-size:14px;}
input::-moz-placeholder{ color:#666;font-size:14px;}
.search .btnSearch{
    width:86px;
    height:40px;
    border:1px solid #313743;
    background: #313743;
    position: absolute;
    right:0;
    top:0;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition:all .2s linear ;
    -o-transition:all .2s linear ;
}
.search .btnSearch:hover{
    background: #e13a3b;
    color:#fff;
    border:1px solid #e13a3b;
}
.nav{
    height:40px;
    border-bottom: 2px solid #313743;
}
.nav ul li{
    display: block;
    float:left;
    line-height: 42px;
    width:100px;
    text-align: center;
    position: relative;
}
.nav > ul > li:before{
    content:"";
    width:1px;
    height:14px;
    background: #313743;
    position: absolute;
    top:50%;
    margin-top:-7px;
    left:0;
    display:inline-block;
}
.nav > ul > li:first-child:before{
    display: none;
}
.nav ul li a{
    display: block;
    font-size:16px;
    color:#333;
    line-height: 42px;
}
.nav ul li:hover, .nav ul li.active{
    background: #313743;
}
.nav ul li:hover a, .nav ul li.active a{
    color:#e13a3b;
    text-decoration: none;
}
.nav ul li.active:before, .nav ul li:hover:before{
    display: none;
}
.nav ul li.active + li:before, .nav ul li:hover + li:before{
    display: none;
}
.nav ul li:hover .sub-menu{
    display: block;
}
/*导航列表的下拉菜单*/
.nav ul li .sub-menu{
    position: absolute;
    top:40px;
    left: 0;
    background-color: #fafafa;
    z-index: 99;
    display: none;
    width:98px;
    border:1px solid #313743;
}
.nav .sub-menu li{
    text-align: center;
    float:left;
}
.sub-menu li:before{
    display: none;
}
.nav .sub-menu li:hover>a{
    background-color: #313743;
    color:#e13a3b !important;
}
.sub-menu li a{
    display: block;
    font-size:14px !important;
    color:#313743 !important;
}


/*footer*/
.footer{
    border-top:1px solid #e5e5e5;
 }
.foot-nav ul li{
    display: block;
    float:left;
    width:100px;
    text-align: center;
    padding:15px 0;
    position: relative;
}
.foot-nav ul li:before{
    content:"";
    width:1px;
    height:14px;
    background: #333;
    display: inline-block;
    position: absolute;
    top:50%;
    margin-top:-7px;
    left:0;
}
.foot-nav ul li:first-child:before{
    display: none;
}
.foot-nav ul li a{
    font-size:16px;
    padding-bottom: 3px;
}
.foot-nav ul li:hover a, .foot-nav ul li.active a{
    color:#e13a3b;
    text-decoration: none;
    border-bottom: 2px solid #e13a3b;
}
.footer .copyright{
    font-size:14px;
    color:#666;
}
/*图片轮播*/
.slideBox {
    width: 660px;
    height: 330px;
    overflow: hidden;
    position: relative;
}
.slideBox .hd {
    overflow: hidden;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 660px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
}
.slideBox .hd ul {
    overflow: hidden;
    zoom: 1;
    float: right;
    margin-right: 30px;
    margin-top: 10px;
}
.slideBox .hd ul li {
    float: left;
    margin-right: 10px;
    width: 10px;
    height: 20px;
    padding: 0 5px;
    line-height: 20px;
    text-align: center;
    background: #fff;
    cursor: pointer;
}
.slideBox .hd ul li.on {
    background: #e13a3b;
    color: #fff;
}
.slideBox .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}
.slideBox .bd li {
    zoom: 1;
    vertical-align: middle;
}
.slideBox .bd img {
    width: 660px;
    height: 330px;
    display: block;
}
