* {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-smooth: always;
    /* 启用字体平滑 */
    -webkit-font-smoothing: antialiased;
    /* 在一些WebKit浏览器中启用字体抗锯齿 */
    -moz-osx-font-smoothing: grayscale;
    /* 在一些Firefox浏览器中启用字体抗锯齿 */
    font-family: "Microsoft YaHei", 微软雅黑, Helvetica, Arial,  sans-serif;
    font-size: 16px;
}
p{
    margin-bottom: 0;
    font-weight: 300;
    line-height: 28px;
}
a{
    text-decoration: none; 
}
h2{
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
}
/* 平滑滚动 */
#main-scrollbar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.scrollbar-thumb{
    background-color: rgba(0,0,0,0.5);
}

.scrollbar-track-y{
    width: 5px !important;
    background-color: rgba(0,0,0,0.2) !important;
}


/* ==翻页样式== */
.pagesinfo {
    color: #555555;
    font-size: 12px;
}

.pagesnow {
    color: #D07E36;
    font-size: 14px;
    text-decoration: none
}

.pages {
    color: #777777;
    font-size: 14px;
    text-decoration: none
}

/*首页轮播*/
.swiper div.swiper-wrapper{
    height: auto;
}

.swiper-slide img{
    width: 100%;
}

/*主导航*/

#mainMenu a{
    color: #000;
    padding-bottom: 20px;
}
#mainMenu a:hover{
    color: #861c20;
}
#mainMenu ul{
    list-style-type: none;
    float: inline-end;
    margin: 0;
}

#mainMenu ul li{
    position: relative;
    overflow: hidden;
    z-index: 999;
    margin-left: 35px;
}

.caidan0 .active .mainLink a {
    font-family: 'poppinsbold';
    border-bottom: 5px solid #861c20;
}
#mainMenu ul li:hover .secondMenu{
    /*二级导航动画*/
    opacity: 1;
    transform: scale(1) translateY(0);
    /*二级导航动画*/
}

#mainMenu ul li:hover{
    overflow: initial;
}
.yuyan b{
    border-left: 1px solid #ccc;
    padding-left: 25px;
    margin-left: 25px;
}
#mainMenu .caidan0 .secondMenu{
    position: absolute;
    left: -30px;
    top: 49px;
    background: #fff;
    padding: 25px 0 25px 0;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    /*二级导航动画*/
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
    /*二级导航动画*/
}
#mainMenu .caidan0 .secondMenu a{
    display: block;
    width: 100%;
    white-space: nowrap;
    transition: all 0.3s;
    line-height: 40px;
    padding: 0 30px;

}
#mainMenu .caidan0 .secondMenu a:hover{
    background-color: #000;
    color: #fff;
}
.mobile-li i.icon{
display: none;
}
.offcanvas-body .mobile-li a{
display: flex;
justify-content: space-between;
}
.offcanvas-body .mobile-li i.icon{
display: inline-block;
}
.offcanvas-body .mobile-li>div{
display: none ;
}
#mainMenu {
    position: fixed;
    z-index: 999;
}
.caidan0 {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5rem);
    border-radius: 100px;
    margin-top: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    padding: 13px 30px 0 30px;
}
.mini_top .caidan0 {
    margin-top: 0;
}
.caidan0 img{
    padding-top: 7px;
    display: block;
    position: absolute;
}
.carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
#lbwenzi{
	transform: translatey(100px);
	transition: all 2s ease;
	opacity: 0;
}
#lbwenzi h1{
    margin: 0;
    background-color: #000;
    padding: 10px 20px 5px 20px;
    display: inline;
}
.carousel-item.active #lbwenzi{
    transform: translatey(0px);opacity: 1  
}
.carousel-item #lbwenzi{
    text-align: center;
    bottom: 20%;
    z-index: 1;
}
.w-100 {
    transform: scale(1.2);
    /* 应用缩放动画 */
    animation: scaleDown 3s ease-out forwards;
}
/* 定义缩放动画 */
@keyframes scaleDown {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}
.carousel-control-next, .carousel-control-prev{
    width: 4%!important;
}
.carousel .carousel-indicators .active {
    opacity: 1;
    width: 22px!important;
}
 .carousel .carousel-indicators [data-bs-target]{
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border-top: none;
    border-bottom: none;
}

