﻿@charset "utf-8";
header {
    width: 100%;
    background-color: white;
    position: fixed;
    z-index: 50;
    top: 0px;
    border-bottom: 0.5px solid #e6e6e6;
    box-sizing: border-box;
    height: 110px;
}
    header .t_header {
        width: 100%;
        height: 70px;
    }
        header .t_header a {
            height: 100%;
        }
header .t_header a img{
    height: 100%;
    display: block;
    padding: 15px;
    box-sizing: border-box;
}
    header .b_header {
        background-color: #056249;
        height: 40px;
    }
    header .b_header ul{
        width: 800px;
        margin: 0 auto;
    }
    header .b_header ul li{
        width: 33.3333%;
        line-height: 40px;
        text-align: center;
    }
        header .b_header ul li a {
            color: white;
        }
        header .b_header ul li:hover a {
            color: #bfe2d8;
        }

section {
    width: 1000px;
    margin: 0 auto;
    margin-top: 150px;
}


footer {
    background-color: #3b665a;
    height: 30px;
}
        footer p{
            color: white;
            text-align: right;
            line-height: 30px;
            padding-right: 10px;
        }