@charset "utf-8";
/* 禁用iPhone中Safari的字号自动调整 */
html,body{
    background-color:#fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font: 16px "宋体";
 /*   min-height: 100%;
    height: 100%;*/
}
/* 设置HTML5元素为块 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}
/* 设置图片视频等自适应调整 */
img {
    max-width: 100%;
    height: auto;
    width: auto\9; /*ie8 */
}
a{
	text-decoration: none;
    color:#333333;
   /* font-weight:normal;*/
}
div,p{
    padding:0;
    margin:0;
}
*{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    margin: 0;
    padding: 0;
    border: 0;
}
ul,ol{
    list-style: none;
}
em{
    font-style: normal;
}
/* 让标题都自定义, 适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
}
/* 清除浮动 */
.clearfix:before,.clearfix:after{
    display:table;
    content:"";}
.clearfix:after{
    clear:both;}
.clearfix{zoom:1;}

body{
	min-width: 1020px;
    background-image:url(../images/nineteen-bg.jpg);
    background-repeat:no-repeat;
    background-position:center bottom;
}
.container{
    width:900px;
    margin:0 auto;
}
#box{
    width:1020px;
    margin:0 auto;
}
/*头部*/
#header{
    padding:12px 26px;
}
#header a{
    display:block;
}
#header .logo{
    width: 204px;
    height: 56px;
    float: left;
    background: url(../images/logo_pc.png) no-repeat;
}
#header .back-btn{
    width:109px;
    height:56px;
    float:right;
}
#header img{
    width:100%;
    height:100%;
}
#banner,#banner img{
    width:100%;
}
#nav{
    width: 100%;
    height: 50px;
    background: #b81918;
}
#nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}
#nav ul li{
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    position: relative;
}
#nav ul li::after{
    display: block;
    content: '';
    position: absolute;
    width: 1px;
    height: 23px;
    background:#d47574;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#nav ul li:last-child::after{
    display: none;
}
#nav ul li a{
    color: #fff;
    margin: 0 20px;
    display: block;
    line-height: 1;
    padding: 8px 0;
}
#nav li a:hover{
    color:#fce94d;
}
#nav ul li a.active{
    color:#fce94d;
    border-bottom: 1px solid #fce94d;
}
#footer{
    text-align: center;
    color: #666;
    font-size: 12px;
    line-height: 1.75em;
    padding-bottom: 30px;
    padding-top: 30px;
    font-family: arial;
}
#footer a{
    color:#666;
    text-decoration: none
}