.a{
 padding: 15px 50px;
 text-align: center;
 background-color: #000;
 color: #fff;
 border-radius: 100px;
 font-weight: bold;
 transition: all .3s ease-in-out;
}
.a:hover{
    padding: 15px 70px;
}

#shipin{
    padding: 0;
    overflow: hidden;
    height: 100vh;
    position: relative;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}    

/* #shipin:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0c2438 0%, rgba(0, 0, 0, 0.3) 25%, rgba(0, 0, 0, 0) 70%);
} */

/* 1. 动画定义：从下方隐藏状态过渡到正常显示状态 */
@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.wenzi {
  position: absolute;
  bottom: 40%;
  left: 0;
  width: 100%;
  animation: slideUp 1s ease-out forwards; 
  opacity: 0;
  z-index: 10;
}
#shipin {
  position: relative; 
  overflow: hidden; 
}
.wenzi h1 {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFF;
}

.wenzi p {
  color: #fff;
  font-weight: 300;
  opacity: 0.7;
  text-transform: uppercase;
  display: block;
  margin-bottom: 50px;
}

#fn{
   margin-top: 80px;
}
#fn .fn1{
    text-align: center;
}
#fn .fn1 img{
    display: block;
    margin: 0 auto;
}
#fn .fn1 .img{
    padding-bottom: 20px;
}
.div{
    padding: 8px 25px;
    border: 1px solid #e2e8f0;
    color: #000;
    display: inline;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    background-color: #f8fafc;
}
.h2{
    padding-top: 15px;
    padding-bottom: 35px;
    line-height: 40px;
}
#fn .fn1 .row .col-lg-4 img{
    width: 100%;
    transition: all .3s ease-in-out;
}
#fn .fn1 .row .col-lg-4:hover img {
    transform: scale(1.1);
}
#fn .fn1 .row a{
    display: block;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
#fn .fn1 .row a h1{
   position: absolute;
    z-index: 999;
    color: #fff;
}
#fn h1{
    font-size: 32px;
    font-weight: bold;
}
#fn .fn1 .row{
   margin-bottom: 15px;
}
#fn .fn2{
    padding-top: 55px;
    color: #666;
}

#fw{
    margin-top: 60px;
}
#fw .fl a{
    padding: 10px 20px;
    background-color: #f8fafc;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    margin-left: 3px;
    color: #000;
    transition: all .3s ease-in-out;
    font-weight: 300;
}
#fw .fl a i{
    font-size: 17px;
}
#fw .fl a:hover{
    background-color: #000;
    color: #fff;
    border: 1px solid #000000;
}
#fw .fl{
    padding-top: 55px;
}
#lb2 .lb{
    display: flex;
    overflow: hidden;
    width: 100%;
    transition: all 0.4s ease;
    align-content: center;
    align-items: center;
}
#lb2 .tu {
    width: 50%;
    display: block;
    overflow: hidden;
    float: left;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}
#lb2 .tu img{transition: all 0.4s ease;}
#lb2:hover .tu img{
    transform: scale(1.1);
}
#lb2 .lb .wz{
    width: 50%;
    float: left;
    padding: 0 80px;
}
#lb2 .lb .wz p{
    color: #666;
}
 #lb2 .lb a{
    width: 50%;
    text-decoration: none;
    bottom: 60px;
    right: 0;
    color: #000;
    margin-top: 30px;
    font-weight: 300;
    display: block;
    overflow: hidden;
}
 #lb2 .lb a i{
    transition: all 0.4s ease;
    font-size: 12px;
 }
#lb2 .lb a:hover{
    color: #861c20;
} 
#lb2 .lb a:hover i{
    margin-left: 10px;
    transform: rotate(45deg);
} 
#lb2 .wz h3{
    padding-bottom: 15px;
}

