* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
}

body,
html {
	width: 100%;
	font-size: 14px;
    
}
.container{
    position: relative;
}
.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 155px; */
    background: linear-gradient( 180deg, #000000 0%, rgba(0,0,0,0) 100%);
    opacity: 0.75;
    backdrop-filter: blur(0px);
    z-index: 10;
    display: flex;
    justify-content: center;
     align-items: center;
     flex-direction: column;
}
.nav-container{
    width: 1200px;
    display: flex;
    justify-content: center;
    gap: 36px;
}
.logo{
    z-index: 9999;
}
.logo img{ 
    width: 96px;
    height: 76px; 
}
.nav{
    height: 42px;
    display: flex;
    gap: 42px;
    font-family: PingFangSC, PingFang SC;    
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    margin-top: 22px;
    cursor: pointer;
}   
.nav-item{
  display: flex;
  flex-direction: column;  
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.nav-item.active{
    font-weight: bold;
}

.icon-active{
    width: 14px;
    height: 6px;
    flex-shrink: 0;  /* 防止图标被压缩 */
}
.header-right{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 46px;
    padding-bottom: 19px;
    box-sizing: border-box;

}
.login-box{
    position: relative;
    padding-top: 2px;
    cursor: pointer;
}
.login-box a,.login-box span{
    font-family: PingFangSC, PingFang SC;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    text-decoration: none !important;
}
.search{
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
}
.icon-search{
    width: 12px;
    height: 12px;
    margin-right: 7px;
}
.verline{
    width: 1px;
    height: 10px;
    background: #fff;
    border-radius: 1px;
    /* opacity: 0.5; */
}
.person{
    width: 100px;
    padding: 10px 20px;
    position: absolute;
    top: 30px;
    left: -50px;
    background: #fff;
    text-align: center;
    color: #333;
    border-radius: 5px;
    display: none;
    cursor: pointer;
}
.login-box:hover .person{
    display: block;
}
.person:hover{
    display: block;
}
.login_imgs{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
}

.person li{
    height: 30px;
}
.phone_number{
    font-size: 14px;
    color: #333;
    height: 30px;
    border-bottom: 1px solid #D3D3D3;
}
.real_name{
    font-size: 14px;
    color: red;
    margin-top: 10px;
}
.person li a{
    color: #333;
}
.nav-line{
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    border-radius: 1px;
    opacity: 0.15;
    margin-top: -16px;
}


.swiper-button-next:after,  .swiper-button-prev:after {
    content: none !important;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    cursor: auto;
    pointer-events: none;
}
#bannerImgs .swiper {
    width: 100%;  
}
#bannerImgs .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
#bannerImgs .swiper-slide img{
    width: 100%;
    height: auto; /* 改为auto以保持图片比例 */
    display: block;
}
/* 隐藏banner轮播的下一页/上一页按钮 */
#bannerImgs .swiper-button-next,
#bannerImgs .swiper-button-prev {
  display: none !important; /* !important 确保覆盖swiper默认样式 */
}
/* 若有其他默认样式（如按钮占位），可补充 */
#bannerImgs .swiper-button-next:after,
#bannerImgs .swiper-button-prev:after {
  content: none !important;
}

/* 分页器容器 */
.custom-pagination-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;

}
 /* 数字显示样式 - 当前页码 */
.current-page-number {
    width: 36px;
    height: 36px;
    border: 1px solid #FFFFFF;            
    border-radius: 50%;             
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: MicrosoftYaHei;
    font-size: 16px;
    color: #FFFFFF;
    position: relative;
}
 /* 横线样式 */
.divider-line {
    width: 24px;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 17.5px;
    left: 31px;
}
/* 圆点容器 */
.custom-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.custom-bullet.active {             
    background: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 58px !important;
    height: 58px !important;
    opacity: 1 !important;
}

/* 总页数显示样式 */
.total-pages {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    margin-left: 12px;
}


/* 隐藏原有的分页器 */
.swiper-pagination {
    display: none !important;
}

