﻿/*-----------------------------------------------------------------
[Legal Notice]

Copyright (c) HighHay/Mivfx
Before using this template, you should agree with themeforest licenses terms.
http://themeforest.net/licenses
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
/** CSS Reference
    0. Base Style
        0.button Buttons
        0.color Color bg-XX text-XX
	1. Link and logo at top / .header-top
	2. Dot navigation at right / #fp-nav, #fp-nav.right
	3. Quick links at right / .quick-link
		3.1 quick link position / .quick-link .count-X (where X=1,2,3,4,5)
		3.2 Links
	4. Page footer / .page-footer
	5. Page cover / .page-cover
		5.1. page cover background image,color (overriden by data-bgcolor or data-image-src atributes) / .page-cover .cover-bg
		5.2 Page cover  background mask (overriden by data-bgcolor or data-image-src atributes) / .page-cover .cover-bg-mask
	6. Main page / .page-main
		6.0 Page footer with scroll down button / .p-footer
		6.1 Page general params / .page-cent, .page
		6.3 Page and slide animation / .page.transition , .slide.transition
		6.4 Page clock countdown / .page-when, .page .clock
		6.5 Registration form / .page-register
		6.6 About us / .page-about
		6.7 Contact, Message / .page-contact
	7. Video background / .video-container

	Hooks for responsiveness (mobile friendly) can be found in "main_responsive.css" file

**/
/*---------- 
[Colors]
    text color : #FFFFFF, #FFF
    blue : #5677FC
    transluscent white : rgba(255, 255, 255, 0.15) / #fff;
*/

/* 0. Base Style  */
/* initialization */
.slimScrollDiv{
	height:100% !important;
}
.fp-scrollable{
	height:100% !important;
}
html {
    color: #fff;
    font-size: 1em;
    line-height: 1.4;
	background: #626262;
}

