@charset "UTF-8";

/* H1 - H6 的字号以此基准设置 */
/* 屏幕临界点 */
/* 布局列间隔 */
/*色系*/
/*色系·列表*/
/*响应工具*/
.visible-xs,
.visible-xs-up,
.visible-xs-down,
.visible-sm,
.visible-sm-up,
.visible-sm-down,
.visible-md,
.visible-md-up,
.visible-md-down,
.visible-lg,
.visible-lg-up,
.visible-lg-down {
    display: none;
}

/* 单区间 */
@media (max-width: 767px) {
    .visible-xs {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    .visible-sm {
        display: block;
    }
}

@media (min-width: 960px) and (max-width: 1199px) {
    .visible-md {
        display: block;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block;
    }
}

/* 多区间 UP */
@media (min-width: 767px) {
    .visible-xs-up {
        display: block;
    }
}

@media (min-width: 959px) {
    .visible-sm-up {
        display: block;
    }
}

@media (min-width: 1199px) {
    .visible-md-up {
        display: block;
    }
}

@media (min-width: 1200px) {
    .visible-lg-up {
        display: block;
    }
}

/* 多区间 DOWN */
@media (max-width: 1px) {
    .visible-xs-down {
        display: block;
    }
}

@media (max-width: 768px) {
    .visible-sm-down {
        display: block;
    }
}

@media (max-width: 960px) {
    .visible-md-down {
        display: block;
    }
}

@media (max-width: 1200px) {
    .visible-lg-down {
        display: block;
    }
}

/* 单区间 */
@media (max-width: 767px) {
    .hidden-xs {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    .hidden-sm {
        display: none;
    }
}

@media (min-width: 960px) and (max-width: 1199px) {
    .hidden-md {
        display: none;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none;
    }
}

/* 多区间 UP */
@media (min-width: 767px) {
    .hidden-xs-up {
        display: none;
    }
}

@media (min-width: 959px) {
    .hidden-sm-up {
        display: none;
    }
}

@media (min-width: 1199px) {
    .hidden-md-up {
        display: none;
    }
}

@media (min-width: 1200px) {
    .hidden-lg-up {
        display: none;
    }
}

/* 多区间 DOWN */
@media (max-width: 1px) {
    .hidden-xs-down {
        display: none;
    }
}

@media (max-width: 768px) {
    .hidden-sm-down {
        display: none;
    }
}

@media (max-width: 960px) {
    .hidden-md-down {
        display: none;
    }
}

@media (max-width: 1200px) {
    .hidden-lg-down {
        display: none;
    }
}

/* 打印类型 */
.visible-print {
    display: none;
}

@media print {
    .visible-print {
        display: block;
    }

    .hidden-print {
        display: none;
    }
}

/* 显示-隐藏 */
.show {
    display: block !important;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

/* 浮动 */
.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 文本工具类 */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-indent {
    text-indent: 2em;
}

/* 情景色文本 */
.text-primary {
    color: #267;
}

.text-success {
    color: #7B0;
}

.text-info {
    color: #39D;
}

.text-warning {
    color: #F80;
}

.text-danger {
    color: #D33;
}

/* 情景色背景 */
.bg-primary {
    background-color: #278;
    color: #FFF;
    padding: 1em;
}

.bg-success {
    background-color: #dff0d8;
    color: #006400;
    padding: 1em;
}

.bg-info {
    background-color: #d9edf7;
    color: #4682B4;
    padding: 1em;
}

.bg-warning {
    background-color: #fcf8e3;
    color: #A0522D;
    padding: 1em;
}

.bg-danger {
    background-color: #f2dede;
    color: #B22222;
    padding: 1em;
}

/* 内外边距 */
.m-t {
    margin-top: 15px !important;
}

.m-t-xs {
    margin-top: 10px !important;
}

.m-t-sm {
    margin-top: 20px !important;
}

.m-t-md {
    margin-top: 30px !important;
}

.m-t-lg {
    margin-top: 45px !important;
}

.m-r {
    margin-right: 15px !important;
}

.m-r-xs {
    margin-right: 10px !important;
}

.m-r-sm {
    margin-right: 20px !important;
}

.m-r-md {
    margin-right: 30px !important;
}

.m-r-lg {
    margin-right: 45px !important;
}

.m-b {
    margin-bottom: 15px !important;
}

.m-b-xs {
    margin-bottom: 10px !important;
}

.m-b-sm {
    margin-bottom: 20px !important;
}

.m-b-md {
    margin-bottom: 30px !important;
}

.m-b-lg {
    margin-bottom: 45px !important;
}

.m-l {
    margin-left: 15px !important;
}

.m-l-xs {
    margin-left: 10px !important;
}

.m-l-sm {
    margin-left: 20px !important;
}

.m-l-md {
    margin-left: 30px !important;
}

.m-l-lg {
    margin-left: 45px !important;
}

.m-n {
    margin: 0 !important;
}

.p-t {
    padding-top: 15px !important;
}

.p-t-xs {
    padding-top: 10px !important;
}

.p-t-sm {
    padding-top: 20px !important;
}

.p-t-md {
    padding-top: 30px !important;
}

.p-t-lg {
    padding-top: 45px !important;
}

.p-r {
    padding-right: 15px !important;
}

.p-r-xs {
    padding-right: 10px !important;
}

.p-r-sm {
    padding-right: 20px !important;
}

.p-r-md {
    padding-right: 30px !important;
}

.p-r-lg {
    padding-right: 45px !important;
}

.p-b {
    padding-bottom: 15px !important;
}

.p-b-xs {
    padding-bottom: 10px !important;
}

.p-b-sm {
    padding-bottom: 20px !important;
}

.p-b-md {
    padding-bottom: 30px !important;
}

.p-b-lg {
    padding-bottom: 45px !important;
}

.p-l {
    padding-left: 15px !important;
}

.p-l-xs {
    padding-left: 10px !important;
}

.p-l-sm {
    padding-left: 20px !important;
}

.p-l-md {
    padding-left: 30px !important;
}

.p-l-lg {
    padding-left: 45px !important;
}

.p-n {
    padding: 0 !important;
}

/*徽标*/
.badge {
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 80%;
    color: #FFF;
    background-color: #EEE;
    color: #267;
}

.badge-primary {
    background-color: #267;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 80%;
    color: #FFF;
}

.badge-success {
    background-color: #7B0;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 80%;
    color: #FFF;
}

.badge-info {
    background-color: #39D;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 80%;
    color: #FFF;
}

.badge-warning {
    background-color: #F80;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 80%;
    color: #FFF;
}

.badge-danger {
    background-color: #D33;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 80%;
    color: #FFF;
}

.badge-notification {
    border-radius: 1em !important;
}

/* 重置元素样式 */
html {
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

html,
body {
    margin: 0;
}

img,
a {
    border: none;
}

a {
    text-decoration: none;
    color: #37B;
}

a:hover {
    color: #F55;
}

::selection {
    background: #FFA;
    color: #333;
    text-shadow: none;
}

code {
    color: #A00;
    background: #FEE;
    padding: 2px 5px;
    line-height: 1em;
    margin: 0 3px;
    display: inline-block;
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.6em;
    margin: 0.5em 0;
    font-weight: normal;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

hr {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 1px;
    border-color: #ddd;
}

/* 段落 */
p {
    line-height: 1.8em;
    margin: 1em 0 1.5em 0;
}

sub,
sup {
    font-size: 12px;
}

small {
    font-size: 70%;
    color: #777777;
}

/* 列表 */
ul,
ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

ul li,
ol li {
    line-height: 1.8em;
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

/* 描述列表 */
dl,
dl.dl-horizontal {
    margin: 1em 0;
    line-height: 1.8em;
}

dl dt,
dl.dl-horizontal dt {
    font-weight: bold;
}

dl dd,
dl.dl-horizontal dd {
    margin: 0;
}

dl.dl-horizontal dt {
    width: 160px;
    float: left;
}

dl.dl-horizontal dd {
    padding-left: 190px;
}

/* 图片 */
img {
    max-width: 100%;
    height: auto;
    border: none;
    box-sizing: border-box;
}

img.img-rounded {
    border-radius: 1em;
}

img.img-circle {
    border-radius: 50%;
}

img.img-thumbnail {
    border: 1px solid #ddd;
    padding: 5px;
    background: #FFF;
}

img.img-preserve {
    max-width: auto;
}

/* 布局 通过 10|12 等分，实现 1、2、3、4、5、6 的公倍数栅格 间隔 30px */
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        width: 738px;
    }
}

@media (min-width: 960px) {
    .container {
        width: 930px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.container:before,
.container:after {
    content: " ";
    display: table;
}

.container:after {
    clear: both;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.container-fluid:before,
.container-fluid:after {
    content: " ";
    display: table;
}

.container-fluid:after {
    clear: both;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row:before,
.row:after {
    content: " ";
    display: table;
}

.row:after {
    clear: both;
}

.col-xs-1-12 {
    width: 8.33333%;
}

.col-xs-2-12 {
    width: 16.66667%;
}

.col-xs-3-12 {
    width: 25%;
}

.col-xs-4-12 {
    width: 33.33333%;
}

.col-xs-5-12 {
    width: 41.66667%;
}

.col-xs-6-12 {
    width: 50%;
}

.col-xs-7-12 {
    width: 58.33333%;
}

.col-xs-8-12 {
    width: 66.66667%;
}

.col-xs-9-12 {
    width: 75%;
}

.col-xs-10-12 {
    width: 83.33333%;
}

.col-xs-11-12 {
    width: 91.66667%;
}

.col-xs-12-12 {
    width: 100%;
}

.col-xs-1-12,
.col-xs-2-12,
.col-xs-3-12,
.col-xs-4-12,
.col-xs-5-12,
.col-xs-6-12,
.col-xs-7-12,
.col-xs-8-12,
.col-xs-9-12,
.col-xs-10-12,
.col-xs-11-12,
.col-xs-12-12 {
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
    flex: none;
}

@media (min-width: 768px) {
    .col-sm-1-12 {
        width: 8.33333%;
    }

    .col-sm-2-12 {
        width: 16.66667%;
    }

    .col-sm-3-12 {
        width: 25%;
    }

    .col-sm-4-12 {
        width: 33.33333%;
    }

    .col-sm-5-12 {
        width: 41.66667%;
    }

    .col-sm-6-12 {
        width: 50%;
    }

    .col-sm-7-12 {
        width: 58.33333%;
    }

    .col-sm-8-12 {
        width: 66.66667%;
    }

    .col-sm-9-12 {
        width: 75%;
    }

    .col-sm-10-12 {
        width: 83.33333%;
    }

    .col-sm-11-12 {
        width: 91.66667%;
    }

    .col-sm-12-12 {
        width: 100%;
    }

    .col-sm-1-12,
    .col-sm-2-12,
    .col-sm-3-12,
    .col-sm-4-12,
    .col-sm-5-12,
    .col-sm-6-12,
    .col-sm-7-12,
    .col-sm-8-12,
    .col-sm-9-12,
    .col-sm-10-12,
    .col-sm-11-12,
    .col-sm-12-12 {
        float: left;
        padding: 0 15px;
        box-sizing: border-box;
        flex: none;
    }
}

@media (min-width: 960px) {
    .col-md-1-12 {
        width: 8.33333%;
    }

    .col-md-2-12 {
        width: 16.66667%;
    }

    .col-md-3-12 {
        width: 25%;
    }

    .col-md-4-12 {
        width: 33.33333%;
    }

    .col-md-5-12 {
        width: 41.66667%;
    }

    .col-md-6-12 {
        width: 50%;
    }

    .col-md-7-12 {
        width: 58.33333%;
    }

    .col-md-8-12 {
        width: 66.66667%;
    }

    .col-md-9-12 {
        width: 75%;
    }

    .col-md-10-12 {
        width: 83.33333%;
    }

    .col-md-11-12 {
        width: 91.66667%;
    }

    .col-md-12-12 {
        width: 100%;
    }

    .col-md-1-12,
    .col-md-2-12,
    .col-md-3-12,
    .col-md-4-12,
    .col-md-5-12,
    .col-md-6-12,
    .col-md-7-12,
    .col-md-8-12,
    .col-md-9-12,
    .col-md-10-12,
    .col-md-11-12,
    .col-md-12-12 {
        float: left;
        padding: 0 15px;
        box-sizing: border-box;
        flex: none;
    }
}

@media (min-width: 1200px) {
    .col-lg-1-12 {
        width: 8.33333%;
    }

    .col-lg-2-12 {
        width: 16.66667%;
    }

    .col-lg-3-12 {
        width: 25%;
    }

    .col-lg-4-12 {
        width: 33.33333%;
    }

    .col-lg-5-12 {
        width: 41.66667%;
    }

    .col-lg-6-12 {
        width: 50%;
    }

    .col-lg-7-12 {
        width: 58.33333%;
    }

    .col-lg-8-12 {
        width: 66.66667%;
    }

    .col-lg-9-12 {
        width: 75%;
    }

    .col-lg-10-12 {
        width: 83.33333%;
    }

    .col-lg-11-12 {
        width: 91.66667%;
    }

    .col-lg-12-12 {
        width: 100%;
    }

    .col-lg-1-12,
    .col-lg-2-12,
    .col-lg-3-12,
    .col-lg-4-12,
    .col-lg-5-12,
    .col-lg-6-12,
    .col-lg-7-12,
    .col-lg-8-12,
    .col-lg-9-12,
    .col-lg-10-12,
    .col-lg-11-12,
    .col-lg-12-12 {
        float: left;
        padding: 0 15px;
        box-sizing: border-box;
        flex: none;
    }
}

.col-xs-1-10 {
    width: 10%;
}

.col-xs-2-10 {
    width: 20%;
}

.col-xs-3-10 {
    width: 30%;
}

.col-xs-4-10 {
    width: 40%;
}

.col-xs-5-10 {
    width: 50%;
}

.col-xs-6-10 {
    width: 60%;
}

.col-xs-7-10 {
    width: 70%;
}

.col-xs-8-10 {
    width: 80%;
}

.col-xs-9-10 {
    width: 90%;
}

.col-xs-10-10 {
    width: 100%;
}

.col-xs-1-10,
.col-xs-2-10,
.col-xs-3-10,
.col-xs-4-10,
.col-xs-5-10,
.col-xs-6-10,
.col-xs-7-10,
.col-xs-8-10,
.col-xs-9-10,
.col-xs-10-10 {
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
    flex: none;
}

@media (min-width: 768px) {
    .col-sm-1-10 {
        width: 10%;
    }

    .col-sm-2-10 {
        width: 20%;
    }

    .col-sm-3-10 {
        width: 30%;
    }

    .col-sm-4-10 {
        width: 40%;
    }

    .col-sm-5-10 {
        width: 50%;
    }

    .col-sm-6-10 {
        width: 60%;
    }

    .col-sm-7-10 {
        width: 70%;
    }

    .col-sm-8-10 {
        width: 80%;
    }

    .col-sm-9-10 {
        width: 90%;
    }

    .col-sm-10-10 {
        width: 100%;
    }

    .col-sm-1-10,
    .col-sm-2-10,
    .col-sm-3-10,
    .col-sm-4-10,
    .col-sm-5-10,
    .col-sm-6-10,
    .col-sm-7-10,
    .col-sm-8-10,
    .col-sm-9-10,
    .col-sm-10-10 {
        float: left;
        padding: 0 15px;
        box-sizing: border-box;
        flex: none;
    }
}

.row.gutter-collapse {
    margin-left: 0;
    margin-right: 0;
}

.row.gutter-collapse>div {
    padding-left: 0;
    padding-right: 0;
}

.row.gutter-small {
    margin-left: -5px;
    margin-right: -5px;
}

@media (max-width: 767px) {
    .row.gutter-small {
        margin-left: -2px;
        margin-right: -2px;
    }
}

.row.gutter-small>div {
    padding-left: 5px;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .row.gutter-small>div {
        padding-left: -2px;
        padding-right: -2px;
    }
}

.row.gutter-larger {
    margin-left: -25px;
    margin-right: -25px;
}

@media (max-width: 767px) {
    .row.gutter-larger {
        margin-left: -10px;
        margin-right: -10px;
    }
}

.row.gutter-larger>div {
    padding-left: 25px;
    padding-right: 25px;
}

@media (max-width: 767px) {
    .row.gutter-larger>div {
        padding-left: -10px;
        padding-right: -10px;
    }
}


@media (min-width: 960px) {
    .col-md-1-10 {
        width: 10%;
    }

    .col-md-2-10 {
        width: 20%;
    }

    .col-md-3-10 {
        width: 30%;
    }

    .col-md-4-10 {
        width: 40%;
    }

    .col-md-5-10 {
        width: 50%;
    }

    .col-md-6-10 {
        width: 60%;
    }

    .col-md-7-10 {
        width: 70%;
    }

    .col-md-8-10 {
        width: 80%;
    }

    .col-md-9-10 {
        width: 90%;
    }

    .col-md-10-10 {
        width: 100%;
    }

    .col-md-1-10,
    .col-md-2-10,
    .col-md-3-10,
    .col-md-4-10,
    .col-md-5-10,
    .col-md-6-10,
    .col-md-7-10,
    .col-md-8-10,
    .col-md-9-10,
    .col-md-10-10 {
        float: left;
        padding: 0 15px;
        box-sizing: border-box;
        flex: none;
    }
}

@media (min-width: 1200px) {
    .col-lg-1-10 {
        width: 10%;
    }

    .col-lg-2-10 {
        width: 20%;
    }

    .col-lg-3-10 {
        width: 30%;
    }

    .col-lg-4-10 {
        width: 40%;
    }

    .col-lg-5-10 {
        width: 50%;
    }

    .col-lg-6-10 {
        width: 60%;
    }

    .col-lg-7-10 {
        width: 70%;
    }

    .col-lg-8-10 {
        width: 80%;
    }

    .col-lg-9-10 {
        width: 90%;
    }

    .col-lg-10-10 {
        width: 100%;
    }

    .col-lg-1-10,
    .col-lg-2-10,
    .col-lg-3-10,
    .col-lg-4-10,
    .col-lg-5-10,
    .col-lg-6-10,
    .col-lg-7-10,
    .col-lg-8-10,
    .col-lg-9-10,
    .col-lg-10-10 {
        float: left;
        padding: 0 15px;
        box-sizing: border-box;
        flex: none;
    }
}

.col-xs-1-10,
.col-sm-1-10,
.col-md-1-10,
.col-lg-1-10,
.col-xs-2-10,
.col-sm-2-10,
.col-md-2-10,
.col-lg-2-10,
.col-xs-3-10,
.col-sm-3-10,
.col-md-3-10,
.col-lg-3-10,
.col-xs-4-10,
.col-sm-4-10,
.col-md-4-10,
.col-lg-4-10,
.col-xs-5-10,
.col-sm-5-10,
.col-md-5-10,
.col-lg-5-10,
.col-xs-6-10,
.col-sm-6-10,
.col-md-6-10,
.col-lg-6-10,
.col-xs-7-10,
.col-sm-7-10,
.col-md-7-10,
.col-lg-7-10,
.col-xs-8-10,
.col-sm-8-10,
.col-md-8-10,
.col-lg-8-10,
.col-xs-9-10,
.col-sm-9-10,
.col-md-9-10,
.col-lg-9-10,
.col-xs-10-10,
.col-sm-10-10,
.col-md-10-10,
.col-lg-10-10,
.col-xs-1-12,
.col-sm-1-12,
.col-md-1-12,
.col-lg-1-12,
.col-xs-2-12,
.col-sm-2-12,
.col-md-2-12,
.col-lg-2-12,
.col-xs-3-12,
.col-sm-3-12,
.col-md-3-12,
.col-lg-3-12,
.col-xs-4-12,
.col-sm-4-12,
.col-md-4-12,
.col-lg-4-12,
.col-xs-5-12,
.col-sm-5-12,
.col-md-5-12,
.col-lg-5-12,
.col-xs-6-12,
.col-sm-6-12,
.col-md-6-12,
.col-lg-6-12,
.col-xs-7-12,
.col-sm-7-12,
.col-md-7-12,
.col-lg-7-12,
.col-xs-8-12,
.col-sm-8-12,
.col-md-8-12,
.col-lg-8-12,
.col-xs-9-12,
.col-sm-9-12,
.col-md-9-12,
.col-lg-9-12,
.col-xs-10-12,
.col-sm-10-12,
.col-md-10-12,
.col-lg-10-12,
.col-xs-11-12,
.col-sm-11-12,
.col-md-11-12,
.col-lg-11-12,
.col-xs-12-12,
.col-sm-12-12,
.col-md-12-12,
.col-lg-12-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    flex: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

table>thead>tr>th,
table>thead>tr>td,
table>tbody>tr>th,
table>tbody>tr>td,
table>tfoot>tr>th,
table>tfoot>tr>td {
    padding: 1em;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table>thead>tr>th,
table>thead>tr>td {
    border-bottom-width: 2px;
}

table>tfoot {
    font-style: italic;
    color: #888;
}

.table-bordered {
    border: 1px solid #ddd;
}

.table-bordered>thead>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>tfoot>tr>td {
    border: 1px solid #ddd;
}

.table-bordered>thead>tr>th,
.table-bordered>thead>tr>td {
    border-bottom-width: 2px;
}

.table-unstyled {
    border: none;
}

.table-unstyled>thead>tr>th,
.table-unstyled>thead>tr>td,
.table-unstyled>tbody>tr>th,
.table-unstyled>tbody>tr>td,
.table-unstyled>tfoot>tr>th,
.table-unstyled>tfoot>tr>td {
    border: none;
}

/* 压缩间隔 */
.table-condensed>thead>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>tfoot>tr>td {
    padding: 0.5em;
}

/* 表格工具 */
.table-striped tbody>tr:nth-of-type(odd) {
    background: #fafafa;
}

.table-hover tbody>tr:hover {
    background: #F2F2F2;
}

.btn {
    box-sizing: border-box;
    padding: 0.5em 1em;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    word-spacing: normal;
    font-size: 14px;
}

.btn {
    background: #F2F2F2;
    border: 1px solid #e1e1e1;
    color: #333;
}

.btn:hover {
    color: #333;
}

.btn:hover,
.btn.active {
    background: white;
    border: 1px solid #F2F2F2;
}

.btn-primary {
    background: #267;
    border: 1px solid #115566;
    color: #FFF;
}

.btn-primary:hover {
    color: #FFF;
}

.btn-primary:hover,
.btn-primary.active {
    background: #337788;
    border: 1px solid #267;
}

.btn-success {
    background: #7B0;
    border: 1px solid #66aa00;
    color: #FFF;
}

.btn-success:hover {
    color: #FFF;
}

.btn-success:hover,
.btn-success.active {
    background: #88cc11;
    border: 1px solid #7B0;
}

.btn-info {
    background: #39D;
    border: 1px solid #2288cc;
    color: #FFF;
}

.btn-info:hover {
    color: #FFF;
}

.btn-info:hover,
.btn-info.active {
    background: #44aaee;
    border: 1px solid #39D;
}

.btn-warning {
    background: #F80;
    border: 1px solid #ee7700;
    color: #FFF;
}

.btn-warning:hover {
    color: #FFF;
}

.btn-warning:hover,
.btn-warning.active {
    background: #ff9911;
    border: 1px solid #F80;
}

.btn-danger {
    background: #D33;
    border: 1px solid #cc2222;
    color: #FFF;
}

.btn-danger:hover {
    color: #FFF;
}

.btn-danger:hover,
.btn-danger.active {
    background: #ee4444;
    border: 1px solid #D33;
}

.btn-xs {
    font-size: 12px;
    padding: 1px 5px;
}

.btn-sm {
    font-size: 12px;
    padding: 5px 10px;
}

.btn-md {
    font-size: 22px;
}

.btn-lg {
    font-size: 30px;
}

button[disabled],
button[disabled]:hover {
    color: #AAA;
    background-color: #EEE;
    border-color: #DDD;
    cursor: not-allowed;
}

.btn-group:before,
.btn-group:after {
    content: " ";
    display: table;
}

.btn-group:after {
    clear: both;
}

.btn-group button {
    float: left;
    margin-left: -1px;
}

.btn-group button:first-child {
    margin-left: 0;
}

input[type='text'] {
    box-sizing: border-box;
    padding: 0.5em 1em;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    vertical-align: middle;
    word-spacing: normal;
    font-size: 14px;
    border-style: solid;
    border-width: 1px;
    border-color: #e1e1e1;
    color: #666666;
}

input[type='text']:focus {
    box-shadow: 0 0 0.5em #bfbfbf;
    outline: 0;
}

.input-group {
    display: table;
    border-collapse: collapse;
}

.input-group input[type='text'],
.input-group .input-group-btn {
    display: table-cell;
    position: relative;
    box-sizing: border-box;
}

.input-group input[type='text'] {
    width: 100%;
}

.input-group .btn-group {
    display: table-cell;
    word-spacing: normal;
    width: 1%;
    vertical-align: middle;
}

.input-group .btn-group .btn {
    margin-left: -1px;
    margin-right: -1px;
    border-radius: 0;
    z-index: 2;
    position: relative;
}

.input-group .btn-group:first-child .btn {
    border-radius: 2px 0 0 2px;
    margin-right: -1px;
    margin-left: 0;
}

.input-group .btn-group:last-child .btn {
    border-radius: 0 2px 2px 0;
    margin-left: -1px;
    margin-right: 0;
}

.input-group input[type='text']:first-child {
    border-radius: 2px 0 0 2px;
}

.input-group input[type='text']:last-child {
    border-radius: 0 2px 2px 0;
}

/* 导航 */
.nav {
    margin: 0;
    padding: 0;
}

.nav li {
    list-style: none;
    position: relative;
}

.nav li>a {
    display: block;
    padding: 15px;
    line-height: 20px;
    color: #333;
}

.nav li>a:hover {
    color: black;
}

/* 导航条 */
.navbar {
    position: relative;
    padding: 0;
    margin: 0;
    background: #F2F2F2;
    /* 导航头部 */
    /* 导航组件 */
    /* 导航组件 */
}

.navbar li {
    list-style: none;
    position: relative;
}

.navbar li.active {
    background: #e1e1e1;
}

.navbar li>a {
    display: block;
    padding: 15px;
    line-height: 20px;
    color: #333;
}

.navbar li>a:hover {
    color: black;
}

.navbar .navbar-header {
    float: left;
}

.navbar .navbar-header:before,
.navbar .navbar-header:after {
    content: " ";
    display: table;
}

.navbar .navbar-header:after {
    clear: both;
}

.navbar .navbar-header .navbar-logo {
    float: left;
    height: 20px;
    margin: 15px;
    line-height: 20px;
    font-weight: bold;
}

.navbar .navbar-header .navbar-toggle {
    margin: 10px 15px;
    height: 30px;
    border: 1px solid #ddd;
    padding: 6px 10px;
    display: none;
}

.navbar .navbar-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    float: left;
}

.navbar .navbar-nav li {
    float: left;
}

.navbar .navbar-right {
    float: right;
}

.navbar:before,
.navbar:after {
    content: " ";
    display: table;
}

.navbar:after {
    clear: both;
}

.dropdown-menu {
    position: absolute;
    padding: 5px 0;
    margin: 0;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFF;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    float: none !important;
}

.dropdown-menu li.header {
    padding: 6px 15px;
    margin: 0;
    font-weight: bold;
    color: #555;
}

.dropdown-menu li.disabled {
    font-style: italic;
    color: #DDD;
    cursor: not-allowed;
}

.dropdown-menu li.disabled a {
    color: #DDD;
    cursor: not-allowed;
}

.dropdown-menu li.disabled a:hover {
    background: none;
}

.dropdown-menu li.active {
    background: #e1e1e1;
}

.dropdown-menu li.active a {
    background: #e1e1e1;
}

.dropdown-menu li.divider {
    margin: 5px 0;
    border-top: 1px solid #ddd;
    line-height: 0;
    height: 0;
}

.dropdown-menu li a {
    color: #333;
    display: block;
    padding: 6px 15px;
}

.dropdown-menu li a:hover {
    background: #e9e9e9;
}

.navbar-default {
    background: #F2F2F2;
    border: 1px solid #ddd;
}

.navbar-default li.active {
    background: #e1e1e1;
}

.navbar-inverse {
    color: #F2F2F2;
    background: #267;
    border: none;
}

.navbar-inverse li.active,
.navbar-inverse li.active>a {
    background: #004455 !important;
}

.navbar-inverse li>a {
    color: #F2F2F2;
}

.navbar-inverse li>a:hover {
    color: white;
    background: #195d6e;
}

.navbar-inverse li .dropdown-menu li {
    background: #FFF;
}

.navbar-inverse li .dropdown-menu li>a {
    color: #267;
}

.navbar-inverse li .dropdown-menu li.active>a,
.navbar-inverse li .dropdown-menu li>a:hover {
    color: #FFF;
}

.navbar-inverse li .dropdown-menu li.disabled>a {
    color: #DDD;
}


@media (max-width: 479px) {
    .navbar-xs .navbar-header {
        float: none;
    }

    .navbar-xs .navbar-header:before,
    .navbar-xs .navbar-header:after {
        content: " ";
        display: table;
    }

    .navbar-xs .navbar-header:after {
        clear: both;
    }

    .navbar-xs .navbar-header .navbar-toggle {
        display: block;
    }

    .navbar-xs .navbar-nav,
    .navbar-xs .navbar-nav li {
        float: none;
    }

    .navbar-xs .dropdown-menu {
        position: relative;
        box-shadow: none;
        border: none;
        background: #F2F2F2;
        color: #333;
    }

    .navbar-xs .dropdown-menu li.header {
        padding-left: 20px;
    }

    .navbar-xs .dropdown-menu li a {
        color: #333;
        padding-left: 20px;
    }

    .navbar-xs .dropdown-menu li a:hover {
        background: none;
    }
}

@media (max-width: 767px) {
    .navbar-sm .navbar-header {
        float: none;
    }

    .navbar-sm .navbar-header:before,
    .navbar-sm .navbar-header:after {
        content: " ";
        display: table;
    }

    .navbar-sm .navbar-header:after {
        clear: both;
    }

    .navbar-sm .navbar-header .navbar-toggle {
        display: block;
    }

    .navbar-sm .navbar-nav,
    .navbar-sm .navbar-nav li {
        float: none;
    }

    .navbar-sm .dropdown-menu {
        position: relative;
        box-shadow: none;
        border: none;
        background: #F2F2F2;
        color: #333;
    }

    .navbar-sm .dropdown-menu li.header {
        padding-left: 20px;
    }

    .navbar-sm .dropdown-menu li a {
        color: #333;
        padding-left: 20px;
    }

    .navbar-sm .dropdown-menu li a:hover {
        background: none;
    }
}

@media (max-width: 959px) {
    .navbar-md .navbar-header {
        float: none;
    }

    .navbar-md .navbar-header:before,
    .navbar-md .navbar-header:after {
        content: " ";
        display: table;
    }

    .navbar-md .navbar-header:after {
        clear: both;
    }

    .navbar-md .navbar-header .navbar-toggle {
        display: block;
    }

    .navbar-md .navbar-nav,
    .navbar-md .navbar-nav li {
        float: none;
    }

    .navbar-md .dropdown-menu {
        position: relative;
        box-shadow: none;
        border: none;
        background: #F2F2F2;
        color: #333;
    }

    .navbar-md .dropdown-menu li.header {
        padding-left: 20px;
    }

    .navbar-md .dropdown-menu li a {
        color: #333;
        padding-left: 20px;
    }

    .navbar-md .dropdown-menu li a:hover {
        background: none;
    }
}

@media (max-width: 1199px) {
    .navbar-lg .navbar-header {
        float: none;
    }

    .navbar-lg .navbar-header:before,
    .navbar-lg .navbar-header:after {
        content: " ";
        display: table;
    }

    .navbar-lg .navbar-header:after {
        clear: both;
    }

    .navbar-lg .navbar-header .navbar-toggle {
        display: block;
    }

    .navbar-lg .navbar-nav,
    .navbar-lg .navbar-nav li {
        float: none;
    }

    .navbar-lg .dropdown-menu {
        position: relative;
        box-shadow: none;
        border: none;
        background: #F2F2F2;
        color: #333;
    }

    .navbar-lg .dropdown-menu li.header {
        padding-left: 20px;
    }

    .navbar-lg .dropdown-menu li a {
        color: #333;
        padding-left: 20px;
    }

    .navbar-lg .dropdown-menu li a:hover {
        background: none;
    }
}

/*面包屑导航*/
.breadcrumb {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb:before,
.breadcrumb:after {
    content: " ";
    display: table;
}

.breadcrumb:after {
    clear: both;
}

.breadcrumb>a,
.breadcrumb li {
    float: left;
    margin-right: 1.6em;
    position: relative;
}

.breadcrumb>a:after,
.breadcrumb li:after {
    content: '/';
    position: absolute;
    right: -1.2em;
    font-size: 0.5em;
    color: #999;
}

.breadcrumb>a:last-child,
.breadcrumb li:last-child {
    overflow: hidden;
}

/**************/
@charset "UTF-8";

.form-text {
    text-indent: 0.5em;
    border-color: #333;
    border-width: 1px;
    box-sizing: border-box;
    color: #888;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.form-text:focus {
    border-color: #60d2bb;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #d7f4ee;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #d7f4ee;
}

a {
    color: #333;
}

a:hover {
    color: #F42;
}

.topbar {
    background-color: #f2f6f8;
    font-size: 12px;
    line-height: 40px;
    color: #496;
}

.topbar a {
    color: #496;
}

.topbar a:hover {
    color: #F55;
}

.topbar .extend-link {
    float: right;
}

.topbar .extend-link i {
    font-style: normal;
    padding: 0 5px;
    color: #AAA;
}

.header {
    padding-top: 1.6em;
    padding-bottom: 1.6em;
}

.header .logo {
    float: left;
    width: 280px;
    overflow: hidden;
    background-repeat: no-repeat;
}

.header .logo h1 {
    display: none;
}

/*logo 右侧链接样式*/
.header {
    padding-top: 1.6em;
    padding-bottom: 1.6em;
}

.header .site-link {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 8px;
}

.header .site-link a {
    color: #A09494;
    display: block;
    margin-left: 10px;
    padding-left: 15px;
    line-height: 1.5em;
    font-size: 12px;
    border: 1px solid #eee;
    padding: .5em 1em;
    transition: all linear .3s;
    -moz-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-transition: all linear .3s;
}

.header .site-link a:hover {
    color: #fff;
    background: #276;
    border-color: #276;
    box-shadow: 0 0 10px #276;
    -webkit-box-shadow: 0 0 10px #276;
    -o-box-shadow: 0 0 10px #276;
    -moz-box-shadow: 0 0 10px #276;
    -ms-box-shadow: 0 0 10px #276;
    transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o- transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.header .site-link h3 {
    margin: 0;
    line-height: 1em;
}

.header .site-link small {
    line-height: 1em;
    color: #AAA;
}

/*logo 右侧链接样式*/
/ .breadcrumb {
    border-bottom: 1px solid #eee;
    float: left;
    margin: 0;
}

.breadcrumb a {
    color: #888;
    line-height: 2em;
}

.breadcrumb a:hover {
    color: #f42;
}


/*移动端图标*/
.menuicon {
    width: 30px;
    height: 30px;
    position: relative;
}

.menuicon span {
    display: block;
    position: absolute;
    background: #FFF;
    left: 0;
    right: 0;
    height: 2px;
    top: 14px;
    -webkit-transition: background 0.3s 0.5s ease;
    -moz-transition: background 0.3s 0.5s ease;
    -ms-transition: background 0.3s 0.5s ease;
    -o-transition: background 0.3s 0.5s ease;
    transition: background 0.3s 0.5s ease;
}

.menuicon span:before,
.menuicon span:after {
    content: '';
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    background: #FFF;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: top .3s .5s ease, -webkit-transform .3s ease;
    transition: top .3s .5s ease, transform .3s ease;
}

.menuicon span:before {
    top: -10px;
}

.menuicon span:after {
    top: 10px;
}

.menuicon.close span {
    -webkit-transition: background 0.3s 0.3s ease;
    -moz-transition: background 0.3s 0.3s ease;
    -ms-transition: background 0.3s 0.3s ease;
    -o-transition: background 0.3s 0.3s ease;
    transition: background 0.3s 0.3s ease;
    background: transparent;
}

.menuicon.close span:before,
.menuicon.close span:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: top .3s ease, -webkit-transform .3s .5s ease;
    transition: top .3s ease, transform .3s .5s ease;
}

.menuicon.close span:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*导航条*/
.nav-main {
    background-color: #267;
    background-image: linear-gradient(135deg, #145, #276, #145);
    box-shadow: 0 0 20px #666;
    border-bottom: none;
}

.nav-main .container {
    position: relative;
}

.nav-main .brand {
    padding: 10px;
    left: 15px;
    line-height: 30px;
    position: absolute;
}

.nav-main .brand:hover {
    background: #6A7;
}

.nav-main .brand img {
    float: left;
    height: 30px;
}

.nav-main .brand span {
    font-weight: bold;
    color: #267;
    line-height: 30px;
    display: none;
}

.nav-main .site-name {
    margin: 0 0 0 10px;
    line-height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
}

.nav-main .nav-bar {
    float: left;
    list-style: none;
    padding-left: 10px;
}

.nav-main .nav-bar li {
    float: left;
}

.nav-main .nav-bar li a {
    display: block;
    color: #FFF;
    font-size: 12px;
    padding: 0 10px;
    line-height: 50px;
}

.nav-main .nav-bar li.active {
    color: #5A6;
    background: #5A6;
    font-weight: bold;
}

.nav-main .nav-bar li.active>a {
    text-shadow: 0px 0px 6px #145;
}

.nav-main .nav-bar li:hover {
    background: #5A6;
    color: #FFF;
}

.nav-main .nav-bar li.dropdown .dropdown-menu {
    border-radius: 0 0 3px 3px;
    border: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    list-style: none;
}

.nav-main .nav-bar li.dropdown .dropdown-menu a {
    line-height: 3em;
}

.nav-main .nav-bar li.dropdown.active {
    color: #5A6;
    background: #5A6;
    font-weight: bolder;
}

.nav-main .nav-bar li.dropdown:hover {
    background: #FFF;
}

.nav-main .nav-bar li.dropdown:hover a {
    color: #5A6;
    text-shadow: none;
}

.nav-main .nav-bar li.dropdown:hover .dropdown-menu {
    display: block;
    width: 220px;
}

.nav-main .nav-bar li.dropdown:hover .dropdown-menu a {
    color: #555;
    font-weight: normal;
}

.nav-main .nav-bar li.dropdown:hover .dropdown-menu a:hover {
    background: #E9F9E9;
    color: #5A6;
}

.nav-main .search {
    width: 230px;
    float: right;
    margin: 10px 0;
}

.nav-main .search input {
    height: 30px;
    line-height: 18px;
    font-size: 12px;
    color: #888;
    border: none;
    float: left;
    padding-left: 10px;
    padding-right: 5px;
}

.nav-main .search input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 5px #2a9;
}

.nav-main .search .btn {
    border: none;
    background: #009688;
    float: left;
    padding: 2px 8px;
    height: 30px;
}

.nav-main .btn-search {
    border: none;
    background: #009688;
    color: #FFF;
}

.menu-cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: 5;
    display: none;
}

@media (max-width: 960px) {
    body {
        padding-top: 50px;
    }

    .nav-main {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        box-shadow: 0 0 20px #000;
        background-image: linear-gradient(135deg, #276, #145);
    }

    .nav-main .nav-bar li.active,
    .nav-main .nav-bar li.dropdown.active {
        background: none;
    }

    .nav-main .brand {
        padding: 10px 0;
        background: none;
    }

    .nav-main .brand:hover {
        background: none;
    }

    .nav-main .btn-menu-toggle {
        float: right;
        margin: 10px 0;
    }

    .nav-main .nav-bar {
        position: fixed;
        top: 65px;
        bottom: 15px;
        left: 15px;
        right: 15px;
        margin: 0 !important;
        padding: 15px 0;
        background: #FFF;
        z-index: 10;
        display: block;
        float: none;
        clear: both;
        border-top: 2px solid #5A6;
        box-shadow: 0 0 30px #000;
        overflow-y: auto;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }

    .nav-main .nav-bar:after {
        content: "";
        display: table;
        clear: both;
    }

    .nav-main.active .nav-bar {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .nav-main .nav-bar li {
        float: none;
        border-bottom: 1px solid #f2f6f8;
        position: relative;
    }

    .nav-main .nav-bar>li.dropdown:after {
        content: " ";
        top: 14px;
        right: 14px;
        position: absolute;
        border-style: solid;
        border-color: #294;
        border-width: 1px 1px 0 0;
        width: 8px;
        height: 8px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .nav-main .nav-bar>li.dropdown.open:after {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .nav-main .nav-bar li.active>a {
        text-shadow: none;
    }

    .nav-main .nav-bar li a {
        color: #294;
        padding-left: 15px;
        line-height: 40px;
    }

    .nav-main .nav-bar li a.active {
        background: none;
    }

    .nav-main .nav-bar li.dropdown a {
        display: inline;
    }

    .nav-main .nav-bar li.dropdown:hover .dropdown-menu,
    .nav-main .nav-bar li.dropdown .dropdown-menu {
        box-shadow: none;
        position: static;
        background: #f2f6f8;
        width: auto;
        display: none;
        margin: 0;
        padding: 0;
    }

    .nav-main .nav-bar li.dropdown .dropdown-menu a {
        color: #333;
        font-weight: normal;
        display: block;
        border-top: 1px solid #eee;
    }

    .nav-main .nav-bar li.dropdown.open .dropdown-menu {
        display: block;
    }
}

/* 站点导航 - End */



.box-title {
    border-bottom: 2px solid #ddd;
}

.box-title:before,
.box-title:after {
    content: " ";
    display: table;
}

.box-title:after {
    clear: both;
}

.box-title h3 {
    margin: 0;
    float: left;
    position: relative;
    font-family: 'Century Gothic', 'microsoft yahei';
    font-size: 24px;
    font-weight: bolder;
}

.box-title h3 a {
    color: #276;
}

.box-title h3 a:hover {
    color: #F55;
}

.box-title h3 sub {
    float: right;
    margin-left: 0.6em;
    font-size: 12px;
    line-height: 1em;
    padding-top: 1.2em;
    color: #1a1a1a;
}

.box-title h3:after {
    content: " ";
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background: #276;
}

.box-title i.arrow-right {
    float: right;
    position: relative;
    margin-top: 10px;
    transition: all 0.3s;
}

.box-title i.arrow-right a {
    color: #276;
}

.box-title i.arrow-right:after {
    content: " ";
    position: absolute;
    width: 6px;
    height: 6px;
    border-color: #276;
    border-width: 0 1px 1px 0;
    border-style: solid;
    right: 0.2em;
    top: 0.5em;
    transform: rotate(-45deg);
}

.box-title i.arrow-right:hover {
    padding-right: 20px;
}

.list-article .article {
    font-size: 14px;
    margin-bottom: 1.5em;
}

.list-article .article:before,
.list-article .article:after {
    content: " ";
    display: table;
}

.list-article .article:after {
    clear: both;
}

.list-article .article .article-hd .pic {
    margin-bottom: 0.8em;
}

.list-article .article .article-hd .pic img {
    width: 100%;
    display: block;
}

.list-article .article .article-hd:after {
    content: "";
    clear: both;
    display: block;
}

.list-article .article .video {
    position: relative;
}

.list-article .article .video:before,
.list-article .article .video:after {
    content: "";
    position: absolute;
    border-style: solid;
}

.list-article .article .video:after {
    width: 18px;
    height: 18px;
    border-width: 2px;
    border-color: #FFF;
    border-radius: 50%;
    left: 0.5em;
    bottom: 0.5em;
}

.list-article .article .video:before {
    left: 12px;
    bottom: 1em;
    border-width: 4px;
    border-color: #FFF #FFF transparent transparent;
    transition: all 0.3s;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.list-article .article .title a {
    font-size: 16px;
    font-weight: bolder;
    color: #333;
    display: block;
}

.list-article .article .title a:hover {
    color: #F42;
}

.list-article .article .desc {
    margin-top: 1em;
    line-height: 1.5em;
    color: #888;
    clear: both;
}

.list-article .landscape .pic {
    float: left;
    margin-right: 1em;
}

.list-article .landscape .article-hd .pic {
    margin-bottom: 0;
}

.list-article .landscape .article-hd .pic img {
    width: 10em;
    display: block;
}

.list-article .landscape .title {
    clear: right;
}

.unbolder .article .title a {
    font-weight: normal;
}

.list-title {
    color: #888;
    list-style-type: square;
}

.list-title li {
    line-height: 1.4em;
    margin-bottom: 0.8em;
}

.list-title li a {
    color: #333;
}

.list-title li a:hover {
    color: #F42;
}

.footer {
    background-color: #f2f6f8;
    padding: 30px 0;
    margin-top: 3em;
    font-family: 'Century Gothic', 'microsoft yahei';
}

.footer .link {
    margin: 1em 0;
}

.footer .link a {
    margin: 0 0.3em;
    color: #495;
}

.footer .link a:hover {
    color: #F55;
}

.footer .link i {
    font-style: normal;
    color: #ddd;
}

.footer small {
    color: #888;
}


.content img {
    width: 100%
}

.content {
    padding: 13px;
    border: 1px solid #e2e2e2;
    background: #fff;
}

.content:hover {
    box-shadow: 5px 5px 20px 0 #ddd;
    -webkit-box-shadow: 5px 5px 20px 0 #ddd;
    border: 1px solid #009688;
    transition: all 0.3s ease-out;
}

.text2 dt {
    font-size: 16px;
}

.box-title {
    margin-top: 15px;
}

/*平板*/
@media (min-width: 768px) and (max-width:1023px) {

    /*.channelpicslider .touchslider-nav{display: none;}
.channelpicslider{width: 100%;}*/
    .margin-top {
        overflow: hidden;
        margin-top: 1em;
    }

    .text2 dt {
        font-size: 18px;
    }

}

/*电脑*/
@media (min-width: 1024px) {
    .margin-top {
        height: 100px;
        overflow: hidden;
        margin-top: 1em;
    }

    .test {
        height: 26em;
        overflow: hidden
    }
}

@media (max-width:960px) {

    .nav-main .search~a {
        display: none;
    }

}

/*手机*/
@media (max-width: 767px) {
    .test .pic {
        display: block;
        width: 30%;
        float: left;
    }

    .test img {
        width: auto;
        display: block;
    }

    .text2 {
        width: 70%;
        float: left;
        padding-left: 15px;
        box-sizing: border-box;
        margin-top: 0;
    }

    .img-visible dd {
        display: none;
    }

    .img-visible {
        margin-bottom: 20px !important;
    }

    .headline {
        font-size: 14px;
    }

    .img-news img {
        width: 35%;
        float: right;
    }

    .box-title h3 {
        font-size: 18px;
    }

    .content {
        border: none;
        padding: 0;
    }

    .m-n-xs {
        margin-top: 0
    }

    .box-title {
        margin-top: 15px;
    }

    .unborder:after {
        background-color: #154E59;
    }

    .content small {
        display: none;
    }

    .text2 dt {
        font-size: 14px;
        font-weight: initial;
        line-height: 1.6em;
    }

    .box-title i.arrow-right {
        padding-right: 0;
    }

    .content:hover {
        border: none;
    }
}


.weibo li {
    display: inline-block;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    line-height: 40px;
    transition: all linear .3s;
}

.weibo li:hover {
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    -moz-transition: all linear .3s;
    transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    -moz-transform: translate(0, -5px);
}