/* General Demo Style */

/*冯T开始*/
.stnone {
    display: none;
}

.act_nr img {
    max-width: 100%;
    display: block;
}

.ke-container {
    overflow: hidden;
}

.row {
    margin-left: -10px;
    margin-right: -10px;
}
/*冯T结束*/

body {
    font-family: "微软雅黑", serif;
    background: #fff;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
	word-break: break-all;
}

a,
a:hover,
a:active,
a:visited {
    color: #555;
    text-decoration: none;
}

.clr {
    clear: both;
    padding: 0;
    height: 0;
    margin: 0;
}

.container {
    padding-right: 10px;
    padding-left: 10px;
}


/* Header Style */

.codrops-top {
    line-height: 24px;
    font-size: 9px;
    text-transform: uppercase;
    z-index: 9999;
    position: relative;
    font-family: "微软雅黑", Georgia, serif;
}

    .codrops-top a {
        padding: 0px 10px;
        letter-spacing: 1px;
        color: #888;
        display: inline-block;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
    }

    .codrops-top span.right {
        float: right;
    }

        .codrops-top span.right a {
            float: left;
            display: block;
        }

@media screen and (max-width: 520px) {
    .codrops-top {
        display: none;
    }
}

.st-container {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-family: "微软雅黑", Arial, sans-serif;
}

    .st-container > input,
    .st-container > a {
        position: fixed;
        bottom: 0px;
        width: 25%;
        cursor: pointer;
        font-size: 16px;
        height: 50px;
        line-height: 50px;
    }

    .st-container > input {
        opacity: 0;
        z-index: 1000;
    }

    .st-container > a {
        z-index: 10;
        font-weight: 700;
        background: #5EB95E;
        color: #fff;
        text-align: center;
        text-shadow: 1px 1px 1px rgba(151, 24, 64, 0.2);
    }


    /* "Fix" for percentage rounding: add a background bar pseudo element with the same color like the labels */

    .st-container:before {
        content: '';
        position: fixed;
        width: 100%;
        height: 50px;
        background: #5EB95E;
        z-index: 9;
        bottom: 0;
    }

#st-control-1,
#st-control-1 + a {
    left: 0;
}

#st-control-2,
#st-control-2 + a {
    left: 25%;
}

#st-control-3,
#st-control-3 + a {
    left: 50%;
}

#st-control-4,
#st-control-4 + a {
    left: 75%;
}

.st-container > input:checked + a,
.st-container > input:checked:hover + a {
    background: #509E50;
}

    .st-container > input:checked + a:after,
    .st-container > input:checked:hover + a:after {
        bottom: 100%;
        border: solid transparent;
        content: '';
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-bottom-color: #509E50;
        border-width: 20px;
        left: 50%;
        margin-left: -20px;
    }

.st-container > input:hover + a {
    background: #57AB57;
}

    .st-container > input:hover + a:after {
        border-bottom-color: #57AB57;
    }

.st-scroll,
.st-panel {
    position: relative;
    width: 100%;
    height: 100%;
}

.st-scroll {
    top: 0;
    left: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    /* Let's enforce some hardware acceleration */
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
}

.st-panel {
    position: absolute;
    background: #fff;
}

#st-panel-1 {
    left: 0;
    top: 0;
}

#st-panel-2 {
    left: 100%;
    top: 0;
}

#st-panel-3 {
    left: 200%;
    top: 0;
}

#st-panel-4 {
    left: 300%;
    top: 0;
}

#st-control-1:checked ~ .st-scroll {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

#st-control-2:checked ~ .st-scroll {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

#st-control-3:checked ~ .st-scroll {
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
}

#st-control-4:checked ~ .st-scroll {
    -webkit-transform: translateX(-300%);
    -moz-transform: translateX(-300%);
    -o-transform: translateX(-300%);
    -ms-transform: translateX(-300%);
    transform: translateX(-300%);
}


/* Content elements */

