/*CSS样式重写*/
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
dl,
dt,
dd,
pre,
header,
footer {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	box-sizing: border-box;
}
body {
	font-family: "microsoft yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
	min-width: 1200px;
	background: #ededed url("../images/bg.jpg") repeat;
	box-sizing: border-box;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #9046AB;
	text-decoration: underline;
}
input,button{
    outline:0;
}
img{
    vertical-align: middle;
    border: 0;
}
.ellipsis {
	overflow: hidden;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.ellipsis-2 {
	overflow: hidden;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ellipsis-3 {
	overflow: hidden;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.ellipsis-4 {
	overflow: hidden;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.ellipsis-5 {
	overflow: hidden;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-orient: vertical;
}
.ellipsis-6 {
	overflow: hidden;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}
/*通用样式*/
.lf,.fl{
    float: left;
}
.rt,.fr{
    float: right;
}
.active{
    display: block;
}
.container {
	position: relative;
	width: 1440px;
	margin: 0px auto;
	display: block;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.clearfix::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	*zoom: 1;
}
/* 头部样式 */
.header{
	 background: #9046AB url(../images/headerbg.jpg) no-repeat center 0;
	 background-size: cover;
}
.header-top {
	width: 100%;
	height: 127px;
}

.header_con {
	height: 127px;
	padding-top: 18px;
	padding-right: 10px;
	box-sizing: border-box;
}

.header_con .vers {
	position: absolute;
	top: 23px;
	right: 10px;
	color: #fff;
	z-index: 9;
}

.header_con .vers a {
	color: #fff;
}

.header_con .vers i {
	font-style: normal;
	margin: 0px 9px;
}

.header_con .header_img {
	line-height: 80px;
}

.header_con .header_img .logo {
	margin-right: 18px;
}

.header_con .header_img .search {
	position: relative;
	margin-top: 8px;
}

.header_con .header_img .search input[type="text"] {
	width: 240px;
	height: 36px;
	line-height: 36px;
	padding-left: 10px;
	background-color: #ffff;
	border: none;
	border-radius: 18px;
	box-sizing: border-box;
}

.header_con .header_img .search input[type="submit"] {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 20px;
	height: 23px;
	background: url(../images/search.png) no-repeat;
	border: none;
	cursor: pointer;
}

/* 导航栏样式 */
.header-nav {
	height: 62px;
	line-height: 62px;
}

/* 导航栏样式 */
.nav-list {
	display: flex;
	justify-content: center;
	line-height: 62px;
/* 	background-color: #fff; */
	position: relative;
}

.nav-list .nav-item {
	float: left;
	height: 62px;
	flex: 1;
	text-align: center;
	font-size: 14px;
	position: relative;
}

.nav-list .nav-item::before {
	content: '';
	position: absolute;
	top: 25%;
	right: 0;
	height: 50%;
	border-right: 1px solid #D3AFDF;

}

.nav-list .nav-item:last-child::before {
	border: 0 none;
}

.nav-list .nav-item:hover {
	background-color: #9046ab;
}

.nav-list .nav-item:hover a {
	color: #fff;
	text-decoration: none;
}

.nav-list .nav-item>a {
	display: block;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 38px;
	height: 50px;
	padding-top: 12px;
}

.nav-list .nav-item>a span {
	display: block;

}

.nav-list .nav-item>a em {
	display: block;
	color: rgba(255,255,255,.4);
	font-size: 12px;
	font-style: normal;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transform: scale(0.8);
}

.nav-list .nav-item:hover a em {
	color: #fff;

}

.submenu {
	position: absolute;
	display: none;
	width: 100%;
	background: #9046ab;
	/*  opacity: .9;
  -moz-opacity: .9; */
	z-index: 999;
	width: auto;
	min-width: 100%;
	padding-bottom: 10px;
}

.submenu li {}

.submenu li a {
	padding: 0px 10px !important;
	line-height: 40px;
	text-align: center;
	color: #fff;
	white-space: nowrap;
	font-size: 15px !important;
	display: block;
}

.submenu li a:hover {
	background-color: #002746;
}

.subnav .nav-list .nav-item:hover,
.subnav .submenu {
	background-color: #002746;
}

/* 轮播图 */
.banner {
	position: relative;
	overflow: hidden;
}

.banner .prev,
.banner .next {
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	width: 37px;
	height: 74px;
	background-color: rgba(0, 0, 0, 0.3);
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
}

.banner .prev {
	background-image: url(../images/banner_left.png);
}

.banner .next {
	left: auto;
	right: 0px;
	background-image: url(../images/banner_right.png);
}

.banner-list {
	position: absolute;
	top: 0px;
	left: 0px;
}

.banner-list li {
	float: left;
}

.point {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}

.point li {
	float: left;
	width: 10px;
	height: 10px;
	margin: 5px;
	background-color: #fff;
	border-radius: 50%;
	font-size: 0px;
	cursor: pointer;
}

.point .on {
	background-color: #9046AB;
}
.ietip {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	z-index: 999;
}

.ietip h1 {
	font-size: 40px;
	line-height: 80px;
	font-weight: 100;
	margin-bottom: 10px;
}

.ietip h2 {
	font-size: 20px;
	line-height: 25px;
	font-weight: 100;
	margin: 10px 0;
}

.ietip em {
	color: red
}

.ietip p {
	margin-bottom: 10px;
	color: #666666
}

.ietip hr {
	margin: 20px 0;
	border: 0;
	border-top: 1px solid #dadada
}

.ietip span {
	display: block;
	font-size: 12px;
	line-height: 12px;
}

.ietip .clean {
	clear: both;
}

.ietip .browser {
	padding: 10px;
}

.ietip .browser li {
	width: auto;
	padding: 0 80px;
	margin-top: 30px;
	height: 34px;
	line-height: 22px;
	float: left;
	list-style: none;
	background: url("../images/3fae491f312d4f1cb3a064e0cffc9346.gif") no-repeat;
	padding-left: 40px
}

.ietip .browser .browser-firefox {
	background-position: 0 -34px
}

.ietip .browser .browser-ie {
	background-position: 0 -68px;
	margin-left: 0px
}

.ietip browser .browser-360 {
	background-position: 0 -170px;
	margin-left: -27px
}

.ietip .browser-360-js {
	padding: 0 80px;
	margin-top: 30px;
	width: 557px;
	height: 162px;
	padding: 10px 10px;
	background: url(../images/221ce9db63f844b4802bf2f2522c466e.gif) no-repeat;
	padding-left: 40px;
}


.submenu {
	position: relative;
	display: none;
	width: 100%;
	background: rgb(126, 126, 126);
	filter: alpha(opacity=90);
	opacity: .9;
	-moz-opacity: .9;
	z-index: 999;
}

.submenu li a {
	padding: 8px !important;
	line-height: 24px;
	text-align: center;
	color: #fff;
}

.submenu li a:hover {
	background-color: #4e3d3d;
}

.ptbox {
	position: relative;
}

.ptbox .inner {
	overflow: hidden;
	padding-bottom: 60%;
	position: relative;
}

.ptbox .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.ptbox .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.3s ease-out 0s;
}
.ptbox .pic:hover .img{transform:scale(1.1);}
.ptbox .img a {
	display: block;
	height: 100%;
}
.footer {
	background-color: #5C337F;
}

.footer .footer-content {
	padding:30px 0;
	line-height: 1.6;
	text-align: center;
	color: #ffffff;
        font-size: 16px;
}

.footer .footer-content a {
	color: #fff;
}

.footer .footer-content .erCode {
	position: absolute;
	top: 27px;
	right: 15px;
}

/*PC端隐藏*/
.m-header {
	display: none;
}

/* 鼠标状态*/
.mouse {
	cursor: pointer;
}

/* 鼠标状态 end*/



/*手机端导航*/
.mobile {
	width: 100%;
	position: absolute;
	display: none;
	top: 0px;
	right: 0;
	z-index: 99991
}

.mobile_title {
	width: 100%;
	float: left;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
}

.mobile_title a {
	float: left;
	margin-left: 10px;
	color: #fff;
	line-height: 31px;
	height: 31px;
}

.mobile-inner-header {
	width: auto;
	height: 42px;
	position: absolute;
	top: 18px;
	right: 15px;
}

.mobile-inner-header-icon {
	color: #ffffff;
	height: 40px;
	font-size: 25px;
	text-align: center;
	float: right;
	width: 40px;
	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 {
	opacity: 0.8;
	cursor: pointer;
}

.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 3);
	width: 25px;
	height: 2px;
	background-color: rgba(255, 255, 255, 1);
}

.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;
}

.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}

