@charset "utf-8";

/*--------------- reset ---------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
}
/* HTML5 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body, button, input, select, textarea{font:12px/1.5 "microsoft yahei", Helvetica, Tahoma, Arial, sans-serif;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
address, cite, dfn, em, var{font-style:normal;}
code, kbd, pre, samp, tt{font-family:"Consolas", "Courier New", Courier, monospace;}
em,strong{font-weight:bolder;}
i{font-style: normal;}
ul, ol, li{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}

/*--------------- other ---------------*/
img{border:0 none;}
textarea{ resize: vertical; }
a, button{ cursor:pointer; }
input{border: 0;outline: none;}
a{text-decoration: none;}
.clear{clear:both;}
.clearfix:after{content:".";display:block;height:0;line-height:0;clear:both;visibility:hidden;font-size:0;}
.clearfix { *zoom:1; }
.tc{text-align:center;}
.fle{float: left;}
.layout-center{ margin-left:auto; margin-right:auto; }
.no-ime{ ime-mode: disabled; }
.copyright{ font-size: 14px; font-family: "Arial";}

/*弹窗提示样式*/
.apply-alert{
	display: none;
	position: fixed;
	z-index: 10;
	top: 50%;
	left: 50%;
	width: 220px;
	padding: 15px;
	margin-left: -80px;
	margin-top: -50px;
	background: #fff;
	border:2px solid #FD533B;
	color: #FD533B;
	font-size: 14px;
	text-align: center;
	border-radius: 50px;
	font-weight: bold;
	word-break: break-all;
}
.apply-alert.success{
	border:2px solid #1FCF6D;
	color: #1FCF6D;
}
.apply-alert.warning{
	border:2px solid #FD533B;
	color: #FD533B;
}
.inner{
	width: 1200px;
	margin:  0 auto;
}
/* 头部公共样式 */
.gairHeader{
	padding-top: 56px;;
	height: 177px;
	background: #000;
}
.gairMenu{
	text-align: right;
	overflow: hidden;
	padding-right: 18px;
}
.gairMenu a{
	display: inline-block;
	width: 138px;
	height: 72px;
	background: url(../images/menuBg.png);
	margin: 0 0 0 36px;
	font-size: 24px;
	color:#efb9a0;
	padding-left: 24px;
	line-height: 72px;
	position: relative;
	text-align: center;
}
.gairMenu a em{
	position: absolute;
	width: 52px;
	height: 52px;
}
.gairMenu .icon1 em{
	left:-20px;
	top: 10px;
	background:url(../images/icon1.png) no-repeat;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
}
.gairMenu .icon2 em{
	left:-20px;
	top: 10px;
	background:url(../images/icon2.png) no-repeat;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.gairMenu .icon3 em{
	left:-20px;
	top: 10px;
	background:url(../images/icon3.png) no-repeat;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}
.gairMenu .icon4 em{
	left:-20px;
	top: 10px;
	background:url(../images/icon4.png) no-repeat;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
}
.gairMenu .icon1:hover em{
	-webkit-animation-name: hvr-pulse-shrink;
	animation-name: hvr-pulse-shrink;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}
.gairMenu .icon2:hover em{
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
	transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.gairMenu .icon3:hover em{
	-webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.gairMenu .icon4:hover em{
	-webkit-animation-name: hvr-bob-float, hvr-bob;
	animation-name: hvr-bob-float, hvr-bob;
	-webkit-animation-duration: .3s, 1.2s;
	animation-duration: .3s, 1.2s;
	-webkit-animation-delay: 0s, .3s;
	animation-delay: 0s, .3s;
	-webkit-animation-timing-function: ease-out, ease-in-out;
	animation-timing-function: ease-out, ease-in-out;
	-webkit-animation-iteration-count: 1, infinite;
	animation-iteration-count: 1, infinite;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-direction: normal, alternate;
	animation-direction: normal, alternate;
}
/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
	to {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@keyframes hvr-pulse-shrink {
	to {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}
/* Bob */
@-webkit-keyframes hvr-bob {
	0% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px);
	}
	50% {
		-webkit-transform: translateY(-4px);
		transform: translateY(-4px);
	}
	100% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px);
	}
}
@keyframes hvr-bob {
	0% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px);
	}
	50% {
		-webkit-transform: translateY(-4px);
		transform: translateY(-4px);
	}
	100% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px);
	}
}
.gairHeader .userManage{
	margin-top: 37px;
	float: right;
}
.gairHeader .userManage .goHome{
	float: left;
	color: #C99D8D;
	font-size: 14px;
	font-weight:bold;
}
.gairHeader .userManage .goHome img{
	vertical-align: bottom;
}
.yp-header-user{
	position: relative;
	float: left;
	width: 25px;
	margin-left: 15px;
	height: auto;
	margin-top: 2px;
}
.yp-header-user .user-main .avatar{
	position:relative;
	cursor: pointer;
	margin-top: 0;;
}
.yp-header-user .user-main .avatar img{
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
}
.yp-header-user:hover .user-link{display:block}
.yp-header-user .user-link{
	position:absolute;
	width: 100px;
	left: 0;
	top:25px;
	display: none;
}
.yp-header-user .user-link li{
	height: 40px;
	background: #cea798;
}
.yp-header-user .user-link li:first-child{
	border-bottom: 1px solid #9f654d;
}
.yp-header-user .user-link a{
	display:block;
	line-height: 40px;
	color:#050e19;
	font-size:14px;
	text-align: center;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	background: none;
}
.yp-header-user .user-link li:hover{
	background: #9f654d;
}
.yp-header-user .user-link li:hover a{
	color:#efb9a0;
}
.switchLanguage{
	float: right;
	width: 58px;
	height: 20px;
	line-height: 20px;
	border:1px solid #c99d8d;
	border-radius: 11px;
	-webkit-border-radius: 11px;
	text-align: center;
	font-size: 0;
	margin: 3px 18px 0 14px;
}
.switchLanguage a{
	display: inline-block;
	width: 28px;
	line-height: 20px;
	font-size: 12px;
	color: #c99d8d;
}
.switchLanguage span{
	width: 30px;
	display: inline-block;
	background: #c99d8d;
	color: #050e19;
	font-size: 12px;
	border-radius: 10px;
}
/*二级目录*/
.gairSubMenu{
	position: relative;
	width: 520px;
	height: 210px;
	background: #000;
	text-align: center;
}
.gairSubMenu .tagPic{
	position: absolute;
	left: -170px;
	top: -100px;
}
.gairSubMenu .ccfPic{
	margin-top: 52px;
}
.gairSubMenu .title{
	position: absolute;
	right: -120px;
	top:45px;
	width: 220px;
	height: 120px;
	background: url(../images/titBg.jpg) no-repeat;
	text-align: center;
	line-height: 120px;
	font-size: 36px;
	font-weight: bold;
	color:#000;
	letter-spacing: 3px;
}
/* 内页侧边栏目录 */
.innerPublic{
  margin-top: 60px;
  position: relative;
  min-width: 1200px;
}
.innerMain{
  width: 950px;
  padding-left: 250px;
  margin: 0 auto;
}
.innerPublic .leftMenu{
  position: absolute;
  top: 0;
  border:6px solid #000;
  left: -6px;
  right:50%;
  margin-right:400px;
  min-width: 196px;
	padding: 20px 0;
	background: #fff;
}
.innerPublic .leftMenu.fixed{
	position: fixed;
	top:0;
}
.innerPublic .leftMenu .mainCnt{
  width: 196px;
  float: right;
  text-align: center;
}
.innerPublic .leftMenu .mainCnt  a{
  display: block;
  width: 170px;
  line-height:68px;
  font-size:24px;
  font-weight:bold;
	color:#000033;
	margin: 10px 0;
}
.innerPublic .leftMenu .mainCnt  a.active{
	background: #c27777;
	color:#fff;
}
.buyTicket{
	position: fixed;
	right: 2%;
	bottom: 3%;;
}
.backTop{
	position: fixed;
	right: 2%;
	bottom: 21%;
	display: none;
	cursor: pointer;
}