.st-deco {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -60px;
    background: #5EB95E;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

    .st-deco i {
        color: #fff;
        text-shadow: 1px 1px 1px rgba(151, 24, 64, 0.2);
        position: absolute;
        width: 120px;
        height: 120px;
        line-height: 120px;
        text-align: center;
        font-size: 50px;
        top: 50%;
        left: 50%;
        margin: -50px 0 0 -50px;
        -webkit-transform: rotate(-45deg) translateY(15%);
        -moz-transform: rotate(-45deg) translateY(15%);
        -o-transform: rotate(-45deg) translateY(15%);
        -ms-transform: rotate(-45deg) translateY(15%);
        transform: rotate(-45deg) translateY(15%);
    }

.st-panel h2 {
    color: #509E50;
    text-shadow: 1px 1px 1px rgba(151, 24, 64, 0.2);
    font-size: 30px;
    font-weight: 900;
    width: 100%;
    text-align: center;
    line-height: 40px;
    margin: 0px 0 10px 0;
    padding: 0;
    -webkit-backface-visibility: hidden;
}

#st-control-1:checked ~ .st-scroll #st-panel-1 h2,
#st-control-2:checked ~ .st-scroll #st-panel-2 h2,
#st-control-3:checked ~ .st-scroll #st-panel-3 h2,
#st-control-4:checked ~ .st-scroll #st-panel-4 h2,
#st-control-5:checked ~ .st-scroll #st-panel-5 h2 {
    -webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    animation: moveDown 0.6s ease-in-out 0.2s backwards;
}

@-webkit-keyframes moveDown {
    0% {
        -webkit-transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0px);
        opacity: 1;
    }
}

@-moz-keyframes moveDown {
    0% {
        -moz-transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0px);
        opacity: 1;
    }
}

@-o-keyframes moveDown {
    0%;

{
    -o-transform: translateY(-40px);
    opacity: 0;
}

100% {
    -o-transform: translateY(0px);
    opacity: 1;
}

}

