/* 公共样式类 */
/* 图标的背景图片动画 */
.company_icon {
  position: relative;
}
.company_icon i {
  font-size: 70px;
  color: #0993c9;
}
.company_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/company/shap1.png") no-repeat center;
  transition: all 1.5s;
}
.company_icon:hover::before {
  transform: rotate(45deg);
}
/* section区域的标题、线条、描述区域样式 */
#project .wrap .title,
#creative-team .wrap .title,
#price-plan .wrap .title,
#recent-news .wrap .title,
#contact .wrap .title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #0993c9;
}
#project .wrap .line,
#creative-team .wrap .line,
#price-plan .wrap .line,
#recent-news .wrap .line,
#contact .wrap .line {
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}
#project .wrap .line .left,
#creative-team .wrap .line .left,
#price-plan .wrap .line .left,
#recent-news .wrap .line .left,
#contact .wrap .line .left,
#project .wrap .line .right,
#creative-team .wrap .line .right,
#price-plan .wrap .line .right,
#recent-news .wrap .line .right,
#contact .wrap .line .right {
  display: inline-block;
  width: 70px;
  height: 1px;
  background-color: #0993c9;
}
#project .wrap .line img,
#creative-team .wrap .line img,
#price-plan .wrap .line img,
#recent-news .wrap .line img,
#contact .wrap .line img {
  margin: 0 7px;
  animation: imgRotate 10s infinite;
}
@keyframes imgRotate {
  50% {
    transform: rotateX(180deg);
  }
  75% {
    transform: rotateX(360deg);
  }
}
#project .wrap .desc,
#creative-team .wrap .desc,
#price-plan .wrap .desc,
#recent-news .wrap .desc,
#contact .wrap .desc {
  text-align: center;
  line-height: 25px;
}
.btn {
  width: 40%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #0993c9;
  color: white;
  transition: all 0.5s;
  border-radius: 1.8em;
}
.btn:hover {
  cursor: pointer;
  background-color: #ff8a73;
  transform: translateY(-2%);
}
