/* 父元素-flex容器 */

.flex {
    display: box;
    /* OLD - Android 4.4- */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}


/* 子元素-平均分栏 */

.flex1 {
    -webkit-box-flex: 1;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;
    /* OLD - Firefox 19- */
    width: 20%;
    /* For old syntax, otherwise collapses. */
    /* Chrome */
    -ms-flex: 1;
    /* IE 10 */
    flex: 1;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}


/* 父元素-横向排列（主轴） */

.flex-h {
    display: box;
    /* OLD - Android 4.4- */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 12版 */
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}


/* 父元素-横向换行 */

.flex-hw {
    /* 12版 */
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}


/* 父元素-水平居中（主轴是横向才生效） */

.flex-hc {
    /* 12版 */
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* 其它取值如下：
        align-items  主轴原点方向对齐
        flex-end        主轴延伸方向对齐
        space-between   等间距排列，首尾不留白
        space-around    等间距排列，首尾留白
     */
}

.flex-hb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-ha {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}


/* 父元素-纵向排列（主轴） */

.flex-v {
    display: box;
    /* OLD - Android 4.4- */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 12版 */
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}


/* 父元素-纵向换行 */

.flex-vw {
    /* 12版 */
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}


/* 父元素-竖直居中（主轴是横向才生效） */

.flex-vc {
    /* 12版 */
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */

.flex-1 {
    -webkit-box-ordinal-group: 1;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- */
    -ms-flex-order: 1;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    order: 1;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}


/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */

.flex-2 {
    -webkit-box-ordinal-group: 2;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- */
    -ms-flex-order: 2;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    order: 2;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}


/*清除浮动*/

.clearfloat {
    clear: both;
    zoom: 1;
}

.clearfloat:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}


/*和项目相关的全局样式*/

.font16 {
    font-size: 0.5rem;
}

.font14 {
    font-size: 0.4375rem;
}

.font12 {
    font-size: 0.375rem;
}

.bold {
    font-weight: bold;
}

.hese-c {
    color: #000;
}

.sub-c {
    color: #7b7d7f;
    ;
}

.hese-b {
    background-color: #000;
}

.juse-b {
    background-color: #f1a44a;
}

.juse-c {
    color: #f1a44a;
}

.textcenter {
    text-align: center;
}

.textleft {
    text-align: left;
}

.textright {
    text-align: right;
}

.hidden {
    visibility: hidden;
}

.visible {
    visibility: visible;
}


/*导航条*/

.bdshare-button-style0-32 .bds_tsina {
    background-position: 0 0;
}

#sj-header {
    background: #fff;
    padding: 0.3125rem 0.46875rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

#sj-header h1 {
    font-size: 0.4375rem;
    margin-left: -1.9rem;
    margin-top: 0.2rem;
    font-weight: bold;
}

#sj-header .sj-logo {
    display: block;
    height: 0.71875rem;
}

#sj-header .sj-logo img {
    width: 3.5rem;
    height: 0.71875rem;
}

#sj-header .sj-menu {
    display: block;
    height: 100%;
    padding: 0.186667rem;
}

#sj-header .sj-menu img {
    width: 0.84375rem;
    height: 0.515625rem;
}


/*右侧侧边栏*/

#sj_right_menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: none;
    z-index: 200;
}

#sj_right_menu .menu-body {
    position: fixed;
    right: 0;
    width: 6.75rem;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
}

#sj_right_menu .sj_menu_ul {
    margin-top: 2.03125rem;
}

#sj_right_menu .sj_menu_ul li {
    height: 1.5625rem;
    text-align: center;
}

#sj_right_menu .sj_menu_ul li a.a_link {
    display: block;
    height: 100%;
    line-height: 1.5625rem;
    font-size: 0.5rem;
    color: #fff;
}

#sj_right_menu .sj_menu_ul li a.a_link.del {
    background: url(../img/menu_del.png) 18% center no-repeat;
    background-size: 0.53125rem 0.53125rem;
}

#sj_right_menu .sj_menu_ul li a.a_link.home {
    text-align: left;
    padding-left: 36%;
    background: url(../img/menu_home.png) 18% center no-repeat;
    background-size: 0.671875rem 0.734375rem;
}

#sj_right_menu .sj_menu_ul li a.a_link.second {
    background: url(../img/menu_second.png) 18% center no-repeat;
    background-size: 0.671875rem 0.765625rem;
}

#sj_right_menu .sj_menu_ul li a.a_link.third {
    background: url(../img/menu_third.png) 18% center no-repeat;
    background-size: 0.75rem 0.75rem;
}

#sj_right_menu .sj_menu_ul li a.a_link.four {
    background: url(../img/menu_four.png) 18% center no-repeat;
    background-size: 0.734375rem 0.734375rem;
}

#sj_right_menu .sj_menu_ul li a.a_link.five {
    background: url(../img/menu_five.png) 18% center no-repeat;
    background-size: 0.640625rem 0.515625rem;
}

#sj_right_menu .sj_menu_ul li a.a_link.six {
    background: url(../img/menu_six.png) 18% center no-repeat;
    background-size: 0.703125rem 0.8125rem;
}

#sj_right_menu .sj_menu_ul li a.a_link.seven {
    background: url(../img/menu_seven.png) 18% center no-repeat;
    background-size: 0.796875rem 0.6875rem;
}

#sj_bottom_add {
    position: fixed;
    bottom: 0.46875rem;
    left: 0.26875rem;
    width: 1.71875rem;
    height: 1.8125rem;
    background: url(../img/sj_add.png) 0 0 no-repeat;
    background-size: cover;
    z-index: 20;
}

#sj_bottom_link {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    display: none;
}

#sj_bottom_link .btm_link {
    display: block;
    position: absolute;
    width: 1.375rem;
    height: 1.390625rem;
}

#sj_bottom_link .btm_link.first {
    background: url(../img/sj_home.png) 0 0 no-repeat;
    background-size: 1.375rem 1.390625rem;
    bottom: 4.25rem;
    left: 0.46875rem;
}

#sj_bottom_link .btm_link.second {
    background: url(../img/sj_sp.png) 0 0 no-repeat;
    background-size: 1.375rem 1.390625rem;
    bottom: 4.0625rem;
    left: 1.975rem;
}

#sj_bottom_link .btm_link.third {
    background: url(../img/sj_file.png) 0 0 no-repeat;
    background-size: 1.375rem 1.390625rem;
    bottom: 3.375rem;
    left: 3.34375rem;
}

#sj_bottom_link .btm_link.four {
    background: url(../img/sj_tel.png) 0 0 no-repeat;
    background-size: 1.375rem 1.390625rem;
    bottom: 2.15625rem;
    left: 4.4375rem;
}

#sj_bottom_link .btm_link.five {
    background: url(../img/sj_location.png) 0 0 no-repeat;
    background-size: 1.375rem 1.390625rem;
    bottom: 0.65625rem;
    left: 5.0rem;
}