::-moz-selection {
    background: #fff;
    text-shadow: none;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
img,
svg,
video {
    vertical-align: middle;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
a:hover, a:focus{
	text-decoration: none !important;
}
body, html, h1, h2, h3, h4, h5, h6, a, ul, li{
    
}
body{
    font-family: 'OpenSans';
    background: #fff;
    
    margin: 0;
    padding: 0;
}
ul, li{
    list-style: none outside none;
    margin: 0;
}
iframe{
    border: none;   
}
.pos-rel{
    position: relative;
}
.pos-abs{
    position: absolute;
}
.pos-fix{
    position: fixed;
}
.full-width{
    width: 100%;
    max-width: 1440px;
}
.full-height{
    height: 100%;   
}
.full-size{
    top:0;
    left:0;
    right: 0;
    bottom: 0;
}

.my-button {
    text-transform: uppercase; 
    font-size: 1rem;
    padding: 1em;
    /* padding-top: 0.8rem; */
    padding-bottom: 0.8rem;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
}

.center-vh{
/*
    height: 100%;
    width: 100%; 
*/
    /* width needed for Firefox */

    /* old flexbox - Webkit and Firefox. For backwards compatibility */
    display: -webkit-box; display: -moz-box;
    /* middle-aged flexbox. Needed for IE 10 */
    display: -ms-flexbox;
    /* new flexbox. Chrome (prefix), Opera, upcoming browsers without */
    display: -webkit-flex;
    display: flex;

    /* old flexbox: box-* */
    -webkit-box-align: center; -moz-box-align: center;
    /* middle flexbox: flex-* */
    -ms-flex-align: center;
    /* new flexbox: various property names */
    -webkit-align-items: center;
    align-items: center;


    -webkit-box-pack: center; -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;    
}
.pos-top{
    top:0;
}
.pos-left{
    left: 0;
}
.pos-right{
    right: 0;
}
.pos-bottom{
    bottom: 0;   
}
.relh100{
    position:relative; height: 100%;   
}
/* Make page full width so reset foundation restriction on max-width*/
.row{
/*    width: 100%;*/
    max-width: 100%;
}


ul, li{
    list-style: none outside none;
    margin: 0;
}

.full-width{
    width: 100%;
    max-width: 100%;
    
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.fullscreen-width{
    width: 100%;
    max-width: 100%;
}
.table{
    display: table;
    height: inherit;
    margin: auto;
}
.table-cell{
    display: table-cell;
/*    height: inherit;*/
    vertical-align: middle;
}
.align-center{
    text-align: center;   
}
.align-left{    
    text-align: left;
}
.align-right{
    text-align: right;   
}
.align-justify{
    text-align: justify;   
}
/*
.mask{
    position: relative;
}
*/

/** 0. color Color */
.mask:before
{
    position: absolute;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    opacity: 0.8;
/*    z-index: 10;*/
}
.title.bg-red,
.bg-red,
.mask-red:before{    
    background: #e51c23;
}
.title.bg-yellow,
.bg-yellow,
.mask-yellow:before{    
    background: #ffeb3b;
}
.title.bg-blue,
.bg-blue,
.mask-blue:before{    
    background: #5677fc;
}
.title.bg-pink,
.bg-pink,
.mask-pink:before{    
    background: #e91e63;
}
.title.bg-green,
.bg-green,
.mask-green:before{    
    background: #259b24;
}
.title.bg-white,
.bg-white,
.mask-white:before{    
    background: #fff;
}
.title.bg-black,
.bg-black,
.mask-black:before{    
    background: #1f1f1f;
}
.title.bg-orange,
.bg-orange,
.mask-orange:before{    
    background: #ff9800;
/*    background: #ef6c00;*/
}
.title.bg-purple,
.bg-purple,
.mask-purple:before{    
    background: #9c27b0;
}
.title.bg-lime,
.bg-lime,
.mask-lime:before{    
    background: #cddc39;
}
.title.bg-bluegrey,
.bg-bluegrey,
.mask-bluegrey:before{    
    background: #607d8b;
}

.title.bg-bluegreylight,
.bg-bluegreylight,
.mask-bluegreylight:before{    
    background: #f0f0f0;
}
.title.bg-bluegreydark,
.bg-bluegreydark,
.mask-bluegreydark:before{    
    background: #37474f;
}
.title.bg-indigo,
.bg-indigo,
.mask-indigo:before{    
    background: #3f51b5;
}
.title.bg-black,
.bg-black,
.mask-black:before{    
    background: #000;
}
.title.bg-black1,
.bg-black1,
.mask-black1:before{    
    background: #333;
}
.title.bg-amber,
.bg-amber,
.mask-amber:before{    
    background: #ffc107;
}

.text-white{
    color: #fff;   
}
.text-black{
    color: #333333;   
}
.text-bold{
    font-weight: bold;   
}
.text-red{
    color: #e51c23;   
}
.text-blue{
    color: #455ede;   
}
.text-orange{
    color: #ff9800;   
}
.text-yellow{
    color: #ffd600;   
}
.text-amber{
    color: #ffc107;   
}
.text-pink{
    color: #e91e63;   
}
.text-lightblue{
    color: #03a9f4;   
}

.small-col-20{
    width: 20%;
}
.box-shadow {
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    -ms-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
}





/* Viewport visibility animation  */
.hidden{
     opacity:0;
     -webkit-transition: 0.6s;
     -ms-transition: 0.6s;
     transition: 0.6s;
}
.visible{
     opacity:1;
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.invisible{
    display: none !important;  
}
.s-visible-medium-up{
    opacity:0;
}
strong,
.bold{
	font-weight: bold;
}
.column, .columns{
    padding: 0;   
}
.row .row{
    margin: 0;   
}

/* 1. Link and logo at top  */
.header-top{
    position: fixed;
    z-index: 20;
    top:0;
    left: 0;
	height: 90px;
	width:100%;
	display: flex;
	justify-content: space-between;
	/*padding:0 10rem;*/
	border-bottom: 1px solid rgba(255,255,255,0.5);
/*
	background: rgba(255, 255, 255, 0.15);
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
*/
}
.footend{position: fixed;
    z-index: 20;
    /* top: 0; */
    left: 0;
    bottom: 0px;
    height: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: space-around;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
	color:#999
}
.header-top.material{
	background: rgba(255, 255, 255, 0.15);
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
}

	.header-top>div{
		/*display: inline-block;
		float: left;
		padding-top: 18px;*/
	}
	.header-top .logo img{
		height: auto;
		width: 140px;
	}
    .header-top .wrap {
        width: 1200px;
        margin: 0 auto;
        height: 90px
    }a {
         text-decoration: none;
         background: transparent; /*修正win8系统IE连接灰色背景*/
         outline:none;
         blr:expression(this.onFocus=this.blur());
     }
a:focus {
    outline: 0;
}
        .header-top .wrap .menu{ float: right;/*padding-top: 18px;*/ line-height: 90px; }
            .header-top .wrap .menu ul li {
                float: left;
                position: relative;
                height: 90px;
                line-height: 90px;
                font-family: 微软雅黑, 宋体, Arial, sans-serif;
            }  .header-top .wrap .menu ul li:hover {
                   border-bottom: 2px solid rgba(255,255,255,0.5);
               }
            .header-top .wrap .menu ul a {
                color: #fff;
                font-size: 16px;
                padding: 0 30px; 
                display: inline;
            }
                .header-top .wrap .menu ul a:hover{ text-underline: none;border-bottom: none;}
                .header-top .wrap .menu ul a.zborderleft {
                    border-left: 1px solid rgba(255, 255, 255, 0.5);
                }
.zrc-search-bth {
    display: block !important;
    border: 0 !important;
    margin-top: 38px !important;
}
.zm-searchbtn {
    width: 28px;
    height: 15px;
    background: url(/static/aot/image/magnifier.png) no-repeat left center;
    background-size: auto 100%;
    border-right: 1px solid #ccc;
    margin-top: 16px;
    cursor: pointer;
    display: none;
}

/*.m-searchbtn {
    background: url(/static/aot/static/image/magnifier1.png) no-repeat left center;
    background-size: contain;
}*/
 

                .header-top .wrap .menu ul li:last-child a{ padding: 0px}
                .header-top .logo {
                    transition: 0.3s;
                    line-height: 90px;
                    float: left;   
                    
                }
	.header-top .logo:hover{
		background: rgba(255, 255, 255, 0.15);
	}

	.header-top.material .menu{
		border-right: 1px solid #f5f5f5;
	}
	.header-top.material .menu:last-child{
		border-right: none;
	}
       
	.header-top.material .menu a:first-child:after{
		display: none;
	}
	/* .header-top .menu a:first-child:after{
		position: absolute;
		left: 0;
		top: 25%;
		height: 50%;
		width: 1px;
		background: #fff;
		content: "";
	} */

	.header-top.material .menu a:hover{
		background: #5677fc;
	}
	.header-top .menu a:hover{
		color: rgb(255,130,1);
		border-bottom: 2px solid rgba(255,255,255,0.5);
	}
 
/* 2. Dot navigation at right */
#fp-nav.right{
    right: 28px;
    margin-right: 10px;
	position: absolute;
}
#fp-nav span, .fp-slidesNav span{
    border-color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 10px;
	height: 10px;
}
#fp-nav ul li a span{
	background: #fff;
}
#fp-nav li, .fp-slidesNav li {
    display: block;
    width: 10px;
    height: 10px;
    margin: 16px;
    position: relative;
}
	#fp-nav span:after, .fp-slidesNav span:after{	
		background: rgba(255, 255, 255, 0.15);  
		position: absolute;
		content: "";
		
		display: block;
		top: 4px;
		left: 4px;
		right: 4px;
		bottom: 4px;
		border-radius: 100%;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
#fp-nav li .active span, .fp-slidesNav .active span{
    background: #fff;
	position: absolute;
}
	#fp-nav li .active span:after, 
	.fp-slidesNav .active span:after{
		top: -6px;
		left: -6px;
		bottom: -6px;
		right: -6px;
	}
/* 3.  Quick links at right*/
.quick-link{
	position: fixed;
	top: 50%;
	left: 0;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	z-index: 100;
	margin-top: -96px; /* 48*4/2*/
}
.quick-link li{
	list-style: none;
	list-style-position: outside;
	display: block;
	height: 48px;
	width: 48px;
	position: relative;
}
/* 3.1 quick link position : use it to adjust its position */
	.quick-link.count-1{
		margin-top: -24px; /* 48*1/2*/
	}
	.quick-link.count-2{
		margin-top: -48px; /* 48*5/2*/
	}
	.quick-link.count-3{
		margin-top: -72px; /* 48*3/2*/
	}
	.quick-link.count-4{
		margin-top: -96px; /* 48*4/2*/
	}
	.quick-link.count-5{
		margin-top: -120px; /* 48*5/2*/
	}
	.quick-link.count-6{
		margin-top: -144px; /* 48*6/2*/
	}
	.quick-link.count-7{
		margin-top: -168px; /* 48*7/2*/
	}
