/*清除默认样式*/
* {
	margin: 0;
	padding: 0;
	color:#333;
}
.foot *{
	color:#eee;	
}
li {
	list-style: none;
}
a {
	text-decoration: none;/*c*/
}
img {
	border: 0;
}
#container {
	min-height: 752px;
	margin: 0 auto;
	width: 80%;
}
.head {
	height: 80px;
	margin-top: 15px;
	margin-bottom: 5px;
	padding: 0;
	overflow: hidden;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #C00;
}
.head .left-img {
	float: left;
}
.head .right-img {
	float: right;
}
/*轮播图*/
    /*最外层盒子样式处理：
    1.设置与轮播图高宽一致
    2.设置纵向距顶部50px，水平居中
    3.设置自己为固定位置
    */
.slideshow {
	width: 100%;
	height: 300px;
	position: relative;
}
.img {
	width: 100%;
	height: 100%;
}
/*轮播图片集合处理:
    1.将其设置为脱离文档流
    2.设置距顶部和左侧都为0
    */
.img li {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.img li a, .img li img {
	display: block;
	width: 100%;
	height: 100%;
}
/*顺序按钮区域处理：
    1.设置脱离文档流
    2.通过设置text-align、width使其整体水平居中
    3.设置距离底部20px
    */
.num {
	position: absolute;
	left: 50%;
	margin-left: -120px;
	text-align: center;
	width: 240px;
	bottom: 20px;
}
/*顺序按钮处理:
       1.将其设置为行级及块级兼容显示
       2.设置其宽高
       3.设置背景色及字体颜色
       4.设置字体水平居中
       5.通过设置line-height与height一致，使其字体纵向居中
       6.设置其样式为圆形
       7.增加按钮左右间距
       */
.num li {
	float: left;
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: darkgray;
	color: white;
	text-align: center;
	line-height: 20px;
	border-radius: 50%;
	margin: 0 20px;
}
/*左、右按钮相同部分处理:
     1.设置其脱离文档流
     2.设置其宽高
     3.设置背景色及字体颜色
     4.设置字体水平居中
     5.通过设置line-height与height一致，使其字体纵向居中
     6.通过设置top、margin-top使其整体纵向居中
     7.默认不显示
     */
.btn {
	position: absolute;
	width: 20px;
	height: 50px;
	background-color: darkgray;
	color: white;
	text-align: center;
	line-height: 50px;
	top: 50%;
	margin-top: -25px;
	display: none;
}
/*左侧按钮处理:
    设置左侧为0
    */
.left_btn {
	left: 0;
}
/*右侧按钮处理:
     设置右侧为0
     */
.right_btn {
	right: 0;
}
/*鼠标悬浮至轮播图区域时左、右按钮处理:
     1.设置左右按钮显示样式为行级块级兼容
     2.设置鼠标放置在左右按钮时样式为小手
     */
.slideshow:hover .btn {
	display: inline-block;
	cursor: pointer;
}
/*设置顺序按钮初始按钮样式:
     设置为红色（由于样式级别问题会导致设置无效，可通过两种方式解决：
     1.后面加上!important
     2.将css定位写详细，比如：.slideshow .num .current{……
     ）
     */
.current {
	background-color: red!important;
}
/*证书信息*/
.certInfoContainer .keyType {
	width: 100%;
	height: 76px;
}
.keyType .wrapper {
	overflow: hidden;
	margin: 0 auto;
	width: 450px;
	height: 100%;
}
.keyType .wrapper .item {
	display: inline-block;
	height: 70px;
	font-size: 18px;
	color: #b4b4b4;
	border-bottom: 6px solid transparent;
	cursor: pointer;
}
.item-left {
	float: left;
}
.item-right {
	float: right;
}
.line {
	background: #cbcbcb;
	height: 30px;
	width: 2px;
	float: left;
	margin-left: 80px;
	margin-top: 20px;
}
.keyType .wrapper .item.active {
	border-bottom: 6px solid #b02930;
	color: #b02930;
}
.keyType .wrapper .item img {
	position: relative;
	top: 14px;
}
.keyType .wrapper .item span {
	margin-left: 20px;
}
.certInfoContainer .certType {
	overflow: hidden;
	width: 100%;
	height: 200px;
	background: #f6f6f6;
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #eaeaea;
}
.certInfoContainer .certType .wrapper {
	overflow: hidden;
	/*width: 752px;*/
	width: 500px;
	box-sizing: border-box;
	height: 100%;
	margin: 0 auto;
}
.certType .wrapper .item {
	box-sizing: content-box;
	overflow: hidden;
	margin-left: 76px;
	float: left;
	width: 200px;
	height: 100%;
	cursor: pointer;
}
.certType .wrapper .item:first-child {
	margin-left: 0;
}
.certType .wrapper .item>img {
	float: left;
	height: 80px;
	width: 80px;
	position: relative;
	top: 50%;
	margin-top: -40px;
}
.certType .wrapper .item .desc-wrapper {
	position: relative;
	top: 50%;
	margin-top: -40px;
	float: right;
}
.certType .desc-wrapper .title {
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 18px;
	color: #666;
}
.certType .desc-wrapper .desc {
	margin-bottom: 5px;
	font-size: 14px;
	color: #b9b9b9;
}
.certType .desc-wrapper a, .certType .desc-wrapper .waitSpan {
	display: block;
	font-size: 14px;
	border: 1px solid #b02930;
	padding: 5px 15px;
	color: #b02930;
	border-radius: 13px;
}
.certIntroduce #key {
	height: 100%;
	width: 100%;
}
.certIntroduce .item {
	width: 100%;
	margin: 20px auto 0;
}
.certIntroduce .item .title {
	margin: 20px 0;
	font-size: 20px;
	color: #b02930;
}
.certIntroduce .item .content {
	font-size: 14px;
	color: #666;
}
.certIntroduce .item .content .section {
	margin-bottom: 30px;
}
#container .foot {
	padding: 20px 0 10px;
	width: 100%;
	background: #5f5f5f;
}
#container .foot .contact {
	overflow: hidden;
	width: 850px;
	margin: 0 auto;
	font-size: 16px;
	color: #fff;
}
#container .foot .contact>div {
	overflow: hidden;
	text-align: left;
	margin-bottom: 10px;
}
#container .foot .contact .left {
	float: left;
	width: 96%;
}
#container .foot .contact .right {
	float: right;
	width: 4%;
}
#container .foot .safe {
	text-align: center;
	font-size: 14px;
	color: #a0a0a0;
}
#container .foot .safe>div span {
	padding: 0 10px;
}
#container .foot .safe a {
	font-size: 14px;
	color: #a0a0a0;
}
#container .foot .safe img {
	height: 16px;
	width: 16px;
	position: relative;
	top: 3px;
}
/*  办理流程  */
.handle-procedures {
	margin: 0 auto;
}
.handle-procedures .h-d-title {
	margin: 20px 0;
	font-size: 20px;
	color: #b02930;
}
.process-section {
	margin-bottom: 20px;
}
.process-section .process-title {
	font-size: 20px;
	margin: 10px 0;
}
.process-section .process-content>p {
	margin-bottom: 10px;
	text-indent: 20px;
	line-height: 30px;
}
.process-section .process-content>div {
	margin-bottom: 10px;
	line-height: 30px;
}
.process-section .process-content table {
	table-layout: fixed;
	empty-cells: show;
	border-collapse: collapse;
}
.process-section .process-content table th {
	border: 1px solid #ccc;
	padding: 6px 6px 6px 12px;
}
.process-section .process-content table td {
	border: 1px solid #ccc;
	font-size: 14px;
	padding: 6px 6px 6px 12px;
}
.handle-procedures {
	margin: 10px 0;
}
.handle-procedures .h-d-title {
	font-size: 20px;
}
.process-section {
	margin-bottom: 20px;
}
.process-section .process-title {
	font-size: 20px;
	margin: 10px 0;
}
.process-section .process-content>p {
	margin-bottom: 10px;
	text-indent: 20px;
	line-height: 30px;
}
.process-section .process-content>div {
	margin-bottom: 10px;
	line-height: 30px;
}
.process-section .process-content table {
	table-layout: fixed;
	empty-cells: show;
	border-collapse: collapse;
}
.process-section .process-content table th {
	border: 1px solid #ccc;
	padding: 6px 6px 6px 12px;
}
.process-section .process-content table td {
	border: 1px solid #ccc;
	font-size: 14px;
	padding: 6px 6px 6px 12px;
}
.tabbox {
	display: flex;
	flex-flow: row;
	padding-top: 10px;
	padding-bottom: 10px;
	/* [disabled]border-bottom:solid 1px #ddd; */
}
.tabbox a {
	flex: 1 1 auto;
	position: relative;
	font-size: 18px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	background-color: #FFF;
	cursor: pointer;
	padding-left: 42px;
}

