
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '微软雅黑',serif;
}
html, body{
    scroll-behavior:smooth;
    color: #333333;
    background: #F5F5F5;
}
a{
    color: #333;
    text-decoration: none;
}
input, button, textarea {
    outline: none;
}

/* 公共类名 */
.none{
    display: none;
}
.none-important{
    display: none!important;
}
.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;
}
.ellipsis-more-3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.title1{
    font-size: 32px;
    font-weight: normal;
    color: #000000;
    line-height: 100%;
}
.title1-white{
    color: #ffffff;
}
.title2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.title2 span:first-child{
    font-size: 32px;
    color: #7C2121;
}
.title2 span:last-child{
    font-size: 24px;
    color: #7C2121;
    opacity: 0.09;
    margin-top: 5px;
}
.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 #7C2121;
    padding: 20px 0;
    line-height: 100%;
}
.title3 span label{
    color: #7C2121;
}


/* header */
.header{
    background: #FFFFFF;
}
.header-top{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo{
    width: 160px;
}
.header-logo img{
    width: 100%;
}
.header-list{
    display: flex;
    margin-top: 13px;
}
.header-li{
    font-size: 18px;
    font-weight: bold;
    margin-right: 28px;
    border-bottom: 3px solid rgba(0,0,0,0);
    line-height: 100%;
    padding-bottom: 10px;
    transition: all 0.5s;
}
.header-li:last-child{
    margin-right: 0;
}
.header-li-active{
    border-bottom: 3px solid #7C2121;
}
.header-li:hover{
    border-bottom: 3px solid #7C2121;
}
.header-search{
    height: 76px;
    background: #7C2121;
}
.header-search-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-search-ipt{
    display: flex;
    height: 44px;
}
.header-search-ipt span{
    width: 120px;
    height: 44px;
    background: #BA151B;
    border-radius: 100px 0px 0px 100px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    line-height: 100%;
}
.header-search-ipt div{
    width: 60px;
    height: 44px;
    background: #BA151B;
    border-radius: 0px 100px 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    cursor: pointer;
}
.header-search-ipt div img{
    width: 24px;
}
.header-search-ipt div:hover{
    background: #9A080E;
}
.header-search-ipt input{
    border: 0;
    height: 44px;
    width: 340px;
    font-size: 16px;
    padding: 0 12px;
    background: #ffffff;
}
.header-search-info{
    width: 227px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 153px;
}
.header-search-info img{
    width: 20px;
    margin-right: 4px;
}
.header-search-info span{
    font-size: 14px;
    color: #ffffff;
    line-height: 100%;
}
.header-banner{
    display: flex;
}
.header-banner img{
    width: 100%;
    min-height: 160px;
    object-fit: cover;
}
.header-menu img{
    width: 25px;
}
.header-mobile{
    width: 260px;
    height: 100vh;
    position: fixed;
    left: -260px;
    top: 0;
    z-index: 1001;
    background: #F5F5F5;
    transition: all 0.4s;
}
.header-mobile-active{
    left: 0;
}
.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: space-between;
    padding: 0 25px;
    box-sizing: border-box;
    background: #f5f5f5;
    line-height: 100%;
}
.mobile-top img{
    width: 110px;
}
.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 25px;
    color: #999999;
    font-size: 15px;
}
.mobile-li-left{
    height: 100%;
    display: flex;
    align-items: center;
}
.mobile-li-left span{
    width: 8px;
    height: 8px;
    background: #7C2121;
    border-radius: 50%;
    margin-right: 30px;
}
.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 35px;
    color: #999999;
    font-size: 14px;
    align-items: center;
    border-top: 1px solid #EBEBEB;
    background: #F6F6F6;
}
.mobile-li-list-a i{
    margin-right: 20px;
}
.mobile-li-active{
    background: #EBEBEB;
}
.mobile-li-active .mobile-li-a{
    color: #3D3D3D;
}