#lb2 .owl-item{
    background-color: #f8fafc;
    border-radius: 20px;

}
#lb2 .owl-nav{
    margin-top: 25px;
}
#lb2 .owl-nav span {
    display: block;
    width: 35px;
    height: 35px;
    color: #000;
    border: 1px solid #e2e8f0;
    font-size: 25px;
    background-color: #f8fafc;
    border-radius: 100px;
    line-height: 29px;
    transition: all .3s ease-in-out;
}
#lb2 .owl-nav span:hover{
    color: #fff;
    border: 1px solid #000;
    background-color: #000;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: none!important;
    color: #FFF;
    text-decoration: none;
}
#lb2 .owl-dots{
    padding-top: 30px;
    display: none;
}
/* .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #861c20;
    width: 20px;
}
.owl-theme .owl-dots .owl-dot span{
    margin: 3px 4px;
} */

#wl{
    background-color: #f8fafc;
    border-radius: 50px;
    margin-top: 50px;
    padding: 80px 0;
    
}
#wl p{color: #666;}
#wl img{
    max-width: 100%;
}
#wl .row{
    position: relative;
}
#wl .row .wl1{
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 16px;
}


#xw .xw1{
    text-align: center;
    margin-top: 80px;
    color: #000;
}
#xw .fang .xwtu img{
    width: 100%;
    transition: all 0.4s ease;
}
#xw .fang .xwtu {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
#xw .fang .xwtu div{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 40px;
    color: #fff;
    font-weight: 300;
    border-top-right-radius: 20px;
}
#xw .fang  .sj p{
    display: block;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    color: #666;
    margin-top: 35px;
    
}
#xw .fang h4{
    display: block;
    overflow: hidden;
    color: #000;
    width: 100%;
    line-height: 32px;
    padding-top: 5px;
}
#xw .fang:hover img{
    transform: scale(1.1);
}
#xw .fang .xian{
    width: 100%;
    height: 1px;
    background-color: #e2e8f0;
    margin-top: 35px;
    position: relative;
}
#xw .fang .xian::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 10%;
    height: 5px;

    z-index: 1;
    transition: all 0.4s ease;
}
#xw .fang:hover .xian::before{
    width: 100%;
     background:#861c20;
}

#jr{
    background-image: url(bj1.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
    position: relative;
    margin-top: 80px;
    border-radius: 50px;
    color: #fff;
}
#jr:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, #000000 0%, rgb(0, 0, 0, 0.2) 15%, rgba(0, 0, 0, 0.1) 50%); */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
}
#jr .container{
    z-index: 9;
}
#jr .div{
    border: 1px solid #cbd6db;
    color: #cbd6db;
   background-color: transparent;
}
#jr a{
    color: #FFF;
    border-bottom: 5px solid #861c20;
    width: auto;
    margin: auto;
    padding: 0;
    transition: all 0.4s ease;
    font-weight: 300;
}
#jr a:hover{
    color: #861c20;
}

/*底部*/
#dibu{
    background-color: #f8fafc;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
