@charset "utf-8";

/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

input {
    vertical-align: middle;
}

img {
    border: 0;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ul,
li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.tc {
    text-align: center;
}

.tl {
    text-align: left;
}

.tr {
    text-align: right;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.cl {
    clear: both;
}

.fb {
    font-weight: bold;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

input,
textarea,
select {
    font: inherit;
}

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.flex {
    display: flex;
    display: -webkit-flex;
}

.between {
    justify-content: space-between;
}

.around {
    justify-content: space-around;
}

.center {
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

h3 {
    font-weight: normal;
}

em {
    font-style: normal;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.wrap_box {
    max-width: 2580px;
    min-width: 1200px;
    margin: 0 auto;
    font-family: "微软雅黑";
    line-height: 24px;
    font-size: 16px;
    background: #fff;
    color: #333;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}

.content {
    width: 1440px;
    margin: 0 auto;
}

.hidden {
    overflow: hidden;
}

.bigimg img {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.bigimg:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}


/*header*/

.header {
    width: 100%;
  position: fixed;
    height: 100px;
    z-index: 99999;
    background: rgba(255,255,255,0.5);
    top: 0;
    left: 0;
}
.nav li a{
    color: #000 !important;
}
.fixed{
    background: rgba(255,255,255,1) !important;
}
.header_center{
    width:90%;
    margin: 0 auto;
}

.logo img {
    width: 317px;
    margin-left: 10%;
}

.nav {
    width: 39%;
    margin-left: 24%;
}

.nav::after {
    width: 1px;
    height: 50px;
    background: #eb5b27;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 0;
    position: absolute;
}

.nav li {
    float: left;
    color: #fff;
    font-size: 18px;
    padding: 0 19px;
    transition: all 0.6s;
    animation-name: fadeInRight;
}

.nav li:hover {
    transform: translateY(-5px);
    color: #eb5b27;
    font-weight: bold;
}


/*banner*/

.banner {
    position: relative;
    overflow: hidden;
}

.banner .slides {
    position: relative;
    z-index: 1;
}

.banner .slides>li>img {
    width: 100%;
    height: 100vh;
}

.banner .flex-control-nav {
    position: absolute;
    bottom: 45px;
    z-index: 91;
    width: 100%;
    padding-left: 30.3%;
}

.banner .flex-control-nav li {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 6px;
}

.banner .flex-control-nav li a {
    display: inline-block;
    width: 6px;
    height: 6px;
    line-height: 40px;
    overflow: hidden;
    background: #f2aa8f;
    border-radius: 100%;
    cursor: pointer;
}

.banner .flex-control-nav .flex-active {
    width: 10px;
    height: 10px;
    background: #fff;
}

.banner .flex-direction-nav {
    position: absolute;
    z-index: 3;
    width: 100%;
    bottom: 70px;
    z-index: 91;
}

.banner .flex-direction-nav li a {
    display: block;
    width: 13px;
    height: 24px;
    overflow: hidden;
    cursor: pointer;
    position: absolute;
}

.banner .flex-direction-nav li a.flex-prev {
    left: 26.46%;
    background: url(../images/prev.png) center center no-repeat;
}

.banner .flex-direction-nav li a.flex-next {
    left: 28.65%;
    background: url(../images/next.png) center center no-repeat;
}

.banner_txt1 {
    width: 70.9%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 34%;
    display: none;
}

.banner_txt1 img {
    width: 100%;
}

.banner_txt2 {
    width: 70.9%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 55%;
    display: none;
}

.banner_txt2 img {
    width: 100%;
}

.banner .flex-active-slide .banner_txt1,
.banner .flex-active-slide .banner_txt2 {
    display: block;
}

.banner_bot {
    width: 44.8%;
    height: 120px;
    background: #eb5b27;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.mouse {
    width: 22.4%;
    background: #fdd000;
    left: 0;
    bottom: 0;
    height: 120px;
    z-index: 95;
    padding-top: 37px;
}

.mouse_up {
    animation: move 0.85s linear 0s alternate infinite;
    display: block;
    margin: 0 auto;
}

.down {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 92;
}

.down i {
    display: inline-block;
    background: url(../images/arrow_nextstripW.png) no-repeat top left;
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 999999;
    animation: walk-cycle 1s steps(50) infinite;
    margin: 0 auto;
}

.down p {
    color: #fefefe;
    font-size: 18px;
    line-height: 50px;
}

@keyframes walk-cycle {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -1300px 0;
    }
}

@keyframes move {
    0% {
        opacity: 0.4;
        transform: translateY(-20px);
    }
    15% {
        opacity: 0.65;
        transform: translateY(-15px);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0px);
    }
    75% {
        opacity: 0.8;
        transform: translateY(10px);
    }
    85% {
        opacity: 0.65;
        transform: translateY(15px);
    }
    100% {
        opacity: 0.4;
        transform: translateY(20px);
    }
}

.abot_tit {
    background: url(../images/main13.jpg) no-repeat right top;
    width: 59.1%;
    height: 301px;
    padding: 67px 0 0;
}

.abot_tit h2 {
    color: #f5f5f5;
    font-size: 150px;
    line-height: 150px;
    font-family: Arial;
}

.abot_tit h4 {
    color: #000000;
    font-size: 100px;
    line-height: 1;
    padding-left: 210px;
    margin-top: -60px;
}

.about_box {
    padding: 80px 0 76px;
}

.about_con {
    color: #000;
    line-height: 46px;
    padding: 50px 0 70px;
}

.more {
    color: #000;
    background: #fdd000;
    width: 250px;
    height: 55px;
    border-radius: 27px;
    line-height: 55px;
    margin: 0 auto;
}

.pro_bg {
    background: url(../images/pro_bg.jpg) no-repeat center top;
    background-size: 100% 100%;
    height: 1030px;
    padding: 70px 0;
}

.tit span {
    width: 92px;
    height: 106px;
    background: url(../images/tit.png) no-repeat center top;
    background-size: 100%;
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 106px;
    display: inline-block;
    margin: 0 10px;
    animation-name: bounceInDown;
    animation-duration: 2s;
}

.pro {
    margin: 255px 0 70px;
    padding: 70px 0 10px;
}

.pro .swiper-slide-active {
    z-index: 999;
}


/* .pro .swiper-slide-active .pro_pic {
    transform: scale(1.5, 1.5);
} */

.pro .swiper-slide-active .pro_pic::after {
    display: none;
}


/* .pro .swiper-slide-active .pro_con {
    display: block;
} */


/* .pro_pic {
    height: 400px;
} */

.pro_pic img {
    width: 100%;
}


/* .pro_pic::after {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
} */

.pro_con {
    display: none;
    transform: translateX(457px);
    color: #333;
    padding: 50px 0 0;
    position: relative;
}

.pro_con::after {
    width: 48px;
    height: 4px;
    background: #eb5b27;
    display: block;
    position: absolute;
    top: 20px;
    left: -50px;
    content: "";
}

.pro_con h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.pro_con p {
    font-size: 14px;
}

.shop_bg {
    /* background: url(../images/shop_bg.jpg) no-repeat center top;
    background-size: 100%; */
    height: 1127px;
    padding: 70px 0 0;
}

.shop {
    width: 32.29%;
}

.shop_pic {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    animation-name: zoomIn;
    animation-duration: 2s;
}

.shop_pic img {
    width: 100%;
    height: 100%;
}

.shop_pic p {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s;
    transform: scale(0, 0);
}

.shop_pic p::after {
    width: 94%;
    height: 92%;
    border: solid 1px #fff;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.shop_pic:hover p {
    transform: scale(1, 1);
}

.shop_tit {
    padding: 113px 0 181px;
}

.shop_more {
    width: 100%;
    height: 362px;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 52px 0 0;
}

.shop_more img {
    margin-bottom: 80px;
}

.shop_pic1 {
    height: 280px;
}

.shop_pic2 {
    height: 380px;
}

.shop_pic3 {
    height: 580px;
}

.shop_pic4 {
    height: 600px;
}

.news_bg {
    /* background: url(../images/news_bg.jpg) no-repeat center top;
    background-size: 100% 100%; */
    background: #1a1d2c;
    height: 980px;
    padding: 70px 0 0;
}

.news_box {
    margin: 60px 0 0;
}

.news_l {
    width: 50%;
}

.news_pic {
    border-radius: 20px;
}

.news_pic img {
    width: 100%;
    height: 390px;
}

.news_tit {
    background: #fdd000;
    font-size: 18px;
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    border-radius: 10px;
    margin: 30px 0 15px;
    color: #000;
}

.news_con {
    background: #fdd000;
    font-size: 18px;
    color: #000;
    font-size: 14px;
    line-height: 40px;
    padding: 5px 15px 0;
    background: url(../images/news_con.png) no-repeat;
    height: 110px;
    margin-bottom: 33px;
}

.news_list {
    width: 46.52%;
}

.news_list li {
    margin-bottom: 73px;
    animation-name: fadeInRight;
    animation-duration: 2s;
}

.news_list_date {
    width: 125px;
    height: 104px;
    background: url(../images/news_date.png) no-repeat;
    color: #000;
    padding: 15px 0 0;
}

.news_list_date h2 {
    font-size: 54px;
    padding-left: 25px;
    line-height: 1;
}

.news_list_date p {
    font-size: 14px;
    padding-left: 18px;
}

.news_list_con {
    width: calc(100% - 140px);
}

.news_list_con .news_tit {
    margin: 0;
}

.news_list_txt {
    font-size: 14px;
    line-height: 28px;
    margin: 20px 0 0;
    color: #fff;
}

.business_bg {
    background: url(../images/business_bg.jpg) no-repeat center top;
    background-size: 100% 100%;
    padding: 60px 0;
}

.business {
    margin: 40px 0 0;
    background: url(../images/business_con.jpg) no-repeat center top;
    height: 420px;
}

.business .swiper-button-next,
.business .swiper-button-prev {
    width: 100px;
    height: 100px;
    outline: none;
    margin-top: -50px;
}

.business .swiper-button-prev {
    background: url(../images/nar1.png) no-repeat;
    left: 0;
}

.business .swiper-button-next {
    background: url(../images/nar2.png) no-repeat;
    right: 0;
}

.business_pic {
    width: 55.55%;
}

.business_pic img {
    height: 420px;
    width: 100%;
}

.business_con {
    width: 41.6%;
    padding: 55px 0 0;
    margin: 0 27px 0 0;
}

.business_con h2 {
    color: #000;
    font-size: 36px;
    line-height: 52px;
}

.business_con h2 b {
    font-style: italic;
    font-size: 50px;
    font-family: Arial;
    color: #fdd000;
    margin-right: 30px;
}

.business_con .business_txt {
    margin: 37px 0 75px;
    font-size: 18px;
    line-height: 30px;
    height: 90px;
    overflow: hidden;
}

.business_tit {
    color: #fff;
    padding: 62px 0 55px;
}

.business_tit h2 {
    font-size: 50px;
    line-height: 66px;
    margin-bottom: 17px;
}

.business_tit p {
    font-size: 16px;
    line-height: 26px;
}

.business_list {
    padding-bottom: 30px;
}

.business_list li {
    width: 31.94%;
    height: 260px;
    background: url(../images/youshi.png) no-repeat;
    margin-bottom: 28px;
    padding: 45px 30px 0;
    border-radius: 10px;
    transition: all 0.6s;
    animation-name: fadeInUp;
}

.business_list li h2 {
    font-size: 30px;
    text-align: center;
}

.business_list li>div {
    color: #666;
    font-size: 20px;
    line-height: 32px;
    margin: 23px 0 0;
}

.business_list li:hover {
    margin-top: -22px;
    box-shadow: 0 0 20px #ab370d;
}

.message_bg {
    background: url(../images/message_bg.jpg) no-repeat center bottom;
    background-size: 100% 50%;
    padding: 38px 0 0;
}

.message_l {
    width: 42.36%;
    padding: 105px 0 0;
}

.join_tel {
    font-size: 20px;
    color: #000;
    line-height: 26px;
    margin: 26px 0 0;
}

.join_tel b {
    font-size: 26px;
}

.message_logo {
    margin: 202px 0 0;
}

.message_logo img {
    width: 100%;
}

.tip {
    color: #fdd000;
    font-size: 28px;
    line-height: 50px;
    margin: 55px 0 0;
}

.message {
    width: 50%;
    height: 860px;
    background: #fff;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 22px 30px 0;
}

.message h4 {
    color: #000;
    font-size: 30px;
    line-height: 50px;
}

.message li {
    margin-bottom: 20px;
}

.message li label {
    display: block;
    font-size: 18px;
    line-height: 58px;
}

.message li .user {
    height: 60px;
    border: solid 1px #999999;
    line-height: 58px;
    border-radius: 5px;
    width: 100%;
    padding: 0 20px;
}

.message li .user1 {
    height: 150px;
    line-height: 24px;
    padding: 10px 20px;
}

.message_btn {
    width: 100%;
    height: 60px;
    background: #fdd000;
    line-height: 60px;
    border: none;
    border-radius: 5px;
    color: #000;
    font-size: 18px;
    margin: 40px 0 0;
}

.footer_bg {
    background: #f2f2f2;
    padding: 50px 0;
}

.footer_bg .fl img {
    width: 444px;
}

.footer {
    margin-left: 60px;
    padding-top: 10px;
}

.footer p {
    color: #000000;
    line-height: 34px;
}

.main_banner img {
    width: 100%;
}

.main_tit {
    left: 0;
    right: 0;
    top: 45%;
    color: #fff;
}

.main_tit h2 {
    font-size: 50px;
    line-height: 102px;
}

.main_tit h2::after {
    width: 40px;
    height: 5px;
    background: #fff;
    display: block;
    left: 0;
    bottom: 0;
    content: "";
}

.main_tit p {
    font-family: Arial;
    font-size: 24px;
    line-height: 58px;
}

.main {
    padding: 67px 0 0;
}

.main_tit {
    margin-top: -42px;
}

.about_type {
    margin: 40px 0 0;
    background: #f5f5f5;
    font-size: 0;
}

.about_type a {
    color: #000;
    font-size: 18px;
    width: 25%;
    display: inline-block;
    line-height: 100px;
    text-align: center;
}

.about_type .current {
    background: #fdd000;
}

.m_about_pic {
    padding: 60px 0 25px;
}

.m_about_tit {
    width: 57%;
    height: 270px;
    background: url(../images/main11.jpg) no-repeat;
    background-size: 100%;
    padding: 30px 35px 0 40px;
}

.m_about_tit h2 {
    line-height: 122px;
    font-size: 100px;
    color: #ea5019;
}

.m_about_tit h4 {
    line-height: 80px;
    font-size: 80px;
    color: #e5e5e5;
    font-family: Arial;
    text-transform: uppercase;
}

.m_about {
    color: #000;
    font-size: 20px;
    line-height: 40px;
    padding-bottom: 25px;
}

.about_num_bg {
    background: url(../images/main3.jpg) no-repeat center top;
    background-size: 100% 100%;
    padding: 45px 0 0;
    height: 416px;
}

.about_num li {
    background: url(../images/main8.png) no-repeat left top;
    padding: 30px 0 0;
    text-align: center;
    width: 300px;
    float: left;
    margin-right: 55px;
}

.about_num li h2 {
    color: #ea5019;
    font-size: 40px;
    line-height: 80px;
    margin: 15px 0 0;
}

.about_num li h2 span {
    font-size: 70px;
}

.about_num li p {
    line-height: 56px;
    color: #000;
    font-size: 28px;
}

.m_join {
    padding: 40px 0 80px;
}

.m_join_l {
    width: 22.56%;
    margin-left: 12.5%;
}

.m_join_l h2 {
    color: #000;
    font-size: 80px;
    line-height: 92px;
}

.join_more {
    width: 320px;
    height: 70px;
    border-radius: 35px;
    line-height: 70px;
    margin: 20px 0 0;
    font-size: 20px;
}

.m_join_logo {
    width: 42.36%;
    margin: 30px 12.5% 0 0;
}

.m_join_logo img {
    width: 100%;
}

.brand_list {
    padding: 70px 0 0;
}

.brand_list li {
    width: 31.9%;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.brand_list li:nth-child(3n+3) {
    margin-right: 0;
}

.brand_list li img {
    height: 350px;
    width: 100%;
}

.page {
    margin: 70px 0 30px;
}

.page li {
    display: inline-block;
    margin: 0 20px;
    border: solid 1px #ccc;
    padding: 0 15px;
    line-height: 40px;
    border-radius: 5px;
    font-size: 24px;
    color: #ccc;
}

.page .active {
    color: #000;
    background: #fdd000;
    border: solid 1px #fdd000;
}

.pro_type {
    margin: 0;
}

.pro_type a {
    width: 50%;
}

.sub_type {
    padding: 40px 0 0;
}

.sub_type a {
    width: 120px;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
    margin: 0 30px;
    background: #f5f5f5;
    display: inline-block;
    font-size: 18px;
}

.sub_type .active {
    background: #eb5b27;
    color: #fff;
}

.main_list {
    padding-bottom: 40px;
}

.m_pro {
    padding: 40px 0 0;
}

.m_pro li {
    width: 32.4%;
    /* height: 500px; */
    float: left;
    margin: 0 20px 20px 0;
    position: relative;
}

.m_pro li:nth-child(3n+3) {
    margin-right: 0;
}

.m_pro li img {
    height: 100%;
    width: 100%;
}

.m_pro li p {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s;
    transform: scale(0, 0);
}

.m_pro li p::after {
    width: 94%;
    height: 92%;
    border: solid 1px #fff;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.m_pro li:hover p {
    transform: scale(1, 1);
}

.m_news {
    margin: 40px 0 0;
}

.m_news li {
    background: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
}

.m_news li:hover {
    background: #eb5b27;
}

.m_news li:hover .m_news_tit,
.m_news li:hover .m_news_txt,
.m_news li:hover .m_news_date,
.m_news li:hover .m_news_more {
    color: #fff;
}

.m_news li:hover .m_news_more {
    border: solid 1px #fff;
}

.m_news_pic {
    width: 34.72%;
    height: 360px;
}

.m_news_pic img {
    height: 100%;
    width: 100%;
}

.m_news_con {
    width: 59.72%;
    padding: 35px 0 0;
}

.m_news_tit {
    color: #000;
    font-size: 32px;
    line-height: 48px;
}

.m_news_txt {
    font-size: 20px;
    color: #666666;
    line-height: 30px;
    height: 60px;
    overflow: hidden;
    margin: 56px 0;
}

.m_news_date {
    font-size: 20px;
    color: #666;
}

.m_news_more {
    width: 130px;
    height: 40px;
    color: #eb5b27;
    border: solid 1px #eb5b27;
    border-radius: 20px;
    line-height: 38px;
}

.m_join_box {
    padding: 50px 0 0;
}

.m_youshi {
    padding: 50px 0 40px;
}

.m_youshi li {
    width: 32.5%;
    height: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 0 30px;
    background: url(../images/dot1.png) no-repeat 20px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.m_youshi li h3 {
    line-height: 34px;
    color: #000;
    font-size: 28px;
    margin-bottom: 20px;
}

.m_youshi li p {
    color: #666666;
    font-size: 18px;
    line-height: 30px;
}

.m_youshi li:hover {
    background: url(../images/dot2.png) no-repeat 20px 20px;
    box-shadow: 0 0 10px rgba(235, 91, 39, 0.5);
}

.m_youshi li:hover h3,
.m_youshi li:hover p {
    color: #eb5b27;
}

.m_join_bg {
    background: #f7f7f7;
    padding-bottom: 60px;
}

.m_progress {
    padding: 80px 0 0;
}

.m_progress li {
    width: 380px;
    background: url(../images/main16.jpg) no-repeat right center;
    float: left;
    margin-bottom: 50px;
    cursor: pointer;
}

.m_progress li:nth-child(4n+4) {
    width: 300px;
    background: none;
}

.m_progress li>div {
    width: 300px;
    height: 80px;
    border-radius: 40px;
    line-height: 78px;
    border: solid 1px #cccccc;
    color: #666;
    font-size: 26px;
    text-align: center;
}

.m_progress li:hover>div {
    background: #eb5b27;
    color: #fff;
}

.m_join_tel {
    color: #eb5b27;
    font-size: 30px;
    line-height: 34px;
}

.m_join_tel img {
    margin-right: 25px;
}

.m_tiaojian {
    padding: 70px 0 90px;
}

.m_tiaojian_l {
    width: 44.16%;
    height: 640px;
    background: url(../images/main18.jpg) no-repeat;
    padding: 55px 36px 0 46px;
    color: #fff;
    font-size: 22px;
    line-height: 55px;
}

.m_tiaojian_r {
    width: 52.56%;
}

.m_tiaojian_r img {
    width: 100%;
}

.m_contact {
    background: url(../images/main20.jpg) no-repeat center bottom;
    padding: 50px 0 0;
    height: 400px;
}

.m_contact_txt {
    color: #000;
    font-size: 20px;
    line-height: 38px;
    padding: 65px 0 0;
}

.m_map {
    margin: 55px 0 15px;
}

.xx_box {
    padding: 50px 0;
}

.xx_tit {
    color: #000;
    font-size: 32px;
    line-height: 1.7;
}

.xx_date {
    color: #999;
    font-size: 16px;
    margin: 10px 0 0;
}

.xx_con {
    color: #666666;
    font-size: 20px;
    line-height: 30px;
    padding: 40px 0;
}

.nextpage {
    border-top: dashed 1px #ccc;
    padding: 100px 0 60px;
    color: #eb5b27;
}

.back {
    width: 130px;
    height: 40px;
    border: solid 1px #eb5b27;
    display: block;
    line-height: 38px;
    border-radius: 20px;
}

.prevpage {
    font-size: 20px;
}

.prevpage a {
    margin-left: 26px;
}