@charset "utf-8";


* {
	margin: 0;
	padding: 0;
}

html, body {
	width: 100%;
	height: 100%;
}

body {
	min-width: 1300px;
	min-height: 680px;
	font-size: 14px;
	color: #333333;
	background-color: #1c1d28;
	position: relative;
}

li {
	list-style: none;
}

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

a:hover {
	/*color: #8A3004;*/
	text-decoration: none;
}

/*头部导航*/
#header {
	width: 100%;
	height: 80px;
	color: #FFFFFF;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
}
.menu-icon {
	font-size: 32px;
	cursor: pointer;
	position: absolute;
	left: 60px;
	top: 20px;
	z-index:999;
}
.icon-LIXY{
	font-size: 80px;
	line-height: 80px;
	cursor: pointer;
/*
	position: absolute;
	left: 0;
	right: 0;
*/
	top: 16px;
/*	margin: auto;*/
/*	z-index: 997;*/
}
.top-right {
	width: 120px;
	height: 100%;
	color: #FFFFFF;
	position: absolute;
	right: 80px;
	top: 0;
}
.search-icon {
	float: left;
	line-height: 70px;
	font-size: 20px;
	cursor: pointer;
}
.language-switch {
	height: 40px;
	line-height: 40px;
	font-size: 14	px;
	position: absolute;
	right: 90px;
	top: 18px;
	cursor: pointer;
}
.language-list {
	display: none;
	text-align: center;
	font-size: 14px;
	position: absolute;
	left: -18px;
	top: 40px;
	background: rgba(255, 255, 255, 0.7);
}
.language-list a {
	display: block;
	width: 96px;
	height: 26px;
	font-size: 12px;
	color: #666666;
	line-height: 26px;
	text-align: center;
}
.language-list a:hover {
	background: #fff;
	color: #000;
}
.language-switch:hover .language-list {
	display: block;
}

/*左侧菜单*/
.left-menu {
	height: 100%;
	background-color: #FFFFFF;
	position: fixed;
	left: -250px;
	top: 0;
	z-index: 3;
}
.close-icon{
	float: right;
	cursor: pointer;
	font-size: 20px;
	color: #999999;
	margin: 20px 20px 0 0;
}
.nav {
	padding-top: 60px;
}
.nav > li > a {
	display: block;
	line-height: 84px;
	background: #fff url(../image/nav_li_a-bg.png) no-repeat center bottom;
	text-align: center;
	width: 250px;
	color: #000;
}
.nav>li>a:hover, .nav>li:hover>a {
	background: #000 url(../image/news_content_arrow_12.jpg) no-repeat 200px center;
	color: #fff;
}
.subnav {
	display: none;
	position: absolute;
	left: 250px;
	top: 0;
	border-left: 1px solid #999;
	padding-top: 200px;
	height: 100%;
	background-color: #fff;
}
.nav>li:hover .subnav {
	display: block;
}
.subnav li a {
	display: block;
	line-height: 70px;
	background: #fff url(../image/nav_li_a-bg.png) no-repeat center bottom;
	text-align: center;
	width: 250px;
	color: #000;
}
.subnav li a:hover {
	background: #000 url(../image/news_content_arrow_12.jpg) no-repeat 200px center;
	color: #fff;
}
.swiper-container {
	width: 100%;
	height: 100%;
	position: relative;
	background-color: #1c1d28;
}
.swiper-container-vertical > .swiper-pagination-bullets {
	right: 5%;
}
.swiper-pagination-bullet {
	background: #f9f9f9;
	opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 18px 0;
}

.content {
	width: 1300px;
	height: 680px;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.content img {
	display: block;
	width: 100%;
	height: auto;
}
.a1{
	width: 200px;
	height: 68px;
	line-height: 68px;
	text-align: center;
	background-color: #ffffff;
	color: #333333;
	font-size: 22px;
	border-radius: 34px;
	position: absolute;
	font-weight: bold;
	left:550px;
	bottom: 40px;
	transition: all 200ms;
}
.a1:hover{
	bottom: 50px;
	color: #ff5100;
	font-weight: bold;
    font-size: 24px;
	box-shadow: 0px 6px 16px rgba(28, 29, 50, 0.3)
}

/*
.a2{
	font-size: 16px;
	color: #1c1d28;
	position: absolute;
	left: 240px;
	bottom: 70px;
	transition: bottom 300ms;
}
.a2:hover{
	bottom: 72px;
    font-size: 16.5px;
    color:#302E38;
}
*/


.animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	z-index: 100;
}
@keyframes menuIn {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(250px);
		-ms-transform: translateX(250px);
		transform: translateX(250px);
	}
}
@keyframes menuOut {
	0% {
		-webkit-transform: translateX(250px);
		-ms-transform: translateX(250px);
		transform: translateX(250px);
	}
	100% {
		-webkit-transform: translateX(-1px);
		-ms-transform: translateX(-1px);
		transform: translateX(-1px);
	}
}
.menu-show {
	-webkit-animation-name: menuIn;
	animation-name: menuIn;
}
.menu-hide {
	-webkit-animation-name: menuOut;
	animation-name: menuOut;
}

/*作品集*/
.head-bg{
	background-color: #1c1d28;
}
.works-list{
	margin-top: 100px;
}
.works-list img{
	display: block;
	width: 1400px;
	margin: 0 auto 30px;
}
.works-list .item{
	display: none;
}
.works-list .item.active{
	display: block;
}

.pages{
	text-align: center;
	margin: 50px auto 80px;
}
.pages li{
	display: inline-block;
	width: 70px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #1c1d28;
	cursor: pointer;
	font-size: 16px;
	transition: all 200ms;
}
.pages li.active{
	color: #FFFFFF;
	background-color: #1c1d28;
}
.pages li:hover{
	color: #FFFFFF;
	background-color: #1c1d28;
}

.footer{
	background-color: #1c1d28;
	text-align: center;
}
.footer > img{
	width: 1260px;
}

/*回到顶部*/
.back-top{
	display: none;
	width: 55px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	right: 30px;
	bottom: 100px;
	background-color: #c9cbd7;
	text-align: center;
	color: #f5f5f5;
	border-radius: 2px;
}
.back-top:hover{
	color: #FFFFFF;
    width: 58px;
	height: 42px;
}
.back-top .iconfont{
	display: block;
	font-size: 24px;
}
