/*
 * @Author: hapick
 * @Date: 2018-04-16 12:00:02
 * @Last Modified by: hapick
 * @Last Modified time: 2018-04-17 18:29:37
 */

/* 公共 CSS */

* { box-sizing: border-box; }
html { font-size: 14px; font-family: '微软雅黑'; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, hr, button { margin: 0; padding: 0; }
ul, ol { list-style: none;}
a { text-decoration: none; color: #333; }
a:hover { color: rgb(0, 133, 211); }

body { background: #fff; color: #333; }

.main {
    position: relative;
}

.container {
    width: 1140px;
    margin: 0 auto;
    position: relative;
}

.text-bold {
    font-weight: bold;
}

/* 头部 */
header {
    display: flex;
    height: 100px;
    background: rgb(46, 49, 46);
}

header .logo {
    width: 288px;
    height: 100%;
    color: #fff;
    font-size: 25px;
    padding: 30px 0 0 100px;
    /* background-image: url('../images/logo.png'); */
}

header nav {
    flex: 1;
    display: flex;
    height: 100%;
}

header nav .item {
    flex: 1;
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    line-height: 100px;
    text-align: center;
}

header nav .item:hover {
    color: rgb(4, 179, 220);
}

header nav .active {
    background: rgb(4, 179, 220);
    color: #fff !important;
}

/* banner */
.main .banner {
    font-size: 0;
}

.main .banner img {
    width: 100%;
    min-width: 1140px;
}

/* 版块头部公共部分 */
.section-top {
    height: 43px;
    overflow: hidden;
}

.section-top img {
    height: 100%;
    vertical-align: middle;
    margin-right: 10px;
}

.section-top .title {
    font-size: 32px;
    font-weight: bold;
    vertical-align: middle;
}

.section-top .more {
    float: right;
    margin-top: 16px;
    font-weight: bold;
    font-size: 20px;
    color: #f00;
}

.section-top .more:hover {
    color: rgb(0, 133, 211);
}

/* 底部 */
footer {
    height: 175px;
    background: rgb(46, 49, 46);
}

footer .foot-center {
    display: flex;
    height: 100%;
    padding-top: 26px;
}

footer .foot-center .left {
    margin-left: 145px;
    width: 123px;
}

footer .foot-center .left img {
    width: 100%;
}

footer .foot-center .right {
    flex: 1;
}

footer .foot-center .right p {
    color: #fff;
    text-align: center;
    line-height: 2.5;
}

footer .foot-center .right a,
footer .foot-center .right .bold a {
    color: #fff;
    font-weight: bold;
}

footer .foot-center .right a:hover {
    color: rgb(0, 133, 211);
}