/***** 公司介绍s ******/
.company-introduction{
    width: 100%;
    height: 730px;
    background-image: url('https://update.9618968.com/etc-common/2026-03-17/20260317092500054.png');
    background-size: 100% 100%;
    margin-top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.company-content{
    display: flex;
    justify-content: space-between;
    width: 1200px;
}
.company-left{
    width: 560px;
    display: flex;
    flex-direction: column;
}
.company-info{

}
.company-name{
    font-weight: bold;
    font-size: 24px;
    color: #333330;
    line-height: 36px;
    margin-bottom: 10px;
}
.company-text{
    font-size: 20px;
    color: #333330;
    line-height: 36px;
    margin-bottom: 20px;
}
.company-title{

}

.company-title-img{
   width: 1200px; 
   height: 90px;
   margin-bottom: 27px;
}
.icon-quot{
    width: 39px;
    height: 38px;
    position: absolute;
    top: 52px;
    left: 504px;
}
.company-brand{
    margin-top: 53px;
    display: flex;
    gap: 77px;
}
.company-brand-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
}
.company-brand-item img{
    width: 136px;
    height: 136px;
}
.more-btn{
    width: 180px;
    height: 58px;
    background: #2C78F6;
    box-shadow: 0px 5px 11px 0px rgba(47,109,246,0.1);
    border-radius: 12px 0px 12px 0px;
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 39px;
    cursor: pointer;
}
.more-btn img{
    width: 24px;
    height: 24px;
    margin-left: 10px;
}
.company-right{
    width: 600px;
    height: 338px;
    border-radius: 0px 24px 0px 24px;
}
.company-img{
    width: 600px;
    height: 338px;
    border-radius: 0px 24px 0px 24px;
}
.company-introduction .company-right .video-js.company-video {
    border-radius: 24px 0px 24px 0 !important;
    overflow: hidden !important;
    width: 600px !important;
    height: 338px !important;
}
          /* 关键：设置视频填充模式 */
.company-introduction .company-right .video-js.company-video video {
    object-fit: cover !important;  /* 填满容器，裁剪多余部分 */
    width: 100% !important;
    height: 100% !important;
}

/* 确保 video-js 内部容器也填满 */
.company-introduction .company-right .video-js.company-video .vjs-tech {
    object-fit: cover !important;
}
 /* ===== 自定义播放按钮 ===== */
 .company-introduction .company-right .video-js.company-video .vjs-big-play-button {
    width: 84px !important;
    height: 84px !important;  
    background-color: transparent;
    border-radius: 50% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.3s ease;
}
.video-js .vjs-big-play-button{
    font-size: 0 !important;
}
/* 隐藏默认图标 */
.company-introduction .company-right .video-js.company-video .vjs-big-play-button .vjs-icon-placeholder {
    display: none !important;
}