.tabbox a:after {
	content:"";
	width:0;height:0;
	border-left:solid 21px #e2e2e2; 
	border-top:solid 21px #e2e2e2; 
	border-right:solid 21px rgba(0,0,0,0); 
	border-bottom:solid 21px rgba(0,0,0,0);
	position:absolute;
	right:0;
	top:0;
	transform:translateX(100%);
	z-index:9;
}
.tabbox a:before {
	content:"";
	width:0;height:0;
	border-left:solid 21px #FFF; 
	border-top:solid 21px #FFF; 
	border-right:solid 21px rgba(0,0,0,0); 
	border-bottom:solid 21px rgba(0,0,0,0);
	position:absolute;
	right:0;
	top:0;
	transform:translateX(95%);
	z-index:11;
}
.tabbox a.nowid {
	color:#FFF;
	background-color: #09C;
}
.tabbox a.nowid:before,.tabbox a.nowid:after {
	border-left:solid 21px #09c; 
	border-top:solid 21px #09c; 
}

.tabbox a:nth-last-child(1):before,.tabbox a:nth-last-child(1):after {
	content:none;
}
.contentBlock {
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 20px;
	border: 1px solid #ddd;
	font-size: 14px;
	line-height: 180%;
	display: none;
	min-height: 450px;
}
.contentBlock table {
	width: 100%;
	border-collapse: collapse;
	border: solid 2px #CCC;
}
.contentBlock td, .contentBlock th {
	border: solid 1px #CCC;
	padding: 12px;
	font-size: 14px;
	line-height: 160%;
}
.contentBlock th {
	color: #333;
	background-color: #F0F0F0;
}
.contentBlock td.head, .contentBlock tr.head td {
	background-color: #F2F2F2;
}
.contentBlock tr.head,.contentBlock td.head{
	padding:0;
	height:auto;line-height:160%;
	border-bottom: 1px solid #ddd;
}
.contentBlock tr:nth-child(odd) {
	background-color: #FFFFFF;
}
.contentBlock a {
	color: #06C;
	text-decoration: none;
}
.contentBlock table.informTable{
margin-top:15px;
margin-bottom:15px;	
width:80%;
margin-left:auto;
margin-right:auto;
}
.contentBlock table.informTable,.contentBlock  table.informTable td{
	border:solid 1px #EEE;
}
.contentBlock table.informTable tr:nth-child(odd){
	background-color:#fff;
}
.contentBlock h2 {
	font-size:18px;
	line-height:36px;
	margin-bottom:10px;
	margin-top:10px;
	font-weight:normal;
	border-bottom:dotted 1px #CCC;
	cursor:pointer;
}
.contentBlock h3 {
	font-size:16px;
	margin-bottom:10px;
	margin-top:10px;
	font-weight:normal;
}
.contentBlock .partBlock {
	padding: 20px;
	border: 1px dotted #CCC;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	display:none;
}

.contentBlock .tabbox a{
	margin:5px;
	font-size:16px;
	padding:6px;
	background-color:#e2e2e2;
	border-radius:4px;
	color:#333;
	line-height:160%;
	height:auto;
}
.contentBlock .tabbox a.nowid{
	background-color:#09c;	
	color:#FFF;
}
.contentBlock .tabbox a:before,.contentBlock .tabbox a:after{
	content:none;
}
.contentBlock .subBlock {
	margin-top: 16px;
	margin-bottom: 15px;
}
