
body {
	background-color: #f9f9f9 !important;
}
.box-tab {
	width: 1684px;
	height: 114px;
	margin: 0 auto 40px auto;
}
.box-tab ul {
	display: flex;
	justify-content: center;
	height: 100%;
}
.box-tab ul li {
	width: 120px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	color: #595858;
	position: relative;
}
.box-tab ul li.active::after {
	content: " ";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #83cbc5;
}

.box-plan {
	width: 1684px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box-plan .item {
	width: 832px;
	height: 400px;
	background-color: #fff;
	border-radius: 10px;
	margin-bottom: 60px;
	box-sizing: border-box;
	padding: 0 55px;
	position: relative;
	cursor: pointer;
}
.box-plan .item:hover::before,
.box-plan .item.active::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	border: 2px solid #83cbc5;
}
.box-plan .item .title {
	height: 92px;
	line-height: 92px;
	font-size: 30px;
	color: #83cbc5;
	position: relative;
	margin-bottom: 5px;
}
.box-plan .item .title::after {
	content: " ";
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #ccc;
}
.box-plan .item .body .type {
	display: flex;
	flex-wrap: wrap;
	padding-top: 30px;
	padding-bottom: 10px;
}
.box-plan .item .body .type li {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5037b3;
	font-size: 24px;
	line-height: 34px;
	margin-right: 20px;
	margin-bottom: 10px;
	padding: 3px 10px;
	background-color: #d8d4e9;
	min-width: 140px;
}
.box-plan .item .body .type li:nth-child(2) { color: #DE8200; background-color: #FFEAC1; }
.box-plan .item .body .type li:nth-child(3) { color: #DB2525; background-color: #FDEAEA; }

.box-plan .item .body dl {
	padding: 7px 0;
	font-size: 24px;
	line-height: 34px;
	width: 430px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.calc-other {
	position: sticky;
	bottom: 0;
	background-color: #83cbc5;
}
.calc-other ul {
	width: 1684px;
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly;
}
.calc-other ul li {
	display: flex;
	width: 842px;
	height: 100px;
	position: relative;
	font-size: 20px;
}
.calc-other ul li a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.calc-other ul li::after {
	content: " ";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 4px;
	height: 70px;
	background-color: #fff;
}
.calc-other ul li:last-child::after {
	display: none;
}
.calc-other ul li img {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}