/* 自定义播放图标 - 使用背景图片 */
.company-introduction .company-right .video-js.company-video .vjs-big-play-button:before {
    content: '' !important;
    display: block;
    width: 84px;
    height: 84px;
    background-image: url('https://update.9618968.com/etc-common/2026-03-17/20260317175300049.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* 播放时隐藏大播放按钮 */
.company-introduction .company-right .video-js.company-video.vjs-playing .vjs-big-play-button {
    display: none !important;
}

/* 暂停时显示播放按钮 */
.company-introduction .company-right .video-js.company-video.vjs-paused .vjs-big-play-button {
    display: block !important;
}
/********* 公司介绍e ********/
/***** 三大平台s ******/
.three-platform{ 
    width: 100%;
    height: 664px;
    position: relative;
}
.three-platform-bg{
    width: 100%;
    height: 530px;
    display: block;
}
.three-platform-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 80px;
}
.three-platform-title{
    display: flex;
}
.three-platform-title-img{
    width: 998px;
    height: 99px;
    margin-right: 165px;
}
.icon-mark{
    width: 41px;
    height: 38px;
    margin-top: 7px;
}
.three-platform-desc{
    width: 1201px;
    margin-top: 45px;
    margin-bottom: 50px;
    font-family: PingFangSC, PingFang SC;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: justify;
    font-style: normal;
}
.three-platform-info{
    display: flex;
    gap: 24px;
}
.three-platform-info-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 384px;
    height: 290px;
    background: #FFFFFF;
    border-bottom: 4px solid  #3881F6;
    box-shadow: 0px 20px 40px 0px rgba(57,131,247,0.07);
}
.three-platform-info-item img{
    width: 384px;
    height: 160px;
}
.three-platform-info-item-text{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.three-platform-info-item:hover {
    background-color: #3881F6; /* 悬浮时的背景色 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
    color: #fff;
}

/****** 三大平台e ******/
/***** 业务领域s ******/
.business-field{ 
    width: 100%;
    margin-top: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.business-field-title-img{
    width: 400px;
    height: 82px;
}
.business-field-content{
    width: 1200px;
}
.business-field-list{
    margin-top: 39px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.business-field-item{
    width: 400px;
    height: 340px;
    cursor: pointer;
    position: relative;   
}
.business-field-item-img{
    width: 400px;
    height: 340px;
}
.business-field-item-index{
    width: 98px;
    height: 98px;
    position: absolute;
    top: 5px;
    right: 21px;
}
.business-field-item-bg{
    width: 400px;
    height: 180px;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.business-field-item-info{
    width: 400px;
    height: 110px; 
    padding: 0 24px;
    box-sizing: border-box;
    font-family: PingFangSC, PingFang SC;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 22px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.business-field-item:hover .business-field-item-info{
    background: #3881F6;
    transition: background-color 0.3s ease; /* 添加过渡效果 */
}
.business-field-item-line{
    width: 252px;
    height: 1px;
    background: linear-gradient( 315deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    border-radius: 2px;
    opacity: 0.5;
    margin-bottom: 22px;
}
.business-field-item-line-small{
    width: 16px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    margin-top: -1px;
}
.business-field-item-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.icon-field-mark{
    width: 40px;
    height: 40px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-60px);
}
/* 当父元素被悬停时显示 */
.business-field-item:hover .icon-field-mark {
    display: block; 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/********* 业务领域e ********/
/***** 新闻动态s ******/
.news{
   /* width: 1377px;
   height: 650px;
   padding: 0 88px; 
   box-sizing: border-box; */

   width: 100%;
    margin-top: 81px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news-title{
    width: 1200px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-title-img{
    width: 400px;
    height: 82px;
}
.news-page{
    display: flex;
    align-items: center;
    gap: 28px;
}
.news-page-img{
    width: 10px;
    height: 18px;
}
.news-page-text{
    font-family: PingFangSC, PingFang SC;
    font-weight: bold;
    font-size: 20px;
    color: #999999;
    line-height: 28px;
}
.news-current-page{
    font-size: 32px;
    color: #333333;
    line-height: 45px;
    margin-right: 3px;
}
.news-content{
    /* width: 1377px; */
    display: flex;
    align-items: center;
}

.news-back,.news-next{
    width: 48px;
    height: 48px;
}
.news-list{
    margin: 0 40px;
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.news-item{
    width: 588px;
    height: 120px;
    background: #FFFFFF;
    box-shadow: 0px 5px 15px 0px rgba(57,131,247,0.05);
    border-radius: 1px;
    border: 1px solid #EFEFEF;
    font-family: PingFangSC, PingFang SC;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    line-height: 32px;
    text-align: justify;
    font-style: normal;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-sizing: border-box;
    cursor: pointer;
}
.news-item:hover{
    box-shadow: 0px 10px 30px 0px rgba(57,131,247,0.1);
    border-top: 4px solid #2C78F6;
    color: #2C78F6;
}
.news-item-time{
    width: 72px;
    height: 72px;
    background: #2C78F6;
    background-color: rgba(44, 120, 246, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    color: #2C78F6;
}
.news-item:hover .news-item-time{
    background-color:rgba(44, 120, 246, 1);
    color: #FFFFFF;
}
.day{
    font-weight: bold;
    font-size: 26px;    
    line-height: 37px;
    text-align: center;
}
.year-month{ 
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-style: normal;
}
.news-item-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/***** 新闻动态e ******/
/*****  典范项目 s ******/
.perfect-project{
    width: 100%;
    height: 915px;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;

}
.perfect-project-container{
    position: relative;
    width: 1200px;
}
.perfect-project-bg-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.perfect-project-title-line{
    width: 280px;
    height: 1px;
    background: linear-gradient( 315deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    opacity: 0.5;
    position: absolute;
    left: 212px;
    top: 150px;
    z-index: 99;
}
.perfect-project-title{
    width: 1200px;
    height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 83px;
    margin-bottom: 50px;
}
.perfect-project-title-img{
    width: 400px;
    height: 82px;
}
.perfect-project-text-icon{
    width: 41px;
    height: 38px;
}
.perfect-project-desc{
    display: flex;
    align-items: center;
    gap: 23px;
    font-family: PingFangSC, PingFang SC;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 37px;
}
.perfect-project-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;  
}
.perfect-project-item{
    width: 384px;   
    position: relative;
    transition: all 0.3s ease;
     /* 关键：固定高度 + 溢出隐藏，让内部移动不影响外面 */
     height: 298px;

}
.perfect-project-item-logo{
    width: 100%;
    height: 200px;    
    position: relative;  
      /* 新增：溢出隐藏，避免内部元素超出 */
    overflow: hidden;
}
.perfect-project-item-mask{
    width: 100%;
    height: 100%;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.36) 66.86%, #000000 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
}
.perfect-project-item-info{
    width: 100%;
    height: 98px;
    background: #FFFFFF;
    box-shadow: 0px 20px 40px 0px rgba(57,131,247,0.18);
    font-family: PingFangSC, PingFang SC;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    line-height: 30px;
    text-align: justify;
    transition: all 0.3s ease;
}
.perfect-project-item-title{
    height: 98px;
    padding: 18px 24px 20px 24px;
    box-sizing: border-box;
}
.perfect-project-item-botm{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-left: 24px;
    gap: 20px;
    visibility:hidden;
    transform:translateY(-100%);

}
.perfect-project-item-icon{
    width: 40px;
    height: 40px;
}
.perfect-project-item-line{
    width: 300px;
    height: 1px;
    background: linear-gradient( 315deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);

}
.perfect-project-item:hover .perfect-project-item-logo{
    transform: translateY(-66px);
}
.perfect-project-item:hover .perfect-project-item-info{
    height: 164px;
    background: #2C78F6;
    color: #FFFFFF;
    transform: translateY(-66px);
}
.perfect-project-item:hover .perfect-project-item-botm{
    display:flex !important;
    visibility:visible;
    transform:translateY(0);
    transition: all 0.3s ease;
}
.perfect-project-item:hover .perfect-project-item-img{
    position: absolute;
    top: 66px;
    left: 0;
}
.perfect-project-item:hover .perfect-project-item-index{
    display: none;
}
.perfect-project-item:hover .perfect-project-item-hover-index{
    display: block;
    
}
.perfect-project-item-img{
    width: 384px;
    height: 200px;
     /* 新增：确保图片在 logo 容器内 */
    /* position: absolute;
    top: 0;
    left: 0; */
}
.perfect-project-item-index,.perfect-project-item-hover-index{
    width: 98px;
    height: 98px;
    position: absolute;
    top: 140px;
    right: 21px;
    z-index: 999;
}
.perfect-project-item-hover-index{
    display: none;
}
/******  典范项目 e ******/
/******  合作伙伴 s ******/
.partner{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 80px;
}
.partner-title{
    width: 1200px;
    margin-bottom: 61px;
}
.partner-title-img{
    width: 400px;
    height: 82px;
}
.partner-img{
    width: 100%;
    height: auto;
}
/******  合作伙伴 e ******/
/******  企业荣誉 s ******/
.honor{ 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 79px;
}
.honor-title{
    width: 1200px;
    margin-bottom: 81px;
}
.honor-title-img{ 
    width: 400px;
    height: 82px;
}

#honor-content {
    position: relative;
    width: 1350px;
    height: 392px;
    margin: 0 auto;
    background-color: linear-gradient( 89deg, #FFFFFF 0%, rgba(255,255,255,0) 12.41%, rgba(255,255,255,0) 50.65%, rgba(255,255,255,0) 87.92%, #FFFFFF 100%);
}
#honor-content .swiper{
    width: 100%;
    height: 100%;
}
#honor-content .swiper-slide{
    width: 520px;
    height: 362px;
    display: block;
}


#honor-content .swiper {
    padding-bottom: 60px;
}

#honor-content  .swiper-slide {
    width: 520px;
    height: 362px;
    background: #fff;
    box-shadow: 0 8px 30px #ddd;

}
.honor-swiper-img{ 
    display: block;
    width: 100%;
    height: 100%;
}
#honor-content  .swiper-slide p {
    font-weight: 500;
    font-size: 24px;
    color: #333333;
    line-height: 33px;
    text-align: center;
    margin-top: 30px;
}
#honor-content .swiper-button-prev{
	left: -30px;
	width: 48px;
	height: 48px;
    /* background-image: url('https://update.9618968.com/etc-common/2026-03-03/20260303101800019.png') no-repeat; */
	background: url('https://update.9618968.com/etc-common/2026-03-03/20260303174700052.png') no-repeat;
	background-position: 0 0;
	background-size: 100%;
    background-repeat: no-repeat;
}
#honor-content .swiper-button-next {
	right: -30px;
	width: 48px;
	height: 48px;
    background: url('https://update.9618968.com/etc-common/2026-03-03/20260303101900016.png') no-repeat;
	/* background: url('https://update.9618968.com/etc-common/2026-03-03/20260303174700041.png') no-repeat; */
	background-position: 0 0;
	background-size: 100%;
}
.honor-mask{
    width: 100%; /* 宽度可自定义 */
    height: 100%; /* 高度可自定义 */
    /* 核心：线性渐变 - 两侧白色不透明，中间完全透明 */
    background: linear-gradient(
        to right, /* 渐变方向：从左到右 */
        rgba(255, 255, 255, 1), /* 左侧0%-10%：白色完全不透明 */
        rgba(255, 255, 255, 0) 20%, /* 20%位置开始完全透明 */
        rgba(255, 255, 255, 0) 80%, /* 80%位置结束完全透明（中间80%透明） */
        rgba(255, 255, 255, 1)  /* 右侧90%-100%：白色完全不透明 */
    );
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.honor-bg-img{
    width: 100%;
    height: 112px;
    margin-top: 5px;
}

/*******  企业荣誉 e ******/
/*******  在线服务 s ******/
.online-service{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 38px;
    margin-bottom: 91px;
}
.online-service-title{ 
    width: 1200px;
    margin-bottom: 39px;
}
.online-honor-title-img{
    width: 400px;
    height: 82px;
}
#online-service-content{
    width: 1200px;
    /* padding-left: 75px; */
    box-sizing: border-box;
    position: relative;
}

#online-service-content .swiper{
    width: 100%;
    height: 100%;
}
#online-service-content .swiper-slide{
    width: 384px;
    height: auto;
    display: block;
    cursor: pointer;
    position: relative;
}

