/** 
*   全局初始化
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Microsoft YaHei';
}

ul,
ol,
dl {
    list-style: none;
}

a {
    color: #666;
    text-decoration: none !important;
}

.r {
    float: right;
}

.l {
    float: left;
}

select,
option,
input,
textarea {
    outline: none;
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.center {
    width: 1000px;
    max-width: 1000px;
    margin: 0 auto;
    height: 100%;
}

.main {
    min-width: 1000px;
    width: 1000px;
    margin: 0 auto;
}


/* 头部 */

.header_top {
    margin: 10px 0;
    height: 82px;
}

.h_top_logo {
    width: 60%;
}

.h_t_logo_img {
    display: inline-block;
}

.h_t_logo_img a {
    display: block;
    padding: 0 5px;
}

.h_t_logo_text {
    height: 82px;
    position: relative;
    width: 280px;
    border-left: 1px solid #d8d8d8;
}

.h_t_logo_text span {
    position: absolute;
    display: inline-block;
    bottom: 0;
    width: 500px;
    font-size: 18px;
    font-weight: 100;
    margin-left: 10px;
    line-height: 75px;
}

.h_top_phone {
    height: 100%;
}

.h_t_phone_img {
    position: relative;
    height: 100%;
    width: 40px;
}

.h_t_phone_img img,
.h_t_phone_text span {
    position: absolute;
    bottom: 15px;
}

.h_t_phone_text {
    height: 100%;
    width: 235px;
    position: relative;
    padding-left: 15px;
}

.h_t_phone_text span {
    font-size: 26px;
    line-height: 40px;
    font-weight: bold;
}


/* 头部导航栏 */

.header_list {
    height: 72px;
    border-top: 2px solid #F57A2B;
    background-color: #0d6AB0;
    text-align: center;
}

.header_list ul {
    display: inline-block;
}

.header_list li {
    float: left;
    position: relative;
}

.header_list li > a {
    display: inline-block;
    padding: 0 38px;
    line-height: 70px;
    height: 100%;
    color: #fff;
    transition-duration: .3s;
}

.header_list li:hover > a {
    background-color: #fff;
    color: #0d6AB0;
}

li.on > a {
    background-color: #fff;
    color: #0d6AB0;
}

.header_list li dl {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
    border-top: none;
    background-color: #0d6AB0;
}

.header_list li dd a {
    padding: 5px 0;
    display: block;
    text-align: center;
    color: #fff;
    line-height: 30px;
    transition-duration: .5s;
}

.header_list li dd:hover a {
    background-color: #fff;
    color: #0d6AB0;
}


/* 通栏大图 */

.bigimg {
    position: relative;
}

.bigimg img {
    width: 100%;
    display: block;
}

.bigimg div {
    color: white;
    position: absolute;
    right: 15%;
    top: 30px;
    letter-spacing: 2px;
    font-size: 35px;
}


/* 文字独白 */

.text {
    background-color: #f6f6f6;
}

.text .center {
    color: #000;
    padding: 50px;
    text-indent: 2em;
    margin: 20px auto;
    line-height: 30px;
}

.text .center img {
    max-width: 100%;
	height: auto;
}


/* 小标题 */

.title {
    background-color: #0d6AB0;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding: 10px 0;
}

.title > h3 {
    font-size: 28px;
    line-height: 40px;
}

.title > p {
    font-size: 12px;
}

.title span {
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 10px;
}

span.t_l {
    top: 10px;
    left: 10px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
}

span.t_r {
    top: 10px;
    right: 10px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}


/* 分页 */

.page {
    margin-top: 30px;
    text-align: center;
}

.page a {
    border: 1px solid #0383DE;
    display: inline-block;
    padding: 0 5px;
    transition-duration: .3s;
}

.page a:hover {
    background-color: #0383DE;
    color: #fff;
}

a.on {
    background-color: #0383DE;
    color: #fff;
}


/* 底部导航栏 */

.bottom {
    margin-top: 20px;
    height: 90px;
    background-color: #252525;
}

.bottom_logo {
    width: 10%;
}

.bottom_logo a {
    display: block;
    height: 90px;
    position: relative;
}

.bottom_logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bottom_list {
    width: auto;
}

.bottom_list li {
    float: left;
    line-height: 90px;
    padding: 0 38px;
}

.bottom_list li a {
    color: #fff;
    transition-duration: .5s;
}

.bottom_list li:hover a {
    color: #0383DE;
}