#di{
    color: #666;
    padding-top: 55px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 300 !important;
}
#di h2{
    font-size: 16px;
    font-weight: bold;
    color: #000;
}
#di .di1 p{
    display: block;
    overflow: hidden;
    width: 100%;
    padding-top: 20px;
    text-align: justify;
    font-weight: 300 !important;
        line-height: 24px;
    font-size: 14px;
}
#di .di1 span{
    float: left;
    color: #000;
    font-size: 16px;
    line-height: 26px;
    padding-left: 16px;
    font-weight: bold;
}
#di .di1  img{
    float: left;
}
#di .di2 a{
    display: block;
    overflow: hidden;
    width: 100%;
    color: #6a6a6a;
    position: relative;
    transition: all .3s ease-in-out;
    font-weight: 300 !important;
        line-height: 24px;
    font-size: 14px;
}
#di .di2 a i{
    display: none;
}
#di .di2 a:hover{
    color: #861c20;
    padding-left: 20px;
}
#di .di2 a:before{
    content: '';
    position: absolute;
    width: 0;
    height: 5px;
    left: 0;
    top: 12px;
    background-color: #861c20;
    transition: all .3s ease-in-out;
}
#di .di2 a:hover:before{
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    left: 0;
    top: 12px;
    background-color: #861c20;
}
#di .di3 a{
    color: #000;
    border-bottom: 5px solid #861c20;
    padding-bottom: 1px;
        font-weight: 300;
    font-size: 16px;
    transition: all .3s ease-in-out;
}
#di .di3 a:hover{
    color: #861c20;
}
#di .di3 p{
    display: block;
    overflow: hidden;
    padding-bottom: 25px;
    font-weight: 300 !important;
    line-height: 24px;
    font-size: 14px;
}
#di .di4 p{
    font-size: 14px;
    line-height: 24px;
}
#di .di4 h1{
    font-size: 27px;
    font-weight: bold;
    color: #000;
    font-family: emoji;
}
#di .di4 img{
    width: 42%;
    float: left;
        padding-top: 13px;
}
#di .di4 div{
    padding-left: 50%;
    float: initial;
}
#di5{
    border-top: 1px solid #e2e8f0;
    padding: 25px 0px;
    margin-top: 60px;
    
}
#di5 p{
font-size: 14px!important;
}

#di5 #test{
    cursor: pointer;
    font-size: 14px;
}
#di5 #test i{
    color: #b50005;
}
#di5 a{
    color: #777;
}

.dropmenu0_b .iconfont{display: none}
.dropmenu2_b .iconfont {display: none;}
.dropmenu4_b .iconfont{display: none}
.dropmenu6_b .iconfont {display: none;}

.dropmenu2_b  .secondMenu {display: none;}
.dropmenu4_b  .secondMenu {display: none;}

.banner img{
    width: 100%;
}
.banner{
    display: block;
    overflow: hidden;
    height: 590px;
    position: relative;
    margin-bottom: 65px;
        border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.w-100 {
    transform: scale(1.2);
    height: 590px;
    /* 应用缩放动画 */
    animation: scaleDown 3s ease-out forwards;
}
/* 定义缩放动画 */
@keyframes scaleDown {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}
.banner h1{
        z-index: 9;
    text-align: center;
    color: #fff;
    position: absolute;
    width: 100%;
    top: 40%;
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
#fnfl{
    position: absolute;
    bottom: 28px;
    text-align: center;
    width: 100%;
        z-index: 9;
}
#fnfl a{
    border-radius: 100px;
    padding: 12px 30px;
    margin-left: 8px;
    backdrop-filter: blur(1rem);
    display: inline-block;
    color: #fff;
    font-weight: 300;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    background-color: #fff3;
}
#fnfl a:hover{
    font-weight: bold;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

#fncp .cp{
    margin-bottom: 25px;
}
#fncp .cp div{
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
#fncp .cp:hover img{
    transform: scale(1.1);
}
#fncp .cp div img{
    width: 100%;
    height: auto;
    transition: all .3s ease-in-out;
}
#fncp .cp div span{
    position: absolute;
    top: 15px;
    left: 15px;
}
#fncp .cp div span p{
    padding: 2px 12px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    float: left;
    margin-right: 5px;
    border-radius: 100px;
    font-size: 14px;
    margin-bottom: 5px;
}
#fncp .cp p:empty {
  /* 隐藏空的 <p> 标签 */
  display: none;
}
#fncp .cp h4{
    display: block;
    overflow: hidden;
    background-color: #f8fafc;
    color: #000;
    font-size: 20px;
    padding: 35px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
#fncp .cp h4 i{
    float: right;
    font-size: 14px !important;
    padding-top: 4px;
    color: #c8c8c8;
}
#fncp .cp:hover h4 i{
    color: #861c20;
}

