/*通用样式*/

body {
    font: 18px "microsoft yahei", Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    color: #3c3c3c;
    display: none;
}

.none {
    display: none;
}

ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
    border: none;
    list-style: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*内容样式*/

#container {
    position: relative;
    width: 100%;
    max-width: 1134px;
    margin: 0 auto;
}

.M_box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
}


/*页面1---------------------*/

.history_sel {
    position: fixed;
    right: 10px;
    top: 165px;
    width: 400px;
    display: none;
    z-index: 999;
}

.history_sel .choice_img {
    display: block;
    background: transparent;
}

.history_sel .choice_img div {
    margin: 0;
}

.history_sel .choice_img div:nth-child(2) {
    animation-delay: .2s;
}

.history_sel .choice_img div:nth-child(3) {
    animation-delay: .4s;
}

.history_sel .choice_img .choice_text {
    line-height: 40px;
    font-size: 16px;
    min-height: 40px;
}

.history_sel .choice_img .img_hover {
    margin-top: 15px;
}

.history_sel>div>div>img {
    width: 100%;
}

.page1 {
    width: 100%;
    position: relative;
}

.bg_img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg_img>img {
    display: block;
}

.fm_icon {
    position: absolute;
    top: 5%;
    width: 100%;
    height: 60px;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    z-index: 999;
}

.phase {
    float: left;
    color: #fff;
    line-height: 90px;
}

.phase>span {
    line-height: 60px;
}

.phase span:first-child {
    padding: 0 10px;
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
    margin-right: 7px;
}

.logo {
    float: right;
    line-height: 60px;
}

.logo>img {
    vertical-align: middle;
}

.logo img:first-child {
    margin-right: 20px;
    height: 36px;
}

.logo img:nth-child(2) {
    height: 30px;
    margin-right: 30px;
}

.logo img:nth-child(3) {
    height: 40px;
    cursor: pointer;
}

.fm_content {
    position: absolute;
    z-index: 99;
    top: 20%;
    /*right:0;
    left:0;bottom:0;*/
    /*margin:auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;*/
}

.box {
    color: #fff;
}

.fm_title {
    font-size: 64px;
    font-weight: bold;
    text-align: center;
}

.fm_ear {
    margin: 20px 0;
    width: 80%;
    margin-left: 10%;
}

.fm_ear>div>img {
    width: 100%;
}

.fm_animate {
    width: 70px;
    height: 70px;
    margin-top: -104px;
    margin-left: 422px;
    position: relative;
}

.fm_animate * {
    width: 100%;
    height: 100%;
}

