@import url('fonts.css');
@import url('effect02.css');

/*--------------------------------------------------------------*/
/* MOBILE NAV --------------------------------------------------*/
/*--------------------------------------------------------------*/

.button_container, .overlay {
	display: none;
}
/* MENU BUTTON */
.button_container {
	position: fixed;
	top: 30px;
	right: 30px;
	height: 27px;
	width: 35px;
	cursor: pointer;
	z-index: 99999;
}
.button_container.active .top {
	transform: translateY(11px) translateX(0) rotate(45deg);
}
.button_container.active .middle {
	opacity: 0;
}
.button_container.active .bottom {
	transform: translateY(-11px) translateX(0) rotate(-45deg);
}
.button_container span {
	background: #b96903;
	border: none;
	height: 5px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.button_container span:nth-of-type(2) {
	top: 11px;
}
.button_container span:nth-of-type(3) {
	top: 22px;
}

/* OVERLAY */
.overlay {
	position: fixed;
	top: 88px;
	left: 0;
	background: #333;
	width: 100%;
	height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	z-index: 9999;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	   -moz-transition: opacity .35s, visibility .35s, height .35s;
	     -o-transition: opacity .35s, visibility .35s, height .35s;
	    -ms-transition: opacity .35s, visibility .35s, height .35s;
	        transition: opacity .35s, visibility .35s, height .35s;
}
.overlay.open {
	opacity: 1;
	padding: 0;
	border-top: 1px solid #555;
	visibility: visible;
	height: auto;
}
.overlay.open li {
	animation: fadeInRight .5s ease forwards;
	animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
	animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
	animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
	animation-delay: .5s;
}
.overlay.open li:nth-of-type(5) {
	animation-delay: .55s;
}
.overlay.open li:nth-of-type(6) {
	animation-delay: .6s;
}
.overlay.open li:nth-of-type(7) {
	animation-delay: .65s;
}
.overlay nav {
	position: relative;
	font-size: 25px;
	font-weight: 400;
	text-align: center;
}
.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
}
.overlay ul li {
	display: block;
	position: relative;
	opacity: 0;
	margin: 25px 0;
}
.overlay ul li a {
	display: block;
	height: 30px;
	line-height: 30px;
	margin: 20px 0;
	font-size: 18px;
	position: relative;
	color: #fff;
	text-decoration: none;
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}

/*--------------------------------------------------------------*/
/* HEADER ------------------------------------------------------*/
/*--------------------------------------------------------------*/

