.field {
	padding: 10rem 0;
	background-color: #F4F6F9;
}
.title{
  font-size: 40px;
  font-weight: 600;
	text-align: center;
}
.fieldList{
	margin-top: 6rem;
}
.fieldItem{
	width: auto;
	height: 28.4rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card-box{
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 3rem 12px;
}
.card-box .cardName{
	font-size: 3rem;
	font-weight: 600;
    text-align: center;
}
.card-box img{
	width: 40px;
	height: 40px;
}
.card-box .cardDesc{
	display: none;
	font-size: 14px;
	color: #3C3C3C;
	text-align: justify;
}
.card-content{
	background-image: url(../img/serve-card-bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: none;
	width: 100%;
	height: 100%;
	color: #fff;
	flex-direction: column;
	justify-content:	space-between;
	align-items: center;
	padding: 3rem 12px;
}
.card-content .cardName{
	font-size: 3rem;
	font-weight: 600;
}
.card-content .cardDesc{
	font-size: 1.6rem;
	text-align: justify;
}

.rotate{
	animation: rotate 0.4s linear;
}

.advantage{
  padding: 10rem 0;
  background-color: #fff;
}
.advantage_list{
  margin-top: 10rem;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 2.9rem 4rem;
}
.advantage_list>div{
  min-height: 19.6rem;
  background-color: #F9FBFF;
  display: flex;
  align-items: center;
  padding: 0 14px;
}
.advantage_list .advantage_icon{
  height: 7rem;
  width: 7rem;
  min-width: 36px;
  min-height: 36px;
}
.advantage_list .advantage_info{
  min-height: 11rem;
  flex: 1;
  padding-left: 14px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.advantage_list .advantage_info .advantage_name{
  font-size: 2.4rem;
  font-weight: bold;
}
.advantage_list .advantage_info .advantage_desc{
  font-size: 1.6rem;
  color: #3C3C3C;
}

.successCase{
  padding: 10rem 0;
  background-color: #F7F8F9;
}

.caseGenre{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2,47%);
  grid-gap: 100px 70px;
}

.genre-box{
  height: 225px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.genreName{
  position: relative;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 20px;
}
.genreName::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 41px;
  height: 1px;
  background-color: #E1E1E1;
}
.genreDesc{
  font-size: 14px;
  color: #595959;
  line-height: 20px;
  letter-spacing: 1px;
}
.genreMore{
  width: 100px;
  background-color: transparent;
  display: flex;
  align-items: center;
}
.genreMore div{
  width: 18px;
  height: 18px;
  border-radius: 1px;
  border: 1px solid #D8D8D8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}
@keyframes rotate {
	to{
		transform: rotateY(180deg);
	}
}

@media screen and (max-width:768px) {
	.title{
    font-size: 18px;
  }
	.card-box{
		flex-direction: column-reverse;
		padding: 2rem 12px;
	}
	.card-box .cardDesc{
		display: block;
	}
	.card-box .cardName{
		font-size: 16px;
	}
	.fieldItem {
		min-height: 197px;
	}

	.advantage_list{
    grid-template-columns: repeat(2,1fr);
  }
  .advantage_list>div{
    padding: 9px;
    flex-direction: column;
  }
  .advantage_list .advantage_info{
    margin-top: 10px;
    padding-left: 0;
  }
  .advantage_list .advantage_info{
    text-align: center;
  }
  .advantage_list .advantage_info .advantage_name{
    font-size: 16px;
  }
  .advantage_list .advantage_info .advantage_desc{
    font-size: 14px;
    color: #3C3C3C;
  }
	.successCase{
    padding: 10rem 15px;
  }
	.caseGenre{
    margin-top: 50px;
    grid-gap: 50px 40px;
  }
  .genreName{
    font-size: 16px;
  }
	
}

@media screen and (max-width:600px) {
	.caseGenre{
    grid-template-columns: repeat(1,97%);
  }
  .genre-box{
    height: 180px;
  }
}