/*服务内容*/
.service {
  width: 92%;
  margin: 10px auto;
}
.service .title {
  display: block;
  width: fit-content;
  color: #000;
  font-size: 32px;
  margin: 30px auto;
}
.service .tab-box {
  text-align: center;
  display: flex;
  justify-content: center;
}
.service .tab-box .tab {
  box-sizing: border-box;
  font-size: 20px;
  margin: 16px 150px;
  cursor: pointer;
}
.service .tab-box .tab.active {
  color: #ce4141;
}
.service .tab-box .tab:hover {
  color: #ce4141;
}
.service .item-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service .item-box .item {
  position: relative;
  flex-shrink: 1;
  width: 30%;
  height: 364px;
  border: 1px solid #aaa;
  margin-bottom: 20px;
}
.service .item-box .item .image {
  width: 240px;
  height: 230px ;
  margin: 0 auto 10px auto;
}
.service .item-box .item .image img {
  width: 100%;
  height: 100%;
}
.service .item-box .item .image .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 2rem;
  transition: 0.5s;
  overflow: hidden;
}
.service .item-box .item .image .shadow .content {
  padding: 12px;
  font-size: 1.6rem;
  line-height: 4rem;
}
.service .item-box .item .text .icon-box {
  display: flex;
  justify-content: space-around;
}
.service .item-box .item .text .icon-box .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.service .item-box .item .text .icon-box .icon img {
  width: 100%;
  max-height: 230px ;
}
.service .item-box .item .text .name a {
  display: block;
  color: #000;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.6rem;
}
.service .item-box .item:hover .image .shadow {
  height: 100%;
}
/*服务流程*/
.step {
  margin: 40px auto;
  text-align: center;
  background: url(/images/liucheng.png) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 10px 0;
}
.step .title {
  display: block;
  width: fit-content;
  font-size: 32px;
  margin: 30px auto;
}
.step .item-box {
  width: fit-content;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin: 0 auto;
}
.step .item-box .item {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 30px;
  color: #fff;
  text-decoration: none;
}
.step .item-box .item .content {
  margin-right: 16px;
}
.step .item-box .item .content .icon {
  margin-bottom: 10px;
}
.step .item-box .item .content .icon i {
  font-size: 50px;
  color: #fff;
}
.step .item-box .item .content .name {
  font-size: 20px;
}
.step .item-box .item .next i {
  font-size: 30px;
  color: #aaa;
}
/*常见问题*/
.question .title {
  display: block;
  width: fit-content;
  font-size: 32px;
  margin: 30px auto;
}
.question .item-box {
  width: 94%;
  margin: 0 auto;
}
.question .item-box .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.question .item-box .item .text {
  width: 49%;
  margin: 0 25px;
}
.question .item-box .item .text .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 52px;
  text-decoration: none;
}
.question .item-box .item .text .content {
  line-height: 24px;
}
.question .item-box .item .image {
  width: 49%;
  margin: 0 25px;
}
.question .item-box .item .image img {
  width: 100%;
  height: 100%;
}
/*服务优势*/
.advantage {
  width: 96%;
  margin: 0 auto;
}
.advantage .title {
  display: block;
  width: fit-content;
  color: #000;
  font-size: 32px;
  margin: 20px auto;
}
.advantage .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  border: none;
}
.advantage .list .item {
  width: 160px;
  height: 186px;
  text-align: center;
  border: 1px solid #aaa;
  padding: 10px;
  margin: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.5s;
  text-decoration: none;
}
.advantage .list .item:hover {
  color: #fff;
  background-color: #d42828;
  box-shadow: 4px 4px 4px #aaa;
}
.advantage .list .item .icon i {
  font-size: 30px;
}
.advantage .list .item .name {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}
.advantage .list .item .desc {
  font-size: 12px;
}
/*footer*/
.footer {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
}
.footer .footer-box {
  width: 80%;
  margin: 0 auto;
}
/* @media (min-width: 1500px) {
  .service {
    width: 68%;
  }
  .advantage {
    width: 52%;
  }
} */