header {
	top: 0;
	left: 0;
	position: fixed;
	background-color: #333;
	z-index: 9999;
}
header .logo {
	display: block;
	margin: 0 auto;
	height: 88px;
	overflow: hidden;
}
header .logo a {
	display: block;
	width: 482px;
	height: 36px;
	background-image: url('../images/logo.png');
	background-repeat: no-repeat;
	background-position: left;
	margin: 25px auto;
}
header nav.topbar {
	width: 100%;
	background: #ffb320;
    background: -webkit-linear-gradient(#ffb320 10%, #b96903);
    background:    -moz-linear-gradient(#ffb320 10%, #b96903);
    background:      -o-linear-gradient(#ffb320 10%, #b96903); 
    background:         linear-gradient(#ffb320 10%, #b96903);
}
header nav.topbar ul {
	width: 1000px;
	height: 45px;
	margin: auto;
	overflow: hidden;
}
header nav.topbar ul li {
	position: relative;
	display: block;
	float: left;
	width: calc(100%/7 - 6px/7);
	height: 45px;
}
header nav.topbar ul li:after {
	position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 1px;
    height: 30px;
    margin: 7.5px 0;
    display: block;
    background-color: rgba(0,0,0,0.1);
    box-shadow: 1px 0 0 0 rgba(255,255,255,0.3);
}
header nav.topbar ul li:last-child:after {
	display: none;
}
header nav.topbar a {
	display: block;
	color: #fff;
	font-size: 15px;
	line-height: 45px;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
header nav.topbar a:hover {
	background-color: rgba(0,0,0,0.3);
}

/*--------------------------------------------------------------*/
/* MAIN CONTENT ------------------------------------------------*/
/*--------------------------------------------------------------*/

/* MAIN */
main {
	margin-top: 133px;
	min-height: calc(100vh - 133px - 85px);
	overflow: hidden;
}
main .main-content {
	width: 1000px;
	margin: 75px auto;
	overflow: hidden;
}

/* LEFT MENU */
main .main-content ul.left-menu {
	width: 200px;
	float: left;
	text-align: center;
	background: #ffb320;
    background: -webkit-linear-gradient(#ffb320 10%, #b96903);
    background:    -moz-linear-gradient(#ffb320 10%, #b96903);
    background:      -o-linear-gradient(#ffb320 10%, #b96903); 
    background:         linear-gradient(#ffb320 10%, #b96903);
}
main .main-content ul.left-menu > ul {
	background-color: #333;
	display: block;
	height: 60px;
	line-height: 60px;
}
main .main-content ul.left-menu > ul span {
	font-size: 20px;
	font-weight: 700;
	color: transparent;
	background: #ffb320;
    background: -webkit-linear-gradient(#ffb320, #b96903);
    background:    -moz-linear-gradient(#ffb320, #b96903);
    background:      -o-linear-gradient(#ffb320, #b96903); 
    background:         linear-gradient(#ffb320, #b96903);
	-webkit-background-clip: text;
	        background-clip: text;
}
main .main-content ul.left-menu > li {
	height: 50px;
}
main .main-content ul.left-menu > li:after {
	content: '';
	width: calc(100% - 40px);
	height: 1px;
	margin: 0 20px;
	display: block;
	background-color: rgba(0,0,0,0.1);
    box-shadow: 0 1px 0 0 rgba(255,255,255,0.3);
}
main .main-content ul.left-menu > li:last-child:after {
	display: none;
}
main .main-content ul.left-menu > li a {
	display: block;
	color: #fff;
	font-size: 15px;
	line-height: 50px;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
main .main-content ul.left-menu > li a:hover {
	background-color: rgba(0,0,0,0.3);
}

/* RIGHT BOX */
main .main-content .right-box {
	width: calc(100% - 250px);
	margin: 0 0 0 50px;
	float: left;
}
main .main-content .right-box.full {
	width: 100%;
	margin: 0;
}

/* BREADCRUMBS */
main .main-content .right-box ul.right-bread {
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px dashed #aaa;
	overflow: hidden;
}
main .main-content .right-box ul.right-bread-title {
	float: left;
	text-align: left;
	font-size: 28px;
	font-weight: 700;
	line-height: 28px;
	color: transparent;
	background: #ffb320;
    background: -webkit-linear-gradient(#ffb320, #b96903);
    background:    -moz-linear-gradient(#ffb320, #b96903);
    background:      -o-linear-gradient(#ffb320, #b96903); 
    background:         linear-gradient(#ffb320, #b96903);
	-webkit-background-clip: text;
	        background-clip: text;
}
main .main-content .right-box ul.right-bread-crumbs {
	float: right;
	text-align: right;
	margin-top: 11px;
}
main .main-content .right-box ul.right-bread-crumbs li {
	display: inline-block;
	font-size: 12px;
	color: #888;
}
main .main-content .right-box ul.right-bread-crumbs li a {
	color: #888;
}
main .main-content .right-box ul.right-bread-crumbs li:after {
	font-family: 'FontAwesome';
	content: '\f105';
	margin: 0 3px 0 8px;
}
main .main-content .right-box ul.right-bread-crumbs li:last-child:after {
	display: none;
}

/* RIGHT BOX CONTENT */
main .main-content .right-box ul.right-content {
	overflow: hidden;
}
main .main-content .right-box ul.right-content img {
	max-width: 100%;
}
main .main-content .right-box ul.right-content > ul {
	float: left;
}
main .main-content .right-box ul.right-content-pic {
	width: 300px;
}
main .main-content .right-box ul.right-content-pic img {
	width: 100%;
	height: auto;
	display: block;
}
main .main-content .right-box ul.right-content-txt {
	width: calc(100% - 330px);
	margin-left: 30px;
	font-size: 14px;
	color: #555;
	line-height: 26px;
	text-align: justify;
}
main .main-content .right-box ul.right-content-txt.full {
	width: 100%;
	margin-left: 0;
}
main .main-content .right-box ul.right-content-txt p + p,
main .main-content .right-box ul.right-content-txt p + ul, 
main .main-content .right-box ul.right-content-txt p + ol,
main .main-content .right-box ul.right-content-txt p + img,
main .main-content .right-box ul.right-content-txt ul + p,
main .main-content .right-box ul.right-content-txt ul + ul, 
main .main-content .right-box ul.right-content-txt ul + ol,
main .main-content .right-box ul.right-content-txt ul + img,
main .main-content .right-box ul.right-content-txt ol + p,
main .main-content .right-box ul.right-content-txt ol + ul,
main .main-content .right-box ul.right-content-txt ol + ol,
main .main-content .right-box ul.right-content-txt ol + img,
main .main-content .right-box ul.right-content-txt img + p,
main .main-content .right-box ul.right-content-txt img + ul,
main .main-content .right-box ul.right-content-txt img + ol,
main .main-content .right-box ul.right-content-txt img + img {
	margin-top: 15px;
}

/* USER EDITOR */
.user-editor a {
	color: #b96903;
}
.user-editor ul {
	list-style-type: disc;
	padding-left: 20px;
}
.user-editor ol {
	list-style-type: decimal;
	padding-left: 20px;
}
.user-editor img {
	display: block;
	max-width: 100%;
	height: auto;
}
.user-editor ul.pic-half {
	list-style-type: none;
	padding: 0;
	width: 100%;
	overflow: hidden;
}
.user-editor ul.pic-half li {
	width: 50%;
	display: block;
	float: left;
}
.user-editor ul.pic-half li img {
	width: 100%;
	height: auto;
}

/* BACK BUTTON */
.back-btn {
	display: table;
	margin: 40px auto 0;
}
.back-btn input {
	display: block;
	font-size: 12px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	border-radius: 5px;
	padding: 0 10px;
	background-color: #ffb320;
}
.back-btn  input:hover {
	background-color: #b96903;
}

/*--------------------------------------------------------------*/
/* BANNER ------------------------------------------------------*/
/*--------------------------------------------------------------*/

.banner {
	width: 100%;
	height: 200px;
	margin: auto;
}
.banner.index-banner {
	height: calc(100vh - 133px);
	overflow: hidden;
}
.banner div {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	float: left;
	margin: 0;
	outline: 0;
}

/*--------------------------------------------------------------*/
/* INDEX -------------------------------------------------------*/
/*--------------------------------------------------------------*/

/* INDEX INFO BASIC */
section.index-info {
	width: 100%;
	overflow: hidden;
}
section.index-info > ul {
	float: left;
}
section.index-info ul.index-section-title {
	height: 24px;
    line-height: 24px;
	text-align: left;
	font-size: 24px;
	font-weight: 700;
	border-bottom: 1px dashed #aaa;
	padding-bottom: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	color: transparent;
	background: #ffb320;
    background: -webkit-linear-gradient(#ffb320, #b96903);
    background:    -moz-linear-gradient(#ffb320, #b96903);
    background:      -o-linear-gradient(#ffb320, #b96903); 
    background:         linear-gradient(#ffb320, #b96903);
	-webkit-background-clip: text;
	        background-clip: text;
}
section.index-info ul.index-section-title input {
	display: block;
	font-size: 12px;
	float: right;
	color: #fff;
	border-radius: 5px;
	padding: 5px 10px;
	background-color: #ffb320;
}
section.index-info ul.index-section-title input:hover {
	background-color: #b96903;
}

/* INDEX ABOUT */
section.index-info ul.index-section-about {
	width: calc(100% - 350px);
	margin-right: 50px;
}
section.index-info ul.index-about-content {
	font-size: 14px;
	text-align: justify;
	line-height: 28px;
	color: #555;
}

/* INDEX NEWS */
section.index-info ul.index-section-news {
	width: 300px;
}
section.index-info ul.index-news-list {
	text-align: left;
	font-size: 14px;
	line-height: 24px;
}
section.index-info ul.index-news-list > ul {
	margin-bottom: 5px;
    overflow: hidden;
}
section.index-info ul.index-news-list > ul li {
	float: left;
}
section.index-info li.index-news-date {
	color: #b96903;
	font-size: 13px;
	width: 90px;
}
section.index-info li.index-news-info {
	width: calc(100% - 90px);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
section.index-info li.index-news-info a {
	color: #555;
}
section.index-info li.index-news-info a:hover {
	color: #333;
}

/*--------------------------------------------------------------*/
/* NEWS --------------------------------------------------------*/
/*--------------------------------------------------------------*/

ul.news-list, ul.news-list-row {
	overflow: hidden;
	width: 100%;
	float: none !important;
}
ul.news-list ul.news-list-row {
	height: 25px;
	line-height: 25px;
	padding: 30px 0;
	border-bottom: 1px dashed #aaa;
}
ul.news-list ul.news-list-row:first-child {
	padding-top: 0;
}
ul.news-list ul.news-list-row:last-child {
	padding-bottom: 0;
	border: none;
}
ul.news-list ul.news-list-row > li {
	float: left;
	text-align: left;
}
ul.news-list ul.news-list-row li.news-list-date {
	color: #b96903;
	width: 90px;
	font-size: 14px;
	margin-right: 20px;
}
ul.news-list ul.news-list-row li.news-list-title {
	white-space: nowrap;
    overflow: hidden;
	max-width: calc(100% - 110px);
    text-overflow: ellipsis;
}
ul.news-list ul.news-list-row li.news-list-title a {
	color: #333;
	font-size: 16px;
}
ul.news-list ul.news-list-row li.news-list-btn {
	float: right;
}
ul.news-list ul.news-list-row li.news-list-btn input {
	display: block;
	font-size: 12px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	border-radius: 5px;
	padding: 0 10px;
	background-color: #ffb320;
}
ul.news-list ul.news-list-row li.news-list-btn input:hover {
	background-color: #b96903;
}

/* PAGINATION */
ul.pagination {
	margin: 40px auto 0;
	display: table;
	float: none !important;
	overflow: hidden;
}
ul.pagination > li {
	float: left;
	margin: 0 1px;
}
ul.pagination > li a {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	text-align: center;
	line-height: 30px;
	font-size: 12px;
	color: #fff;
	background-color: #ffb320;
}
ul.pagination > li a:hover {
	background-color: #b96903;
}
ul.pagination a.prev, ul.pagination a.next {
	font-family: 'FontAwesome';
}
ul.pagination a.prev:before {
	content: '\f0d9';
}
ul.pagination a.next:before {
	content: '\f0da';
}

/*--------------------------------------------------------------*/
/* LEVEL -------------------------------------------------------*/
/*--------------------------------------------------------------*/

/* LEVEL NAV */
ul.level-nav {
	position: relative;
	z-index: 99;
	float: left;
	width: 350px;
	height: 450px;
	margin-right: 50px;
	background: url('../images/level/level-nav.png') no-repeat bottom;
}
ul.level-nav li {
	position: absolute;
	width: 60px;
	height: 25px;
}
ul.level-nav li a {
	display: block;
	font-size: 14px;
	text-align: center;
	line-height: 25px;
	color: #333;
	background: #fff;
	border-radius: 25px;
	border: 2px solid #ffb320;
}
ul.level-nav li:hover a:hover, ul.level-nav li.active a {
	color: #fff;
	background: #ffb320;
}

/* LEVEL NAV BUTTON POSITION */
ul.level-nav li:nth-child(odd) {
	left: 0;
}
ul.level-nav li:nth-child(even) {
	right: 0;
}
ul.level-nav li.level-hall {
	bottom: 30px;
}
ul.level-nav li.level-1f, ul.level-nav li.level-place{
	bottom: 60px;
}
ul.level-nav li.level-2f {
	bottom: 90px;
}
ul.level-nav li.level-3f {
	bottom: 120px;
}
ul.level-nav li.level-df {
	bottom: 150px;
}
ul.level-nav li.level-5f {
	bottom: 180px;
}
ul.level-nav li.level-6f {
	bottom: 210px;
}
ul.level-nav li.level-7f {
	bottom: 240px;
}
ul.level-nav li.level-8f {
	bottom: 270px;
}
ul.level-nav li.level-9f {
	bottom: 300px;
}
ul.level-nav li.level-10f {
	bottom: 330px;
}
ul.level-nav li.level-11f {
	bottom: 350px;
}
ul.level-nav li.level-12f {
	bottom: 380px;
}
ul.level-nav li.level-13f {
	bottom: 400px;
}
ul.level-nav li.level-14f {
	bottom: 420px;
}
ul.level-nav li:before {
	position: absolute;
	top: 13px;
	content: '';
	width: 60px;
	height: 2px;
	background: #ffb320;
}
ul.level-nav li:nth-child(odd):before {
	left: 60px;
	-webkit-transform: rotate(25deg);
	   -moz-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
            transform: rotate(25deg);
	 -webkit-transform-origin: top left;
	    -moz-transform-origin: top left;
	     -ms-transform-origin: top left;
	         transform-origin: top left;
}
ul.level-nav li:nth-child(even):before {
	right: 60px;
	-webkit-transform: rotate(-25deg);
	   -moz-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
            transform: rotate(-25deg);
	-webkit-transform-origin: top right;
	   -moz-transform-origin: top right;
	    -ms-transform-origin: top right;
	        transform-origin: top right;
}
ul.level-nav li.level-1f:before {
	width: 120px;
	-webkit-transform: rotate(-23deg);
	   -moz-transform: rotate(-23deg);
        -ms-transform: rotate(-23deg);
            transform: rotate(-23deg);
}
ul.level-nav li.level-9f:before {
	-webkit-transform: rotate(-40deg);
	   -moz-transform: rotate(-40deg);
        -ms-transform: rotate(-40deg);
            transform: rotate(-40deg);
}
ul.level-nav li.level-10f:before {
	-webkit-transform: rotate(35deg);
	   -moz-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
            transform: rotate(35deg);
}
ul.level-nav li.level-11f:before {
	width: 70px;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
ul.level-nav li.level-12f:before {
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
ul.level-nav li.level-13f:before {
	-webkit-transform: rotate(-50deg);
	   -moz-transform: rotate(-50deg);
        -ms-transform: rotate(-50deg);
            transform: rotate(-50deg);
}
ul.level-nav li.level-14f:before {
	-webkit-transform: rotate(40deg);
	   -moz-transform: rotate(40deg);
        -ms-transform: rotate(40deg);
            transform: rotate(40deg);
}
ul.level-nav li:after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	background: #ffb320;
	border-radius: 50%;
	border: 2px solid #fff;
}
ul.level-nav li:nth-child(odd):after {
	left: 100px;
}
ul.level-nav li:nth-child(even):after {
	right: 100px;
}
ul.level-nav li.level-1f:after {
	right: 165px;
	margin-top: 25px;
}
ul.level-nav li.level-9f:after,
ul.level-nav li.level-10f:after {
	margin-top: 13px;
}
ul.level-nav li.level-11f:after,
ul.level-nav li.level-12f:after {
	margin-top: 25px;
}
ul.level-nav li.level-13f:after {
	margin-top: 30px;
}
ul.level-nav li.level-14f:after {
	margin-top: 20px;
}

/* TAB CONTAINER */
.level-content {
	position: relative;
	width: 100%;
	text-align: left;
}
.level-content h1 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #555;
}
ul.level-download {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
}
ul.level-download li {
	width: calc(50% - 12.5px);
}
ul.level-download li input {
	width: 100%;
	padding: 10px 0;
	border-radius: 5px;
	color: #fff;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
	background: #ffb320;
    background: -webkit-linear-gradient(#ffb320 10%, #b96903);
    background: -moz-linear-gradient(#ffb320 10%, #b96903);
    background: -o-linear-gradient(#ffb320 10%, #b96903);
    background: linear-gradient(#ffb320 10%, #b96903);
}
ul.level-slick {
	padding-bottom: 35px;
	margin-bottom: 20px;
	width: calc(100% - 400px);
    margin-left: 400px;
}
ul.level-slick img {
	display: block;
	width: 100%;
	height: auto;
}
ul.level-slick .leve-slick-item {
	position: relative;
}
ul.level-slick .leve-slick-item:before {
	content: attr(data-title);
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: calc(100% - 20px);
	padding: 10px;
	font-size: 14px;
	color: #fff;
	background-color: #333;
	text-align: center;
}

/*--------------------------------------------------------------*/
/* CEREMONIES --------------------------------------------------*/
/*--------------------------------------------------------------*/

/* CEREMONIES TABLE */
table.ceremonies-table {
	margin-bottom: 15px;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	background: #ffb320;
    background: -webkit-linear-gradient(#ffb320, #b96903);
    background:    -moz-linear-gradient(#ffb320, #b96903);
    background:      -o-linear-gradient(#ffb320, #b96903); 
    background:         linear-gradient(#ffb320, #b96903);
}
table.ceremonies-table td {
	padding: 12px;
	position: relative;
}
table.ceremonies-table tr:nth-child(1) td {
	padding: 15px;
	background-color: #333;
	font-size: 16px;
	font-weight: 700;
}
table.ceremonies-table tr:nth-child(1) td span {
	display: block;
	text-shadow: none;
	color: transparent;
	background: #ffb320;
    background: -webkit-linear-gradient(#ffb320, #b96903);
    background:    -moz-linear-gradient(#ffb320, #b96903);
    background:      -o-linear-gradient(#ffb320, #b96903); 
    background:         linear-gradient(#ffb320, #b96903);
	-webkit-background-clip: text;
	        background-clip: text;
}
table.ceremonies-table tr:nth-child(2) td:after {
	position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    height: 1px;
    width: 100%;;
	display: block;
	background-color: rgba(0,0,0,0.1);
    box-shadow: 0 1px 0 0 rgba(255,255,255,0.3);	
}

/*--------------------------------------------------------------*/
/* CONTACT -----------------------------------------------------*/
/*--------------------------------------------------------------*/

/* CONTACT INFO */
ul.contact-info {
	margin: 0;
	padding: 0;
	float: left;
	text-align: left;
	width: 330px;
	margin-right: 50px;
}
ul.contact-info > ul {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 20px;
	color: #555;
}
ul.contact-info li {
	padding: 15px 0;
	font-size: 14px;
	color: #555;
}
ul.contact-info li a {
	color: #555;
}
ul.contact-info li {
	border-bottom:  1px dashed #aaa;
}
ul.contact-info li:last-child {
	border: none;
}
ul.contact-info li span {
	margin-right: 10px;
	font-weight: 700;
}
ul.contact-info .fa {
	margin-right: 5px;
	color: #ffb320;
}

/* CONTACT FORM */
ul.contact-form {
	width: calc(100% - 380px);
	overflow: hidden;
}
ul.contact-form > ul {
	display: block;
	width: 100%;
	margin-bottom: 30px;
}
ul.contact-form > ul:last-child {
	margin: 0;
}
ul.contact-form > ul li {
	width: 100%;
	margin-bottom: 15px;
	font-size: 14px;
	text-align: left;
	color: #333;
	position: relative;
}
ul.contact-form > ul li:last-child {
	margin: 0;
	border-radius: 3px;
	overflow: hidden;
	height: 50px;
}
ul.contact-form > ul:nth-last-child(2) li:last-child {
	height: 200px;
}
ul.contact-form input[type="text"] {
	border: 0;
	outline: 0;
	width: calc(100% - 80px);
	height: 20px;
    padding: 15px 15px 15px 65px;
	font-size: 14px;
	color: #333;
	background-color: rgba(0,0,0,0.1);
}
ul.contact-form textarea {
	width: calc(100% - 80px);
	height: 170px;
	padding: 15px 15px 15px 65px;
	font-size: 14px;
	background-color: rgba(0,0,0,0.1);
	resize: none;
	margin-bottom: -3px;
}
ul.contact-form i.fa {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 50px;
    line-height: 50px;
    height: 100%;
    font-size: 20px;
    color: #fff;
	z-index: 10;
	background: #ffb320;
}
ul.contact-form > ul:last-child {
	display: table;
	margin: auto;
	margin-top: 60px;
	width: auto;
}
ul.contact-form > ul:last-child li {
	display: table-cell;
	width: auto;
	height: auto;
	padding: 0 5px;
	border-radius: 0;
}
ul.contact-form > ul:last-child input {
	padding: 7px 10px;
	border-radius: 3px;
	color: #fff;
	text-align: center;
	background: #ffb320;
}
ul.contact-form > ul:last-child input:hover {
	background: #b96903;
}

/*--------------------------------------------------------------*/
/* FOOTER ------------------------------------------------------*/
/*--------------------------------------------------------------*/

footer {
	padding: 15px 0;
	background-color: #333;
}
footer ul {
	display: table;
	overflow: hidden;
	margin: 5px auto;
	text-align: center;
	line-height: 20px;
}
footer ul li {
	font-size: 12px;
	color: #707070;
	display: block;
	float: left;
}
footer a {
	color: #707070;
}
footer ul li:before {
	content: '|';
	margin: 0 7px;
}
footer ul li:first-child:before {
	display: none;
}

/*--------------------------------------------------------------*/
/* SCROLL TO TOP -----------------------------------------------*/
/*--------------------------------------------------------------*/

.scrollToTop {
	width: 50px; 
	height: 50px;
	background-color: #ffb320;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center; 
	color: #fff;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: -1;
	border-radius: 50%;
	line-height: 50px;
	opacity: 0;
}
.scrollToTop:hover{
	background-color: #b96903;
}
.scrollToTop.show {
	opacity: 1;
	z-index: 99999;
}

/*--------------------------------------------------------------*/
/* TRANSITIONS -------------------------------------------------*/
/*--------------------------------------------------------------*/

.button_container, .button_container span,
header nav.topbar a, header nav.topbar a:hover,
ul.level-nav li a, ul.level-nav li a:hover,
section.index-info ul.index-section-title input, section.index-info ul.index-section-title input:hover,
ul.news-list ul.news-list-row li.news-list-btn input, ul.news-list ul.news-list-row li.news-list-btn input:hover,
ul.pagination a, ul.pagination a:hover, .back-btn input, .back-btn input:hover,
section.index-info li.index-news-info a, section.index-info li.index-news-info a:hover,
main .main-content ul.left-menu > li a, main .main-content ul.left-menu > li a:hover,
ul.contact-form > ul:last-child input, ul.contact-form > ul:last-child input:hover,
.scrollToTop, .scrollToTop:hover, .scrollToTop.show {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------*/
/* MOBILES -----------------------------------------------------*/
/*--------------------------------------------------------------*/

@media screen and (max-width: 1023px) {
	.banner.index-banner {
		height: 500px;
	}
	main .main-content {
    	width: calc(100% - 80px);
		margin: 40px auto;
	}
	header nav.topbar {
		display: none;
	}
	header .logo a {
		float: left;
		margin-left: 30px;
	}
	main {
		margin-top: 88px;
	}
	main .main-content .right-box ul.right-content-pic {
		width: 100%;
		margin-bottom: 20px;
	}
	main .main-content .right-box ul.right-content-txt {
		width: 100%;
		margin-left: 0;
	}
	.button_container, .overlay {
		display: initial;
	}
	ul.level-nav {
		display: table;
		margin: auto;
		float: none !important;
	}
	ul.level-slick {
		width: 100%;
		margin-left: 0;
	}
	.level-content {
		width: 100%;
		margin: 40px 0 0;
	}
	footer ul {
		width: 500px;
	}
	footer ul:first-child li:nth-child(4):before {
		display: none;
	}
	footer ul li {
		display: inline-block;
		float: none;
	}
}
@media screen and (max-width:767px) {
	header .logo a {
		width: 307px;
		background-image: url('../images/logo-mobile.png');
	}
	.banner.index-banner {
		height: 300px;
	}
	section.index-info > ul {
		width: 100% !important;
	}
	section.index-info ul.index-section-about {
		margin-bottom: 40px;
	}
	main .main-content ul.left-menu {
		width: 100%;
		background: none;
	}
	main .main-content .right-box {
		width: 100%;
		margin: 30px 0 0;
	}
	.user-editor ul.pic-half li {
		width: 100%;
		margin-bottom: 15px;
	}
	.user-editor ul.pic-half li:last-child {
		margin: 0;
	}
	ul.news-list ul.news-list-row li.news-list-btn {
		display: none;
	}
	ul.level-nav {
		width: 100%;
		height: auto;
		overflow: hidden;
		background: none;
	}
	ul.level-nav li {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		width: calc(100%/4 - 10px);
		margin: 5px !important;
		float: left;
	}
	ul.level-nav li:before, ul.level-nav li:after {
		display: none;
	}
	ul.contact-info {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	ul.contact-form > ul:last-child {
		margin-top: 0;
	}
	ul.contact-form {
		width: 100%;
	}
	footer ul {
		width: auto;
	}
	footer ul:first-child {
		margin-bottom: 15px;
	}
	footer ul:first-child li {
		display: block;
	}
	footer ul:first-child li:before {
		display: none;
	}
    
    /* 2028.08.05新增 */
	main .main-content ul.left-menu > ul {
    display: none;
	}
	main .main-content ul.left-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    }
    main .main-content ul.left-menu > li {
    background: #ffb320;
    background: -webkit-linear-gradient(#ffb320 10%, #b96903);
    background: -moz-linear-gradient(#ffb320 10%, #b96903);
    background: -o-linear-gradient(#ffb320 10%, #b96903);
    background: linear-gradient(#ffb320 10%, #b96903);
    margin: 0 10px 10px 0;
    border-radius: 5px;
    }
    main .main-content ul.left-menu > li:after {
    display: none;
    }
    main .main-content ul.left-menu > li:last-child {
    margin: 0 0px 10px 0;
    }
    main .main-content ul.left-menu > li a {
    padding: 0 10px;
    }
}
@media screen and (max-width:413px) {
	header .logo a {
		width: 250px;
		background-size: 250px auto;
	}
	footer ul li {
		display: block !important;
	}
	footer ul li:before {
		display: none !important;
	}
}
@media screen and (max-width:374px) {
	header .logo a {
		width: 200px;
		background-size: 200px auto;
	}
}