/* Colors */
:root {
    --color-white: #F7FAFE;
    --color-default: #5C6982;
    --color-primary: #3B78C3;
    --color-secondary: #BB9D78;
    --color-grey: #efefef;
    --color-dark: #031429;
    --color-linear-gradient: linear-gradient(90deg, #BB9D78, #A58256) center center no-repeat;
    --color-linear-gradient2: linear-gradient(90deg, #538FD9, #3B78C3) center center no-repeat;
}

body {
    color: #666;
    font-size: 16px;
    background-color: var(--color-white);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(---color-default);
    text-decoration: none;
}

.text-nowrap-ellipsis,
.text-nowrap-ellipsis-2,
.text-nowrap-ellipsis-3,
.text-nowrap-ellipsis-4,
.text-nowrap-ellipsis-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text-nowrap-ellipsis {
    -webkit-line-clamp: 1;
}

.text-nowrap-ellipsis-2 {
    -webkit-line-clamp: 2;
}

.text-nowrap-ellipsis-3 {
    -webkit-line-clamp: 3;
}

.text-nowrap-ellipsis-4 {
    -webkit-line-clamp: 4;
}

.text-nowrap-ellipsis-5 {
    -webkit-line-clamp: 5;
}

section {
    padding: 80px 0;
    overflow: hidden;
}

.grey-bg {
    background: var(--color-grey);
}

ul,
li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

@font-face {
    font-family: DINOT-Medium;
    src: url(../font/DINOT-Bold.otf)
}

@font-face {
    font-family: Montserrat-Light;
    src: url(../font/Montserrat-ExtraLight.otf)
}

@font-face {
    font-family: Montserrat-Bold;
    src: url(../font/Montserrat-Bold.otf)
}
samp {
    color: #5C6982;
    font-size: 18px;
    margin: 10px 0px;
}
small {
    color: #5C6982;
    font-size: 14px;
    margin: 10px 0px; 
}
/* 导航 */
.nav {
    width: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    /*padding-right: 30px;*/
}

.nav ul {
    display: flex;
    justify-content: space-between;
}

.nav ul li {
    width: auto;
    position: relative;
    margin: 0px 10px;
}

.nav ul li::after {
    width: 0%;
    height: 4px;
    position: absolute;
    bottom: -30px;
    background: var(--color-primary);
    content: '';
    -webkit-transition: all .35s;
    z-index: 510;
}

.nav ul li.active::after,
.nav ul li:hover::after {
    width: 100%;
}

/* .header.open .nav ul li.active::after,
.header.open .nav ul li:hover::after {
    background: var(--color-primary);
} */
.nav ul li a {
    color: var(--color-dark);
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    padding: 0px 10px;
}

/* 二级导航 */
.navBar {
    height: 290px;
    position: absolute;
    top: 100px;
    padding-top: 20px;
    visibility: hidden;
    left: 0px;
    right: 0px;
    background-color: rgba(255, 255, 255, .9);
}

.header.active .navBar {
    top: 140px;
    -webkit-transition: all .3s cubic-bezier(.23, 1, .32, 1) .2s;
    visibility: visible;
    left: 0px;
    z-index: 10;
}

.navBar ul {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navBar ul li {
    display: none;
    justify-content: center;
    width: 100%;
    position: relative;
}

/* 二级导航内容布局 */
.navBar .column-nav {
    display: flex;
}

.navBar .column-nav .nav-list {
    width: 480px;
    /* flex-direction: column; */
}

.navBar .column-nav .nav-list a {
   /* width:calc(100%/2 - 40px); */
   height: 50px;
   margin: 10px;
   width: 220px;
   float: left;
   display: flex;
   padding: 6px 20px;
   align-items: center;
   justify-content: flex-start;
   background-color: #fff;
   border-radius: 10px;
   color: var(--color-dark);
   box-sizing: border-box;
   position: relative;
   transition: all .35s;
}

.navBar .column-nav .nav-list a i {
    position: absolute;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EFF6FE;
    color: var(--color-primary);
    right: 20px;
}

.navBar .column-nav .nav-list a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.navBar .column-nav .nav-list a:hover i {
    background-color: #fff;
}

.navBar .column-title {
    width: 425px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 250px;
}

.navBar .column-title h2 {
    font-size: 60px;
    font-weight: bold;
    color: var(--color-primary);
    text-align: end;
}

.navBar .column-title p {
    text-align: end;
    font-size: 56px;
    color: #E7F1F8;
    font-weight: bold;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    line-height: 1em;
}

/* 手机端导航 */
.mNav-toggle-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 0px;
    right: 0%;
    z-index: 50;
    /* background: linear-gradient(90deg, #0b70cf, #0043b6) center center no-repeat; */
    background: var(--color-linear-gradient2);
}

.mNav-toggle-btn span {
    top: 29px;
    left: 20px;
    width: 20px;
}

.mNav-toggle-btn span,
.mNav-toggle-btn span:after,
.mNav-toggle-btn span:before {
    position: absolute;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.mNav-toggle-btn span:after,
.mNav-toggle-btn span:before {
    content: "";
    left: 0;
    -webkit-transform: translateY(0px) rotate(0deg);
}

.mNav-toggle-btn span:before {
    top: -6px;
    width: 14px;
}

.mNav-toggle-btn span:after {
    top: 6px;
    width: 14px;
}

.mNav-toggle-btn.active span {
    background-color: transparent;
}

.mNav-toggle-btn.active span:before {
    -webkit-transform: translateY(6px) rotate(-45deg);
}

.mNav-toggle-btn.active span:after {
    -webkit-transform: translateY(-6px) rotate(45deg);
}

.mNav-toggle-btn.active span:after,
.mNav-toggle-btn.active span:before {
    width: 20px;
}

.mNav-toggle-btn {
    display: none
}

.mNav {
    display: none;
}

.navBar ul li.active {
    display: flex;
    width: 100%;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.header {
    width: 100%;
    z-index: 2;
    -webkit-transition: all .35s;
}

.header .top-head {
    background-color: #FAFAFA;
}

.header .top-nav {
    line-height: 40px;
    font-size: 14px;
}

.header .top-nav li {
    margin-left: 10px;
    -webkit-transition: all .35s;
}

.header .top-nav li .iconfont {
    color: var(--color-primary);
}

.header .top-nav li.dropdown {
    position: relative;
}

.header .top-nav li.dropdown ul {
    display: none;
    color: var(--color-white);
    -webkit-transition: all .35s;
    position: absolute;
    width: 100%;
    background-color: #fafafa;
    z-index: 999;
}

.header .top-nav li.dropdown:hover ul {
    display: block;
}

.header .top-nav li a {
    color: #8797B7;
    padding: 0px 8px;
    display: block;
    -webkit-transition: all .35s;
}

.header .top-nav li.dropdown:hover>a {
    background-color: var(--color-grey);
}

.header .top-nav li.dropdown a {
    background-color: var(--color-white);
}

.header .top-nav li.dropdown ul li {
    margin-left: 0px;
}

.header .top-nav li.dropdown ul li:hover a {
    background-color: var(--color-primary);
    color: #fff;
}

.header .nav {
    flex: 1;
    display: flex;
    justify-content: center;
    -webkit-transition: all .35s;
}

.header .navbar a {
    color: var(--color-dark);
}

.header .navbar a.active {
    color: var(--color-primary);
}

.header .bottom-head {
    height: 100px;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.header .bottom-head .hd-tools-r {
    height: 100px;
}

.header .bottom-head .hd-tools-r i {
    width: 38px;
    height: 38px;
    margin: 0px 5px;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.header .bottom-head .hd-tools-r i.icon-lanmu {
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 14px;
}

/* 搜索 */
.searchBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 600;
    background: rgba(0, 0, 0, .8);
    display: none;
}

.searchBox.active {
    display: block;
}

.searchBox .searchInput {
    width: 600px;
    margin: 0 auto;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -300px;
}

.searchBox .searchInput .int1 {
    width: 540px;
    height: 50px;
    line-height: 50px;
    background: none;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    padding: 0 10px;
    padding-right: 60px;
}

.searchBox .searchInput .int2 {
    width: 50px;
    height: 50px;
    border: none;
    background: no-repeat center;
    background-image: url(../images/searchIcon.svg);
    background-size: 70%;
    background-position: center;
    position: absolute;
    top: 0;
    right: 60px;
    cursor: pointer;
}

.searchBox .searchClose {
    width: 50px;
    height: 50px;
    background: url(../images/arrow-close.svg) no-repeat;
    background-size: 70%;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.wrap-box {
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
}

/* 侧边栏 */
.drawer .drawer-area {
    position: fixed;
    right: -700px;
    top: 0;
    width: 700px;
    height: 100%;
    z-index: 999;
    background: #fff;
    transition: .5s ease;
}

.drawer .drawer-bg {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    transition: .5s ease;
}

.drawer.active .drawer-bg {
    visibility: visible;
    opacity: 1;
}

.drawer.active .drawer-area {
    right: 0;
}

.drawer-area .drawer-inner {
    position: relative;
    overflow: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drawer-area .drawer-inner .close {
    position: absolute;
    right: 50px;
    top: 30px;
    transition: .5s ease;
}
.drawer-area .drawer-inner .close .iconfont {
    font-size: 32px;
    color: #8797b7;
}
.drawer-area  .drawer-inner .body {
    margin: 90px 50px;
}
.drawer-area  .drawer-inner .tit {
    font-size: 24px;
    font-weight: bold;
    color: #0f2b4a;
    margin-bottom: 20px;
}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs {
    bottom:0px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    flex-direction: column;
}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs a {
    width: 100%;
    margin: 10px 0px;
    height: 70px;
    background-color: #f2f6ff;
    border-radius: 20px;
    font-size: 20px;
    color: #0F2B4A;
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 0px 30px;
    transition: all .35s;
}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs a div{
    display: flex;
    align-items: center;

}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs a .num {
    font-family: Montserrat-Bold;
    font-size: 22px;
    font-weight: bold;
    color: var(--color-secondary);
    margin-right: 20px;
}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs a .name {
    font-weight: bold;
}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs a .iconfont {
    width: 30px;
    height: 30px;
    background-color: #F8F8F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-primary);
}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs a:last-child {
    margin-right: 0px;
}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs a:hover,.pro-type-drawer .pro-type-tabs a.active {
    background-color: var(--color-primary);
    color: #fff;
}
.drawer-area  .drawer-inner .body .pro-type-drawer .pro-type-tabs a:hover .iconfont,.pro-type-drawer .pro-type-tabs a.active .iconfont{
    background-color:#fff;
    color: var(--color-secondary);
}
.drawer-area  .drawer-inner .body .contact-info {
    margin-top: 50px;
}
.drawer-area  .drawer-inner .body .contact-info .info {
    color: #5c6982;
    margin-bottom: 20px;
}

.drawer-area  .drawer-inner .body .contact-info .info .iconfont {
    color: var(--color-secondary);
    margin-right: 10px
}

.drawer-area  .drawer-inner .body .contact-info .info p {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #0f2b4a;
}

.drawer-area  .drawer-inner .body .contact-info .info .right {
    display: flex;
    flex-direction: column;
}

.drawer-area  .drawer-inner .body .contact-info .info .right span {
    font-size: 14px;
}
.drawer-area .drawer-inner .body .contact-info .info .right span:nth-child(1) {
    margin-bottom: 30px;
}
.drawer-area  .drawer-inner .body .contact-info .hot-tel h2 {
    color: var(--color-secondary);
    font-size: 32px;
    font-family: Montserrat-Bold;
}
.drawer-area  .drawer-inner .bottom {
    margin: 0px 50px 50px 50px;
}
.drawer-area  .drawer-inner .bottom .wx-code {
    margin-top: 60px;
    color: #5c6982;
    font-size: 14px;
    width: 112px;
}

.drawer-area  .drawer-inner .bottom .wx-code .wx-img {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}
.drawer-area  .drawer-inner .bottom .wx-code p{
    text-align: center;
}
.video-wrap {
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    width: 330px;
    height: 190px;
}

.video-wrap i {
    position: absolute;
    background-color: rgba(255, 255, 255, .5);
    width: 66px;
    height: 66px;
    left: 50%;
    top: 50%;
    margin-top: -33px;
    margin-left: -33px;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrap .img {
    border-radius: 20px;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    position: absolute;
    z-index: 1;
}

.video-wrap .mask {
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 20px;
    background-color: rgba(59, 120, 195, .4);
    z-index: 2;
}

.navBar .video-wrap {
    /* margin-left: 150px; */
}

.common-tit {
    color: var(--color-primary);
    font-size: 46px;
    margin-bottom: 60px;
}

.common-tit h2 {
    font-size: 46px;
}

.common-tit p {
    font-family: Montserrat-Light;
    font-size: 38px;
    color: var(--color-default);
}

.text-content {
    text-align: justify;
    line-height: 1.8em;
}

/* 右侧浮动菜单 */
.sideBar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 2px 20px rgb(14 29 52 / 10%);
    display: none;
}
.sideBar .side {
    width: 85px;
    height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #F5FBFF;
    font-size: 14px;
    position: relative;
    -webkit-transition: all .35s;
    transition: all .35s;
}
/* .sideBar .side:hover {
    background-color: #CC972A;
    color: #fff;
} */
/* .sideBar .side:hover img {
    filter: grayscale(100%) brightness(200%)
} */
.sideBar .side.tel .telBox {
    position: absolute;
    background-color: #ffffff;
    color: var(--color-dark);
    height: 114px;
    line-height: 114px;
    width: 235px;
    text-align: center;
    font-size: 26px;
    font-family: Montserrat-Blod;
    opacity: 0;
    right: -200px;
    -webkit-transition: all .35s;
    transition: all .35s;
    z-index: 1;
}

.sideBar .side.tel:hover .telBox {
    right: 85px;
    opacity: 1;
}
.sideBar .side.wx  .wx-img {
    position: absolute;
    background-color: #ffffff;
    color: var(--color-dark);
    
    text-align: center;
    opacity: 0;
    right: -100px;
    -webkit-transition: all .35s;
    transition: all .35s;
    z-index: 1;
    border-radius: 10px;
    padding: 10px;
    top: 0px;
}
.sideBar .side.wx:hover .wx-img {
    right: 75px;
    opacity: 1;
}
.sideBar .side img {
    margin-bottom: 5px;
}
.sideBar .side p {
    margin-bottom: 0px;
}
.sideBar a {
    color: #282828;
}
.sideBar .side:last-child {
    border-bottom: 0px;
}

.more-btn {
    line-height: 46px;
    border-radius: 25px;
    /* width: 145px; */
    transition: all .35s;
}

.more-btn i {
    width: 46px;
    height: 46px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
    transition: all .35s;
}

.more-btn:hover {
    color: var(--color-secondary);
}

.more-btn:hover i {
    background-color: var(--color-secondary);
    color: #fff;
}

.more-btn span {
    margin-right: 5px;
    font-size: 26px;
}

.pc-show {
    display: block !important;
}

.mobile-show {
    display: none !important;
}

.txt-content {
    text-align: justify;
    color: #868686;
    line-height: 2em;
    margin: 20px 0px;
    font-size: 14px;
    text-indent: 2em;
}

footer .head {
    background-image: url(../images/footer-bg.jpg);
    min-height: 400px;
    padding: 50px 0px;
}

footer .bottom {
    background-color: #0B1E36;
    color: #485B77;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
}

footer .bottom a {
    color: #485B77;
}

footer .head .menu-list {
    display: flex;
}

footer .head .menu-list dl {
    margin-right: 60px;
}

footer .head .menu-list dl dt {
    font-size: 16px;
    font-weight: bold;
    color: #D6E7FF;
    margin-bottom: 20px;
}

footer .head .menu-list dl dd {
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    margin-bottom: 10px;
    line-height: 30px;
    background-position-y: center;
}

footer .head .menu-list dl dd a {
    padding-left: 30px;
    color: #8FA6C7;
    font-size: 14px;
}

footer .contact-info .title {
    width: 260px;
    height: 48px;
    border-radius: 24px;
    background: var(--color-linear-gradient);
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0px 20px;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 50px;
}

footer .contact-info .info {
    color: #D6E7FF;
    margin-bottom: 20px;
}

footer .contact-info .info .iconfont {
    color: var(--color-secondary);
    margin-right: 10px
}

footer .contact-info .info p {
    margin-bottom: 5px;
}

footer .contact-info .info .right {
    display: flex;
    flex-direction: column;
}

footer .contact-info .info .right span {
    font-size: 14px;
}

footer .contact-info .hot-tel h2 {
    color: var(--color-secondary);
    font-size: 32px;
    font-family: Montserrat-Bold;
}

footer .search-wx {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

footer .search-warp {
    background: #fff;
    border-radius: 24px;
    height: 48px;
    padding: 0px 15px;
}

footer .search-warp .searchInput form {
    display: flex;
    align-items: center;
    height: 48px;
}

footer .search-warp .searchInput form .int1 {
    flex: 1;
    border: none;
}

footer .search-warp .searchInput form .int2 {
    width: 22px;
    height: 22px;
    background-image: url(../images/search-icon.png);
    border: none;
    background-color: #fff;
    cursor: pointer;
    margin-left: 5px;
}

footer .search-wx .wx-code {
    margin-top: 60px;
    color: #D6E7FF;
    font-size: 14px;
    text-align: center;
}

footer .search-wx .wx-code .wx-img {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

footer .bottom .link {
    width: 150px;
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    position: relative;
}

footer .bottom .link>a {
    display: flex;
    height: 38px;
    line-height: 38px;
    border: 1px solid #1D3B5F;
    border-radius: 10px;
    color: #bebebe;
    justify-content: space-around;
    align-items: center;
}
footer .bottom .link .iconfont {
    margin-left: 5px;
    transform: rotate(180deg);
}
footer .bottom .link ul {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    background: #eff0f1;
    display: none;
    z-index: 4;
}

footer .bottom .link ul li a {
    display: block;
    border-top: 1px solid #d6d6d6;
    font-size: 14px;
    color: #2d2d2d;
    line-height: 40px
}

footer .bottom .link ul li a:hover {
    background: var(--color-secondary);
    color: #fff;
}
.sub-banner {
    width: 100%;
    height: 66vh;
    overflow: hidden;
    position: relative;
}
.sub-banner .container {
    position: absolute;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    height: 100%;
}
.sub-banner .title {
    color: #fff;
    margin-top: 120px;
    text-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
}
.sub-banner .title .line{
    width: 25px;
    height: 10px;
    margin-bottom: 40px;
    display: block;
    background-color: #fff;
}
.sub-banner .title h2 {
    font-size: 100px;
    font-family: Montserrat-Bold;
}
.sub-banner .title p {
    font-size: 38px;
}
.sub-banner .title .iconfont {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-top: 110px;
}
.sub-banner .bottom {
    color: #fff;
    position: absolute;
    bottom: -11.7vh;
    z-index: 3;
    right: 0px;
}

.sub-banner .bottom span{
    font-size: 285px;
    font-family: Montserrat-Bold;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}
.sub-banner .img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation-fill-mode: forwards;
    z-index: 1;
}
.sub-banner.product .img{
    background-image: url(../images/sub-banner-product.jpg);
}
.sub-banner.about .img{
    background-image: url(../images/sub-banner-about.jpg);
}
.sub-banner.service .img{
    background-image: url(../images/sub-banner-service.jpg);
}
.sub-banner.news .img{
    background-image: url(../images/sub-banner-news.jpg);
}
.sub-banner.video .img{
    background-image: url(../images/sub-banner-video.jpg);
}
.sub-banner.contact .img{
    background-image: url(../images/sub-banner-contact.jpg);
}
.sub-banner.productDetail .img{
    background-image: url(../images/sub-banner-productDel.jpg);
}
.bread-crumb {
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}
.bread-crumb .nav-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.bread-crumb  .nav-list a.item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    -webkit-transition: all .35s;
    transition: all .35s;
}
.bread-crumb  .nav-list a.item:hover,.bread-crumb .nav-list a.item.active {
    background-color: var(--color-primary);
    color: #fff;
}
.crumb-list {
    color: var(--color-dark);
}
.fancybox-slide--iframe .fancybox-content {
  	width: 1000px !important;
    height: 565px !important;
    margin: 0;
}
@media screen and (max-width: 768px) {
    .header {
        position: fixed;
        background: #fff;
        z-index: 999;
    }
    section {
        padding: 40px 0px;
    }

    .wrap-box {
        padding: 15px;
        margin: 15px auto;
    }

    .pc-show {
        display: none !important;
    }

    .mobile-show {
        display: block !important;
    }

    .header .top-head {
        display: none;
    }

    .nav {
        opacity: 0;
        visibility: hidden;
        height: calc(100vh - 60px);
        position: fixed;
        left: 0;
        top: 60px;
        display: block;
        width: 100%;
        background: #202679;
        display: none;
    }

    .navBar {
        display: none;
    }

    .mNav-toggle-btn {
        display: block;
    }

    .mNav {
        display: block;
        width: 100%;
        height: calc(100vh - 60px);
        position: fixed;
        left: 0%;
        z-index: 20;
        top: 60px;
        overflow-y: auto;
        background: #fff;
        -webkit-transition: all 0.5s;
        visibility: hidden;
        opacity: 0;
    }

    .mNav.active {
        opacity: 1;
        visibility: visible;
    }

    .mNav ul {
        padding: 0%;
        color: #000;
    }

    .mNav a {
        color: var(--color-dark);
    }

    .mNav .mTopInfo {
        padding: 15px 0px;
    }

    .mNav .mTopInfo a {
        flex: 1;
        margin: 10px 25px;
        height: auto;
        line-height: 35px;
        /* background: #103784; */
        background: linear-gradient(90deg, #0b70cf, #0043b6) center center no-repeat;
        color: #fff;
        border-radius: 45px;
        font-size: 16px;
        padding: 5px;
    }

    .mNav .mTopInfo a .iconfont {
        font-size: 20px;
        margin: 0px 5px;
    }

    .first-li {
        font-size: 18px;
        position: relative;
        padding: 10px 5%;
    }

    .mNav ul li {
        line-height: 40px;
        position: relative;
        padding-bottom: 3px;
    }

    .mNav ul li::after {
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0%;
        bottom: 0%;
        content: '';
        background: linear-gradient(90deg, #efefef, #dfdfdf) center center no-repeat;
    }

    .second-li {
        display: flex;
        flex-wrap: wrap;
        display: none;
    }

    .three-li {
        width: 90%;
        display: flex;
        padding: 10px 0%;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(255, 255, 255, .5);
        margin-left: 5%;

    }

    .three-li:first-child {
        padding-top: 0%;
    }

    .three-li:last-child {
        border-bottom: none;
    }

    .three-li .name {
        font-size: 16px;
        line-height: 20px;
        width: 100%;
        margin-bottom: 5px;
    }

    .three-li .name a {
        color: var(--color-primary);
    }

    .four-li {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .four-li a {
        display: flex;
        margin-right: 15px;
        line-height: 30px;
    }

    .four-li a .icon {
        font-size: 16px;
    }

    .four-li a .txt {
        margin-left: 2px;
    }

    .first-li.has::after {
        width: 20px;
        height: 20px;
        position: absolute;
        right: 5%;
        top: 50%;
        margin-top: -10px;
        background: url(../images/arrow-open.svg) no-repeat;
        background-size: cover;
        content: '';
        -webkit-transition: all .35s;

    }

    .first-li.active::after {
        -webkit-transform: rotate(45deg);
    }

    .second-li.active {
        display: block;
    }

    .three-li .name.mb0 {
        margin-bottom: 0px;
    }

    .header .bottom-head .hd-tools-r {
        display: none !important;
    }

    .header .bottom-head {
        height: 60px;
    }

    .hd-logo-l img {
        width: 125px;
    }

    .mobile-search {
        position: fixed;
        top: 0px;
        right: 80px;
        height: 60px;
        display: flex !important;
        align-items: center;
    }

    .mobile-search .icon .iconfont {
        font-size: 24px;
    }

    .more-btn i {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .more-btn span {
        font-size: 20px;
    }

    .common-tit {
        margin-bottom: 30px;
    }

    .common-tit h2 {
        font-size: 28px;
    }

    .common-tit p {
        font-size: 24px;
    }
    footer .head {
        padding: 25px 0px;
    }
    footer .head .container.d-flex {
        flex-direction: column;
    }
    footer .head .menu-list dd,footer .head .menu-list {
        display: none;
    }
    
    footer .head .menu-list dl {
         margin-right: 10px;
         width: calc(100%/3 - 5px);
    }
    footer .contact-info .title {
        display: none;
    }
    footer .search-wx{
        align-items: center;
    }
    footer .search-wx .wx-code{
        margin-top: 30px;
    }
    footer .search-warp {
        width: 90%;
    }
    footer .bottom {
        height: auto;
        line-height:normal;
        padding: 20px 0px;
    }
    footer .bottom  .col-md-6 {
        text-align: center !important;
        margin: 5px 0px;
    }
    .searchBox .searchInput {
        width: 90%;
        margin-left: -45%;
    }
    .searchBox .searchInput .int1 {
        width: 90%;
    }
    .sub-banner {
        height: 55vh;
    }
    .sub-banner .title {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .sub-banner .title h2 {
        font-size: 60px;
    }
    .sub-banner .title .iconfont {
        margin-top: 30px;
    }
    .sub-banner .bottom {
        opacity: .2;
    }
    .bread-crumb,.bread-crumb .nav-list a.item {
        height: 50px;
        font-size: 14px;
    }
    .bread-crumb .container {
        margin-left: -15px;
        margin-right: -15px;
    }
    .bread-crumb .nav-list {
        width: 100vw;
    }
    .fancybox-slide--iframe .fancybox-content {
        width: 100% !important;
        height: 215px !important;
    }
  
}