﻿body{
	padding-top: 83px;
}
.parent{
	padding: 80px 0;
}
.parent .container{
	position: relative;
}
.tabCon{
	width: 80%;
	position: relative;
	padding-left: 100px;
}
.tabCon dt{
	position: absolute;
	left: 2px;
	top: 40px;
	width: 100px;
	text-align: right;
}
.eachTit{
	display: inline-block;
	width: 84px;
	height: 50px;
	line-height: 46px;
	text-align: center;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
	background-color: #fff;
	margin-bottom: 8px;
	border: 2px solid #5ca9fb;
	padding: 1px;
	padding-right: 0;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}
.eachTit::before{
	content: "";
	position: absolute;
    width: 0;
    height: 0;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-left: 10px solid #5ca9fb;
    border-bottom: 6px solid transparent;
    display: none;
}
.eachTit span{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #dedbd6;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
	color: #fff;
	text-shadow: #000 0px 0px 4px;
	transition: all 0.3s;
}
.eachTit.active{
	width: 100px;
}
.eachTit.active span{
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
}
.eachTit.active::before{
	display: block;
}
.eachTit:hover{
	width: 100px;
}
.eachTit:hover span{
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
}
.eachTit:hover::before{
	display: block;
}
.tabCon dd{
	border: 2px solid #5ca9fb;
	border-radius: 10px;
	position: relative;
	padding: 18px;
}
.eachCon{
	display: none;
}
.eachCon.active{
	display: block;
}
.eachCon p{
	text-indent: 25px;
	padding-bottom: 20px;
	font-size: 12px;
	line-height: 20px;
}
.eachCon p.tit{
	color: #fff;
	line-height: 26px;
	padding-bottom: 0;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
}
.eachCon p img{
	display: block;
	max-width: 100%;
	margin: 0px auto;
}

.rightCon{
	position: absolute;
	right: 0;
	top: 0;
	width: 18%;
	padding-top: 20px;
}
.r-head dt{
	margin-bottom: 30px;
}
.r-head dd{
	font-size: 12px;
	line-height: 24px;
	color: #2e1a00;
}

.downloadCon{
	border: 2px solid #5ca9fb;
	border-radius: 10px;
	padding: 20px 14px;
	font-size: 12px;
	color: #333333;
	font-weight: bold;
}
.downloadCon a{
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
	border-radius: 4px;
	margin-top: 4px;
}
.downloadCon a span{
	padding-left: 24px;
	background-image: url(../img/parent/downlond.png);
	background-repeat: no-repeat;
	color: #fff;
	background-size: 20px;
}
.FAQList{
	margin-top: 20px;
	border: 2px solid #5ca9fb;
	border-radius: 10px;
	padding: 20px 14px;
	font-size: 12px;
	color: #333333;
}
.FAQList dd{
	margin-top: 15px;
}
.FAQList dd a{
	color: #333333;
	transition: all 0.3s;
	line-height: 20px;
}
.FAQList dd a:hover{
	color: #5ca9fb;
}

@media screen and (max-width:750px) {
	.tabCon{
		width: 100%;
		padding-left: 0;
	}
	.rightCon{
		width: 100%;
		position: static;
	}
	.tabCon dd{
		position: static;
	}
	.tabCon dt{
		width: 100%;
		position: static;
		display: flex;
		justify-content: space-between;
	}
	.eachTit{
		border-radius: 10px;
		padding: 1px;
	}
	.eachTit span{
		border-radius: 10px;
	}
	.eachTit::after{
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		left: 50%;
		top: 100%;
		transform: translateX(-50%);
		border-top: 10px solid #5ca9fb;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		display: none;
	}
	.eachTit.active::after{
		display: block;
	}
	.eachTit::before{
		display: none !important;
	}
	.r-head dt img{
		display: block;
		margin: 0px auto;
	}
}