.mobile-banner-img{
    display: flex;
}
.mobile-banner-img img{
    width: 100%;
}
#swiper2 .swiper-pagination{
    bottom: 20px;
}
#swiper2 .swiper-pagination-bullet{
    border-radius: 0;
    width: 25px;
    height: 4px;
    margin: 0 1px;
    opacity: 0.1;
}
#swiper2 .swiper-pagination-bullet-active{
    background: #7C2121;
    opacity: 1;
}
#swiper3 .swiper-pagination{
    bottom: 20px;
}
#swiper3 .swiper-pagination-bullet{
    border-radius: 0;
    width: 30px;
    height: 4px;
    margin: 0 1px;
    opacity: 0.1;
}
#swiper3 .swiper-pagination-bullet-active{
    background: #7C2121;
    opacity: 1;
}

.top{
    position: fixed;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    right: 30px;
    bottom: -60px;
    box-shadow: 0 0 8px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s;
    z-index: 99;
}
.top img{
    width: 60%;
}
.top:hover{
    background: #7C2121;
}
.top:hover img{
    display: none;
}
.top:hover img:last-child{
    display: inline-block;
}
.top-active{
    bottom: 60px;
}
.header-banner-mobile img{
    width: 100%;
}

/* index */
.index-banner-img{
    display: flex;
}
.index-banner-img img{
    width: 100%;
}
.business-index{
    height: 604px;
    background: url("../img/bg1.png") no-repeat top center;
    background-size: cover;
    padding-top: 84px;
}
.business-index-tit{
    display: flex;
    justify-content: center;
    margin-bottom: 83px;
}
.business-index-list{
    display: flex;
    justify-content: space-between;
}
.business-index-li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.business-index-li img{
    width: 145px;
    margin-bottom: 16px;
}
.business-index-text{
    font-size: 22px;
    transition: all 0.5s;
}
.business-index-li span{
    font-size: 14px;
    color: #999;
    margin-top: 6px;
}
.business-index-li:hover .business-index-text{
    color: #7C2121;
}
.business-index-tip{
    position: absolute;
    width: 100%;
    left: 0;
    top: 38%;
    font-size: 34px;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);;
}

.mobile-menu{
    margin-bottom: 25px;
}
.mobile-menu-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mobile-menu-li{
    width: 20%;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    line-height: 100%;
}
.mobile-menu-img{
    background: #F5F5F5;
    border-radius: 8px;
    box-shadow: 0 0 12px #999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.mobile-menu-li img{
    width: 60%;
}

.news-index{
    height: 638px;
    background: url("../img/bg2.png") no-repeat top center;
    background-size: cover;
    padding-top: 60px;
}
.news-index-tit{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.news-index-tit a{
    width: 80px;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 100%;
    display: flex;
    align-items: center;
}
.news-index-tit a img{
    width: 16px;
    margin-left: 4px;
}
.news-index-tit a:hover{
    color: #ffffff;
}
.news-index-tit a:hover img{
    display: none;
}
.news-index-tit a:hover img:last-child{
    display: inline-block;
}
.news-index-swiper{
    position: relative;
}
#swiper1{
    width: 980px;
    margin: 0 auto;
    padding-bottom: 30px;
    max-width: 100%;
}
.news-index-li{
    display: flex;
}
.news-index-left{
    width: 566px;
    height: 400px;
    object-fit: cover;
}
.news-index-right{
    flex: 1;
    border: 6px solid #FFFFFF;
    border-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.news-index-li-tit{
    font-size: 20px;
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 45px;
}
.news-index-li-desc{
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.8;
    margin-bottom: 20px;
}
.news-index-li-info{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.news-index-li-info a{
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.4);
    line-height: 100%;
}
.news-index-li-info a img{
    width: 14px;
    margin-left: 4px;
}
.news-index-li-info a:hover{
    color: #FFFFFF;
}
.news-index-li-info a:hover img{
    display: none;
}
.news-index-li-info a:hover img:last-child{
    display: inline-block;
}
.news-index-btn-item{
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    cursor: pointer;
    outline: none;
}
.news-index-btn-item img{
    width: 100%;
    height: 100%;
}
.news-index-btn-prev{
    left: 0;
}
.news-index-btn-next{
    right: 0;
}
.news-index-btn-item:hover img{
    display: none;
}
.news-index-btn-item:hover img:last-child{
    display: inline-block;
}
#swiper1 .swiper-scrollbar{
    width: 100px;
    height: 4px;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
    background: rgba(255,255,255,0.2);
}
#swiper1 .swiper-scrollbar-drag{
    background: #FFFFFF;
}

