@charset "utf-8";
/* 公共部分  样式 */

* {
    padding: 0;
    margin: 0;
}

ul, ol, li {
    list-style: none;
}

img {
    vertical-align: top;
    border: 0;
}

a {
    text-decoration: none;
    color: #000;
    vertical-align: top;
}

.v_middle {
    vertical-align: middle;
}

.color_orange {
    color: #ff6c00
}

.f_l {
    float: left;
}

.f_r {
    float: right;
}

.clear {
    width: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
}

/* 兼容ie6、7 */

.c_f {
    zoom: 1;
}

.c_f::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    overflow: hidden;
    clear: both;
    visibility: hidden;
}

.text_ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 标题部分 */

.topic {
    padding-top: 25px;
    width: 1200px;
    height: 210px;
    margin: 0 auto;
    overflow: hidden;
}

.topic img {
    width: 100%;
}

/* 主体部分 */

#content {
    position: relative;
    overflow: hidden;
    background-image: url(../imgs/body_bg.jpg);
    background-size: 100% auto;
    background-repeat: repeat-y;
    -ms-behavior: url(./css/backgroundsize.min.htc);
    behavior: url(./css/backgroundsize.min.htc);
}

.content_bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 1800px;
    max-height: 2500px;
}

.content_inner {
    position: relative;
    z-index: 3;
    width: 1030px;
    margin: 0 auto;
}

.cont_sec {
    padding: 2px 40px 32px;
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .6);
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

/* 面包屑导航 */

.bread_nav {
    height: 20px;
    line-height: 20px;
    padding-left: 12px;
    border-left: 2px solid #ff8500;
}

.bread_nav_el {
    font-size: 14px;
}

img.bread_nav_el {
    width: 20px;
}

a.bread_nav_el, span.bread_nav_el {
    color: #858585;
}

a.bread_nav_el:hover {
    color: #333;
    text-decoration: underline;
}