#fnxw .newsquery{
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 50px;
    margin-bottom: 50px;
    color: #000;
    position: relative;
    transition: all 0.5s;
}
#fnxw .newsquery .sj{
    position: absolute;
        left: calc(var(--bs-gutter-x)* .5);
    bottom: 40px;
}
#fnxw .newsquery .sj p{
    display: block;
    overflow: hidden;
    float: left;
    margin-right: 20px;
}
#fnxw .newsquery .zuo{
    float: left;
    width: 55%;
}
#fnxw .newsquery .zuo h3{
    line-height: 37px;
}
#fnxw .newsquery .zuo div{
    font-weight: 300;
    line-height: 28px;
    color: #666;
    margin-top: 30px;
}
#fnxw .newsquery .you{
    float: right;
    width: 30%;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}
#fnxw .newsquery .you img{
    width: 100%;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}
#fnxw .newsquery:hover .you img{
    transform: scale(1.1);
}
#fnxw .newsquery:hover{
    transform: translateY(-10px);
}

 .banner h1 .span1 {
    display: none;
}
.navLink{
    font-size: 55px;
    color: #fff;
}

#xwxq{
   /* background: linear-gradient(to top, rgb(217, 220, 224), rgba(255, 255, 255, 0.2)); */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 64px;
    background: #021c3a;
    color: #b9c7d8;
    min-height: 380px;
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    padding-top: 80px;
}
#xwxq1 p{
    margin-bottom: 20px;
}
#xwxq1 img{
    display: block;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}
.next_pre{
    margin-bottom: 50px; 
    line-height: 28px;
}
.next_pre .col-12{font-weight: 300 !important;}
.next_pre a{
    color: #000;
    font-weight: 300;
}

.xwbt{
    background-color: #021c3a;
    color: #fff;
    display: block;
    overflow: hidden;
    line-height: 65px;
    padding-left: 2%;
    border-radius: 10px;

}
.xwbt span{
    width: 90%;
    display: block;
    float: left;
    font-size: 16px;
    font-weight: 300;
    padding-left: 35px;
}
.xwbt p{
    width: 10%;
    display: block;
    float: right;
    line-height: 65px;
}
.rc{
    background-color: #f8fafc;
    display: block;
    padding-left: 2%;
    padding-top: 20px;
    padding-bottom: 40px;
    border-radius: 10px;
    border-bottom: 1px dotted #d6dfeb;
}
.rc:hover{
        box-shadow: 0px 0px 12px rgb(0 0 0 / 15%);
    z-index: 999!important;
}
.rc:hover h3{
    color: #861c20;
}
.rc h3{
    display: block;
    overflow: hidden;
    width: 90%;
    float: left;
    font-size: 16px;
    color: #000;
    font-weight: 300;
    padding-left: 35px;
}
.rc span{
    background-color: #f7f8f9;
    display: block;
    overflow: hidden;
    color: #666;
    float: left;
    font-weight: 300;
}

#rca p{
    padding: 20px 0;
}
#rca strong{
    margin-right: 20px;
}
#rca strong em{
    color: #861c20;
    margin-right: 4px;
    line-height: 30px;
}
#rca img{
    width: 100%;
    border-radius: 20px;
}
#rca{
    margin-bottom: 35px;
        text-align: center;
}
#rca h2{
    padding-bottom: 15px;
}
.xqnr{
    padding-bottom: 65px;
}
#zhaop span{
    padding-top: 40px;
    padding-bottom: 40px;
    display: block;
    line-height: 28px;
}
#zhaop span .cppropname{
    margin-right: 8px;
}
#zhaop{
    margin-bottom: 65px;
}
#zhaop .zhaop2{
    background-color: #f8fafc;
    padding: 65px;
    border-radius: 20px;
}


