﻿* {
    box-sizing: border-box;
    /*cursor: default;*/
}

html, body {
    font-family:"宋体", sans-serif;
    font-size: 16px;
    max-width: 1920px;
    min-width: 1024px;
    background: #fff;
    color: #333;
}
h2,li {
    font-family:"黑体", sans-serif; 
}
p{
  cursor: default;
}
li {
    cursor: pointer;
    transition: all 0s;
}
a{
  cursor: pointer;
}

/*header样式*/

.header {
    height: 93px;
    width: 90%;
    margin: auto;
    /*padding: 0 80px 0 70px;*/
    overflow: hidden;
}

.icon {
    float: left;
}

.icon img {
    width: 180px;
}

.icon a {
    display: inline-block;
}

.nav {
    /*width: 880px;*/
    height: 100%;
    float: right;
    margin-right: 10px;
    /*background: yellow;*/
}

.nav li {
    cursor: pointer;
    transition: all 0.3s;
}

.nav .nav-content li:hover {
    color: #f90c07;
}

.nav ul li:hover .item {
    display: block;
}

.nav .top {
    font-size: 12px;
    color: #999;
    float: right;
    margin-top: 16px;
}

.nav .top>ul>li {
    float: left;
    line-height: 20px;
    margin: 0 10px;
}

.nav .top li img {
    vertical-align: sub;
    margin: 0 2px;
}

.nav .bottom {
    margin-top: 60px;
    clear: both;
    overflow: hidden;
}

.nav .bottom li {
    float: left;
    margin: 0 12px;
    font-size: 14px;
    color: #555;
}
.nav .bottom li.active{
  color: #f90c07;
}
.nav .nav-content li.last-child {
    margin-right: 0;
}

.nav .nav-content li .item {
    width: 100px;
    background: #d3d3d3;
    position: absolute;
    display: none;
    float: none;
    color: #555;
    z-index: 10;
}

.nav-content li .item li {
    padding: 2px
}

.banner {
    width: 100%;
}

.banner img {
    width: 100%;
}
.content .title h1 .after{
  position: absolute;
  bottom: -8px;
  left: 0;
  display: inline-block;
  height: 6px;
  width: 40px;
  border-bottom: 4px solid #e80500;
}
/*footer样式*/

.footer {
    background: #f7f7f7;
}

.footer .title {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #eee;
    /*padding: 0 80px;*/
}

.footer .title ul {
    width: 88%;
    margin: auto;
    overflow: hidden;
    font-size: 14px;
    color: #333333;
}

.footer .title ul li {
    float: left;
    width: 9.5%;
    /*text-align: center;*/
    transition: all 0.3s;
}

.footer .title ul li.title_last {
    width: 10.5%;
}

.footer .title ul li:hover {
    color: #f90c07;
}

.footer .title li.title_last {
    text-align: center;
}

.footer .list .list-item li.list_last ul { 
    text-align: center;
}


.list .list-item {
    width: 88%;
    margin: 23px auto;
    overflow: hidden;
}

.list .list-item>li {
    width: 9.5%;
    float: left;
    /*text-align: center;*/
    font-size: 12px;
    color: #999;
}

.list .list-item>li.list_last {
	margin-right:6px;
    width: 10.5%;
}

.list .list-item>li li {
    margin-bottom: 12px;
    display: block;
}

.list .list-item>li li:hover {
    color: #f90c07;
}

.list .list-item>li.list_last li {
    display: inline-block;
	height:120px;
}
.footer .record {

    background-color: #2f2f2f;


    padding: 6px 0;
    color: #999;
}
.footer .record .content{
    width: 90%;
    margin: auto;
}
.footer .record span a:after{
content: "";
 position: absolute;
  bottom: 1px;
right: -8px;
  border-right: 2px solid #999;
  height: 12px;
}
.footer .record span{
  margin-right: 10px;
  display: inline-block;
}
.footer .record a{
  color: #999;
  font-size: 12px;
  position: relative;
}
.footer .record span:last-child a:after{
  display: none;
}


.footer .auth { 
    width: 100%;
	height:50px;
    color: #999;
}
.footer .auth .content{
    width: 32.5%;
	float:right;
 /* margin-right: -20px;*//*会让页面出现水平滚动条*/
}

.footer .auth span{
  margin-right: 20px;
  display: inline-block;
}





/*悬浮动画*/
.transform{
  transition: all 0.3s linear;
}
.transform:hover{
  box-shadow: 0 15px 25px rgba(0,0,0,.2);
  transform:translate3d(0,-2px ,0);
}

@media (min-width: 1239px) {
    .nav .bottom li {
        margin: 0 20px;
    }
}
