/*****logo******/
.wrap .head img
{
	width: 90%;
	margin: 0 auto;
	display: block;
	padding: 10px 0;
}


/*nav*/
.mobile-inner
{
	height: 35px;
	line-height: 35px;
}
.mobile-inner h3
{
	float: left;
	font-size: 14px;
	color: #000000;
    font-weight: 500;
	margin-left: 10px;
}
.mobile-inner:after
{
	content: "";
	display: block;
	clear: both;
}
.mobile-inner-nav
{
	overflow: hidden;
}

.mobile-inner-nav a
{
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: resize;
	animation-name: resize;
}

@-webkit-keyframes resize
{
	from, 60%, 75%, 90%, to
	{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0%
	{
		opacity: 0;
		-webkit-transform: scale(5,5);
		transform: scale(5,5);
	}

	100%
	{
		opacity: 1;
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
	}
}

@keyframes resize
{
	from, 60%, 75%, 90%, to
	{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0%
	{
		opacity: 0;
		-webkit-transform: scale(5,5);
		transform: scale(5,5);
	}

	100%
	{
		opacity: 1;
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
	}
}

.mobile
{
	width: 100%;
	float: left;
	margin-top: 100px;
}

.mobile-inner
{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background-color: #ffffff;
	position: relative;
}

.mobile-inner img
{
	width: 100%;
	margin-bottom: 30px;
}

.mobile-inner p
{
	color: #676767;
	line-height: 25px;
	font-size: 16px;
	padding-bottom: 30px;
	padding-right: 30px;
	padding-left: 30px;
	margin: 0px;
}

.mobile-inner-header
{
/*	background-color: #ffffff;*/
	width: 100%;
	height: 35px;
	position: absolute;
	top: 0px;
	left: 0px;
}

.mobile-inner-header-icon
{
	color: #ffffff;
	height: 35px;
	font-size:25px;
	text-align: center;
	float:right;
	width: 50px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-inner-header-icon:hover
{
	cursor: pointer;
}
.mobile-inner-header-icon span
{
	position: absolute;
    left: calc((100% - 20px) / 2);
    top: calc((100% - 10px) / 2);
    width: 20px;
    height: 3px;
    background-color: #999;
}
.mobile-inner-header-icon span:nth-child(1)
{
	transform: translateY(4px) rotate(0deg);
}
.mobile-inner-header-icon span:nth-child(2)
{
	transform: translateY(-4px) rotate(0deg);
}
.mobile-inner-header-icon-click span:nth-child(1)
{
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	margin-top: 5px;
}
.mobile-inner-header-icon-click span:nth-child(2)
{
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
	margin-top: 5px;
}
.mobile-inner-header-icon-click span:nth-child(3)
{
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
	width: 0;
}

@keyframes clickfirst
{
	0%
	{
		transform: translateY(4px) rotate(0deg);
	}

	100%
	{
		transform: translateY(0) rotate(45deg);
	}
}

@keyframes clicksecond
{
	0%
	{
		transform: translateY(-4px) rotate(0deg);
	}

	100%
	{
		transform: translateY(0) rotate(-45deg);
	}
}

.mobile-inner-header-icon-out span:nth-child(1)
{
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2)
{
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
	margin-top: 6px;
	height: 3px;
}
.mobile-inner-header-icon-out span:nth-child(3)
{
	margin-top: 2.6px;
           height: 3px;
}
@keyframes outfirst
{
	0%
	{
		transform: translateY(0) rotate(-45deg);
	}

	100%
	{
		transform: translateY(-4px) rotate(0deg);
	}
}

@keyframes outsecond
{
	0%
	{
		transform: translateY(0) rotate(45deg);
	}

	100%
	{
		transform: translateY(4px) rotate(0deg);
	}
}

.mobile-inner-nav
{
	background-color: #eeeeee;
	width: 100%;
	position: absolute;
	top: 35px;
	left: 0px;
	padding-top: 30px;
	padding-bottom: 80px;
	display: none;
	z-index: 8;
}
.moblie-inner-xhnav li
{
	padding-left: 20px;
}
.mobile-inner-nav a
{
	display: inline-block;
	line-height: 50px;
	text-decoration: none;
	width: 92%;
/*	margin-left: 10%;*/
	color: #000000;
	border-bottom: solid 1px #dedede;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight: 300;
}

.mobile-inner-nav a:hover
{
	color: rgba(255,255,255,0.4);
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
/*二级导航*/
.mobile-inner-xhnav li
{
	position: relative;
	list-style: none;
	padding-left: 20px;
}
.sp_navs li
{
	padding: 0!important;
}
.mobile-inner-xhnav li i svg 
{
    width: 20px;
    height: 20px;
    fill: #000000;
}
.mobile-inner-xhnav li i svg 
{
    transform: rotate(-90deg);
    transition: all ease 0.35s;
}

.mobile-inner-xhnav li i 
{
    position: absolute;
    top: 16px;
    right: 20px;
    height: 30px;
    padding: 0px 7px 0 7px;
}
.mobile-inner-xhnav li ul
{
	display: none;
	width: 85%;
	margin: 0 auto;
}
.mobile-inner-xhnav li ul li a
{
	color: #000000!important;
	font-size: 14px!important;
}
.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #c9141e;
}
.mobile-inner-xhnav .sjj_nav_i_se svg {
    transform: rotate(0deg);
}

/*banner*/
.swiper-container
{
    width: 100%;
    height: 150px;
}  
.swiper-container .swiper-wrapper .swiper-slide a img
{
	width: 100%;
	height: 100%;
}


/*content*/
.row
{
	padding: 0 10px;
	margin-top: 15px;
}
.newtit
{
	border-bottom: 1px solid #ddd;
    height: 35px;
    line-height: 35px;
    margin-bottom: 10px;
}
.newtit h2
{
	display: inline-block;
    font-size: 16px;
    color: #333;
}
.gay
{
    color: #909090;
	font-size: 10px;
}
.Unda ul li
{
	line-height: 35px;
    border-bottom: 1px dotted #eee;
}
.Unda ul li a
{
	display: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    padding-right: 10px;
}
.Poda
{
	margin-top: 20px;
}
.Poda ul li
{
	line-height: 35px;
    border-bottom: 1px dotted #eee;
}
.Poda ul li a
{
	display: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    padding-right: 10px;
}
.bt
{
    border-bottom: 1px solid #ddd;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
}
.bt h2
{
    display: inline-block;
    font-size: 16px;
    color: #333;
}
.slideBox
{
	width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
}

.slideBox .hd
{
	height: 12px;
	overflow: hidden;
	position: absolute;
	right: 5px;
	bottom: 9px;
	z-index: 1;
}

.slideBox .hd ul
{
	overflow: hidden;
	zoom: 1;
	float: left;
}

.slideBox .hd ul li
{
	float: left;
	margin-right: 2px;
	width: 12px;
	height: 12px;
	line-height: 14px;
	text-align: center;
	background: #fff;
	cursor: pointer;
	color: #fff;
}

.slideBox .hd ul li.on
{
	background: #ffb400;
	color: #ffb400;
}

.slideBox .bd
{
	position: relative;
	height: 100%;
	z-index: 0;
}

.slideBox .bd li
{
	zoom: 1;
	vertical-align: middle;
	position: relative;
}

.slideBox .bd  p
{
	width: 100%;
	background-image: url("../img/icon3.png");
	position: absolute;
	left: 0px;
	bottom: 0px;
	height: 36px;
	line-height: 36px;
	text-indent: 10px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.slideBox .bd  p span
{
	display: block;
	width: 80%;
}
.slideBox .bd  a
{
	color: #fff;
	font-size: 16px;
}

.slideBox .bd img
{
	width: 100%;
	height: 220px;
	display: block;
}
/*搜索*/
.inpt
{
    width: 100%;
    text-align: center;
    position: relative;
    margin: 10px 0 20px 0;
}
.texts
{
    width: 90%;
    height: 35px;
    border-radius: 20px;
    opacity: 0.34;
    outline: none;
    border: none;
    background: #FFFFFF;
    z-index: 100;
    padding-left: 20px;
}
.submit
{
    width: 20px;
    height: 35px;
    background: url(../img/search_icon.png) center no-repeat;
    position: absolute;
    right: 40px;
    top: 1px;
    border: none;
    outline: none;
}
/*版权*/
.copy
{
	padding:10px 0px;
	text-align:center;
	background-color:#14416f;
	color:#93abce;
	margin-top: 20px;
}
.copy p
{
	line-height:26px;
	padding: 0 20px;
}
.copy p span
{
	display:inline-block;padding:0px 5px;
}










/*列表页*/
.wz
{
    height: 40px;
    background: #f7f7f7;
    font-size: 12px;
    line-height: 40px;
    padding: 0 10px;
}
.listrow ul li
{
	background: url(../img/dian.png) no-repeat center left;
    padding: 3px 0;
    border-bottom: 1px dashed #dbdbdb;
}
.listrow ul li span
{
    font-size: 13px;
    line-height: 30px;
    color: #bcbc;
}
.listrow ul li a
{
	width: 75%;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 8px;
}
.listrow ul .more
{
	display: block;
    width: 90%;
    text-align: center;
    background-color: #eee;
    padding: 8px 0;
    border-radius: 10px;
    margin: 10px auto;
    font-size: 10px;
}








/*内容页*/
.controw h3
{
	text-align: center;
    font-size: 18px;
    line-height: 30px;
}
.controw .author
{
	text-align: center;
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 30px;
    height: 30px;
}
.controw p
{
	text-indent: 2em;
    line-height: 2em;
    margin-bottom: 15px;
    color: #666666;
    font-size: 16px;
}







/*搜索结果页*/
.search
{
	position: relative;
    margin: 15px 0;
    z-index: 2;
}
.search .txt 
{
    width: 92%;
    height: 35px;
    border-radius: 20px;
    opacity: 0.34;
    outline: none;
    border: none;
    background: #FFFFFF;
    z-index: 100;
    padding-left: 20px;
    border: 1px solid #636262;
}
.search .submits
{
    width: 20px;
    height: 27px;
    background: url(../img/search_icon.png) center no-repeat;
    position: absolute;
    right: 25px;
    top: 1px;
    border: none;
    outline: none;
}
.controw p span
{
       font-size: 16px!important;
}