/* 模块主体 */
.section-block {
	padding: 90px 0
}

.section-sub-bar {
	text-align: center;
}

.section-sub-bar .title {
	padding-bottom: 20px;
	font-size: 32px;
}

.section-sub-bar .txt {
	color: #999;
	line-height: 26px;
	font-size: 16px;
}


.container {
  width: 60%;
  margin: 0 auto;
}
.main {
  width: 100%;
}
.offer-content {
  width: 100%;
  background-color: #F9FCFF;
  padding: 30px 0;
}
.offer-content h1 {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
.offer-data {
  display: flex;
  margin-top: 50px;
}
.offer-data > div {
  padding: 20px 15px;
  box-shadow: 0 0 3px 0 #ccc;
  position: relative;
  background-color: #fff;
}
.offer-data > div .line {
  width: 50px;
  height: 5px;
  border-radius: 10px;
  background-image: linear-gradient(#0181ff, #01bdff);
  position: absolute;
  left: 15px;
  top: 0;
}
.offer-data > div > h2 {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px dashed #EFEFEF;
  padding-bottom: 20px;
}
.offer-data > div ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.offer-data > div ul li:nth-child(2n-1) {
  margin-right: 10%;
}
.offer-data > div ul li.no-border {
  border-bottom: none;
}
.offer-data > div ul li {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px solid #EEEEEE;
  width: 45%;
  font-size: 14px;
}
.offer-data > div ul li > span {
  color: #2F97FF;
  font-weight: bold;
}
.offer-data > div ul li p {
  flex: 1;
  margin-left: 5px;
}
.offer-data > div ul li p span {
  color: gray;
  font-size: 12px;
}
.offer-data > div ul li div:first-of-type {
  width: 15px;
  height: 15px;
  color: #fff;
  background-image: linear-gradient(#0187ff, #0ec1ff);
  text-align: center;
  line-height: 15px;
  border-radius: 10px;
}
.offer-data > div ul li div:nth-of-type(2) {
  width: 100%;
  color: gray;
  font-size: 12px;
  text-indent: 1em;
}
.offer-data > div ul li div.placeholder {
  display: none;
}
.offer-data > div ul li.full-li {
  width: 100%;
  margin: 0;
}
.offer-data > div ul li.no-padding {
  padding-top: 0;
}
.offer-data > div .price-contact {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  background-color: #FDFEFF;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.offer-data > div .price-contact p {
  color: gray;
  margin-left: 20px;
  font-size: 14px;
}
.offer-data > div .price-contact p span {
  color: #f60;
}
.offer-data > div .price-contact p span strong {
  font-size: 30px;
  margin: 0 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.offer-data > div .price-contact div {
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid #0181ff;
  color: #0181ff;
  margin-right: 20px;
  transition: all .3s;
}
.offer-data > div .price-contact div:hover {
  background-color: #0181ff;
  color: #fff;
  cursor: pointer;
}
.offer-data .data-year {
  width: 45%;
  margin-right: 3%;
}
.offer-data .data-add-service {
  width: 52%;
}
/* 购买理由 */
.reason-section-block {
	padding-bottom: 120px;
}

.reason-group {
	display: flex;
	justify-content: center;
	margin: 0 15px;
	padding-top: 40px;
}

.reason-group>li {
	width: 280px;
	height: 300px;
	padding: 70px 20px;
	margin: 0 15px;
	text-align: center;
	box-sizing: border-box;
	border-radius: 5px;
	transition: all .5s;
	background: #FAFDFF;
}

.reason-group>li:hover {
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	transform: translateY(-10px);
}

.reason-group>li .tit {
	padding: 25px 0 15px;
	font-size: 16px;
	font-weight: bold;
}

.reason-group>li .txt {
	color: #666;
	line-height: 24px;
	text-align: left;
	font-size: 14px;
}