﻿* {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}

/* 布局 */
.box {
    width: 1000px;
    margin: 0 auto;
}
.fr {
    float: right;
}
.fl {
    float: left;
}
.clear::after {
    content: "";
    display: block;
    clear: both;
}
.lh40 {
    line-height: 40px;
}
/* flex */
.flex {
    display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */  
    display: -moz-box; /* Firefox 17- */  
    display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */  
    display: -moz-flex; /* Firefox 18+ */  
    display: -ms-flexbox; /* IE 10 */  
    display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */  
}
.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.justify-center{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.justify-end{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.justify-bet{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex-column{
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.flex_1{
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;    
}
/* 字体 */
.ft12 {
    font-size:12px;
    font-family:MicrosoftYaHei;
    color:rgba(51,51,51,1);
    text-shadow:0px 2px 4px rgba(0,0,0,0.08);
}
/* 边距 */
.ml20 {
    margin-left: 20px;
}
.ml10 {
    margin-left: 10px;
}
.ml5 {
    margin-left: 5px;
}
.mt40 {
    margin-top: 40px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
/* 头部 */
.header {
    height: 40px;
    line-height: 40px;
    box-shadow:0px 2px 4px 0px rgba(0,0,0,0.08);
}
.header div {
    height: 100%;
}
.header > div::after {
    content: "";
    display: block;
    clear: both;
}
.header .h_l {
    float: left;
}
.header .h_r {
    float: right;
}
.header .h_title {
    font-size:12px;
    color:rgba(0,145,66,1);
    text-shadow:0px 2px 4px rgba(0,0,0,0.08);
}
/* 底部 */
.footer {
    margin-top: 42px;
    border-top: 2px solid #ddd;
    padding-bottom: 10px;
    border-image: -webkit-linear-gradient(right, rgba(157,230,134,1), rgba(47,173,102,1)) 30 30;
   	border-image: -moz-linear-gradient(to right, rgba(157,230,134,1), rgba(47,173,102,1)) 30 30;
    border-image: linear-gradient(to right, rgba(157,230,134,1), rgba(47,173,102,1)) 30 30; 
}
.footer .d_title {
    font-size:16px;
    font-weight:bold;
    color:rgba(51,51,51,1);
    margin-top: 25px;
}
.footer .d_list {
    margin-top: 5px;
}
.footer .d_list li {
    width: 160px;
    height: 16px;
    
    float: left;
    margin-right: 8px;
    margin-top: 10px;
}
.footer .d_list li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 16px;
    text-align: left;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    font-size:12px;
    color:rgba(102,102,102,1);
}
.footer .d_list li:nth-child(6n) {
    margin-right: 0;
}
.footer .unit {
    margin-top: 40px;
}
.ft12_9 {
    font-size:12px;
    color:rgba(153,153,153,1);
    text-align: center;
}
.footer .about-list li {
    padding: 0 10px;
    height: 12px;
    line-height: 12px;
}
.footer .about-list li:not(:first-child) {
    border-left: 1px solid #E1E1E1;
}
.footer .about-list li a {
    display: block;
    height: 100%;
    font-size:12px;
    color:rgba(153,153,153,1);
}