.intro-index{
    height: 1049px;
    background: url("../img/bg1.png") no-repeat bottom center;
    background-size: cover;
    padding-top: 84px;
}
.intro-index-tit{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.intro-index-con{
    display: flex;
    align-items: stretch;
}
.intro-index-top{
    width: 100%;
}
.intro-index-left{
    width: 557px;
    height: 770px;
    background: url("../img/bg3@2x.png") no-repeat bottom left;
    background-size: contain;
    padding: 0 30px 0 80px;
    font-size: 17px;
    line-height: 30px;
}
.intro-index-left p{
    margin-bottom: 20px;
}
.intro-index-left p:first-child{
    text-indent: 2em;
}
.intro-index-left-text{
    text-align: right;
    font-size: 22px;
}
.intro-index-right{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.intro-index-right img{
    width: 100%;
}
.intro-index-right img:last-child{
    width: calc(100% + 14px);
    margin-left: -14px;
}

.intro{
    margin-bottom: 60px;
}
.intro-tit{
    margin-top: 40px;
    margin-bottom: 20px;
}
.intro-wrapper{
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.intro-left{
    width: 669px;
    height: 620px;
    background: url("../img/bg4.png") no-repeat bottom left;
    background-size: contain;
    padding: 0 30px 0 80px;
    font-size: 17px;
    line-height: 30px;
}
.intro-left p{
    margin-bottom: 15px;
}
.intro-left p:first-child{
    text-indent: 2em;
}
.intro-left-text{
    text-align: right;
    font-size: 22px;
}
.intro-right{
    width: 400px;
    display: flex;
}
.intro-right img{
    width: 100%;
}

.contact{
    margin-bottom: 60px;
}
.contact-tit{
    margin-bottom: 20px;
}
.contact-wrapper{
    border-radius: 8px;
    border: 2px solid #FFFFFF;
    display: flex;
}
.contact-left{
    width: 700px;
    height: 600px;
    border-radius: 8px;
}
.contact-right{
    flex: 1;
    padding: 60px 30px 20px 40px;
    background: #FFFFFF;
}
.contact-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}
.contact-item:last-child{
    margin-bottom: 0;
}
.contact-item-img{
    width: 20px;
    margin-right: 16px;
}
.contact-item-tit{
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    line-height: 100%;
    margin-bottom: 15px;
}
.contact-item-info{
    display: flex;
    flex-direction: column;
}
.contact-item-info span{
    font-size: 17px;
    color: #333333;
    line-height: 30px;
}

.news{
    margin-bottom: 60px;
}
.news-tit{
    margin: 40px 0 20px 0;
}
.news-li{
    display: flex;
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 30px 190px 30px 30px;
    transition: all 0.5s;
}
.news-li-img{
    width: 156px;
    height: 110px;
    border-radius: 6px;
    margin-right: 24px;
    object-fit: cover;
}
.news-li-con{
    width: calc(100% - 156px - 24px);
}
.news-li-tit{
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}
.news-li-desc{
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    margin-bottom: 16px;
}
.news-li-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 100%;
}
.news-li-date{
    font-size: 12px;
    color: #000000;
    opacity: 0.4;
}
.news-li-more{
    display: flex;
    align-items: center;
}
.news-li-more span{
    font-size: 12px;
    color: #000000;
    opacity: 0.4;
}
.news-li-more img{
    width: 14px;
    margin-left: 4px;
}
.news-li:hover{
    background: #ddd;
}
.news-li:hover .news-li-more span{
    color: #7C2121;
    opacity: 1;
}
.news-li:hover .news-li-more img{
    display: none;
}
.news-li:hover .news-li-more img:last-child{
    display: inline-block;
}
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination a{
    padding: 5px 10px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid rgba(48, 55, 80, 0.08);
    margin: 0 5px 10px;
    font-size: 14px;
    transition: all 0.5s;
}
.pagination .actiive{
    background: #7C2121;
    color: #FFFFFF;
}
.pagination a:hover{
    background: #7C2121;
    color: #FFFFFF;
}

.return{
    margin: 40px 0 20px;
    display: flex;
    justify-content: flex-end;
}
.return a{
    width: 120px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #7C2121;
    border-radius: 20px;
    font-size: 16px;
    color: #7C2121;
    transition: all 0.5s;
}
.return a:hover{
    color: #FFFFFF;
    background: #7C2121;
}
.detail-tit{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}
.detail-tit span{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.detail-tit .publishTime{
    font-size: 14px;
    color: #999;
    font-weight: normal;
    margin-top: 10px;
}
.detail-next{
    font-size: 16px;
}
.business-con .detail-next p{
    margin-bottom: 10px;
}
.detail-next p:hover{
    text-decoration: underline;
    color: #7C2121;
}
.detail img{
    max-width: 100%;
}

.tab{
    height: 80px;
    background: #FFFFFF;
}
.tab-wrapper{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}
.tab-item{
    flex: 1;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    line-height: 100%;
    font-size: 16px;
    transition: all 0.5s;
    justify-content: center;
    margin-right: 20px;
}
.tab-item:last-child{
    margin-right: 0;
}
.tab-active{
    background: #7C2121;
    color: #fff;
}
.tab-item:hover {
    color: #7C2121;
}
.tab-active:hover{
    color: #FFFFFF;
}

.business{
    margin-bottom: 60px;
}
.business-tit{
    margin: 40px 0 20px 0;
}
.business-con{
    padding: 40px;
    background: #FFFFFF;
    border-radius: 12px;
    font-size: 18px;
    line-height: 30px;
}
.business-con p{
    margin-bottom: 20px;
}
.business-con p:last-child{
    margin-bottom: 0;
}

.comment-desc{
    margin-bottom: 45px;
}
.comment-tit{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #F5F5F5;
}
.comment-tit span{
    border-bottom: 4px solid #7C2121;
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
}
.comment-select{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.comment-select span{
    margin: 0 30px;
}
.comment-con{
    display: flex;
    justify-content: space-between;
}
.comment-li{
    width: calc((100% - 160px)/5);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F5F5F5;
    border-radius: 8px;
    padding: 16px;
}
.comment-li-num{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #7C2121;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    margin-bottom: 20px;
}
.comment-li-text{
    font-size: 15px;
    text-align: center;
}

.charges{
    display: flex;
    justify-content: center;
}
.charges img{
    max-width: 100%;
}

.format-img{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.format-img img{
    max-width: 100%;
}
.format-print{
    width: 112px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #88151C;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    font-size: 16px;
    color: #7C2121;
    transition: all 0.5s;
}
.format-print:hover{
    background: #7C2121;
    color: #FFFFFF;
}

.agent-tit{
    display: flex;
    background: #7C2121;
    border-radius: 2px;
    margin-bottom: 1px;
    align-items: center;
    padding: 7px 36px;
    color: #FFFFFF;
    font-size: 16px;
}
.agent-li{
    display: flex;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #F0F0F0;
    margin-bottom: 1px;
    align-items: center;
    padding: 6px 36px;
    font-size: 16px;
    transition: all 0.5s;
}
.agent-li:hover{
    background: #ddd;
}
.agent-td-1{
    width: 142px;
    margin-right: 10px;
}
.agent-td-2{
    width: 114px;
    margin-right: 10px;
}
.agent-td-3{
    width: 574px;
    margin-right: 15px;
}
.agent-td-4{
    flex: 1;
}
.agent-li p{
    margin-bottom: 10px;
}

.message{
    width: 650px;
    margin: 0 auto;
    max-width: 100%;
}
.message-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.message-item label{
    font-size: 16px;
    line-height: 44px;
}
.message-item input{
    flex: 1;
    height: 44px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #E6E6E6;
    padding: 0 20px;
    font-size: 16px;
}
.message-item textarea{
    flex: 1;
    height: 90px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #E6E6E6;
    padding: 10px 20px;
    font-size: 16px;
    resize: none;
}
.message button{
    width: 100%;
    background: #7C2121;
    border: 0;
    height: 44px;
    border-radius: 2px;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.5s;
}
.message button:hover{
    background: #641515;
}

.stamp-td-1{
    width: 180px;
    margin-right: 10px;
}
.stamp-td-2 {
    flex: 1;
}

.silver-desc{
    font-size: 16px;
    color: #7C2121;
    margin: 20px 0 60px;
    line-height: 20px;
}
.silver-desc-2{
    margin: 20px 0 0;
}
.silver-tit-2{
    flex: 1;
    text-align: center;
}

.rate-img{
    height: 100px;
    padding: 0 20px;
    background: url("../img/bg5.png") no-repeat center center;
    background-size: cover;
    font-size: 30px;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquire-top{
    margin-bottom: 40px;
}
.search{
    width: 100%;
    display: flex;
    height: 44px;
}
.search span{
    width: 120px;
    height: 44px;
    background: #BA151B;
    border-radius: 100px 0 0 100px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    line-height: 100%;
}
.search div{
    width: 60px;
    height: 44px;
    background: #BA151B;
    border-radius: 0 100px 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    cursor: pointer;
}
.search div img{
    width: 24px;
}
.search div:hover{
    background: #9A080E;
}
.search input{
    flex: 1;
    height: 44px;
    font-size: 16px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid #BA151B;
}
.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;
}

.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 #7C2121;
    font-size: 16px;
    color: #7C2121;
    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: #7C2121;
    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;
}

/* footer */
.footer{
    background: #28292B;
}
.footer-top{
    height: 90px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 40px;
}
.footer-list{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-li{
    font-size: 17px;
    color: #FFFFFF;
    opacity: 0.8;
    transition: all 0.5s;
}
.footer-li:hover{
    opacity: 1;
}
.footer-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-left-item{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.footer-left-item:last-child{
    margin-bottom: 0;
}
.footer-left-item img{
    width: 16px;
    margin-right: 10px;
}
.footer-left-item span {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 100%;
}
.footer-right{
    display: flex;
}
.footer-right-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}
.footer-right-item img{
    width: 100%;
    margin-bottom: 6px;
}
.footer-right-item span{
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 0 10px;
}
.footer-right-item:last-child{
    margin-left: 40px;
}
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}
.footer-bottom span, .footer-bottom a{
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 100%;
    transition: all 0.5s;
}
.footer-bottom span{
    margin-bottom: 15px;
}
.footer-bottom a:hover{
    color: #FFFFFF;
}

/* mainBusiness*/
.main{
    padding: 80px 0;
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 60px;
}
.main-logo{
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    padding: 0 10px;
}
.main-logo img{
    max-width: 100%;
}
.main-test{
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 50px;
    padding: 0 40px;
}
.main-test p{
    margin-bottom: 20px;
    line-height: 25px;
    text-indent: 2em;
}
.main-tit1{
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
.main-tit1 span{
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    border-bottom: 8px solid #7C2121;
    letter-spacing: 2px;
    line-height: 100%;
    padding-bottom: 8px;
}
.main-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-img img{
    width: 47%;
}
.main-item{
    padding: 0 40px;
    margin-bottom: 160px;
}
.main-img2 img{
    width: 100%;
}
.main-con1{
    margin-bottom: 60px;
}
.main-tit2{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 60px;
}
.main-tit2 span:first-child{
    font-size: 40px;
    font-weight: bold;
    line-height: 100%;
    margin-bottom: 8px;
}
.main-tit2 span:last-child{
    font-size: 20px;
    font-weight: bold;
    line-height: 100%;
    color: #BB1E21;
}
.main-c-tit{
    display: flex;
    margin-bottom: 60px;
}
.main-c-tit span{
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    border-bottom: 8px solid #BB1E21;
    letter-spacing: 2px;
    line-height: 100%;
    padding-bottom: 5px;
}
.main-c{
    padding: 0 60px;
    margin-top: 80px;
    margin-bottom: 100px;
}
.main-c-list{

}
.main-c-li {
    width: 574px;
    margin: 0 auto 80px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-c-li img{
    max-width: 100%;
    margin-bottom: 10px;
}
.main-c-li-tit{
    font-size: 28px;
    font-weight: bold;
    line-height: 100%;
    margin-bottom: 20px;
}
.main-c-li p{
    font-size: 18px;
    letter-spacing: 3px;
    text-indent: 2em;
}
.main-c-img{
    display: flex;
    justify-content: center;
}
.main-c-img img{
    width: 60%;
}
.main-d{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 10px;
}
.main-d img{
    max-width: 100%;
    margin-bottom: 60px;
}
.main-e{
    margin-bottom: 80px;
}
.main-f{
    display: flex;
    justify-content: center;
}
.main-f img{
    max-width: 70%;
}
.main-tit3{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
.main-tit3 img{
    width: 100px;
    margin-bottom: 10px;
}
.main-tit3 span{
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    line-height: 100%;
}
.main-tit3 span:last-child{
    font-size: 18px;
    color: #8C8C8C;
    margin-top: 5px;
}
.main-g{
    padding: 0 40px;
    margin-top: 40px;
}
.main-g-li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.main-g-li img{
    width: 40px;
    margin-right: 20px;
}
.main-g-tit{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.main-g-desc{
    font-size: 18px;
    line-height: 25px;
}
.main-qr{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-top: 160px;
}
.main-qr img{
    width: 200px;
    margin-bottom: 10px;
}
.main-qr span{
    font-size: 30px;
    font-weight: bold;
}
.main-i{
    display: flex;
    padding: 0 40px;
    margin-bottom: 40px;
    align-items: center;
}
.main-i img{
    width: 300px;
}
.main-j{
    display: flex;
    padding: 0 40px;
    align-items: center;
    margin-bottom: 100px;
}
.main-j-left{
    font-size: 18px;
    letter-spacing: 3px;
    width: 50%;
    margin-right: 40px;
}
.main-j-left p{
    margin-bottom: 20px;
    text-indent: 2em;
    line-height: 25px;
}
.main-j-right{
    width: 45%;
}
.main-j-right img{
    width: 100%;
}
.main-k {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 40px;
    margin-bottom: 40px;

}
.main-k-top{
    position: relative;
    font-size: 40px;
}
.main-k-top span{
    font-family: 华文中宋,serif;
    font-weight: bold;
}
.main-k-top img{
    width: 150px;
    position: absolute;
    top: -25px;
    right: -60px;
}
.main-k-bottom{
    font-family: 华文中宋,serif;
    font-size: 18px;
    color: #97928B;
    margin-top: 5px;
}
.main-l{
    display: flex;
    align-items: center;
    padding: 0 40px;
    margin-bottom: 100px;
}
.main-l img{
    width: 100%;
}
.main-m{
    display: flex;
    align-items: flex-start;
    padding: 0 40px;
    justify-content: space-between;
    margin-bottom: 100px;
}
.main-m-left{
    width: 52%;
}
.main-m-right{
    width: 39%;
}
.main-m-right img{
    width: 100%;
}
.main-tit4{
    display: flex;
    align-items: center;
}
.main-tit4-pot{
    width: 30px;
    height: 30px;
    background: #AA4747;
    border-radius: 50%;
    margin-right: 30px;
}
.main-tit4-con{
    display: flex;
    flex-direction: column;
}
.main-tit4-con span{
    font-size: 36px;
    font-weight: bold;
    font-family: 华文中宋,serif;
}
.main-tit4-con span:last-child{
    font-size: 20px;
    color: #8C8C8C;
    font-weight: normal;
}
.main-m-1{
    font-size: 30px;
    font-weight: bold;
    font-family: 华文中宋,serif;
    color: #A94847;
    margin-bottom: 10px;
    margin-top: 30px;
}
.main-m-2{
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 60px;
}
.main-m-3{
    margin-top: 30px;
}
.main-m-3 img{
    width: 100%;
}
.main-n{
    padding: 0 40px;
}
.main-n-1{
    font-size: 24px;
    margin-bottom: 40px;
    margin-top: 10px;
}
.main-n-2{
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}
.main-n-2-li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.main-n-2-li img{
    width: 45px;
    margin-right: 20px;
}
.main-n-2-li-tit{
    display: flex;
    flex-direction: column;
}
.main-n-2-li-tit span{
    font-size: 22px;
    font-weight: bold;
    font-family: 华文中宋,serif;
    color: #A94847;
}
.main-n-2-li-tit span:last-child{
    color: #8C8C8C;
    font-size: 14px;
    font-weight: normal;
}
.main-n-2-li-desc{
    font-size: 20px;
    line-height: 30px;
}
.main-n-2-left{
    width: 70%;
}
.main-n-2-right{
    width: 30%;
    margin-left: 20px;
}
.main-n-2-right img{
    width: 100%;
}
.main-o{
    margin-top: 30px;
}
.main-o-1{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.main-o-1-left{
    width: 94%;
}
.main-o-1-right{
    width: 6%;
}
.main-o-1-right img{
    width: 100%;
}
.main-o-1-left{
    padding: 0 40px;
}
.main-o-li{
    margin-bottom: 100px;
}
.main-o-li-tit{
    display: flex;
    align-items: center;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 100%;
    padding: 0 20px;
}
.main-o-li-tit span:first-child{
    width: 8px;
    height: 28px;
    background: #A94847;
    margin-right: 10px;
}
.main-o-li-con{
    display: flex;
    align-items: stretch;
}
.main-o-li-con img{
    width: 40%;
    margin-right: 30px;
    object-fit: cover;
}
.main-o-li-desc{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-o-li-desc-tit{
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 100%;
}
.main-o-li-desc-top{
    font-size: 20px;
    line-height: 30px;
}
.main-o-li-desc-bottom{
    font-size: 18px;
    font-weight: bold;
}
.main-p{
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}
.main-p img{
    width: 850px;
    max-width: 100%;
}
.main-q{
    padding: 0 10px;
    width: 900px;
    margin: 0 auto;
    max-width: 100%;
}
.main-q-li{
    display: flex;
    align-items: stretch;
    border: 1px solid #A94847;
    padding: 10px;
    margin-bottom: 30px;
}
.main-q-left{
    width: 35%;
    padding-right: 10px;
    border-right: 1px solid #A94847;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.main-q-left img{
    width: 100%;
    margin-bottom: 30px;
}
.main-q-right{
    width: 65%;
}
.main-q-name{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 5px;
    padding: 0 10px;
}
.main-q-name span:last-child{
    font-size: 18px;
    letter-spacing: 1px;
    color: #A94847;
}
.main-q-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.main-q-top{
    font-size: 20px;
    line-height: 30px;
    text-indent: 2em;
    margin-bottom: 30px;
}
.main-q-bottom{
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
}
.main-q-bottom-tit{
    color: #A94847;
    margin-bottom: 10px;
}
.main-r{
    padding: 0 10px;
    width: 840px;
    margin: 60px auto 0;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
}
.main-r img{
    width: 260px;
}
.main-s{
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}
.main-s-top{
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
.main-s-top img{
    width: 100%;
}
.main-s-con1{
    padding: 0 40px;
    margin-bottom: 100px;
}
.main-s-tit{
    font-size: 30px;
    font-weight: bold;
    color: #863D38;
    margin-bottom: 40px;
}
.main-s-img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-s-img img{
    width: 70%;
}
.main-s-img2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}
.main-s-img2 img{
    width: 100%;
}
.main-s-img3{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.main-s-img3 img{
    width: 260px;
}
.main-s-text{
    margin-bottom: 100px;
}
.main-s-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.main-s-item img{
    width: 25px;
    margin-right: 10px;
}
.main-s-item-tit{
    font-size: 28px;
    font-weight: bold;
    color: #863D38;
    line-height: 100%;
    margin-bottom: 5px;
}
.main-s-item-desc{
    font-size: 24px;
    font-weight: bold;
}
.main-s-tip{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
}
.main-s-foot-top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.main-s-foot-item{
    width: 20%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.main-s-foot-item img{
    width: 100%;
    margin-bottom: 10px;
}
.main-s-foot-item span{
    font-size: 24px;
    font-weight: bold;
}
.main-s-foot-bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-s-foot-bottom img{
    width: 120px;
    margin-bottom: 20px;
}
.main-s-foot-bottom span {
    font-size: 24px;
    font-weight: bold;
}
.main-s-foot-item a{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    background: #A94847;
    border-radius: 100px;
    margin-top: 10px;
}