/* 3.2 Links */
.quick-link a{
	background: #fff;
	background: rgba(255, 255, 255, 0.15);
	height: 48px;
	width: 48px;
	display: block;
	text-align: center;
	font-size: 22px;
	padding-top: 0.4rem;
	color: #fff;
	opacity: 1;
	position: relative;
	z-index: 1;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.quick-link a:hover{
/*		opacity: 0.5;*/
/*		color: #5677fc;*/
}
.quick-link ul li{
	position: relative;
}
.quick-link ul li:after,
.quick-link a:after{
	position: absolute;
	content: "";
	background: rgba(255,255,255,0);
	border-radius: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
/*		transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
	-webkit-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
	z-index: -1;
}
.quick-link ul li.active:after,
.quick-link a:hover:after{
	-webkit-transform: none;
	transform: none;
	border-radius: 0;
	background: rgba(255,255,255,0.15);
	background: #5677fc;
}

.quick-link ul li.active:after{
	background: rgba(230, 230, 230, 0.12);
}
.quick-link a.marked{
	color: #fff;
	background: #5677fc;
}
	.quick-link .title{
		position: absolute;
		font-size: 12px;
		left: 56px;
		top: 17px;
		color: #fff;
		font-family: "Asap";
		text-transform: uppercase;
		text-align: left;
		width: 100px;
		border-bottom: 1px solid currentColor;
		display: block;
		transform: translateX(10px);
		-webkit-transition: 0.3s;
		transition: 0.3s;
		visibility: hidden;
		opacity: 0;
	}
	.quick-link li:hover .title{
		-webkit-transform: none;
		transform: none;
		display: block;
		opacity: 1;
		visibility: visible;
	}

/* 4. Page footer */
.page-footer{
	position: fixed;
	bottom: 20px;
	right: 56px;
	margin-right: -8px;
	color: #fff;
	font-size:18px;
	font-family: 'Asap';
	font-weight: normal;
}
.page-footer a:first-child{
	margin-left: 8px;
}
.page-footer a{
	color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: inline-block;
	padding: 5px 8px;
}
.page-footer a .ion{
	font-size: 1.2em;
}
.page-footer a:hover{
	opacity: 0.8;
}


/* 5. Page cover */
.page-cover{
    width: 100%;
    position: fixed;
    height: 100%;
    z-index: 0;
}
    /* 5.1. Page cover background image,color */
    .page-cover .cover-bg{
        background: url(../img/bg_forest.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: -3;
    }
	.page-cover .cover-bg.bg-color{
        background-image: none;
        z-index: -3;
    }

    /* 5.2 Page cover  background mask */
    .page-cover .cover-bg.cover-bg-mask{
        background: rgba(0, 0, 0, 0.12);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed; 
        z-index: 0;
        -webkit-transition: 2s;
        -ms-transition: 2s;
        transition: 2s;
    }
	/* 5.3 background slide */
	.page-cover .vegas-timer {
		display: none;
	}
/* 6. Main Page */
.page-main{  
    position: relative;
    width: 100%;
    height: 100%;
}
 
/* 6.0 Page footer with scroll down button */
.p-footer {
    bottom: 0;
    position: absolute;
    width: 100%;
	padding-top: 5rem;
	z-index:999;
}
.p-footer .icon{
	position: absolute;
	top: 24px;
	color: #fff;
	text-align: center;
	width: 24px;
	margin-left: -12px;
	font-size: 20px;
	transition: 0.3s;
}
	.p-footer .text{
		font-size: 12px;
		font-family: "Asap";
		text-transform: uppercase;
	}
.p-footer:hover .icon{
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.p-footer .arrow-d{
    position: relative;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    height: 48px;
    width: 48px;
    left: 50%;
    bottom: 32px;
	margin: 0;
	display: block;
	border: 0px solid #fff;
	border-radius: 100%;
    margin-left: -24px;   
	transition: 0.3s;
	font-family: "Asap";
	color: #fff;
	font-size: 14px;
}
	.p-footer .arrow-d:hover{
		background: #5677fc;
	}
	.p-footer .arrow-d.gone{
		-webkit-transform: scale(0);   
		transform: scale(0);   
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	.p-footer .arrow-d .circle{
		top: 12px;
		bottom: 12px;
		left: 12px;
		right: 12px;
		position: absolute;
		content: "";
		background: #fff;
		border-radius: 100%;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}

	.p-footer .arrow-d .circle:after{
		top: 12px;
		bottom: 12px;
		left: 12px;
		right: 12px;
		position: absolute;
		content: "";
		background: #fff;
		border-radius: 100%;
		-webkit-transition: 0.3s ;
		transition: 0.3s ;
	}
	.p-footer .arrow-d .after,
	.p-footer .arrow-d .before{
		top: 14px;
		position: absolute;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		opacity: 1;
	}
	/* Hover animation */
	.p-footer .arrow-d:hover .after,
	.p-footer .arrow-d:hover .before{
		opacity: 0.15;
	}
	.p-footer .arrow-d:hover .circle{
		background: #5677fc;
		background: rgba(86, 119, 252, 0);
		top: 0px;
		bottom: 0px;
		left: 0px;
		right: 0px; 
	}
	.p-footer .arrow-d:hover .circle:after{	
		border-radius: 0;
		left: 23px;
		right: 23px;
	}
	.p-footer .arrow-d .before{
		text-align: right;
		float: right;
		right: 72px;
	}
	.p-footer .arrow-d .after{
		text-align: left;
		float: left;
		left: 72px;
	}
	.p-footer .arrow-d:after,
	.p-footer .arrow-d:before{
		position: absolute; content: ' ';
		width: 24px;
		height: 24px;
		left: 12px;
		margin-left: 0.5px;
	/*
		-webkit-transform: rotateY(45deg);
		-ie-transform: rotateY(45deg);
	*/
		border: 2px solid rgba(255, 255, 255, 0.15);
		border-left-color: transparent;
		border-top-color: transparent;  
		-ms-transition: 0.3s;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.p-footer .arrow-d:after{   
		border-right-color: transparent;  
		top: 12px;
		left: 36px;
		-ms-transform: rotateZ(-45deg); 
		-webkit-transform: rotateZ(-45deg); 
		transform: rotateZ(-45deg); 
	}
	.p-footer .arrow-d:before{  
		border-bottom-color: transparent;
		top: 12px; 
		left: -12px;
		-ms-transform: rotateZ(-135deg);
		-moz-transform: rotateZ(-135deg);
		transform: rotateZ(-135deg);
	}
	.p-footer .arrow-d.no-change:after, 
	.p-footer .arrow-d:hover:after{ 
		top: 14px; 
		left: 14px;
		bottom: 14px;
		right: 14px;
		width: auto;
		height: auto;
		border: 2px solid #fff;
		border-left-color: transparent;
		border-top-color: transparent;  
		border-right-color: transparent; 
		-ms-transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
	.p-footer .arrow-d.no-change:before,
	.p-footer .arrow-d:hover:before{
		top: 14px;
		left: 14px;
		bottom: 14px;
		right: 14px;
		width: auto;
		height: auto;

		border: 2px solid #fff;
		border-left-color: transparent;
		border-top-color: transparent;  
		border-bottom-color: transparent;
		-ms-transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
	.p-footer:hover .arrow-d.no-change:after, 
	.p-footer:hover .arrow-d.no-change:before{
		top: 4rem;
	}
	.p-footer .arrow-d a{
		color: inherit;
	}
/* 6.1 Page general params */

.page{    
    position: relative;
    width: 100%;
    height: 100%;
}
.page-cent{
    width: 100%;   
    position: relative;
    text-align: center;
}
.page-cent .content p{
}
.page-cent .content{
	width: 100%;
	max-width: 1200px;
/*    width: auto;*/
    margin: 0 auto;
	padding-top: 72px;
	padding-bottom: 72px;
    /*padding-left: 1em;
    padding-right: 1em;*/
    display: inline-block; 
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
	text-align: left;
    font-family: 'Asap';
	color: #fff;
}

.page-cent .p-title{
    display: block;
    margin-bottom: 0.5rem;
}
.page-cent .p-title h3{
/*    text-transform: capitalize;   */
    font-size: 30px;
    padding-left: 0px;
    text-align: left;
    display: inline-block;
	color: #fff;
    font-family: 'Asap';
	border-bottom: 8px solid #5677fc;
}
.page-cent .p-title h2{
    text-transform: uppercase;   
    font-size: 56px;
	line-height: 1.3em;
    text-align: left;
	margin-top: 0.3em;
	margin-bottom: 0.3em;
    display: block;
	color: #fff;
    font-family: 'Asap';
}

/* Page general structure */
.page .p-title i{
    display: inline-block;
    margin-left: 0.5em;
    margin-right: 0em;
	font-size: 0.8em;
}
.page-cent .text{	
    font-family: 'Asap';
	color: #fff;
	text-align: left;
}
.page p{    
    font-family: 'Asap';
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 0.75rem;
}
.page p.small{
	font-size: 14px;
}
.page p.center{
	text-align: center;
}
.page p.upper{
    text-transform: uppercase;
}
.page p.light{
    font-family: 'OpenSans-Light';
}
.page h4{
	text-transform: uppercase;
	font-weight: bold;
    color: #ffffff;
    font-size: 20px;
	margin-bottom: 0;
	margin-top: 0;
}

.page h2,
.page h3,
.page h4{
    font-family: 'Asap';
    color: #ffffff;
}

/* 6.2 Page and slide animation */
.slide,
.page .content,
.page-home .logo-container ,
.page{
	-webkit-transition: 0.8s background , 0.6s transform, 0.6s opacity;
	transition: 0.8s background , 0.6s transform, 0.6s opacity;
	-webkit-transform: none;
	transform: none;
	background: transparent;
/*
	-webkit-perspective: 1000px;
	perspective: 1000px;
*/
	border: none;
}
.page .content{
	z-index: 1;
}
.page:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	content: '';
	z-index: 0;
	-webkit-visibility: hidden;
	visibility: hidden;
	-webkit-transition: 0.8s background , 0.6s transform, 0.8s visibility;
	transition: 0.8s background , 0.6s transform, 0.8s visibility;
	-webkit-transform: none;
	transform: none;
}
.page.transition:before{
	-webkit-visibility: visible;
	visibility: visible;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	background: rgba(255, 255, 255, 0.15);
}
.page-home.transition .logo-container{
	-webkit-transform: translateY(20px) scale(0.1);
	transform: translateY(20px) scale(0.1);
	opacity: 0;
}
.page.transition .content{
	-webkit-transform: scale(0.85);
	transform: scale(0.85);
/*	background: rgba(255, 255, 255, 0.15);*/
}
.slide.transition{
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	background: rgba(255, 255, 255, 0.15);
}
/* 6.3 Home page */
.page-home .content ,
.page-home.page-cent .content {
	position: relative;
	max-width: 1200px;
	width: 100%;
}
.page-home .logo-container{
	position: absolute;
	top: 100px;
	width: 100%;
	text-align: center;
}

.page-home .logo-container img.h-logo{
	position: relative;
	display: inline-block;
	/* adjust below according t your llogo dimension */
	height: 100px;
	width: auto;
}

.page-home .content .header{
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.page-home .content .header>div{
	display: inline-block;
	position: relative;
}

.page-home .content h2{
	text-transform: uppercase;
	font-size: 94px;
	text-align: left;
	line-height: 1em;
}

.page-home .content h3{
	text-align: left;
	text-transform: uppercase;
	font-size: 40px;
	line-height: 1em;
	font-weight: bold;
	border-left: 4px solid currentColor;
	padding-left: 10px;
	margin-left: 10px;
	max-width: 180px;
}

.page-home .content .subhead{
	display: block;
	text-align: left;
	position: absolute;
	left: 20px;
	color: rgba(255,255,255,0.2);
	-webkit-transition: 0.3s;
	transition: 0.3s;
/*	width: 300px;*/
/*	border-top: 1px solid currentColor;*/
}

.page-home .content .subhead:hover{
	color: #fff;
}

.page-home .content .subhead a{
	color: inherit;
}
/* 6.4 Page clock countdown */
.page-when .content{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.page .content .clock{
	width: 430px;
	height: 430px;
	margin: 0 auto;
	border-radius: 100%;
	background: rgba(255,255,255,0.15);
	position: relative;
}

/* Mask to disable click */

.page .content .clock:before{
	z-index: 3;
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	content: "";
	background: rgba(255,255,255,0);
	border-radius: 100%;
	box-shadow: 0px 0px 24px 1px rgba(7, 7, 7, 0.15);
}

.page .content .clock .header{
	position: absolute;
	top: -72px;
    font-family: 'Asap';
	font-weight: normal;
	font-size: 30px;
	text-align: center;
	width: 100%;
}
.page .clock .text{
    position: relative; 
    width: 100%;
    font-family: 'Asap';
	font-weight: normal;
    letter-spacing: 0;
    margin-top: 0.5em;
    display: block;
    text-transform: uppercase;
    color: #fff;
	text-align: center;
}
.page .clock .block:last-child .digit:after{
    display: none;
}
.page .clock .elem-center{
    display: inline-block;
    position: relative;
    text-align: center;
	width: 100%;
	top: 0;
	margin-top: 50%;
	height: 50%;
	bottom: 0;
}
.page .clock .elem-center .digit{
    position: relative; 
    font-size: 120px;
	margin-top: -0.5em;
	letter-spacing: -0.03em;
	line-height: 1em;
    font-family: 'Asap';
	font-weight: bold;
	width: 100%;
    color: #fff;
    display: block;
}
.page .clock .elem-center .text{
	position: absolute;
	bottom: 58%;
	font-size: 24px;
	margin-top: 0;
}
.page .clock .elem-center .text.top{
	bottom: 124%;
}
.page .clock .elem-center .text.top img{
	height: 65px;
	margin-bottom: 20px;
}
.page .clock .elem-right,
.page .clock .elem-left{
	position: absolute;
	width: 70px;
	top: 50%;
	bottom: 0;
	display: block;
}
.page .clock .elem-left{
	left: 50px;
}
.page .clock .elem-right{
	right: 50px;
}
.page .clock .elem-right .text,
.page .clock .elem-left .text{
	position: absolute;
	bottom: 58%;
	font-size: 24px;
	margin-top: 0;
}
.page .clock .elem-right .digit,
.page .clock .elem-left .digit{
    position: relative; 
	text-align: center;
    font-size: 60px;
	letter-spacing: -0.03em;
	margin-top: -0.5em;
	line-height: 1em;
    font-family: 'Asap';
	font-weight: normal;
	width: 100%;
    color: #fff;
    display: block;
}
.page .clock .second{
	position: absolute;
	left: 15px;
	top: 15px;
	bottom: 15px;
	right: 15px;
	border: 0px solid #fff;
	border-radius: 100%;
	z-index: 2;
	-webkit-box-shadow: inset 0px 0px 0px 2px #fff;
	-moz-box-shadow: inset 0px 0px 0px 2px #fff;
	box-shadow: inset 0px 0px 0px 2px #fff;
}

/* 6.5 Registration form */
.page-register .content{
/*    margin-top: -4rem;*/
/*
    padding-left: 1em;
    padding-right: 1em;
*/
/*    padding-top: 0.2rem;*/
}
.page .form{  
}
.page .form input{ 
    background: transparent;
/*    background: #f4f;*/
    border: none;
    color: #fff;
    padding: 0em 1em;
	padding-bottom: 0.3em;
    font-family: 'Asap';
    font-size: 20px;
    box-shadow: none;
    display: inline-block;
/*    min-width: 400px;*/
	position: absolute;
    width: auto;
	width: 100%;
	bottom: 0;
	left: 80px;
	right: 0;
	margin-bottom: 0;
}
.page .form.send_email_form input{
	
}
.page .form.send_email_form .fields{
	margin-top: 72px;
	background: rgba(255, 255, 255, 0.10);
	padding-left: 16px;
	height: 46px;
	min-height: 36px;
}

.page .form.send_email_form .buttons,
.page .form.send_email_form .buttons button{
	height: 45px;
}
.page .form label{
	display: inline-block;
    font-family: 'Asap';
	font-weight: bold;
    font-size: 20px;
    color: #fff;
	text-transform: uppercase;
    display: inline-block;
	margin-bottom: 0.35em;
	padding-top: 0.40em;
}
.page .form .fields{
	margin-top: 24px;
	position: relative;
    border-bottom: 1px solid #5677fc;
}
.page .form .fields.no-border{
	border: none;
}
.page .form .fields>div{
	float: left;
}
.page .form .fields .buttons{ 
	position: absolute;
	bottom: 0;
	right: -.5px;
}
.page .form button{ 
    background: #5677fc;
    color: #fff;
    font-family: 'Asap';
	font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    padding: 0.5rem 1rem; 
    margin-bottom: 0;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	z-index: 2;
}
.page .form button:after{
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	right: 50%;
	bottom: 50%;
	content: "";
	background: #fff;
	opacity: 0;
	border-radius: 120px;
	-webkit-transition: 0.3s;
	transition: 0.3s;	
}
.page .form button:hover:after{
	opacity: 1;
	border-radius: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.page .form button:hover{
	background: transparent;
	color: #5677fc;
}
.page .form textarea{ 
    background: #fff;
    border: 1px solid currentColor;
    color: #626262;
    padding: 0.5em 1em;
    min-width: 200px;    
    font-size: 20px;
	font-family: "Asap";
    display: block;
    width: 100%;
    box-shadow: none;
    min-height: 108px;
	margin-top: 3px;
} 
.page .message-ok{
    margin-bottom: 0;
    position: absolute;
    font-size: 20px;
}

/* 6.6 About us */
.page-about .content{
    
    margin-top: 0;
    border: none;
/*
    padding-left: 1em;
    padding-right: 1em;
*/
    padding-top: 112px;
    padding-bottom: 112px;
}
.page-about .article{
       max-width: 480px;
    margin: auto;
}

/* 6.7 Contact, Message */
.page-contact{  
/*    margin-top: -1rem;*/
}

.page-contact .fp-controlArrow {
	display: none;
}
.page-contact .p-title{
	position: relative;
}
.page-contact .p-title .buttons{
	position: absolute;
	bottom: 8px;
	right: 0;
	background: rgba(255,255,255,0.15);
	display: inline-block;
}

.page-contact .p-title .buttons li{
	position: relative;
	display: block;
	width: 48px;
	float: left;
}
.page-contact .p-title .buttons a{
	text-align: center;
	width: 48px;
	height: 48px;
	display: inline-block;
	position: relative;
	margin: 0;
}
.page-contact .p-title .buttons a i{
	margin: 0;
	font-size: 24px;
	padding-top: 0.5em;
}

.page-contact .p-title .buttons a:after{
	position: absolute;
	content: "";
	background: rgba(255,255,255,0);
	border-radius: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.page-contact .p-title .buttons a:hover:after{
	border-radius: 0;
	background: rgba(255,255,255,0.15);
}
.page-contact .contact li{
	margin-top: 20px;
}
.page-contact .contact img{
	height: 56px;
	width: auto;
}
.page-contact a{
    color: #fff;
}
.page-contact .right{
	text-align: right;
}
	.page-contact .social-links .page-header .header-title{
        display: none;
    }
    .page-contact .socialnet{
		margin-right: -10px;
	}
    .page-contact .socialnet a{
        color: #fff;
		font-size: 24px;
        margin-bottom:  0.25rem;
        display: inline-block;
		width: 1.5em;
        border-radius: 1em;
        background: transparent; 
		position: relative;
		text-align: center;
    }
    .page-contact .socialnet a:after{
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: transparent;
        -ms-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
		border-radius: 100%;
	}
    .page-contact .socialnet a:hover:after{
        border-radius: 0;
        background: rgba(255, 255, 255, 0.15); 
        color: #fff;       
    }
/* Form */

/* 7. Video background */
/* 7.1. static video background */
.video-container{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: -2;
}
.video-container video{
    height: 724px; 
    width: 1287px; 
    margin-top: -42px; 
    margin-left: 0px;   
}
.video-container iframe{    
    width: 100%;
    height: 100%;
}
.show-for-medium-up{
    display: none;   
}
.zrc-1105-mask{
	display:none;
	width:100%;
	height:100vh;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top:0;
	left:0;
	z-index: 999;
}
.zrc-1105-mask video{
	width:70%;
	margin-left:15%;
	margin-top:5rem;
}
.zrc-page-about{
	width:100%;
	max-width: 1200px;
	margin:0 auto;
	position: relative;
}
.zrc-page-about>div{
	width:100%;
}
.zrc-mask-btn{
	position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    height: 600px;
    width: 400px !important;
}
.zrc-mask-btn>img{
	height: 600px;
	width: 400px;
	cursor: pointer;
}
.zrc-play:hover img{
	width:60px;
	height:60px;
	margin-top:10px;
	transform: scale(1.1);
}
.zrc-play{
	position: absolute;
	left: 160px;
    top: 260px;
	width:80px;
	height: 80px;
	background: #f49c0f;
	padding-left: 0 !important;
	padding-top:0 !important;
	cursor: pointer;
}
.zrc-play img{
	cursor: pointer;
	width:40px;
	height:40px;
	margin-top:20px;
	transition: all 0.6s;
}
.zrc-page-about>div div:nth-child(1){
	width:100%;
	background:rgba(248,248,248,0.9);
	padding-top:5rem;
	padding-bottom:3rem;
	height: 600px;
}
.zrc-page-about>div div:nth-child(1) p{
	padding-left:450px;
}
.zrc-page-about>div div:nth-child(1)>p:nth-child(1){
	color:#f49c0f;
	font-size:4rem;
	font-weight: 600;
        font-family:"Poppins-Bold";

}
.zrc-page-about>div div:nth-child(1)>p:nth-child(2){
	margin-top:1rem;
	color:rgb(96,96,96);
	font-size:2rem;
	line-height: 2rem;
	font-weight: 600;
}
.zrc-page-about>div div:nth-child(1)>p:nth-child(3){
	color:rgb(96,96,96);
	font-size:1.5rem;
	line-height: 1.5rem;
	margin-top:0.5rem;
}
.zrc-page-about>div div:nth-child(1) div{
	height:210px;
	overflow: hidden;
	margin-top:3rem;
	padding-left:450px;
	font-size:1.6rem;
	/*text-indent: 2em;*/
	padding-right: 45px;
	color: rgb(96,96,96);
	line-height: 3rem;
        font-family:Arial; 
}
    .zrc-page-about > div div:nth-child(1) div a {
        color: rgb(96,96,96);
    }
    .zrc-page-about > div div:nth-child(1) div p {
        color: rgb(96,96,96);
        font-size: 1.3rem;
        line-height: 2rem;
        padding-right: 3rem;
    }
.zrc-page-about>div>div:nth-child(2){
	padding-top:5rem;
	padding-left:450px;
	display: flex;
	justify-content: space-around;
	position: absolute;
	bottom: -1rem;
}
.zrc-page-about h2.h2tit {
    display: block;
    position: absolute;
     top: 340px;
    background: none;
    width: unset;
    height: unset;
    font-size: 2rem;
    font-weight: 500;
    left: 100px;
    color: #222;
}
    .zrc-page-about h2.h2tit:hover {
        color: rgb(96,96,96)
    }
    .zrc-page-about > div > div:nth-child(2) a {
        display: inline-block;
    }
.zrc-page-about>div>div:nth-child(2) a p{
	color:#333;
	text-align: center;
	font-size:1.3rem;
	margin-top:0.5rem;
        font-family:"Poppins-Bold";
}
.cccc{
	padding-left:470px !important;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-right: 70px;
}

.cccc-img{
	animation: rotate 2s infinite linear;
	-webkit-animation: rotate 2s infinite linear;
}
.about-ac{
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.about-a4{
    overflow: hidden;
    margin-top: 110px;
    width: 100%;
    float: left;
}
.about-a4 li{
    width: 33.33%;
    text-align: left;
    float: left;
    position: relative;
}
.about-a4 li:nth-child(2){
    width: 30%;
    text-align: center;
}
.about-a4 li:nth-child(3){
    text-align: right;
}
.about-a4-a{
    display: inline-block;
    text-align: center;
}
.about-a4-a1 {
    font-size: 50px;
    line-height: 1;
    color: #f49c0f;
    font-weight:bold
}
.about-a4-a1 .sp2{
    font-size: 40px;
    font-weight: bold;
    position: relative;
    top: -8px;
}
.about-a4-a2 {
    font-size: 16px;
    color: #3c3c3c;
    line-height: 20px;
    display: block;
    margin-top: 5px;
}
 
.about-a4 li:first-child:after{
    display: none;
}
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
 
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}
 
@-moz-keyframes rotate {
	from {
		-moz-transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(360deg);
	}
}
 
@-ms-keyframes rotate {
	from {
		-ms-transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
	}
}
 
@-o-keyframes rotate {
	from {
		-o-transform: rotate(0deg);
	}
	to {
		-o-transform: rotate(360deg);
	}
}
.zrc-page-product{
	width: 1200px;
	border-radius: 6px;
	background: #fff;
	margin:0 auto;
	padding:3rem 0;
	display: flex;
	height: 580px;
}

.zrc-page-product-0525{
    width: 1200px;
    border-radius: 6px;
    background: #fff;
    margin:0 auto;
    padding:3rem;
    /*display: flex;*/
    height: 580px;
}
    .zrc-page-product-0525 div.pro_ser {
        width: -webkit-calc(25% - 0px);
        padding: 0 10px;
        float: left;
    }
        .zrc-page-product-0525 div.pro_ser p {
            color: #f49c0f;
            font-size: 4rem;
            font-weight: 600;
            line-height: 4rem;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            margin-top: 5%;
        }
    .zrc-page-product-0525 div.pro_ser a {
        background: #f49c0f;
        color: #fff;
        font-size: 1.3rem;
        display: inline-block;
        padding: 0.5rem 1.8rem;
        text-align: center;
        margin-top: 20px;
    }
.location-boxs {
    position: relative;
    width: 25%;
    /*width: -webkit-calc(25% - 0px);*/
    padding:0 10px;
    float: left;
   
    margin-bottom: 20px;
    height: 249px;overflow: hidden;
}

.location-boxs .item-imgs {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.location-boxs .item-imgs:after {
    content: "";
    height: 60%;
    width: 100%;
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9), transparent);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-radius: 0 0 4px 4px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.location-boxs .item-imgs a {
    display: block;
}

.location-boxs .item-imgs img {
    border-radius: 4px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.location-boxs .item-contents {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.location-boxs .item-contents .item-titles {
    font-size: 18px;
    position: relative;
    padding-left: 16px;
    margin-bottom: 0;
}

.location-boxs .item-contents .item-titles:before {
    content: "";
    height: 18px;
    width: 4px;
    background-color: #6f6f6f;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.location-boxs .item-contents .item-titles a {
    color: #ffffff;
}

    .location-boxs .item-contents .item-titles a:hover {
        color: #f49c0f;
    }

.location-boxs:hover .item-imgs img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

    .location-boxs:hover .item-contents .item-titles:before {
        background-color: #f49c0f;
    }

        .zrc-page-product-0525 .item-img {
            display: inline-block;
            position: relative;
            margin-bottom: 2rem; height: 249px;
            overflow: hidden;
            width: -webkit-calc(25% - 0px);
            padding: 0 10px;
            float: left;
           
            border-radius: 4px;
            overflow: hidden;
        }
        .zrc-page-product-0525 .item-img a{ display: block;}
            .zrc-page-product-0525 .item-img:after {
                content: "";
                height: 60%;
                width: 100%;
                background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9), transparent);
                background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
                border-radius: 0 0 4px 4px;
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                pointer-events: none;
            }
        .zrc-page-product-0525 a.col img {
            display: block;
            width: 100%;
            border-radius: 4px;
            -webkit-transition: 0.2s;
            transition: 0.2s;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }.zrc-page-product-0525 a.col img:hover{  -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);}
        .zrc-page-product-0525 a.col p {
            display: inline-block;
            position: absolute;
            bottom: 10px;
            left: 20px;
        }
.zrc-page-product-0525 a.col p span{ position: relative;padding-left: 16px;}
    .zrc-page-product-0525 a.col:hover p span:before {
        background-color: #f49c0f;
    }
    .zrc-page-product-0525 a.col p span:before {
        content: "";
        height: 18px;
        width: 4px;
        background-color: #6f6f6f;
        border-radius: 2px;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .zrc-page-product > div:nth-child(1) {
        width: 35%;
        padding: 2rem 0;
    }
.zrc-page-product>div:nth-child(2){
	width:60%;
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}
.zrc-page-product>div:nth-child(1) p{
	padding-left:3rem;
}
.zrc-page-product>div:nth-child(1) p:nth-child(1){
	color:#f49c0f;
	font-size:4rem;
	font-weight: 600;
	line-height: 4rem;
	margin-bottom:1.2rem;
}
.zrc-page-product>div:nth-child(1) p:nth-child(2) span{
	color:#000;
	font-size:2.5rem;
	line-height: 2.5rem;
	padding-bottom:0.5rem;
}
.zrc-page-product>div:nth-child(1) p:nth-child(2) span:nth-child(1){
	border-bottom:3px solid rgb(255,130,1);
}
.zrc-page-product>div:nth-child(1) p:nth-child(3){
	margin-top:4rem;
	color:rgb(96,96,96);
	font-size:1.5rem;
	line-height: 2.4rem;
	padding-right:3rem;
	text-indent: 2rem;
}
.zrc-page-product>div:nth-child(1) p:nth-child(4){
	margin-top:3.5rem;
}
.zrc-page-product>div:nth-child(1) p:nth-child(4) a{
	background:#f49c0f;
	color:#fff;
	font-size:1.5rem;
	display: inline-block;
	padding:0.8rem 1.8rem;
	text-align: center;
}
.zrc-page-product>div:nth-child(2) a{
	width:350px;
	height:250px;
	display: inline-block;
	position: relative;
	margin-bottom:2rem;
	overflow: hidden;
}
.zrc-page-product>div:nth-child(2) a:nth-child(n+3){
	width:230px;
	height:250px;
	margin-bottom:0;
	overflow: hidden;
}
.zrc-page-product>div:nth-child(2) a:hover img,.zrc-page-product>div:nth-child(2) a:nth-child(n+3):hover img{
	transform: scale(1.1);
}
.zrc-page-product>div:nth-child(2) a img,.zrc-page-product>div:nth-child(2) a:nth-child(n+3) img{
	transition: all 0.6s;
}
.zrc-page-product>div:nth-child(2) a p{
	position: absolute;
	bottom:0.5rem;
	text-align: center;
	width:100%;
}
.zrc-page-product>div:nth-child(2) a p span{
	display: inline-block;
	background: #fff;
	padding:0.5rem 2rem;
	font-size:1.5rem;
	margin:0 auto;
	border-radius: 10px;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	word-break: break-all;
	width:70%;
	color:#333;
}
.zrc-page-new{
	width: 100%;
	border-radius: 10px;
	margin:0 auto;
	padding:3rem 0;
}
.zrc-page-new p:nth-child(1){
	color:#f49c0f;
	font-size:4rem;
	font-weight: 600;
	line-height: 5rem;
	margin-bottom:1rem;
	text-align: center;
}
.zrc-page-new>p:nth-child(2){
	text-align: center;
}
.zrc-page-new>p:nth-child(4){
	margin-top:4rem;
	text-align: center;
}
.zrc-page-new>p:nth-child(4) a{
	background:#f49c0f;
	color:#fff;
	font-size:1.5rem;
	display: inline-block;
	padding:0.8rem 1.8rem;
	text-align: center;
}
.zrc-page-new p:nth-child(2) span{
	color:#fff;
	font-size:2.5rem;
	line-height: 2.5rem;
	padding-bottom:0.5rem;
}
.zrc-page-new p:nth-child(2) span:nth-child(2){
	border-bottom:3px solid #f49c0f;
}
.zrc-page-new>div{
	display:flex;
	margin-top:5rem;
	justify-content: space-between;
}
.zrc-page-new .swiper-slide:hover{
	border:5px solid rgb(255,130,1);

}
.zrc-page-new .swiper-slide:hover img{
	transform: scale(1.1);
}

.zrc-page-new .swiper-slide{
	display: inline-block;
	width:375px !important;
	height:420px;
	background:#fff;
	position: relative;
	border:5px solid rgb(255,255,255);
	padding:10px;
	margin-right:20px !important;
}
.zrc-page-new .swiper-slide p:nth-child(2){
	font-size:1.8rem;
	line-height: 1.8rem;
	margin:2rem 1rem 1rem;
	color:#000;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	word-break: break-all;
	position: relative;
	padding-bottom: 1rem;
}
.zrc-page-new .swiper-slide p:nth-child(2)::after{
	content:'';
	width:30px;
	height:2px;
	background: #f49c0f;
	position: absolute;
	left: 0;
    bottom: 0;
}
.zrc-page-new .swiper-slide p:nth-child(3){
	font-size:1.3rem;
	line-height: 1.8rem;
	margin:0rem 1rem 1.5rem 1rem;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	color:#555;
}
.zrc-page-new .swiper-slide p:nth-child(4){
	color:rgb(255,130,1);
	font-size:1.1rem;
	margin:0rem 1rem 1.5rem 1rem;
}
.zrc-page-new .swiper-slide>div{
	width:310px;
	height:208px;
	overflow: hidden;
}
.zrc-page-new .swiper-slide img{
	width:345px;
	height:230px;
	transition: all 0.6s;
}
.zrc-page-new-0525 a .img {
    overflow: hidden;
}

    .zrc-page-new-0525 a .img img {
        width: 100%;
        height: 230px;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

.zrc-page-new-0525 a:hover .img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /*-webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);*/
}

.zrc-page-new-0525 a .text {
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 150px;
    padding-left: 35px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: #ffffff;
    position: relative;
}

.zrc-page-new-0525 a:hover .text {
    height: 150px;
    /*margin-top: -50px;*/
    background: #ff9d00;
}

.zrc-page-new-0525 a .text h6 {
    font-weight: bold;
    font-size: 18px;
    color: #3c3c3c;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.zrc-page-new-0525 a .text h4 {
    font-size: 14px;
    color: #737373;
    margin-top: 8px;
    margin-right:8px;
    text-transform:none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.zrc-page-new-0525 a .text h5 {
    font-size: 18px;
    color: #000;
    margin-top: 18px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
    .zrc-page-new-0525 a .text h3{
        font-size: 14px;
        color: #838383;
        margin-top: 18px;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;}
    .zrc-page-new-0525 a:hover .text * {
        color: #fff;
    }
.zrc-page-new-0525 p:nth-child(1) {
    color: #f49c0f;
    font-size: 4rem;
    font-weight: 600;
    line-height: 5rem;
    margin-bottom: 5rem;
    text-align: center;
}
.zrc-page-new-0525 p.more {
    font-size: 20px;
    margin-bottom: 0.75rem;
    text-align: center;color: #fff;
}
    .zrc-page-new-0525 p.more a {
        color: #fff;
    }
    .zrc-page-new-0525 .about2P {
        margin: 0 auto;
        margin-top: 10px;
        text-align: center;
        /*display: inline-block;*/
    }
    .zrc-page-new-0525 .about2P .swiper-pagination-bullet-active {
        background: #1352b0;
    }
    .zrc-page-new-0525 .about2P span {
        width: 12px;
        height: 12px;
        background: #595656;
        opacity: 1;
        margin: 0 8px;
    }
.zrc-page-new-0525 .other-product-lists:after{ content: '';display: block;}
.zrc-page-new-0525 .other-product-lists a:hover .tit {
    background: #ff9d00;
}
    .zrc-page-new-0525 .other-product-lists a:hover .tit p{ color: #fff;}
    .zrc-page-new-0525 .other-product-lists .tit {
        text-align: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        /* display: flex; */
        /* -webkit-box-align: center; */
        /* -webkit-align-items: center; */
        -ms-flex-align: center;
        /* align-items: center; */
        /* -webkit-box-pack: center; */
        /* -webkit-justify-content: center; */
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 91px;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        background: #ffffff;
        position: relative;
        border-radius: 0 0 10px 10px;
    }
.zrc-page-new-0525 .other-product-lists .tit p {
    font-size: 13px;
    color: #898989;
    margin-top: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 0px 16px 0;
    margin-bottom: 0px;line-height: 25px;
    font-family: "Poppins-Bold";
}
.zrc-page-new-0525 .other-product-lists div:first-child {
    border: none;
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 285px;
    transition: opacity,.4s,-webkit-transform .4s;
    transition: opacity,transform .4s,.4s;
    transition: opacity, transform .4s, .4s, -webkit-transform .4;
}
 
.zrc-1111-padding-left{
	width:62.5px !important;
	padding-top: 2px;
}
.zrc-1111-padding{
	width:62.5px !important;
}
.m-searchbtn {
    width: 15px;
    height: 15px;
    background: url(/static/aot/static/image/magnifier.png) no-repeat left center;
    background-size: auto 100%;
    cursor: pointer;
    display: inline-block;
}
.borderleft::after{
	content: '';
	position: absolute;
	left:0;
	top:17px;
	width:1px;
	height:21px;
	background: rgba(255,255,255,0.5);
}
.zrc-1111-search{
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background-color: #000;
    opacity: 0.8;
    filter: Alpha(opacity=80);
    display: none;
}
.close-search{
	display: block;
    width: 15px;
    height: 15px;
    background: url(http://www.aot.com/aot/static/css/../image/ico_116.png) no-repeat center;
    background-size: 100% auto;
    position: fixed;
    right: 4.6%;
    top: 60px;
    cursor: pointer;
    z-index: 51;
}
.searchbox{
	width: 93%;
    border: 1px solid #aaa;
    position: fixed;
    left: 3%;
    top: 100px;
    height: 40px;
    z-index: 51;
}
.searchbox input.tex{
	border: none;
    background: none;
    font-size: 12px;
    font-family: "Arial";
    color: #a7a7a7;
    height: 13px;
    line-height: 12px;
	padding: 20px 2% 13px;
	margin-bottom:0;
    width: 80%;
}
.searchbox input.search-btn{
	border: none;
    width: 40px;
    margin-right: 1%;
    height: 40px;
    background: url(http://www.aot.com/aot/static/css/../image/ico_115.png) no-repeat center;
	background-size: 60% auto;
	position: absolute;
    top: 0;
    right: 0;
}
.lay-sear {
    display: none;
}
.lay-sear1 {
    padding: 60px;
}
.lay-sear1 .form1 .inp1 {
    width: 500px;
    height: 42px;
    font-size: 20px;
    padding: 0 0 0 15px;
    border: 1px solid #999999;
    border-radius: 30px;
}
.lay-sear1 .form1 .btn-sub {
    height: 38px;
    width: 160px;
    cursor: pointer;
    background: #ff9f1a;
    color: #ffffff;
    border-radius: 7px;
    margin: 16px auto 0;
    display: block;
    border: none;
}
.lay-sear1 .form1 .btn-sub i {
    font-size: 20px;
}
 
		.atVideo {
     display: none;
     position: fixed;
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
     background: rgba(0, 0, 0, 0.5);
     overflow: hidden;
     text-align: center;
     z-index: 99999;
     cursor: pointer;
 }
.atVideo_box {
    z-index: 990;
    cursor: inherit;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    border: 12px solid #fff;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
    .atVideo_box video {
        display: block;
        position: relative;
        z-index: 4;
        width: 100%;
    }
.atVideo_cls {
    cursor: pointer;
    position: absolute;
    right: -12px;
    top: -54px;
    width: 42px;
    height: 42px;
    background: #f49c0f;
    padding: 6px;
}
    .atVideo_cls img {
        width: 100%;
    }
 