/*头部banner*/

.service-banner{
  height: 980px;
  background: url(../../image/service/service-banner.png);
  display: flex;
  align-items: center;
}
.banner-title{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-title-en{
  font-size: 20px;
  font-family: Source Han Sans CN, Source Han Sans CN-Bold;
  font-weight: 700;
  text-align: left;
  color: #ff7700;
  line-height: 20px;
  letter-spacing: 8px;
}

.banner-title-cn{
  font-size: 80px;
  line-height: 80px;
  font-family: Source Han Sans CN, Source Han Sans CN-Bold;
  font-weight: 700;
  text-align: left;
  color: #ff7700;
  letter-spacing: 32px;
  padding-top: 30px;
}

.banner-button{
  cursor: pointer;
  padding-top: 114px;
}

.content-inner{
   position: relative;
   z-index:10;
}


.service-title{
  font-size: 48px;
  font-family: Source Han Sans CN, Source Han Sans CN-Bold;
  font-weight: 700;
  text-align: left;
  color: #ffffff;
  line-height: 56px;
}


.service-item-box{
  padding-top: 60px;
}

.content-icon{
  padding-right: 10px;
  display: none;
}

.service-item{
  font-size: 16px;
  font-family: Source Han Sans CN, Source Han Sans CN-Regular;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  padding-bottom: 32px;
  cursor: pointer;
}

.service-item:hover {
  transform: translateX(10px);
  transition: 0.5s all ease;
}

.service-item-active.service-item{
  font-size: 20px;
  font-family: Source Han Sans CN, Source Han Sans CN-Bold;
  font-weight: 700;
}

.service-item-active .content-icon{
  display: inline-block;
}
/* .service-item:last-child{
  padding-bottom: 0;
} */


.detailItem-bg{
  position: absolute;
  width: 700px;
  height: 236px;
  background: rgba(255,255,255,0.3);
  right: 15px;
  top: 0;
}

.triangle{
  position: absolute;
  top: -14px;
  left: 10px;
  font-size: 30px;
  color: #fff;
}

.triangle-inner i{
  opacity: 1;
  color: #ffffff;
}

.detailItem-box{
  position: relative;
  z-index: 2;
  padding-top: 76px;
  display: none;
}

.detailItem-box-active{
  display: block;
}

.detail-item{
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.detail-item-inner{
  width: 260px;
  height: 360px;
  position: relative;
  margin-right: 15px;
  border-radius: 10px;
}
.detail-item-inner:last-child{
  margin-right: 0;
}

.detail-item-img{
   width: 100%;
   height: 100%;
   border-radius: 10px;
   overflow: hidden;
}
.detail-item-img img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}


.detail-item-info{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(51, 51, 51,0.8);
  border-radius: 0 0 10px 10px;
}

.detail-item-info-inner{
  font-size: 16px;
  font-family: Source Han Sans CN, Source Han Sans CN-Regular;
  font-weight: 400;
  color: #ffffff;
  line-height: 16px;
  padding: 16px 15px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
}

.detail-item-inner:hover .detail-item-info{
  width: 200px;
  height: 300px;
  border-radius: 10px;
  background: rgba(255, 119, 0, 0.72);
  line-height: 200px;
  left: 50%;
  top: 50%;  
  transform:translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-item-inner:hover .detail-item-info-inner{
   line-height: 40px;
   white-space: normal;
   text-align: justify;
}

.detail-item-inner:hover .detail-item-img img{
  transform: scale(1.02);
  transition: all 0.8s ease;
}