.tabR {
	position: relative;
	height: 530px;
}

/* 设置内层div相对于父级绝对定位，默认隐藏 */
.tabR .tab_content {
	display: none;
	position: absolute;
	top: 50px;
	padding: 100px 5px;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	justify-content: space-around;
	background: #f4f9fe;
	margin-top: 20px;
}

/* 设置label宽高、行内块、文本居中、行高、字体大小、字体颜色 */
.tabR label {
	width: 16%;
	/* height: 40px; */
	display: inline-block;
	text-align: center;
	/* line-height: 5px; */
	font-size: 16px;
	color: #333;
	cursor: pointer;
}

.tabR label:hover {
	color: #3a60b2;
	font-weight: bold;
}
.tabR label img{
	width: 27px;
	height: 27px;
	margin-right: 5px;
	vertical-align: middle;
}

/* 默认所有radio隐藏 */
.tabR input[type="radio"] {
	display: none;
}

/* 被选中的radio下的label下的div显示 */
.tabR input[type="radio"]:checked+label+.tab_content {
	display: flex;
}

/* 被选中的radio下的label背景颜色改为红色 */
.tabR input[type="radio"]:checked+label span {
	border-bottom: 3px solid #1E6FFF;
	padding-bottom: 8px;
	color: #1E6FFF;
	font-weight: 600;
}

.tabR .tab_content_one {
	height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	justify-content: center;
}

.tabR .tab_content_two {
	display: flex;
	flex-wrap: wrap;
	background: rgb(248, 249, 250);
	padding: 10px;
	border-radius: 0 0 10px 10px;
}

.tabR .tab_content_two p {
	display: flex;
	width: 32%;
	align-items: center;
	justify-content: center;
	padding: 5px 0;
	font-size: 14px;
}
.tabR .tab_content_two p.two {
	width: 50%;
}

.tabR .tab_content_two p i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 5px;
}
.tabR .zzgg p i {
	background: #429efd;
}
.tabR .wwsc p i {
	background: #ff7a4e;
}
.tabR .ai p i {
	background: #1a70cc;
}
.tabR .bbjy p i {
	background: #7998ef;
}
.tabR .zjzx p i {
	background: #4aedcd;
}
.tabR .tbgl p i {
	background: #ffe5e3;
}

.tabR .tab_content_one_img {
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}

.tabR .tab_content_list {
	width: 350px;
	background: white;
	border-radius: 10px;
}

.tabR .tab_content_one_h1 {
	font-size: 18px;
}

.tabR .tab_content_one_h2 {
	font-size: 14px;
	color: #7F7F7F;
	margin-top: 10px;
	padding: 0 20px;
	line-height: 26px;
}
