.service .service-title{
  font-size: 28px;
  color: #333333;
  height: 40px;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
}
.service .service-desc{
  color: #555555;
  font-size: 14px;
  margin-top: 8px;
  width: 100%;
  text-align: center;
}
.service-item-wrapper{
  text-align: center;
  margin-top: 40px;
}
.service .service-item-wrapper .service-item{
  width: 277px;
  height: 360px;
  background: #FFFFFF;
  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: inline-block;
  margin-right: 16px;
  vertical-align: top;
  cursor: pointer;
}
.service .service-item-wrapper .service-item > img{
  display: block;
}
.service .service-item-wrapper .service-item:hover{
  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.2);
}
.service .service-item-wrapper .service-item:hover .service-item-right-arrows{
  display: block;
}
.service .service-item-wrapper .service-item:hover .service-item-title{
  text-decoration: underline;
}
.service .service-item-wrapper .service-item:last-child{
  margin-right: 0;
}
.service .service-item-title-wrapper{
  height: 60px;
  line-height: 60px;
  text-align: left;
  padding: 0 20px;
  position: relative;
}
.service .service-item-title{
  color: #333333;
  font-size: 20px;
  font-weight: 600;
}
.service .service-item-right-arrows{
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
}
.service .service-item-desc{
  color: #555555;
  font-size: 14px;
  text-align: justify;
  text-justify: distribute;
  padding: 0 20px;
}