.box {
  color: #fe33ac;
  border-color: #fdcdea;
}
.box div {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.animated_div {
  width: 240px;
  height: 80px;
  background: #92B901;
  color: #ffffff;
  font-weight: bold;
  font: 12px '微软雅黑', Verdana, Arial, Helvetica, sans-serif;
  padding: 20px 10px 0px 10px;
  margin: 5px;
  transition-property: width, height, transform, background, font-size, opacity;
  transition-duration: 1s,1s,1s,1s,1s,1s;
  border-radius: 5px;
  opacity: 0.4;
}
.animated_div:hover {
  transform: rotate(360deg);
  opacity: 1;
  background: #1ec7e6;
  width: 300px;
  height: 120px;
  font-size: 16px;
}
body {
  background-color: #f8f8f8;
}
.hd-title {
  font-weight: bold;
  color: #f938ab;
}
.bread,
.serviceTags {
  margin-bottom: 10px;
}
