
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '微软雅黑',serif;
}
html, body{
    scroll-behavior:smooth;
    color: #333333;
}
a{
    color: #333;
    text-decoration: none;
}
input, button, textarea {
    outline: none;
}

/* 公共类名 */
.none{
    display: none;
}
.auto{
    width: 1200px;
    margin: 0 auto;
    max-width: 95%;
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-more{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.title{
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #181818;
    text-align: center;
}
.title-white{
    color: #ffffff;
}

/* header */
.header{
    width: 100%;
    /*height: 90px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 55px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all 0.4s;
    background: rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(44, 62, 75, 0);
}
.header-left a{
    display: flex;
    align-items: center;
}
.header-right{
    display: flex;
    align-items: center;
}
.header-search{
    margin: 0 80px;
}
.header-search a{
    display: flex;
    align-items: center;
}
.header-search img{
    width: 23px;
}
.header-concat{
    width: 122px;
    height: 46px;
    background-color: #ffffff;
    border-radius: 23px 16px 0px 23px;
    transition: all 0.4s;
    border: 1px solid rgba(252, 76, 139, 0);
}
.header-concat a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #333333;
    transition: all 0.4s;
}
.header-concat:hover{
    background-color: #fc4c8b;
}
.header-concat:hover a{
    color: #ffffff;
}
.header-nav{
    width: 750px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-nav-li{
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    transition: all 0.4s;
}
.header-nav-li:hover{
    color: #fc4c8b;
}
.header-menu{
    margin-left: 30px;
    margin-top: 6px;
}
.header-menu-box{
    display: flex;
    align-items: center;
}
.header-menu img{
    width: 32px;
}
.header-active{
    background: #ffffff;
    box-shadow: 0 5px 5px rgba(44, 62, 75, 0.2);
    padding: 15px 55px;
}
.header-active .header-nav-li{
    color: #333333;
}
.header-active .header-nav-li:hover{
    color: #fc4c8b;
}
.header-active .header-concat{
    border-color: rgb(252, 76, 139);
}
.header-active .header-search img{
    display: none;
}
.header-active .header-search img:last-child{
    display: inline-block;
}
.header-active .header-menu img{
    display: none;
}
.header-active .header-menu img:last-child{
    display: inline-block;
}

/* mobile header */
.header-mobile{
    width: 260px;
    height: 100vh;
    position: fixed;
    left: -260px;
    top: 0;
    z-index: 1001;
    background: #F5F5F5;
    transition: all 0.4s;
    opacity: 0;
}
.header-mobile-active{
    left: 0;
    opacity: 1;
}
.mobile-mask{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.mobile-top{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    box-sizing: border-box;
    /*background-image: linear-gradient(to right, #1d8cc4 0%, #19cbd2 100%);*/
    background: #fc4c8b;
    line-height: 100%;
}
.mobile-top img{
    width: 130px;
}
.mobile-list{
    height: calc(100vh - 50px);
    overflow-y: auto;
}
.mobile-li{
    border-top: 1px solid #EBEBEB;
    line-height: 100%;
}
.mobile-li-a{
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    padding: 0 20px;
    color: #999999;
    font-size: 15px;
    box-sizing: border-box;
}
.mobile-li-left{
    height: 100%;
    display: flex;
    align-items: center;
}
.mobile-li-left span{
    width: 8px;
    height: 8px;
    /*background-image: linear-gradient(to right, #1d8cc4 0%, #19cbd2 100%);*/
    background: #fc4c8b;
    border-radius: 50%;
    margin-right: 20px;
}
.mobile-li-right{
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #666666;
}
.mobile-li-list-a{
    display: flex;
    width: 100%;
    height: 50px;
    padding: 0 30px;
    color: #999999;
    font-size: 14px;
    align-items: center;
    border-top: 1px solid #EBEBEB;
    background: #F6F6F6;
    box-sizing: border-box;
}
.mobile-li-list-a i{
    margin-right: 20px;
}
.mobile-li-active{
    background: #EBEBEB;
}
.mobile-li-active .mobile-li-a{
    color: #3D3D3D;
}
.mobile-top-search{
    display: flex;
    align-items: center;
}
.mobile-top-search img{
    width: 20px;
}

/* banner */
.banner{
    width: 100%;
    position: relative;
    background: url("../img/banner1_01.jpg") no-repeat center center;
    background-size: cover;
}
.banner-container{
    width: 100%;
    padding: 160px 55px 60px;
}
.banner-swiper{
    width: 100%;
    height: 587px;
    background: url("../img/bg1_10.png") no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 25px;
}
.banner-swiper-con{
    width: 89.5%;
    height: calc(100% + 20px);
    /*border: 1px solid #ffffff;*/
    position: relative;
}
.banner-swiper-tit{
    position: absolute;
    left: 0;
    top: 11%;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    color: #13113f;
}
.banner-li{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 0 50px;
}
.banner-li-right{
    height: 100%;
    display: flex;
    align-items: center;
}
.banner-li-right img{
    width: 100%;
}
.banner-li-left{
    padding-top: 150px;
}
.banner-li-tit{
    font-size: 40px;
    font-weight: normal;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 30px;
}
.banner-li-desc{
    font-size: 28px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 60px;
}
.banner-li-more a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 129px;
    height: 42px;
    background-color: #fc4c8b;
    border-radius: 21px 20px 0px 21px;
    font-size: 18px;
    color: #f4f5f9;
}
.banner-btn img{
    position: absolute;
    top: 50%;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
}
.banner-btn-prev{
    left: -60px;
}
.banner-btn-next{
    right: -60px;
}
.banner-bottom{
    height: 127px;
    background: url("../img/jx3_14.png") no-repeat center center;
    background-size: 100% 100%;
    padding: 0 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-bottom-right{
    display: flex;
    flex: 1;
    align-items: center;
}
.banner-bottom-left{
    width: 512px;
    margin-right: 100px;
    display: flex;
    align-items: center;
}
.banner-bottom-tit{
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    margin-right: 40px;
}
.banner-bottom-desc p{
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
}
.banner-bottom-btn{
    width: 170px;
    height: 56px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../img/jx1_15.png") no-repeat center center;
    background-size: 100% 100%;
    margin-left: 6px;
    cursor: pointer;
}
.banner-bottom-ipt{
    width: calc(100% - 170px - 6px);
    height: 56px;
    background: url("../img/jx2_15.png") no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
}
.banner-bottom-icon{
    margin-right: 35px;
}
.banner-bottom-ipt input{
    width: 100%;
    font-size: 18px;
    color: #ffffff;
    height: 100%;
    background: none;
    border: 0;
}

.banner-2{
    width: 100%;
    position: relative;
}
.banner-2-img{
    display: flex;
    align-items: center;
}
.banner-2-img img{
    width: 100%;
}
.banner-2-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 120px 280px 0;
}
.banner-2-con{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.banner-2-right{
    width: 37vw;
    display: flex;
    align-items: flex-end;
    position: relative;
}
.banner-2-right-img{
    width: 100%;
}
.banner-2-right-star-1{
    position: absolute;
    left: -50px;
    bottom: 0;
}
.banner-2-right-star-2{
    position: absolute;
    bottom: calc(100% - 36px);
    right: -48px;
}
.banner-2-left{
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.banner-2-en{
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}
.banner-2-tit{
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}
.banner-2-desc{
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
}
.banner-2-left-star{
    position: absolute;
    left: -70px;
    top: 37%;
}

.banner-3-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.banner-3-star-1{
    position: absolute;
    left: 150px;
    top: 28%;
}
.banner-3-con{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.banner-3-tit{
    margin-bottom: 30px;
    position: relative;
}
.banner-3-desc{
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 60px;
}
.banner-3-ipt{
    width: 100%;
    height: 127px;
    background: url("../img/jx4_03.png") no-repeat center center;
    background-size: 100% 100%;
    padding: 35px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-3-star-2{
    position: absolute;
    top: -65px;
    left: 50%;
    margin-left: -39px;
}
.banner-3-star-3{
    position: absolute;
    bottom: 40px;
}

.banner-4-con{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}
.banner-4-box{
    position: relative;
}
.banner-4-en{
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}
.banner-4-tit{
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}
.banner-4-desc{
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
}
.banner-4-star-1{
    position: absolute;
    top: 0;
    left: -78px;
}
.banner-4-star-2{
    position: absolute;
    right: 74px;
    bottom: 20%;
}
.banner-4-star-3{
    position: absolute;
    right: 350px;
    bottom: 38%;
}

/* footer */
.footer{
    width: 100%;
    background: #fc4c8b;
    padding: 80px 150px 0;
}
.footer-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}
.footer-top-logo a{
    display: flex;
    align-items: center;
}
.footer-top-tit{
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
    margin-top: 20px;
}
.footer-top-right{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-top-right span{
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin-top: 20px;
}
.footer-top-center{
    width: 634px;
    margin: 0 80px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-top-list{
    display: flex;
    align-items: flex-start;
}
.footer-top-li{
    margin-right: 50px;
}
.footer-top-li-tit{
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}
.footer-top-li-a{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.footer-top-li-a a{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #ffffff;
}
.footer-top-li-a a:hover{
    text-decoration: underline;
}
.footer-top-other{
    display: flex;
    flex-direction: column;
}
.footer-top-other a{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: #ffffff;
}
.footer-top-other a:hover{
    text-decoration: underline;
}
.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.5);
    padding: 20px 0;
}
.footer-bottom-left span{
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
}
.footer-bottom-left a{
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    margin-left: 15px;
}
.footer-bottom-left a:hover{
    text-decoration: underline;
}
.footer-bottom-right{
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
}

/* 正文 */
.index-about{
    width: 100%;
    background: #ffffff;
    padding: 80px 55px;
}
.index-about-tip{
    font-size: 24px;
    line-height: 1;
    color: #181818;
    text-align: center;
    margin-bottom: 20px;
}
.index-about-tit{
    margin-bottom: 40px;
}
.index-about-desc{
    width: 1317px;
    margin: 0 auto 35px;
    text-align: center;
    max-width: 100%;
    font-size: 18px;
    line-height: 28px;
    color: #666666;
}
.index-about-img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.index-about-list{
    width: 1046px;
    max-width: 100%;
    margin: 0 auto 55px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 90px;
}
.index-about-li{
    display: flex;
    align-items: center;
}
.index-about-li img{
    margin-right: 40px;
}
.index-about-li-text{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #333333;
}
.index-about-more{
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-about-more a{
    width: 224px;
    height: 51px;
    border-radius: 25px 26px 0px 25px;
    border: solid 1px #fc4c8b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}
.index-about-more a span{
    font-size: 16px;
    line-height: 1;
    color: #333333;
    margin-left: 15px;
    transition: all 0.4s;
}
.index-about-more a:hover{
    background: #fc4c8b;
}
.index-about-more a:hover span{
    color: #ffffff;
}
.index-about-more a:hover img{
    display: none;
}
.index-about-more a:hover img:nth-child(2){
    display: inline-block;
}

.index-service{
    width: 100%;
    background: #fc4c8b;
    padding: 96px 0 120px 150px;
    position: relative;
}
.index-service-bg{
    position: absolute;
    width: calc(100% - 420px);
    height: 100%;
    top: 0;
    right: 0;
    background: url("../img/bg2_47.jpg") no-repeat center center;
    background-size: cover;
    padding: 96px 0 0 50px;
}
.index-service-bg span{
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
}
.index-service-en{
    width: 218px;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 45px;
}
.index-service-swiper{
    position: relative;
}
.index-service-li{
    height: 362px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 35px 0 30px 50px;
    position: relative;
}
.index-service-li-right img{
    max-height: 100%;
}
.index-service .index-service-scroller{
    width: calc(100% - 300px);
    height: 4px;
    left: 0;
    bottom: -55px;
    background: rgba(255,255,255,0.3);
}
.index-service-scroller .swiper-scrollbar-drag{
    background: #ffffff;
    opacity: 1;
}
.index-service-btn{
    display: flex;
    align-items: center;
    position: absolute;
    bottom: -75px;
    right: 150px;
    z-index: 10;
}
.index-service-btn img{
    cursor: pointer;
}
.index-service-btn-prev{
    margin-right: 27px;
}
.index-service-li-tit{
    font-size: 28px;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 15px;
    transition: all 0.4s;
}
.index-service-li-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: #666666;
    transition: all 0.4s;
}
.index-service-li-more{
    width: 40px;
    height: 40px;
    border: solid 1px #fc4c8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    transition: all 0.4s;
}
.index-service-li-left{
    height: 100%;
    padding-top: 50px;
    position: relative;
    z-index: 11;
}
.index-service-mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: 10;
    opacity: 0;
    transition: all 0.4s;
}
.index-service-li:hover .index-service-mask{
    opacity: 0.7;
}
.index-service-li:hover .index-service-li-tit{
    color: #ffffff;
}
.index-service-li:hover .index-service-li-desc{
    color: #ffffff;
}
.index-service-li:hover .index-service-li-more{
    border-color: #ffffff;
}
.index-service-li:hover .index-service-li-more img{
    display: none;
}
.index-service-li:hover .index-service-li-more img:last-child{
    display: inline-block;
}

.index-news{
    padding: 100px 150px 120px;
    background: #ffffff;
}
.index-news-tit{
    margin-bottom: 25px;
}
.index-news-desc{
    font-size: 22px;
    font-weight: 300 ;
    line-height: 1;
    color: #666666;
    margin-bottom: 45px;
    text-align: center;
}
.index-news-con{
    display: flex;
    align-items: stretch;
}
.index-news-left{
    width: 580px;
    margin-right: 40px;
}
.index-news-img{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.index-news-img img{
    width: 100%;
    transition: all 0.4s;
}
.index-news-left-con{
    background: #ecebeb;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-news-left-date{
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #666666;
    margin-bottom: 15px;
}
.index-news-left-tit{
    width: 290px;
    font-size: 24px;
    line-height: 36px;
    color: #333333;
}
.index-news-left-more{
    margin-left: 30px;
    width: 40px;
    height: 40px;
    border: solid 1px #fc4c8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-news-left:hover .index-news-img img{
    transform: scale(1.2);
}
.index-news-right{
    width: calc(100% - 580px - 45px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.index-news-li{
    width: 100%;
    height: calc((100% - 15px)/4);
    background: #ecebeb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    transition: all 0.4s;
}
.index-news-li-right{
    margin-left: 100px;
    width: 40px;
    height: 40px;
    border: solid 1px #fc4c8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}
.index-news-li-left{
    flex: 1;
    display: flex;
    align-items: center;
}
.index-news-li-date{
    width: 82px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #666666;
    margin-right: 28px;
    transition: all 0.4s;
}
.index-news-li-tit{
    flex: 1;
    font-size: 22px;
    line-height: 36px;
    color: #333333;
    transition: all 0.4s;
}
.index-news-li:hover{
    background: #fc4c8b;
}
.index-news-li:hover .index-news-li-date{
    color: #eee;
}
.index-news-li:hover .index-news-li-tit{
    color: #fff;
}
.index-news-li:hover .index-news-li-right{
    border-color: #fff;
}
.index-news-li:hover .index-news-li-right img{
    display: none;
}
.index-news-li:hover .index-news-li-right img:last-child{
    display: inline-block;
}

.index-bz{
    width: 100%;
    background: url("../img/bg3_57.jpg") no-repeat center center;
    background-size: cover;
    padding: 90px 0 150px;
}
.index-bz-tit{
    margin-bottom: 30px;
}
.index-bz-desc{
    font-size: 22px;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    margin-bottom: 55px;
}
.index-bz-list{
    width: 1605px;
    margin: 0 auto;
    max-width: 95%;
    display: flex;
    justify-content: space-between;
}
.index-bz-li{
    width: calc((100% - 65px)/2);
    background: #ffffff;
    display: flex;
    align-items: stretch;
    padding: 60px;
}
.index-bz-li-right{
    width: 312px;
    display: flex;
    align-items: center;
    margin-left: 60px;
}
.index-bz-li-right img{
    width: 100%;
}
.index-bz-li-left{
    width: calc(100% - 312px - 60px);
    position: relative;
}
.index-bz-li-tit{
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 25px;
    margin-top: 25px;
}
.index-bz-li-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #666666;
}
.index-bz-li-more{
    width: 40px;
    height: 40px;
    border: solid 1px #fc4c8b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0);
    transition: all 0.4s;
}
.index-bz-li-more:hover{
    background: #fc4c8b;
}
.index-bz-li-more:hover img{
    display: none;
}
.index-bz-li-more:hover img:last-child{
    display: inline-block;
}

.pjbzfw{
    padding: 100px 0 140px;
}
.pjbzfw-tit{
    margin-bottom: 20px;
}
.pjbzfw-desc{
    font-size: 22px;
    line-height: 1;
    color: #666666;
    margin-bottom: 55px;
    text-align: center;
}
.pjbzfw-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 75px 40px;
}
.pjbzfw-li-img{
    display: flex;
    align-items: center;
}
.pjbzfw-li-img img{
    width: 100%;
}
.pjbzfw-li-con{
    width: 100%;
    height: 364px;
    padding: 60px;
    background-color: #eceaeb;
    position: relative;
}
.pjbzfw-li-tit{
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 25px;
}
.pjbzfw-li-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 30px;
}
.pjbzfw-li-more{
    width: 40px;
    height: 40px;
    border: solid 1px #fc4c8b;
    position: absolute;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s;
    background: rgba(0,0,0,0);
}
.pjbzfw-li-more:hover{
    background: #fc4c8b;
}
.pjbzfw-li-more:hover img{
    display: none;
}
.pjbzfw-li-more:hover img:last-child{
    display: inline-block;
}

.news{
    padding: 100px 0;
}
.news-tit{
    margin-bottom: 20px;
}
.news-desc{
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: #666666;
    margin-bottom: 55px;
    text-align: center;
}
.news-top{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 40px;
    margin-bottom: 40px;
}
.news-top-img{
    display: flex;
    align-items: center;
}
.news-top-img img{
    width: 100%;
}
.news-top-con{
    height: 333px;
    background: #eceaeb;
    padding: 60px;
    position: relative;
}
.news-top-date{
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #666666;
    margin-bottom: 10px;
}
.news-top-tit{
    font-size: 24px;
    line-height: 36px;
    color: #333333;
    margin-bottom: 20px;
}
.news-top-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: #333333;
}
.news-top-more{
    position: absolute;
    bottom: 40px;
}
.news-top-more a{
    width: 40px;
    height: 40px;
    border: solid 1px #fc4c8b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s;
    background: rgba(0,0,0,0);
}
.news-top-more a:hover{
    background: #fc4c8b;
}
.news-top-more a:hover img{
    display: none;
}
.news-top-more a:hover img:last-child{
    display: inline-block;
}
.news-li{
    display: flex;
    height: 130px;
    align-items: center;
    background: #ecebeb;
    padding: 20px 60px;
    justify-content: space-between;
    margin-bottom: 20px;
    transition: all 0.4s;
}
.news-li-left{
    flex: 1;
    display: flex;
    align-items: center;
}
.news-li-date{
    width: 82px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #666666;
    margin-right: 30px;
    transition: all 0.4s;
}
.news-li-tit{
    flex: 1;
    font-size: 24px;
    line-height: 36px;
    color: #333333;
    transition: all 0.4s;
}
.news-li-right{
    width: 40px;
    height: 40px;
    border: solid 1px #fc4c8b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s;
    margin-left: 100px;
}
.news-li:hover{
    background: #fc4c8b;
}
.news-li:hover .news-li-date{
    color: #eee;
}
.news-li:hover .news-li-tit{
    color: #fff;
}
.news-li:hover .news-li-right{
    border-color: #fff;
}
.news-li:hover .news-li-right img{
    display: none;
}
.news-li:hover .news-li-right img:last-child{
    display: inline-block;
}

.details{
    width: 1010px;
    margin: 0 auto;
    padding: 100px 0;
    max-width: 95%;
}
.details-tit{
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 10px;
}
.details-info{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.details-info-item{
    display: flex;
    align-items: center;
}
.details-info-item img{
    margin-right: 10px;
}
.details-info-item span{
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #333333;
}
.details-info-line{
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0 30px;
    font-weight: 300;
}
.details-con p{
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
}
.details-con p img{
    max-width: 100%;
}
.details-bottom{
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.details-bottom-right{
    width: 182px;
    height: 47px;
    background-color: #fc4c8b;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.details-bottom-right span{
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
    margin-right: 25px;
}
.details-bottom-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.details-bottom-item span{
    font-size: 18px;
    line-height: 1.5;
    color: #fc4c8b;
}
.details-bottom-item a{
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
}
.details-bottom-item a:hover{
    color: #fc4c8b;
}

.fwbz{
    padding: 100px 0;
}
.fwbz-tit{
    margin-bottom: 20px;
}
.fwbz-desc{
    font-size: 22px;
    line-height: 1;
    color: #666666;
    margin-bottom: 30px;
    text-align: center;
}
.fwbz-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.fwbz-nav-li{
    width: 203px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #333333;
    background: url("../img/jx5_07.png") no-repeat center center;
    background-size: 100% 100%;
    margin-right: 22px;
}
.fwbz-nav-li:last-child{
    margin-right: 0;
}
.fwbz-nav-li:hover{
    background: url("../img/jx6_07.png") no-repeat center center;
    background-size: 100% 100%;
    color: #ffffff;
}
.fwbz-nav-li-active{
    background: url("../img/jx6_07.png") no-repeat center center;
    background-size: 100% 100%;
    color: #ffffff;
}
.fwbz-con-box{
    margin-bottom: 70px;
}
.fwbz-con-tit{
    font-size: 30px;
    line-height: 1;
    color: #333333;
    margin-bottom: 15px;
}
.fwbz-con-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #333333;
    margin-bottom: 25px;
}
.fwbz-con-list{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 14px 12px;
    margin-bottom: 25px;
}
.fwbz-con-li{
    background: #ecebeb;
    height: 200px;
    padding: 45px 28px;
}
.fwbz-con-li-top{
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}
.fwbz-con-li-value{
    margin-left: 30px;
    font-size: 48px;
    font-weight: bold;
    line-height: 28px;
    color: #fc4c8b;
}
.fwbz-con-li-text{
    width: 36px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    color: #333333;
}
.fwbz-con-li-en{
    font-size: 18px;
    line-height: 1;
    color: #333333;
    margin-top: 15px;
}
.fwbz-con-tip-tit{
    font-size: 30px;
    line-height: 1;
    color: #333333;
    margin-bottom: 30px;
}
.fwbz-con-item{
    margin-bottom: 50px;
}
.fwbz-con-item-tit{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.fwbz-con-item-tit span:first-child{
    width: 11px;
    height: 11px;
    background-color: #4d20dd;
    border-radius: 50%;
    margin-right: 15px;
}
.fwbz-con-item-tit span:last-child{
    font-size: 30px;
    line-height: 1;
    color: #fc4c8b;
}
.fwbz-con-item-li{
    display: flex;
    height: 96px;
    margin-bottom: 10px;
    background: #ecebeb;
}
.fwbz-con-item-li:last-child{
    margin-bottom: 0;
}
.fwbz-con-item-value{
    width: 190px;
    background: #efdde4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: #fc4c8b;
}
.fwbz-con-item-desc{
    flex: 1;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.4;
    color: #333333;
}
.fwbz-con-bottom-tit{
    margin-bottom: 30px;
}
.fwbz-con-bottom-tip{
    margin-left: 25px;
}
.fwbz-con-bottom-box{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #333333;
}
.fwbz-con-bottom-box span{
    font-weight: bold;
}

.fwbz-con-tip-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #333333;
    margin-bottom: 40px;
}
.fwbz-2-list .fwbz-con-item-value{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    color: #fc4c8b;
    padding: 0 40px;
}

.fwbz-3-item{
    margin-bottom: 50px;
}
.fwbz-3-tit{
    font-size: 30px;
    line-height: 1;
    color: #333333;
    margin-bottom: 15px;
}
.fwbz-3-table-th{
    background: #efdde4;
    display: flex;
    align-items: stretch;
    height: 96px;
    margin-bottom: 3px;
}
.fwbz-3-table-td{
    flex: 1;
    padding: 26px 20px 26px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.fwbz-3-table-tit{
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
}
.fwbz-3-table-desc{
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    color: #333333;
    margin-top: 6px;
}
.fwbz-3-table-row{
    display: flex;
    align-items: stretch;
    margin-bottom: 3px;
    background: #ecebeb;
}
.fwbz-3-table-row .fwbz-3-table-td{
    justify-content: center;
}
.fwbz-3-table-td span{
    font-size: 18px;
    line-height: 24px;
    color: #333333;
}
.fwbz-3-table-td:first-child span{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fc4c8b;
}
.fwbz-3-table-row .fwbz-3-table-td:first-child{
    background: #f7e9ef;
}
.fwbz-3-table-last .fwbz-3-table-td:last-child{
    flex-grow: 5;
}
.fwbz-3-tip{
    font-size: 18px;
    line-height: 1;
    color: #333333;
    margin-top: 20px;
    margin-left: 20px;
}
.fwbz-3-table-3 .fwbz-3-table-row .fwbz-3-table-td:first-child{
    flex-grow: 0.285;
}
.fwbz-3-table-3 .fwbz-3-table-th .fwbz-3-table-td{
    justify-content: center;
}

.fwbz-4-step{
    margin-bottom: 50px;
}
.fwbz-4-step-con{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fwbz-4-item{
    margin-bottom: 50px;
}
.fwbz-4-item .fwbz-con-bottom-box p{
    line-height: 2;
}
.fwbz-4-table-tit{
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    margin-left: 25px;
}
.fwbz-4-table-tip{
    font-size: 18px;
    font-weight: 300;
    line-height:1;
    color: #333333;
    margin-top: 30px;
    margin-left: 40px;
}

.about{
    padding: 100px 0;
}
.about-tit{
    margin-bottom: 25px;
}
.about-desc{
    font-size: 22px;
    line-height: 1;
    color: #666666;
    margin-bottom: 30px;
    text-align: center;
}
.about-text{
    margin-bottom: 30px;
}
.about-text p{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #666666;
    text-align: center;
}
.about-con{
    margin-bottom: 80px;
}
.about-history{
    margin-bottom: 80px;
}
.about-history-li{
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}
.about-history-date{
    width: 282px;
    height: 79px;
    background: url("../img/jx7.png") no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    padding: 10px 50px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #fc4c8b;
}
.about-history-point{
    width: 14px;
}
.about-history-text{
    flex: 1;
    min-height: 79px;
    padding: 25px 60px;
    background: url("../img/jx8.png") no-repeat center center;
    background-size: 100% 100%;
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
}
.about-hz-tit{
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 35px;
    text-align: center;
}
.about-hz-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 30px 10px;
}
.about-hz-li{
    height: 130px;
    background: #ffffff;
    border-radius: 6px;
    border: solid 1px #ecedf2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hz-li img{
    max-height: 100%;
    max-width: 100%;
}
.about-hz-btn{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hz-btn img{
    cursor: pointer;
}
.about-hz-btn-prev{
    margin-right: 30px;
}

.concat{
    padding: 100px 0 200px;
}
.concat-tit{
    margin-bottom: 20px;
}
.concat-desc{
    font-size: 18px;
    line-height: 1;
    color: #333333;
    text-align: center;
    margin-bottom: 60px;
}
.concat-con{
    position: relative;
}
.concat-con-box{
    display: flex;
}
.concat-con-box-left{
    flex: 1;
}
.concat-con-box-right{
    width: 670px;
    display: flex;
    align-items: center;
}
.concat-con-box-right img{
    width: 100%;
}
.concat-con-container{
    position: absolute;
    display: flex;
    width: 100%;
    top: 15px;
    left: 0;
}
.concat-con-container-left{
    width: 795px;
    max-width: 100%;
}
.concat-con-container-right{
    flex: 1;
}
.concat-con-item{
    width: 100%;
    background: #ffffff;
    padding: 35px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 23px;
    box-shadow: 0px 1px 10px 0px rgba(244, 245, 249, 0.26);
    border: solid 1px #e2e4eb;
}
.concat-con-item-label{
    font-size: 18px;
    font-weight: 300;
    line-height:1;
    color: #333333;
    margin-bottom: 20px;
}
.concat-con-item-text{
    width: 440px;
}
.concat-con-item-text p{
    font-size: 22px;
    line-height: 1.5;
    color: #000000;
}

.inquire{
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 40px;
}
.inquire-tit{
    margin-bottom: 30px;
}
.inquire-wrapper{
    padding: 0 30px 30px;
}
.inquire-list{
    height: 122px;
    display: flex;
    padding: 0 70px;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-between;
}
.inquire-li{
    margin-bottom: 25px;
    font-size: 16px;
}
.inquire-li:nth-child(3n){
    margin-bottom: 0;
}
.inquire-li-text{
    color: #666666;
}
.inquire-li-value{
    color: #000000;
}

.result{
    padding: 100px 0;
    background: #f5f5f5;
}
.title3{
    display: flex;
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid #F5F5F5;
}
.title3 span{
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    border-bottom: 4px solid #fc4c8b;
    padding: 20px 0;
    line-height: 100%;
}
.title3 span label{
    color: #fc4c8b;
}
.inquire-vr{
    height: 238px;
    background: #FAFAFA;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.inquire-vr a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inquire-vr a img{
    width: 131px;
    margin-bottom: 20px;
}
.inquire-vr a span{
    width: 131px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #fc4c8b;
    font-size: 16px;
    color: #fc4c8b;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    transition: all 0.5s;
    box-sizing: border-box;
}
.inquire-vr a span:hover{
    background: #9A080E;
    color: #fff;
    border: 1px solid #9A080E;
}
.inquire-img{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.inquire-img img{
    width: 440px;
    max-width: 50%;
    margin: 0 16px;
}
.inquire-img-2{
    display: flex;
    justify-content: center;
}
.inquire-img-2 img{
    width: 354px;
    max-width: 100%;
}
.inquire-rate{
    padding: 0 50px;
    display: flex;
    flex-wrap: wrap;
}
.inquire-item{
    width: calc((100% - 120px)/3);
    display: flex;
    align-items: center;
    line-height: 100%;
    margin-bottom: 40px;
    margin-right: 60px;
}
.inquire-item:nth-child(3n){
    margin-right: 0;
}
.inquire-item label{
    font-size: 16px;
    color: #666666;
}
.inquire-item span{
    font-size: 18px;
    color: #7C2121;
    font-weight: bold;
    margin: 0 6px;
}
.inquire-item-bar{
    width: 170px;
    height: 14px;
    background: #EAEAEA;
    border-radius: 8px;
    position: relative;
}
.inquire-item-bar-child{
    height: 14px;
    background: #7C2121;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
}
.inquire-item-info{
    position: relative;
}
.inquire-item-info img{
    width: 20px;
    cursor: pointer;
}
.inquire-item-con{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 20px;
    padding-left: 10px;
}
.inquire-item-con-wrapper{
    background: #EAEAEA;
    border-radius: 4px;
    padding: 16px;
    width: 240px;
    min-height: 100px;
    font-size: 14px;
    line-height: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}
.inquire-item-con-wrapper p{
    margin-bottom: 6px;
}
.inquire-item-con-wrapper p:last-child{
    margin-bottom: 0;
}
.inquire-item-info:hover .inquire-item-con{
    display: block;
}
.empty{
    min-height: 400px;
    font-size: 22px;
    text-align: center;
    padding-top: 40px;
    color: #fc4c8b;
    font-weight: bold;
}
.inquire-list-2{
    height: 70px;
}
.inquire-list-2 .inquire-li:nth-child(3n){
    margin-bottom: 25px;
}
.inquire-list-2 .inquire-li:nth-child(2n){
    margin-bottom: 0;
}
