.service {
  background-color: #FAFAFA;
  padding: 80px 0;
}
.service .title {
  text-align: center;
}
.service .title p:nth-child(1) {
  color: #535353;
  font-size: 48px;
  font-family: "FZCYSK--GBK1-0";
}
.service .title p:nth-child(2) {
  color: #888888;
  font-size: 24px;
  font-family: "FZCYSK--GBK1-0";
  margin: 30px 0;
}
.service .allItems {
  width: 60%;
  margin: 80px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service .allItems .item {
  width: 30%;
  background-color: white;
  text-align: center;
  transition: all 600ms;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
  padding: 30px 0;
  margin-bottom: 60px;
  position: relative;
}
.service .allItems .item::after {
  content: "";
  display: inline-block;
  background-color: #FF0000;
  width: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transition: all 600ms;
  position: absolute;
}
.service .allItems .item:hover::after {
  width: 100%;
}
.service .allItems .item .p1 {
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  margin: 20px auto;
}
.service .allItems .item .des {
  color: #666666;
  font-size: 14px;
  font-family: "MicrosoftYaHei";
  line-height: 28px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px){
	.service {
	  background-color: #FAFAFA;
	  padding: 40px 0;
	}
	.service .title {
	  text-align: center;
	}
	.service .title p:nth-child(1) {
	  color: #535353;
	  font-size: 24px;
	  font-family: "FZCYSK--GBK1-0";
	}
	.service .title p:nth-child(2) {
	  color: #888888;
	  font-size: 16px;
	  font-family: "FZCYSK--GBK1-0";
	  margin: 15px 0;
	}
	.service .allItems {
	  width: 95%;
	  margin: 30px auto;
	  display: flex;
	  flex-direction: row;
	  justify-content: space-between;
	  flex-wrap: wrap;
	}
	.service .allItems .item {
	  width: 48%;
	  background-color: white;
	  text-align: center;
	  transition: all 600ms;
	  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
	  padding: 20px 0;
	  margin-bottom: 15px;
	  position: relative;
	}
	.service .allItems .item::after {
	  content: "";
	  display: inline-block;
	  background-color: #FF0000;
	  width: 0;
	  bottom: 0;
	  left: 0;
	  height: 2px;
	  transition: all 600ms;
	  position: absolute;
	}
	.service .allItems .item .pic {
	  height: 25px;
	  width: 25px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  margin: 0 auto;
	}
	.service .allItems .item .pic img {
	  max-width: 25px;
	  max-height: 25px;
	  object-fit: contain;
	}
	.service .allItems .item:hover::after {
	  width: 100%;
	}
	.service .allItems .item .p1 {
	  font-size: 16px;
	  font-family: "SOURCEHANSANSCN-REGULAR";
	  margin: 5px auto;
	}
	.service .allItems .item .des {
	  color: #666666;
	  font-size: 12px;
	  font-family: "MicrosoftYaHei";
	  line-height: 25px;
	  width: 95%;
	  margin: 0 auto;
	  text-align: center;
	}
}