﻿@charset "utf-8";
/* CSS Document */
/*公共样式*/
body {
  font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
  -webkit-text-size-adjust: 100% !important;
	color: #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --red:#dd1d0e;
}
.tmp_red {
  background-color: rgba(255, 0, 0, 0.3);
}
.tmp_blue {
  background-color: rgba(0, 255, 0, 0.3);
}

a {
    color: #040000;
    text-decoration: none;
/*    transition: all 0.4s linear;*/
}

a:hover {
    color: var(--red);
}
.block{display: block;}
.f_center {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}
.f_between {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between
}
.f_middle {
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: center;
    align-items: center;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  clear: both;
}
.hide{display: none;}

.hide-text-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hide-text-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.half {
    width: calc(50% - 30px)
}
ul {
  list-style: none;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bg_gray {
  background-color: rgb(242, 247, 252);
}
.wrap {
  width: 100%;
  min-width: 1300px;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
}
.topWrap {
  background: url("../img/banner/top_banner.jpg") top center no-repeat;
  background-size: 1920px auto;
}
.navWrap {
  background-color: white;
	box-shadow: 0px 10px 23px 0px 
		rgba(221, 29, 14, 0.61);
}
.mainWrap {
	background: rgb(240,235,229) url("../img/bgImg/bg_bar.png") top repeat-x;
}
.mainWrap section {
  width: 100%;
  height: auto;
  /*	border: 1px solid silver;*/
}
.mainWrap .container {
  width: 1200px;
  height: auto;
  margin: 0 auto;
  /*	background-color: white;*/
}
.footWrap {
    background: rgb(221,29,14);
}
/*一、页眉*/
/*1-1 logo+搜索框*/
header {
  width: 1200px;
  height: 550px;
  margin: 0 auto;
  /*	background-color: white;*/
/*  position: relative;*/
}

/*1-2 菜单导航*/
nav {
  width: 1200px;
  height: 80px;
  margin: 0 auto;
}
nav ul {
  list-style: none;
  width: 100%;
  height: 100%;
}
nav li {
  float: left;
}
nav a:link, nav a:visited {
  display: inline-block;
  /*	width: 160px;*/
/*  padding: 0 23px;*/
   line-height: 80px;
/*    color: #c22829;*/
	color: var(--red);
    font-size: 26px;
  text-align: center;
  text-decoration: none;
	width: 170px;
/*	font-weight: bold;*/
	position: relative;
	
}
nav a:hover, nav a:active {
   color: #fff;
    background: #f5a43b;
}
nav li:hover a:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #f56c3b;
}


/*三、页脚*/
footer {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}


footer .foot_wz {
    padding: 0 30px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 110px;
}