@charset "utf-8";

/*
font-size list (base: 12px)
 67% =  8px
 75% =  9px
 83% = 10px
 92% = 11px        175% = 21px
100% = 12px        184% = 22px
108% = 13px        192% = 23px
117% = 14px        200% = 24px
125% = 15px        209% = 25px
133% = 16px        217% = 26px
142% = 17px
150% = 18px
159% = 19px
167% = 20px
*/

/* -----  information  ----- */
.information {
	position: fixed;
	bottom: 0;
	z-index: 100;
	width:100%;
	height:160px;
	background-color: rgba(255,255,255,.5);
	-webkit-transition: background-color 1.5s ease-out;transition: background-color 1.5s ease-out;
}
.information.scrollInfo {
	position: absolute;
	bottom: 245px;
}
.information.fixedInfo {
	position: fixed;
	bottom: 0;
}
.information:hover {
	background-color: rgba(255,255,255,.8);
}
.feed, .topics {
	display:-webkit-box;display:-webkit-flex;display: flex;
	-webkit-box-align:center; -webkit-align-items: center;align-items:center;
	-webkit-box-pack:center;-webkit-justify-content: center;justify-content: center;
	width:100%;
}
.feed{
	height: 60px;
	border-top:solid 1px #00a2e9;
	border-bottom:solid 1px #00a2e9;
}
.feed a {
	color: #614c3f;
}
.feed a:hover {
	color: #f9e701;
}
.feedMain{
	width: 854px;
	height: 60px;
}
.feedBox {
	display:-webkit-box;display:-webkit-flex;display: flex;
	-webkit-box-align:center; -webkit-align-items: center;align-items:center;
	position: absolute;
	height: 60px;
	line-height: 1.5;
}
.feedText{
	margin-left: 40px;
	font-size: 92%;
}
.feedText a{
	text-decoration: underline;
}
.feedText a:hover{
	text-decoration: none;
}
.more {
	display:block;
	width:46px;
	height:18px;
	text-align:center;
	line-height: 1.3;
	border:solid 1px #614c3f;
	-webkit-transition: .3s ease-out;transition: .3s ease-out;
}
a.more:hover { color: #f9e701; border: solid 1px #f9e701; }
.topics {
	position:relative;
	height:100px;
	border-bottom:solid 2px #00a2e9;
//	background: url("/img/icon/fclef.png") no-repeat scroll;
//	background-position: center center;
}
.topics::after {
	content: "";
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #00a2e9;
}
.topicsList {
	display: block;
	font-size: 0;
	width: 100%;
	min-width: 1078px;
	max-width: 1366px;
	margin: 0 auto;
	text-align: center;
}
.topicsBnr {
	display: inline-block;
	margin: 0 5px;
}
.fclef {
	width: 20px;
	height: 24px;
	margin: 28px 15px;
	background: url("/img/icon/fclef.png") no-repeat;
}
/*.topicsLeft, .topicsRight {
	display:-webkit-box;display:-webkit-flex;display: flex;
	-webkit-box-pack:justify;-webkit-justify-content: space-between;justify-content: space-between;
	width:420px;
}
.topicsRight {
	margin-left: 60px;
}*/

/* -----  main  ----- */
.main {
	display: none;
	width: 100%;
	padding:20px 20px 180px;
	height: 1350px;
	background: url("/img/top/keyvisual.jpg") no-repeat scroll;
	background-size: cover !important;
	background-position: center bottom !important;
}
.topWrap{
	position:relative;
	display:-webkit-box;display:-webkit-flex;display: flex;
	-webkit-box-pack:justify;-webkit-justify-content: space-between;justify-content: space-between;
	max-width: 1366px;
	margin: 0 auto;
}
.topRight {
	position:absolute;
	top:0;
	right: -170px;
	width: 852px;
	height: 703px;
}
.topWrap .menu{
	width: 180px;
	margin: 30px 0;
}
.topWrap .menu > .menuItem{
	display: table;
	width: 200px;
	height: 30px;
	margin: 10px 0;
}
.topWrap .menu > .menuItem a{
	display: table-cell;
	position: relative;
	font-family: 'Cantata One', serif;
	color: #614c3f;
	font-size: 150%;
	padding-left: 3px;
	vertical-align: middle;
	background-color: rgba(255,255,255,.5);
	-webkit-transition: .3s ease-out;transition: .3s ease-out;
}
.topWrap .menu > .menuItem a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: #f8ea37;
	-webkit-transition: .3s ease-out;transition: .3s ease-out;
}
.topWrap .menu > .menuItem a::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0%;
	height: 2px;
	background-color: #f8ea37;
	-webkit-transition: .3s ease-out;transition: .3s ease-out;
}
.topWrap .menu > .menuItem a:hover::before, .topWrap .menu > .menuItem a:hover::after{
	width: 100%;
}
.topWrap .menu > .menuItem a:hover{
	color: #f9e701;
}
.tvSite{
	width: 240px;
}
.roadShow{
	margin-top: 25px;
}
.topicsItem{
	margin-bottom: 10px;
}
.trailerMain{
	position: relative;
	display: block;
	width: 240px;
	height: 100%;
	overflow: hidden;
}
.trailerMain span {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(/img/top/trailer_hover.png) no-repeat center center;
	opacity: 0;
	-webkit-transform: scale3d(1.4, 1.4, 1.4);transform: scale3d(1.4, 1.4, 1.4);
	-webkit-transition: .2s ease-out;transition: .2s ease-out;
}
.trailerMain:hover span {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);
}
/* -----  pagetop  ----- */
.pagetop{
	position: absolute;
	display: block;
	height: 43px;
	width: 80px;
	bottom: 20px;
	left: 50%;
	margin-left: -40px;
	-webkit-transition: .2s ease-out;transition: .2s ease-out;
}
.pagetop:hover{
	height: 53px;
}
/* -----  footer  ----- */
.footer{
	display: none;
	width: 980px;
	height: 245px;
	margin: 0 auto;
}
/*.footerTop{
	display:-webkit-box;display:-webkit-flex;display: flex;
	-webkit-box-pack:justify;-webkit-justify-content: space-between;justify-content: space-between;
	margin-top:20px;
}*/
.footer .menu {
	padding: 40px 0 0;
	text-align: center;
}
.linkList{
	display:-webkit-box;display:-webkit-flex;display: flex;
	-webkit-box-pack:justify;-webkit-justify-content: space-between;justify-content: space-between;
	-webkit-box-align:center; -webkit-align-items: center;align-items:center;
	width: 690px;
	margin: 0 auto;
	padding: 50px 0 35px;
	position: relative;
}
.linkList::before{
	content: "";
	width: 120px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	background-color: #00a2e9;
}
.linkList::before{
	height: 1px;
	top: 5px;
}
/*.linkList::after{
	height: 2px;
	top: -31px;
}*/
.linkList li {
	margin-right:10px;
}
.linkList li:last-child {
	margin:0;
}
.copyShare{
	display:-webkit-box;display:-webkit-flex;display: flex;
	-webkit-box-align:center; -webkit-align-items: center;align-items:center;
	-webkit-box-pack:center;-webkit-justify-content: center;justify-content: center;
	width: 960px;
	height:30px;
	margin: 0 auto;
	padding-bottom: 50px;
	position:relative;
}
.copyright{
	font-size:10px;
}
.share{
	display:-webkit-box;display:-webkit-flex;display: flex;
	position:absolute;
	top:0;
	right:0;
}
.shareBtn{
	margin-left:10px;
	cursor:pointer;
}