.service-slide-mask{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
}
.service-slide-icon{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 84px;
    padding-bottom: 40px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.service-slide-small-logo{
    width: 56px;
    height: 56px;
}
.service-slide-top-icon{
    margin-top: 75px;
    width: 40px;
    height: 40px;
}
.service-slide-top-icon.nomal{
    display: block;
}
.service-slide-top-icon.hover{
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(-30px);
}
.service-small-line{
    width: 16px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 1px;
    margin-top: 36px;
    margin-bottom: 13px;
}
.service-name{
    font-family: PingFangSC, PingFang SC;
    font-weight: bold;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 30px;
}
.service-name.top{
    margin-top: 20px;
}
#online-service-content .swiper-slide:hover .service-slide-top-icon.nomal{
    display: none;
}
#online-service-content .swiper-slide:hover .service-slide-top-icon.hover{
    opacity: 1;
    transition: all 0.3s;
    transform: translateY(0);
}
#online-service-content .swiper-slide:hover .service-hover{
    opacity: 1;
    transition: all 0.3s;
    transform: translateY(0);
}
.service-hover{
    width: 100%;
    height: 110px;
    background: #3881F6;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    /* display: none; */
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(30px);
}
.service-hover.big{
    height: 100% !important;
}
#online-service-content .service-slide-img{ 
    display: block;
    width: 384px;
    height: auto;
}
#online-service-content  .swiper-slide p {
    font-weight: 500;
    font-size: 24px;
    color: #333333;
    line-height: 33px;
    text-align: center;
    margin-top: 30px;
}
#online-service-content .swiper-button-prev {
	left: -105px;
	width: 48px;
	height: 48px;
}
#online-service-content .swiper-button-next {
	right: -105px;
	width: 48px;
	height: 48px;
}

.icon-prev,.icon-next{
    width: 48px;
    height: 48px;
}

.online-consulting{
    position: fixed;
    top: 209px;
    right: 41px;
    cursor: pointer;
    z-index: 99999999;
}
.online-consulting-img{
    width: 72px;
    height: 190px;
}