#lba{
    margin-top: 30px;
}
#lba .owl-nav{
    display: none;
}
#lba .owl-dots{
    margin-top: 20px!important;
}
#cpxq .cpxqz{
    text-align: center;
}
#cpxq .cpxqz .cs{
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cs li.hidden {
    display: none !important;
}
#cpxq img{
    border-radius: 20px;
}
#cpxq h2{
    padding-bottom: 35px;
}
#cpxq p{
    padding-bottom: 30px;
}
#cpxq li{
    list-style-type: none;
    width: auto;
    float: right;
    margin-right: 5px;
    background-color: #000;
    border-radius: 100px;
    padding: 7px 20px;
    color: #fff;
}
#cpxq li strong{
    display: none;
}
#cpxq .nr{
   padding-top: 48px;
    display: block;
    overflow: hidden;
    width: 100%;
}
#cpxqx{
    padding: 65px 0;
    background-color: #021c3a;
    border-radius: 50px;
    color: #566a81;
    margin-top: 65px;

}
#cpxqx strong{
    font-weight: bolder;
    font-size: 18px;
    padding-bottom: 8px;
    display: block;
    color: #b9c7d8;
}
#gsfl {
    margin-bottom: 65px;
}
#gsfl img{
    width: 100%;
    border-radius: 20px;
}
.gsf2 {
    background-color: #021c3a;
    width: 49%;
    margin-left: 1%;
    border-radius: 20px;
    color: #566a81;
    padding: 70px;
    position: relative;
}
.gsf2 span{
    position: absolute;
    left: 70px;
    bottom: 70px;
}
.gsf2 strong{
    margin-right: 10px;
}
.gsf2 h4{
    color:#b9c7d8;
}

#fnlx .col-12 div{
    background-color: #f8fafc;
    text-align: center;
    border-radius: 20px;
    color: #000;
    padding: 40px 0;
    margin-top: 40px;
    transition: all 0.5s;
}
#fnlx .col-12 div:hover{
    transform: translateY(-10px);
}
#fnlx .col-12 div i{
        color: #000;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    font-size: 40px;
}
#fnlx .col-12 div p{
    line-height: 20px;
}
#ditu{
    margin-top: 75px;
    overflow: hidden;
    padding: 0;
}

#fw1{
    background-color: #f8fafc;
    padding: 70px 0;
    margin-bottom: 70px;
}

.h22{
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 25px;
    margin-bottom: 35px;
}
.h22::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 5px;
    background-color: #861c20;
}
#fw1 img{
    border-radius: 20px;
    width: 100%;
}
#fw1  span{
    display: block;
    overflow: hidden;
    float: left;
    border-right: 1px solid #e2e8f0;
    padding-right: 15px;
    margin-right: 15px;
}
#fw1 video{
    border-radius: 20px;
}
.fwcq {
    position: relative;
}
.fwcq .td{
    position: absolute;
    bottom: 0;
    left: 0;
}