.er_effect {
    border-radius: 100%;
    background: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.fm_animate div:first-child {
    -webkit-animation: scale 3s linear infinite;
    -moz-animation: scale 3s linear infinite;
    -ms-animation: scale 3s linear infinite;
    animation: scale 3s linear infinite;
}

.fm_animate div:nth-child(2) {
    -webkit-animation: scale 3s linear infinite 1.5s;
    -moz-animation: scale 3s linear infinite 1.5s;
    -ms-animation: scale 3s linear infinite 1.5s;
    animation: scale 3s linear infinite 1.5s;
}

.fm_animate img {
    position: relative;
    cursor: pointer;
    z-index: 20;
}

.rotate {
    -webkit-animation: rotate 5s linear infinite;
    -moz-animation: rotate 5s linear infinite;
    -ms-animation: rotate 5s linear infinite;
    animation: rotate 5s linear infinite;
}

.scales {
    -webkit-animation: scales 8s ease-in infinite;
    -moz-animation: scales 8s ease-in infinite;
    -ms-animation: scales 8s ease-in infinite;
    animation: scales 8s ease-in infinite;
}


/*缩放---------*/

@keyframes scale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes scale {
    from {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@-ms-keyframes scale {
    from {
        -ms-transform: scale(1);
        opacity: 1;
    }

    to {
        -ms-transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes scale {
    from {
        -moz-transform: scale(1);
        opacity: 1;
    }

    to {
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}


/*背景图放大缩小*/

@keyframes scales {
    from {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

@-webkit-keyframes scales {
    from {
        -webkit-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.05)
    }

    to {
        -webkit-transform: scale(1);
    }
}

@-ms-keyframes scales {
    from {
        -ms-transform: scale(1);
    }

    50% {
        -ms-transform: scale(1.05)
    }

    to {
        -ms-transform: scale(1);
    }
}

@-moz-keyframes scales {
    from {
        -moz-transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.05)
    }

    to {
        -moz-transform: scale(1);
    }
}


/*旋转---------*/

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}


/*位置----------*/

@keyframes position {
    from {
        bottom: 1%
    }

    50% {
        bottom: 3%
    }

    to {
        bottom: 1%
    }
}

@-webkit-keyframes position {
    from {
        bottom: 1%
    }

    50% {
        bottom: 3%
    }

    to {
        bottom: 1%
    }
}

@-moz-keyframes position {
    from {
        bottom: 1%
    }

    50% {
        bottom: 3%
    }

    to {
        bottom: 1%
    }
}

@-ms-keyframes position {
    from {
        bottom: 1%
    }

    50% {
        bottom: 3%
    }

    to {
        bottom: 1%
    }
}


/* 淡入-从下 */

@-webkit-keyframes fadeinB {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeinB {
    0% {
        opacity: 0;
        -moz-transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-ms-keyframes fadeinB {
    0% {
        opacity: 0;
        -ms-transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
    }
}

@keyframes fadeinB {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.a-fadeinB {
    -webkit-animation: fadeinB .5s ease-out backwards;
    ;
    -moz-animation: fadeinB .5s ease-out backwards;
    ;
    -ms-animation: fadeinB .5s ease-out backwards;
    ;
    animation: fadeinB .5s ease-out backwards;
    ;
}


/*淡出---------*/

@-webkit-keyframes fadeoutT {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
    }
}

@-moz-keyframes fadeoutT {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-100px);
    }
}

@-ms-keyframes fadeoutT {
    0% {
        opacity: 1;
        -ms-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -ms-transform: translateY(-100px);
    }
}

@keyframes fadeoutT {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px);
    }
}

.a-fadeoutT {
    -webkit-animation: fadeoutT .5s ease-in forwards;
    ;
    -moz-animation: fadeoutT .5s ease-in forwards;
    ;
    -ms-animation: fadeoutT .5s ease-in forwards;
    ;
    animation: fadeoutT .5s ease-in forwards;
    ;
}

.position {
    animation: position 2s ease-in-out infinite;
}

.arrow>img {
    cursor: pointer;
}

.fm_text {
    margin-top: 40px;
    width: 80%;
    margin-left: 10%;
}

.fm_text img:last-child {
    display: block;
    margin-left: auto;
}

.fm_info {
    width: 86%;
    margin: 0 auto;
    text-align: justify;
    text-justify: auto;
    line-height: 2em;
}


/*page2-----------------------*/

.shade {
    background: #fff;
    position: relative;
    z-index: 9;
    /*margin-top: 15%;*/
}

#shader>div {
    position: relative;
    width: 100%;
    max-width: 1134px;
    margin: 0 auto;
}

.page2 {
    width: 100%;
    margin: 0 auto;
}

.all_content {
    width: 80%;
    margin-left: 10%;
}

.person {
    font-size: 18px;
    text-align: center;
    position: relative;
}

.person_info {
    height: 46px;
    margin-top: 15px;
}

.person_info>img {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 20px;
}

.divider {
    margin: 50px 0;
}

.divider img {
    width: 100%;
}

.yp_news {
    font-size: 21px;
    text-align: center;
    color: rgb(158, 96, 22);
    font-weight: bold;
    margin: 30px 0;
}

.title {
    position: relative;
    width: 100%;
    margin: 30px 0;
}

.title>img {
    position: relative;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
}

.title_text {
    width: 500px;
    font-size: 21px;
    font-weight: bold;
    line-height: 2em;
    color: #63603C;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-justify: auto;
    text-align: justify;
}

.content_text>p {
    margin-top: 40px;
    text-justify: auto;
    text-align: justify;
    line-height: 2em;
}

.content>div {
    line-height: 2em;
}

.content_image {
    margin: 5% 0;
}

.content_image>img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.content_image>div {
    background: #5B5B5B;
    line-height: 2em;
    color: #fff;
    padding: 3px;
    text-justify: auto;
    text-align: justify;
}

h1 {
    text-align: center;
    margin-bottom: -18px;
    font-size: 24px;
}

h1>span {
    padding: 5px 25px;
    background: #fff;
}

.dashed {
    height: 1px;
    border: 1px dashed #bbb;
}

.end_text {
    width: 100%;
    border: 1px solid #bbb;
    border-top: none;
    padding: 20px 0;
}

.solid {
    margin-top: 15px;
}

.solid_left,
.solid_right {
    width: 40%;
    float: left;
    height: 1px;
    background: #bbb
}

.solid_right {
    float: right;
}

.end_text>div {
    width: 80%;
    margin: 0 auto;
    text-justify: auto;
    text-align: justify;
    line-height: 2em;
}

.refer {
    width: 80%;
    margin-left: 10%;
    margin-top: 30px;
    font-size: 15px;
    color: #A5A5A5;
}

.refer_info {
    font-size: 21px;
    padding-bottom: 15px;
    border-bottom: 1px solid #A5A5A5;
}

.refer>p {
    margin-top: 15px;
}

.page3 {
    margin-top: 100px;
    width: 100%;
}

.choice_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background: #000;
}

.choice_img div {
    flex: 1;
    margin: 0 10px;
    overflow: hidden;
    position: relative;
}

.choice_img div:nth-child(2) {
    margin: 0;
}

.choice_img div img {
    width: 100%;
    display: block;
}

.choice_img .choice_text {
    width: 100%;
    text-align: center;
    position: absolute;
    padding: 0 15px;
    bottom: -50px;
    line-height: 50px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    pointer-events: none;
}

.page3 .footer_mark {
    text-align: center;
    margin-top: 80px;
}

.page3 .footer {
    height: 80px;
    background: url("../imgs/1.png") repeat-x;
    margin-top: 20px;
    text-align: center;
    font-size: 21px;
    color: #000;
    line-height: 80px;
}

.page3 .footer2 {
    background: #324476 url('../imgs/foot_logo2.jpg') no-repeat 50% 0;
    background-size: auto 100%;
    height: 180px;
}

.end {
    margin: 100px 0;
}

.share {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 0;
    z-index: 999;
    width: 40px;
}

.share>img {
    width: 40px;
    display: block;
    margin-bottom: 15px;
}

.share_img {
    display: none;
}

.arrow {
    position: absolute;
    bottom: 3%;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.code {
    width: 100px;
    text-align: center;
    position: fixed;
    right: 5%;
    top: 40%;
    display: none;
}

.code a img {
    width: 50px;
}

.code div img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    background: #fff;
}

.box_detail {
    display: none;
}


/*移动端媒体查询*/

@media screen and (max-width: 1134px) {
    body {
        font-size: 16px;
    }

    .fm_ear {
        margin: 10px 0;
        width: 100%;
    }

    .fm_icon {
        top: 20px;
        position: absolute;
    }

    .fm_content {
        width: 80%;
        margin-left: 10%;
    }

    .fm_title {
        font-size: 2.6rem;
        text-align: center;
    }

    .fm_animate {
        width: 25%;
        height: 25%;
        margin-top: -7%;
        margin-left: 37.5%;
    }

    .fm_animate>img {
        display: block;
    }

    .fm_content .fm_text img {
        display: none;
    }

    .fm_info {
        font-size: 1rem;
        line-height: 1.5em;
        width: 100%;
    }

    .fm_text {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .title_text {
        width: 90%;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .yp_news {
        font-size: 1.5rem;
    }

    .person {
        font-size: 1rem;
    }

    .logo {
        position: relative;
        width: 80%;
        margin-left: 10%;
        float: none;
    }

    .logo img:first-child {
        position: absolute;
        left: 0;
        top: 0;
        height: 25px;
    }

    .logo img:nth-child(2) {
        position: absolute;
        right: 0;
        top: 0;
        height: 25px;
        margin-right: 0;
    }

    .logo img:nth-child(3) {
        display: none;
    }

    .phase {
        margin-right: 10%;
        margin-top: 20px;
        float: right;
        line-height: 60px;
    }

    .dashed {
        display: none;
    }

    h1 {
        margin-bottom: -30px;
        color: #999;
    }

    .end_text>div {
        line-height: 1.5rem;
    }

    .end_text,
    .solid {
        width: 80%;
        margin-left: 10%;
    }

    .choice_img {
        display: block;
        background: none;
    }

    .choice_img div {
        margin: 0;
    }

    .choice_img .choice_text {
        top: 40%;
        text-shadow: 0 0 5px rgba(0, 0, 0, 1);
        background: none;
    }

    .page3 .footer_mark img {
        width: 90%;
    }

    .page3 .footer {
        font-size: 1rem;
    }

    .page3 .footer2 {
        height: 6rem;
    }

    .bg_img {
        left: 0;
        margin-left: 0;
        position: absolute;
        width: 100%;
        overflow: hidden;
    }

    .bg_img img {
        width: 100%;
    }

    .share_img {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
    }

    .arrow {
        bottom: 1%;
    }

    .code {
        display: none;
    }

    .content_image>div {
        background: transparent;
        font-size: 14px;
        color: #3c3c3c;
        padding: 10px 15px 0 15px;
    }

    .refer_info {
        margin-bottom: 40px;
        font-size: 0.9rem;
    }

    .detail {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 996;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        text-justify: auto;
        text-align: justify;
    }

    .detail>div {
        background: #000;
        padding: 5px;
        width: 80%;
        margin-left: 10%;
        box-shadow: 0 0 6px #000;
    }

    .detail>div>div>img {
        width: 100%;
    }

    .refer>p {
        font-size: 0.8rem;
    }

    .all_content {
        width: 100%;
        margin-left: 0;
    }

    .person,
    .divider,
    .yp_news,
    .content>div:first-child,
    .title,
    .content_text {
        width: 80%;
        margin-left: 10%;
    }

    .content_image {
        width: 100%;
    }

    .content_image div {
        /* text-align: center;*/
    }
}


/*comment fix*/

.sina-comment-form .ft .login input,
.sina-comment-form .ft .btns .btn {
    box-sizing: content-box;
}

.sina-comment-wrap {
    max-width: 1200px;
}


/*end*/

@media screen and (max-width:321px) {
    body {
        font-size: 12px;
    }
}

.sModify_1 {
    display: block;
    text-align: center;
}

.sModify_1 div {
    display: inline-block;
    width: 30%;
}

.sModify_1 .choice_text {
    left: 0px;
}

.sModify_2 {
    max-height: 80%;
    overflow-y: auto;
}

.sModify_3 {
    overflow: auto;
    height: 525px;
}

.sModify_3 .choice_img .img_hover {
    margin-bottom: 15px;
    margin-top: 0;
}

.sModify_3 .choice_img {}

.sModify_3::-webkit-scrollbar {
    width: 4px;
}

.sModify_3::-webkit-scrollbar-button,
.sModify_3::-webkit-scrollbar-track {
    display: none;
}

.sModify_3::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.8);
}

.codeWechatImg {
    width: 16%;
    display: block;
    margin: auto;
}

@media screen and (max-width: 900px) {
    .sModify_1 div {
        width: 100%;
    }

    .codeWechatImg {
        width: 40%;
    }
}

#topicBox {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: auto;
    height: 400px;
    overflow-x: hidden;
    overflow-y: scroll;
}

#topicBox img {
    width: 100%;
}

.logo_china {
    color: #fff;
    font-size: 20px;
}