﻿#translate{ display: none;}
*{ margin:0; box-sizing: border-box; padding:0; transition-property: all;-ms-transition-property: all;-moz-transition-property: all; -webkit-transition-property: all; -o-transition-property: all;}
body{font-family: SourceHanSansCN, SourceHanSansCN; color:#333; font-size:0.9rem;  line-height: 24px; background: #FFFFFF; min-width: 1360px;}
html{
    scroll-behavior: smooth;
}
a{ text-decoration: none; -webkit-transition: all ease .3s;  -moz-transition: all ease .3s; transition: all ease .3s; border:none; color: #333;}
a:focus { outline: 0 }
a:hover{ color: #2651b5;}
img{ border:none; -webkit-transition: all ease .5s;  -moz-transition: all ease .5s; transition: all ease .5s; vertical-align: middle;}
ul,li{ list-style:none;}
.clear{ clear:both;}
.clearfix{ clear:both;}
p{ margin:0; padding:0;}
.padding5{ padding:5px;}
.padding10{ padding:10px;}
.padding15{ padding:15px;}
.padding20{ padding:20px;}
.padding30{ padding:30px;}
.padding40{ padding:40px;}
.fr{ float:right;}
.fl{ float:left; }
.paddingright{ padding-right:10px;}
.paddingleft{ padding-left:10px;}
.undis{ display:block;  background-size: cover;}
.dis{ display:none;  }
.pr5{ padding-right:5px;}
.red{ color:#f00;}
.fff{ color:#fff;}
.pdt30{ padding-top: 30px;}
.txtcenter{ text-align: center;}
h1,h2,h3,h4,strong,b{ margin: 0; font-family: SourceHanSansCN, SourceHanSansCN; color:#111;}
.container{ width: 1360px; margin: 0 auto;}
.flex {display: flex; flex-wrap: wrap;}
.flex-center { display: flex; align-items: center; justify-content: space-between;}
.flex-center-contain { justify-content: space-between;}
.flex-center-contain1 { justify-content: space-between; align-items: center; }
.flex-center-contain2 { align-items: center; }
.flex-center1 { display: flex; align-items: center; justify-content: flex-start;}
.flex-center2 { display: flex; align-items: center; }
.flex-center3 { display: flex; align-items: center; justify-content:center;}
.flex-center4 { display: flex; align-items: center; justify-content:end;}
em,i{ font-style: normal;}


#home .home,
#about .about,
#services .services,
#case .case,
#contact .contact,
#solution .solution{color: #0000fe; border-bottom:4px solid #0000fe; }







input,button,select,textarea{ outline:none; font-family: SourceHanSansCN, SourceHanSansCN;}
textarea{resize:none;}
input[type="button"], input[type="submit"], input[type="reset"],input[type="text"] {-webkit-appearance: none; font-weight:normal;}
input[type="button"], input[type="submit"], input[type="reset"]{ cursor: pointer;}
a,button{ cursor: pointer;}

#warp{ width:100%; height:auto; position: relative; }

header.current{ border-bottom: 1px solid #eee; z-index: 999; position: fixed; left: 0; top: 0;}
header{ width: 100%; padding: 20px 0; background: #FFFFFF;}

header .logo{ width: 62px; height: 60px;}
header .logo a{ display: block; width: 62px; height: 60px; background: url(../images/logo.jpg) no-repeat; }


header .hbtn{}
header .hbtn a{ display: inline-block; color: #FFFFFF; height: 52px; line-height: 52px; padding: 0 40px; font-size: 1rem; background: #0E97F7;border-radius: 4px;}
header .hbtn a:hover{ background:#0000fe;}

nav {
    height: 60px;
    position: relative;
    z-index: 999;
    background: #fff;
}

.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li {
    padding: 0 28px;
    position: relative;
}

nav li a {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 60px;
    color: #333;
    text-decoration: none;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

nav li:hover > a {
    color: #2651b5;
}

/* 有下拉的一级栏目加小箭头 */
nav li.has-sub > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    transform: rotate(45deg);
    margin-left: 8px;
    position: relative;
    top: -3px;
}

nav li.has-sub:hover > a::after {
    border-color: #2651b5;
}

/* 下拉区域 */
.nav-sub {
    position: absolute;
    left: 60%; 
    top: 60px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(5 * 166px + 4 * 18px + 48px);
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 12px 12px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
}

/* hover 显示下拉 */
nav li.has-sub:hover .nav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 下拉内容：最多一排 5 个，多的自动换行 */
.nav-sub-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    max-width: calc(5 * 166px + 4 * 18px);
}

/* 每个下拉项固定宽度 */
.nav-sub-item {
    width: 166px;
    flex: 0 0 166px;
    display: block;
    background: #f7f9fc;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    line-height: normal;
    transition: all 0.25s ease;
}

.nav-sub-item img {
    display: block;
    width: 100%;
    height: 105px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.nav-sub-item span {
    display: block;
    padding: 12px 8px;
    font-size: 15px;
    line-height: 22px;
    color: #333;
    text-align: center;
}

.nav-sub-item:hover {
    background: #eef4ff;
    transform: translateY(-4px);
}

.nav-sub-item:hover img {
    transform: scale(1.05);
}

.nav-sub-item:hover span {
    color: #2651b5;
}

.searchshow{width: 281px;height: 48px;background: #FFFFFF;border-radius: 50px;border: 1px solid #2651B5; padding: 4px;}
.searchshow input{ border: none; width: calc(100% - 60px); background: none; padding:0 15px;}
.searchshow button{ width: 60px; height: 38px; background: #2651B5; color: #FFFFFF; border-radius: 50px; font-size: 1rem; border: none;}
.searchshow button:hover{ background: #111111;}

/**banner**/
.main_visual .owl-carousel,.main_visual .owl-stage-outer,.main_visual .owl-stage,.main_visual .owl-carousel .owl-item{width: 100%; height: auto;}
.main_visual .owl-carousel .item{width: 100%;height: auto; background-repeat: no-repeat; background-position: center center;-webkit-background-size: cover; background-size: cover;}
.main_visual .owl-carousel .item img{ width: 100%; height: auto;}
.main_visual .owl-prev,.main_visual .owl-next{text-indent: -999em; overflow: hidden;}

.main_visual .owl-dots{ width: 100%; text-align: center; height: 5px; position:absolute; left: 0; bottom: 40px;  z-index: 999;}
.main_visual .owl-dots .owl-dot{display: inline-block;  margin:0 3px;}
.main_visual .owl-dots .owl-dot span{  display: inline-block; width: 60px; height: 5px; background:#fff; border-radius:6px; }
.main_visual .owl-dot.active span{ background:#0000fe; }
.main_visual .owl-controls{ height: 0;}



footer{ width: 100%; background: #1c2437;}

.footer-box{ padding: 40px 0;}

.footer-box-left{ width: 270px; color: #FFFFFF;}
.footer-box-left .flogo{ width: 102px; height: 99px;}
.footer-box-left .flogo a{ display: block; width: 102px; height: 99px; background: url(../images/flogo.png) no-repeat;}
.footer-box-left p{ font-size: 1rem; margin-top: 20px;}


.footer-box-right{ width: 800px;}
.footer-box-right dl{ width: 30%; padding: 0 40px; border-left:1px solid #333a4b; background: url(../images/footerbg.jpg) no-repeat left top;}
.footer-box-right dl dt{ font-weight: bold; font-size: 1.2rem; color: #FFFFFF; height: 20px; line-height: 20px;}
.footer-box-right dl dd{ width: 100%; margin-top: 20px;}
.footer-box-right dl dd a{ display: block; color: #E0E0E0; font-size: 1rem; line-height: 32px;}
.footer-box-right dl dd a:hover{ text-decoration: underline;}
.footer-box-right dl dd p{  color: #E0E0E0; font-size: 1rem; line-height: 32px;}
.footer-box-right dl:last-child{ width: 40%;}
.footer-box-right dl dd img{ width:120px; height:120px;}




.footer-copy{ width: 100%; text-align: center; color: #FFFFFF; font-size: 1rem; background: #000; line-height: 48px;}
.footer-copy a{ color: #FFFFFF; margin-left: 10px;}

.customerList{ width:60px; height:auto; position: fixed; right: 0; top: 40%; z-index:999; }
.customerList a b{ display: block; color: #FFFFFF !important; font-size: 14px; line-height: 21px; font-weight: normal;}

.customerBox{ width: 60px; height: auto;  }
.customerBox a{ display: block; text-align: center; position: relative; width: 60px; height: 60px; line-height:60px; color:#fff; margin-bottom:1px; font-size:1.8rem; background: #0000fe; border-radius: 6px  0px  0px  6px; }
.customerBox a:hover{ text-decoration:none; background:#b8b8fd;}
.customerBox a .eso_divinfo{ display:none; position:absolute;  right:60px; top:0; min-width:260px; background:#fff; color:#0000fe; font-size:1rem;  box-shadow: 3px 3px 10px 0 rgba(0,0,0,.1); padding:10px; border-radius:6px; }
.customerBox a .eso_divinfo:before{
    content:""; position:absolute; right:-12px; top:50%; margin-top:-12px; 
width:0;
height:0;
border-top:12px solid transparent;
border-bottom: 12px solid transparent;
border-left: 12px solid #fff;
}
.customerBox a:hover .eso_divinfo{ display: block;}


.about-banner {
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
}

.about-banner-text {
    color: #fff;
}

.about-banner-text h1 {
    margin: 0;
    font-size: 48px;
    line-height: 58px; color:#fff;
    font-weight: bold;
}
.about-banner-text b {
    margin: 0; display:block; color:#fff;
    font-size: 48px;
    line-height: 58px;
    font-weight: bold;
}

.about-banner-text p {
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.92);
}

.about-crumb {
    width: 100%;
    height: 56px;
    line-height: 56px;
    background: #f7f9ff;
    border-bottom: 1px solid #edf0f7;
    font-size: 14px;
    color: #666;
}

.about-crumb a {
    color: #666;
    text-decoration: none;
}

.about-crumb a:hover {
    color: #0000fe;
}

.about-crumb span {
    padding: 0 10px;
    color: #aaa;
}

.about-crumb em {
    color: #0000fe;
    font-style: normal;
}