#fw12 .sb{
    background-color: #021c3a;
    color: #fff;
    padding: 70px 45px;
    border-radius: 20px;
}
#fw12 p{
    padding-bottom: 50px;
    color: #566a81;
}
#fw12 i{
    font-size: 14px;
    transition: all 0.3s;
}
#fw12 a{
    color: #fff;
    font-weight: 300;
}
#fw12 a:hover i{
    margin-left: 10px;
}
.fw13 img{
    width: 100%;
    transition: all 0.3s;
}
.fw13 a{
    display: block;
    background-color: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 28px;
}
.fw13 a h2{
    color: #000;
    font-size: 22px;
    padding: 22px 30px 0px 30px;
}
.fw13 a strong{
    padding: 2px 12px;
    background-color: #dbe6f0;
    color: #000;
    float: left;
    margin-right: 5px;
    border-radius: 100px;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 300;
}
.fw13 a p:nth-of-type(2) {
  margin-left: 30px;
}
.fw13:hover{
    transform: translateY(-10px);
}
.fw13{
    transition: all 0.3s;
}
.fw14{
    margin-bottom: 70px;
}
.fw15{
    background-image: url(fw1.jpg);
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 540px;
    color: #FFF;
    position: relative;
    display: flex;
    align-items: center;
}
.fw15::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #021c3a 0%, rgba(21, 47, 92, 0.9) 25%, rgba(21, 47, 92, 0) 70%);
    z-index: 1;
}
.fw15 .container{
    z-index: 9;
}
.fw16{
    background-color: #f8fafc;
    border-radius: 20px;
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 30px 45px;
}
.fw17 p{
    display: block;
    overflow: hidden;
    padding: 12px 22px;
    border: 1px solid #e2e8f0;
    float: right;
    margin-left: 10px;
    border-radius: 100px;
    margin-top: 10px;
}
.fw17 p:hover{
    background-color: #dbe6f0;
}
.fw18 #lb3{
    width: 50%;
}
.fw18 #lb3 img{
    width: 100%;
    border-radius: 20px;
}
.fw18{
    margin-bottom: 70px;
}
.fw19{
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fw19 p{
    padding-bottom: 45px;
}
.fw18 .owl-nav{
    display: none;
}
.fw18 a{
    color: #000;
    font-weight: 300;
}
.fw18 a i{
    font-size: 14px;
    transition: all 0.3s;
}
.fw18 a:hover i{
    padding-left: 10px;
}
.fw18  .owl-dots{
    padding-top: 10px;
}
#jjnr1{
    margin-bottom: 80px;
}
#jjnr img{
    width: 100%;
    border-radius: 20px;
}
#jjnr1 h2{
    padding-bottom: 35px;
}
#jjnr1 span i{
    color: #861c20;
}
#jjnr1 span {
    width: 100%;
    display: block;
    padding: 2px 0;
}
#jjnr1 .p{
    padding-bottom: 35px;
}
#jjnr1 b{
    text-align: center;
    padding-top: 5px;
}
#jjnr1 .col-4{
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
#jjnr1 .col-4 b{
    position: absolute;
    z-index: 999;
    color: #fff;
    font-size: 20px;
    padding-bottom: 20px;

}
#jjwh img{
    display: block;
    float: left;
    transition: all 0.8s;
    width: 14%;
}
#jjwh span{
    display: block;
    overflow: hidden;
    width: 80%;
    padding-left: 5%;
}
#jjwh .col-12:hover img{
    transform: rotateY(360deg);
}
#jjwh .col-12 div{
    background-color: #f8fafc;
    border-radius: 20px;
    padding: 45px 35px;
}
#jjwh{
    margin-top: 70px;
    margin-bottom: 25px;
}
#jjwh1 img{
    width: 100%;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}
#jjwh1:hover img{
transform: scale(1.1);
}
#jjwh1{
    background-color:#f8fafc;
    border-radius: 20px;
    margin-bottom: 70px;
}
.jjwh12{
    padding: 60px;
}
.jjwh12 a {
    color: #000;
    font-weight: 300;
}
.jjwh12 i {
    font-size: 14px;
    transition: all 0.3s;
}
.jjwh12 div{
    padding-bottom: 40px;
}
.jjwh12 a:hover i{
    margin-left: 10px;
}
.jjwh13{
    position: relative;
}
.jjwh13 span{
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 9;
    backdrop-filter: blur(1rem);
    color: #ccc;
    padding: 15px 25px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.jjwh13 div{
    overflow: hidden;
    border-radius: 20px;
}

#fnzr .col-12 div{
    background-color: #f8fafc;
    border-radius: 20px;
    padding: 65px 50px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}
#fnzr .col-12 div:hover{
    transform: translateY(-10px);
}
#fnzr .col-12 div i{
    font-size: 45px;
    background-color: #861c20;
    padding: 10px;
    border-radius: 100px;
    color: #fdd399;
}
#fnzr .col-12 div h4{
    padding-top: 7px;
    margin-bottom: 2px;
}
#fnzr .col-12 div h6{
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
}
#fnzr .col-12 div b{
    position: absolute;
    right: -35px;
    bottom: -50px;
    font-size: 25px;
    opacity: 0;
    transition: all 0.3s;
}
#fnzr .col-12 div:hover b{
    right: 50%;
    bottom: 2%;
    opacity: 0.1;
}
#fnzr{
    padding-bottom: 70px;
}
