/* ========================================================
 * 文件名称：version.css
 * 文件作用：版本对比页面样式，包含服务对比表格、价格模块、横幅等
 * 适用页面：版本对比页
 * ======================================================== */

/* 全局列表重置 */
ul,li{
	padding: 0;
	margin: 0;
}

/* 服务对比主容器 */
.service{
    width: 1200px;
    margin: 0 auto;
}

/* 服务列表容器 */
.service-list{
	border-left: 1px solid #e5e5e5;
	margin-bottom: 40px;
}

/* 服务头部样式（表格表头） */
.service-head{
	position: relative;
	background: #f9f9f9;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 18px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* 服务头部底部边框线 */
.service-head:before {
	position: absolute;
	bottom: 0;
	left: -50%;
	content: "";
	height: 1px;
	width: 200%;
	-webkit-transform: scale(.5);
	-moz-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
	background: #e5e5e5;
}

/* 服务头部项目 */
.service-head .service-header_item{
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 52px;
	line-height: 52px;
	text-align: center;
	border-right: 1px solid #e5e5e5;
	font-size:20px;
	font-weight:bold;
	color:rgba(59,66,107,1);
}

/* 服务列表标题 */
.service-list-title{
	padding: 10px 0;
	padding-left: 20px;
	height: 40px;
	line-height: 40px;
	background: #f9f9f9;
	font-weight:bold;
	font-size:20px;
	color:rgba(59,66,107,1);
	border-top: 1px solid #e5e5e5;
}

/* 服务项目列表项 */
.service-list .service-item>li,
.service-item>li {
	color: #3B426B;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	font-family: PingFangSC-Regular;
	color: #333;
}

/* 列表项底部边框线 */
.service-list .service-item>li:before {
	position: absolute;
	bottom: 0;
	left: -50%;
	content: "";
	height: 1px;
	width: 200%;
	-webkit-transform: scale(.5);
	-moz-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
	background: #e5e5e5;
}

/* 服务项目名称 */
.service-item__name {
	position: relative;
	width: 25%;
}

/* 列表项内部分区 */
.service-item>li>div {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border-right: 1px solid #e5e5e5;
	text-align: center;
}

/* 服务项目名称文字 */
.service-item__name>span {
	padding-left: 20px;
	line-height: 46px;
	color: #3B426B;
	font-size:16px;
}

/* 服务项目勾选状态 */
.service-item>li .service-item__check{
	color: #3B426B;
	font-size:16px;
	text-align: center;
	height: auto;
	line-height: 46px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

/* 勾选图标 */
.service-item>li .service-item__check img{
	display: inline-block;
	vertical-align: middle;
	height: 20px;
	margin: 0 auto;
}

/* 子项内容 */
.children div >span{
	width: calc(60% - 25px);
	display: inline-block;
	color: #3B426B;
}

/* 子项第二个span */
.children div >span:nth-child(2){
	line-height: inherit;
	padding: 15px 0;
	padding-left: 20px;
}

/* 子项第一个span */
.children div >span:nth-child(1){
	height: auto;
	text-align: center;
	width: calc(50% - 25px);
	background:rgba(249,249,249,1);
}

/* 子列表项边框调整 */
.children_li:before{
	left: -35% !important;
	width: 180% !important;
}

/* 弹性布局工具类 */
.flex{
	display: flex;
}

/* 服务备注区域 */
.service-remarks{
	border: 1px solid #e5e5e5;
}

/* 服务备注标题 */
.service-remarks .service-list-title{
	border-bottom: 1px solid #e5e5e5;
	border-top: 0;
}

/* 服务备注内容 */
.service-remarks_content{
	box-sizing: border-box;
	padding: 23px;
}

/* 备注段落 */
.service-remarks_content p{
	margin-top: 0;
	margin-bottom: 10px;
	color: #3B426B;
	font-size:16px;
}

/* 横幅区域 */
.banner{
	background: url(../img/version/service-banner.png) no-repeat 100% 100%;
	height: 430px;
	width: 100%;
	color: #FFFFFF;
	text-align: center;
	background-size: cover;
}

/* 横幅标题 */
.banner .title {
	font-size: 38px;
	padding: 158px 0 41px;
}

/* 横幅副标题 */
.banner .sub-title {
	font-size: 26px;
}

/* 服务头部标题 */
.service-header_title{
	font-size:32px;
	font-family:PingFang SC;
	color:rgba(59,66,107,1);
	line-height:63px;
	text-align: center;
	padding: 56px 0;
}

/* 服务头部项目卡片 */
.service-header .service-header_item{
	width:366px;
	height:234px;
	background:rgba(255,255,255,1);
	box-shadow:0px 4px 14px 2px rgba(122,153,209,0.17);
	border-radius:8px;
	margin: 0 10px;
}

/* 服务头部容器 */
.service-header{
	margin-bottom: 70px;
}

/* 服务头部项目文字 */
.service-header .service-header_item p{
	text-align: center;
	margin: 0;
	color: #3B426B;
}

/* 服务头部项目名称 */
.service-header .service-header_item p:nth-child(1){
	font-size:24px;
	padding-top: 40px;
}

/* 服务头部项目原价 */
.service-header .service-header_item p:nth-child(2){
	font-size:20px;
	padding: 30px 0;
	padding-bottom: 15px;
}

/* 服务头部项目现价 */
.service-header .service-header_item p:nth-child(3){
	color: #F23821;
	font-size: 28px;
}

/* 现价货币符号 */
.service-header .service-header_item p:nth-child(3) span:nth-child(1){
	font-size:22px; 
}

/* 现价整数部分 */
.service-header .service-header_item p:nth-child(3) span:nth-child(2){
	color: #F23821;
	font-size: 28px;
}

/* 现价小数部分 */
.service-header .service-header_item p:nth-child(3) span:nth-child(3){
	color: #F23821;
	font-size: 48px;
}

/* 服务项目标签 */
.service-item__tag{
	color: #F23821 !important;
	padding-left: 0;
	position: absolute;
	width: 72px;
	height: 23px;
	background: rgba(255,231,228,1);
	border-radius: 2px 2px 2px 12px;
	top: 0;
	font-size: 12px !important;
	line-height: 23px !important;
	right: 0;
	padding-left: 0 !important;
}

/* 顶部固定样式 */
.service .isTop{
	position: fixed;
	top: 0;
	width: 1200px;
	z-index: 100;
}