@-ms-keyframes moveDown {
    0% {
        -ms-transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        -ms-transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes moveDown {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.st-panel .st-box {
    position: absolute;
    text-align: left;
    font-size: 14px;
    line-height: 22px;
    color: #8b8b8b;
    z-index: 2;
    padding: 0;
    width: 800px;
    left: 50%;
    top: 50%;
    margin-top: 10px;
    margin-left: -400px;
    -webkit-backface-visibility: hidden;
    -o-transform: translateY(-55%);
    -webkit-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    -moz-transform: translateY(-55%);
    transform: translateY(-55%);
}

#st-control-1:checked ~ .st-scroll #st-panel-1 p,
#st-control-2:checked ~ .st-scroll #st-panel-2 p,
#st-control-3:checked ~ .st-scroll #st-panel-3 p,
#st-control-4:checked ~ .st-scroll #st-panel-4 p,
#st-control-5:checked ~ .st-scroll #st-panel-5 p {
    -webkit-animation: moveUp 0.6s ease-in-out 0.2s backwards;
    -moz-animation: moveUp 0.6s ease-in-out 0.2s backwards;
    -o-animation: moveUp 0.6s ease-in-out 0.2s backwards;
    -ms-animation: moveUp 0.6s ease-in-out 0.2s backwards;
    animation: moveUp 0.6s ease-in-out 0.2s backwards;
}

@-webkit-keyframes moveUp {
    0% {
        -webkit-transform: translateY(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0px);
        opacity: 1;
    }
}

@-moz-keyframes moveUp {
    0% {
        -moz-transform: translateY(40px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0px);
        opacity: 1;
    }
}

@-o-keyframes moveUp {
    0%;

{
    -o-transform: translateY(40px);
    opacity: 0;
}

100% {
    -o-transform: translateY(0px);
    opacity: 1;
}

}

@-ms-keyframes moveUp {
    0% {
        -ms-transform: translateY(40px);
        opacity: 0;
    }

    100% {
        -ms-transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}


/* Colored sections */

.st-color,
.st-deco {
    background: #8ACC8A;
}

    .st-color i {
        color: #8ACC8A;
    }

    .st-color .st-deco {
        background: #fff;
    }

    .st-color h2 {
        color: #fff;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    }

    .st-color p {
        color: #fff;
        color: rgba(255, 255, 255, 0.8);
    }


/*fxt 9.7*/

.tab_body {
    display: table;
}

.tab_left,
.tab_right {
    display: table-cell;
}

.tab_right {
    color: #8ACC8A;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    animation: moveDown 0.6s ease-in-out 0.2s backwards;
}

    .tab_right a {
        color: #509E50;
        font-size: 18px;
        font-weight: 800;
    }

.tab_mid {
    vertical-align: middle;
}

.tab_left {
    -webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    -ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
    animation: moveDown 0.6s ease-in-out 0.2s backwards;
}

.green_bg {
    background-color: #8ACC8A !important;
}

.deepgreen_bg {
    background-color: #509E50 !important;
}

.green {
    color: #8ACC8A !important;
}

.white {
    color: #fff !important;
}

.ico {
    font-size: 80px;
    color: #fff;
    text-align: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
}


/*9.10*/

.mr_hjmd {
    text-align: center;
    display: block;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

    .mr_hjmd li {
        margin: 0 5px;
        width: 100px;
        display: inline-block;
    }

        .mr_hjmd li img {
            box-shadow: 0px 0px 5px #999;
            border: 5px #fff solid;
            border-radius: 50%;
            width: 100px;
            height: 100px;
        }

        .mr_hjmd li p {
            text-align: center;
            margin: 2px 0;
        }

.mr_hjlb {
    line-height: 25px;
    margin: 5px auto;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
}

#st-control-1:checked ~ .st-scroll #st-panel-1 .mr_hjlb,
#st-control-2:checked ~ .st-scroll #st-panel-2 .mr_hjlb,
#st-control-3:checked ~ .st-scroll #st-panel-3 .mr_hjlb,
#st-control-4:checked ~ .st-scroll #st-panel-4 .mr_hjlb,
#st-control-5:checked ~ .st-scroll #st-panel-5 .mr_hjlb {
    -webkit-animation: moveUp 0.6s ease-in-out 0.2s backwards;
    -moz-animation: moveUp 0.6s ease-in-out 0.2s backwards;
    -o-animation: moveUp 0.6s ease-in-out 0.2s backwards;
    -ms-animation: moveUp 0.6s ease-in-out 0.2s backwards;
    animation: moveUp 0.6s ease-in-out 0.2s backwards;
}

.mr_hjlb a {
    display: block;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    max-width: 100%;
}

    .mr_hjlb a + p {
        line-height: 20px;
        font-size: 80%;
        margin: 0;
        color: #8ACC8A;
    }

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix {
    clear: both;
}

.btn-default {
    background-color: #5EB95E !important;
    border: #5EB95E 1px solid !important;
}

    .btn-default:active {
        background-color: #57AB57 !important;
    }


/*9.11*/

.pager .previous a,
.pager .next a {
    max-width: 50%;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
}

.pad_lr10 {
    padding-left: 10px;
    padding-right: 10px;
}

.no_pad {
    padding: 0 !important;
}

.no_rad {
    border-radius: 0 !important;
}

.gray_bg {
    background-color: #efefef;
}

.gray {
    color: #888;
}

.ph_60 {
    height: 60px;
    line-height: 60px;
}


/*9.14*/

.mar_r10 {
    margin-right: 10px;
}

.mar_l10 {
    margin-left: 10px;
}

.mar_r5 {
    margin-right: 5px;
}

.mar_l5 {
    margin-left: 5px;
}

.h_36 {
    line-height: 36px;
    height: 36px;
}

.no_mar {
    margin: 0 !important;
}

.dibu_fx,
.dibu_bm {
    border-radius: 0 !important;
    display: inline-block;
    width: 50%;
}

.white_bg {
    background-color: #fff;
}

.mr_b5 {
    margin-bottom: 5px;
}

@media screen and (max-width: 996px) {
    .st-panel h2 {
        font-size: 30px;
    }

    .st-panel .st-box {
        width: 90%;
        left: 5%;
        margin-top: 0;
        margin-left: 0;
    }

    .st-container > a {
        font-size: 13px;
    }

    .st-deco {
        width: 100px;
        height: 100px;
        margin-left: -50px;
    }

        .st-deco i {
            font-size: 40px;
            -webkit-transform: rotate(-45deg) translateY(10%);
            -moz-transform: rotate(-45deg) translateY(10%);
            -o-transform: rotate(-45deg) translateY(10%);
            -ms-transform: rotate(-45deg) translateY(10%);
            transform: rotate(-45deg) translateY(10%);
        }
}

@media screen and (max-width: 768px) {
    .ph_60 {
        height: 30px;
        line-height: 30px;
    }

    .m_small {
        font-size: 80%;
    }

    .mr_hjmd li {
        width: 80px;
    }

        .mr_hjmd li img {
            width: 80px;
            height: 80px;
        }

    .st-container > a {
        font-size: 10px;
    }

    .m_hide {
        display: none;
    }
}

@media screen and (max-width: 375px) {
    .ph_60 {
        height: 30px;
        line-height: 30px;
    }

    .m_small {
        font-size: 80%;
    }

    .mr_hjmd li {
        width: 80px;
    }

        .mr_hjmd li img {
            width: 80px;
            height: 80px;
        }

    .st-container > a {
        font-size: 16px;
    }
}