.mobile-inner-header-icon {
	color: #fff;
	height: 31px;
	float: right;
	width: 32px;
	position: relative;
	cursor: pointer;
	font-weight: bold;
	text-align: center;
	margin-top: 5px;
	background: #fff;
	z-index: 9999;
	margin-right: 10px;
}

.mobile-inner-header-icon-out span {
	width: 24px;
	height: 2px;
	background-color: #000;
	display: block;
}

.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;
}

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

.mobile-inner-header-icon-click {
	background: none;
	margin-top: 10px;
}

.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 span:nth-child(3) {
	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;
}

.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}

.mobile-inner-header-icon-click span:nth-child(3) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickthird;
}

@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);
	}
}

@keyframes clickthird {
	0% {
		opacity: 0
	}

	100% {
		opacity: 0
	}
}

.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;
}

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

@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);
	}
}

@keyframes outthird {
	0% {
		transform: translateY(0) rotate(90deg);
	}

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

.mobile-inner-nav {
	height: 100vh;
	background-color: rgba(28, 28, 28, 0.9);
	width: 100%;
	position: absolute;
	top: 0;
	left: 0px;
	padding-top: 20px;
	padding-bottom: 25px;
	display: none;
	z-index: 999;
}

.mobile-inner-nav a {
	display: inline-block;
	line-height: 45px;
	text-decoration: none;
	width: 100%;
	font-size: 16px;
	text-align: center;
	border-bottom: solid 1px #444;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.mobile-inner-nav li {
	position: relative;
	padding: 0 20px;
}

.mobile-inner-nav li a {
	text-indent: 0;
}

.mobile-inner-nav li strong {
	color: #fff;
	position: absolute;
	right: 20px;
	top: 0;
	font-size: 1.6em;
	font-weight: normal;
	cursor: pointer;
	width: 40px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.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: returnToNormal;
	animation-name: returnToNormal;
	color: #fff;
}

@-webkit-keyframes returnToNormal {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}


.mobile_subNav {
	padding-left: 10px;
	display: none;
}

.mobile-inner-nav dd a {
	height: 35px;
	line-height: 35px;
	border-bottom: dotted 1px rgb(105, 106, 106);
	font-size: 14px;
	color: #c4c4c4;
}



@keyframes rotate {
	from {
		transform: rotateX(90deg) translateY(0%);
		top: 43px;
	}

	to {
		transform: rotateX(0deg) translateY(0%);
		top: 43px;
	}
}
/*pages*/
.pages {
    clear:both;
    width:100%;
    height:40px;
    margin:30px 0 20px;
}
.pagebox {
    width:100%;
    height:40px;
    line-height: 40px;
    margin: 20px 0;
    text-align:center;
    clear:both;
    font-size:14px;
}
.pagebox span a, .pagebox_pre_nolink{
    height:30px;
    line-height:30px;
    border:1px solid #ddd;
    padding:5px 10px;
    font-size: 16px;
    color:#666;
    cursor:default;
    text-align:center;
}
.pagebox span.pagebox_num_nonce {
    background-color:#9046AB ;
    border:1px solid #9046AB ;
    color:#fff;
    height:30px;
    line-height:30px;
    margin:0 5px;
    padding:5px 10px;
    box-sizing: border-box;
}
.pagebox span.pagebox_num:hover a{
    background-color:#9046AB ;
    border:1px solid #9046AB ;
    color:#fff;
    cursor:pointer;
}
.pagebox span.pagebox_next:hover a,.pagebox span.pagebox_pre:hover a{
    background-color:#9046AB ;
    border:1px solid #9046AB ;
    color:#fff;
    cursor:pointer;
}
.pagebox_jump {
    display:none;
}
.pagebox span.pagebox_num_nonce a{
	color:#fff;
	margin:0;
	padding:0;
	background: none;
	border: 0;
}

.pagebox strong{
	font-weight: normal;
}
.pagebox span.pagebox_num_nonce a{
	color:#fff;
	margin:0;
	padding:0;
	background: none;
	border: 0;
}

.pagebox strong{
	font-weight: normal;
}

