﻿/*
* @Author: 姚丽娟
* @Date:   2020-02-14
*/

@charset"utf-8";


/*--- 通用样式-----*/
html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ol,
ul,
li,
table,
tbody,
tfoot,
thead,
tr,
th,
td, 
span,
a,
img,
em,
ins,
strong,
b,
i,
form,
input,
button,
label{
    margin: 0;
    padding: 0;
}
html,body{
    width:100%;
    height: 100%;
}
body {
    font-family: Arial, Helvetica, sans-serif, "宋体";
    font-size: 14px;
    color:#343434;
}
ul,
li,
ol,
dt,
dd,
dl {
    list-style: none;
}
input,
button,
select,
textarea {
    outline: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
img {
    border: 0;
    vertical-align: middle;
}
em,
i {
    font-style: normal;
}
ins {
    text-decoration: none;
}
a{
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.btn,
.btn_common{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    *zoom: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}
.toTop{
    position: fixed;
    width: 57px;
    height: 58px;
    bottom: 30px;
    left: 30px;
    cursor: pointer;
}
.wrapper{
    width: 100%;
    height: 100%;
}
.pos_l{
    position: absolute;
    left: 50%;
    transform: translateX(-100%);
}
.pos_r{
    position: absolute;
    left: 50%;
}
.pos_mid{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
/* --header--- */
.header{
    width: 100%;
    height: 85px;
    background-color: #669933;
    box-shadow: 0px 1px 5px rgba(0,0,0,.15);
    position: fixed;
    top: 0;
    z-index: 10;
}
.header .pos_l{
    margin-left: -190px;
}
.header .logo a{
    display: block;
    line-height: 85px;
    font-size: 0;
}
.header .logo a img:first-child{
    margin-right: 10px;
}
.header .pos_r{
    margin-left: 116px;
}
.header .pos_r .icon_nav{
    display: none;
}
.header .nav_bar{
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.header .nav_bar li a{
    display: block;
    padding: 0 15px;
    white-space: nowrap;
    height: 85px;
    line-height: 85px;
    padding-bottom: 10px;
    border-radius: 0px 0px 3px 3px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    color:#fff;
}
.header .nav_bar li a:hover{
    text-decoration: underline;
}
.header .nav_bar li a.active{
    font-weight: bold;
    background-color: #f8b62d;
    box-shadow: 0px 1px 5px rgba(0,0,0,.15);
}
.header .nav_bar li a.active:hover{
    text-decoration: none;
}
/* ---footer---- */
.footer{
    width: 100%;
    height: 280px;
    background-color: #669933;
    position: relative;
    font-size: 15px;
    color:#fff;
    padding-top: 65px;
    box-sizing: border-box;
    overflow: hidden;
    font-family: "Myriad Pro";
}
.footer p{
    margin-bottom: 8px;
}
.footer .info{
    margin-left: -365px;
}
.footer .info .img{
    margin-bottom: 20px;
}
.footer .links{
    margin-left: 475px;
    margin-top: 40px;
}
.footer .links a{
    color:#fff;
    font-size: 15px;
}
/* ---- banner ------ */
.banner{
    width: 100%;
    text-align: center;
    padding-top: 85px;
}
.banner img{
    width: 100%;
    height: auto;
    margin-top: -16px;
}