@charset "UTF-8";
/*---------------------------
 声明外部字体
----------------------------*/
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/roboto-regular.ttf) format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: bold;
  src: url(../fonts/roboto-bold.ttf) format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url(../fonts/roboto-light.ttf) format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/roboto-condensed.ttf) format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/roboto-boldcondensed.ttf) format('woff2');
}
/*---------------------------
 基础样式
----------------------------*/
body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, button, textgrid, p, blockquote, textarea, th, td, mark, article, aside, audio, canvas, figure, footer, header, hgroup, nav, section, video {
    margin:0;
    padding:0;
}
body {
    min-width: 1024px;
    font-family:'PingFang SC','STHeitiSC-Light','Microsoft YaHei';
    font-size:1rem;
    background: #2d2e30;
}
::selection {   
    background:#69d680;    
    color:#fff;
}   
  
::-moz-selection {   
    background:#69d680;    
    color:#fff;   
}
::-webkit-selection {   
    background:#69d680;    
    color:#fff;   
} 
a {
    text-decoration:none;
}
ol, ul, li, dl, dt, dd {
    list-style:none;
}
abbr, acronym {
    border:0;
    font-variant:normal;
}
textarea, fieldset, img {
    border:none;
    display:block;
}
.left {
    float: left;
}
.right {
    float: right;
}
/*---------------------------
 卸载浮动层
----------------------------*/
.clearfix {
    display:block; zoom:1;
}
.clearfix:after {
    content:".";
    clear:both;
    display:block;
    height:0;
    font-size:0;
    visibility:hidden;
    overflow:hidden;
}
* html .clearfix {
    height:1%;
}
*+html .clearfix{
    min-height:1%;
}
/*---------------------------
 初始化加载
----------------------------*/
.loading {
	position: fixed;
	left: 0; 
	top: 0;
	width: 100%;
	height: 100%;
	background: #2d2e30;
	z-index: 9999;
    transition: .5s all;
    opacity: 1;
}
.loading-bd {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.loading-done {
    opacity: 0;
}
/*---------------------------
 页面基础框架
----------------------------*/
.content {
    opacity: 0;
    transition: .5s all;
    background: #fff;
    overflow: hidden;
}
.contentOpen{
    opacity: 1;
    overflow: hidden;
}

/*---------------------------
 区域高度布局参数
----------------------------*/
.fullScreen {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.fullScreen video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    object-fit: fill;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
}
.partialScreen {
    position: relative;
    height: 75vh;
    overflow: hidden;
}
.cutOff {
    position: relative;
    z-index: 10;
    height: 50vh;
}
.cutOff p {
    position: absolute;
    z-index: 9999;
    top:-1.7vw;
    left:50%;
    width: 3vw;
    height: 3vw;
    font-size: 1.1vw;
    line-height: 3.5vw;
    text-align: center;
    border-radius: 1.5vw;
    transform: translateX(-50%) translateY(0);
}
.cutOff-info {
    display: inline-block;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 7.5vw;
    transform: translateX(0) translateY(-50%);
}
.cutOff-info legend {
    display: inline-block;
    font-size: 0.87em;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #fff;
    padding-bottom: 1vh;
    margin-bottom: 2vh;
}
.cutOff-info h1 {
    display: block;
    font-size: 2.1em;
    letter-spacing: 0.03em;
    font-weight: 300;
    line-height: 1.6em; 
}
.cutOff-info  a {
    display: inline-block;
    font-size: 0.9em;
    font-weight: 100;
    margin-top: 3vh;
}
.cutOff .gray {
    background: #f7f7f7;
    color:#000;
}
.cutOff span {
    display:inline-block;
    position: absolute;
    z-index: 10;
    left: 50vw;;
    top:50%;
    width:30vw;
    font-size: 1.1em;
    font-weight: 100;
    line-height: 1.9em;
    transform: translateX(0) translateY(-50%); 
}
.cutOff em {
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    font-style: normal;
}
.flowContent {
    width: 85vw;
    padding: 7.5vw;
    margin: 0 auto;
}
/*---------------------------
 区域明暗控制
----------------------------*/
.bright {
    background: #fff;
    color:#000;
}
.bright a {
    color: #000;
}
.bright a:hover {
    color: #4ec459;
}
.dark {
    color:#fff;
}
.dark a {
    color: #fff;
}
.dark a:hover {
    color: #92ed9c;
}
/*---------------------------
 footer
----------------------------*/
footer {
    position: relative;
    width: 85vw;
    background: #232323;
    padding: 5vw 7.5vw;
}
footer img {
    display: inline-flex;
    position: absolute;
    height:5vh;
}
footer article {
    display: inherit;
    margin-left: 15vw;
}
footer dl {
    float: left;
    margin-right: 7.5vw;
}
footer dt {
    font-size: 1.03em;
    font-weight: 100;
    margin-bottom: 1.5vh;
}
footer dt a {
    display: block;
    color: #fff; 
    transition:all .5s;
}
footer dd {
    font-size: 0.9em;
    font-weight: 100;
    line-height: 2.3em;
}
footer dd a {
    display: block;
    color: rgba(255,255,255,.7); 
    transition:all .5s;
}
footer dl a:hover {
    color: #7ce083; 
    transition:all .5s;
}
footer fieldset {
    position: absolute;
    top:5vw;
    right: 7.5vw;
}
footer ul {
    display: inline-block;
}
footer ul a {
    color: #fff;
}
footer li {
    float: left;
    margin-right: .2em;
}
footer li a { 
    display: block;
    width: 2.3vw;
    height: 2.3vw;
    font-size: 1.5em;
    text-align: center;
    line-height: 2vw;
    color: rgba(255,255,255,.5);
    transition: .39s all cubic-bezier(.23,1,.32,1) .2s,opacity .8s cubic-bezier(.23,1,.32,1) .2s;
}
footer li a:hover {
    font-size: 2em;
    color: #70d31a;
    cursor:pointer;
    transition: .39s all cubic-bezier(.23,1,.32,1) .2s,opacity .8s cubic-bezier(.23,1,.32,1) .2s;
}
footer span {
    display: inline-block;
    width: 220px;
    line-height: 1.75em;
    color: rgba(255,255,255,.3);
    text-transform: capitalize;
    font-weight: lighter;
    font-size: 0.7em;
    letter-spacing: .1em;
    margin: 3vh 0 0 1.5em;
}
/*---------------------------
 弹窗基础样式
----------------------------*/
.reveal-modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0; 
    z-index: 100;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.8);
    }

.reveal-modal {
    position: absolute;
    visibility: hidden;
    top: 50%; 
    left: 50%;
    background: #fff;
    z-index: 101;
    padding: 0 32px 32px 32px;
    border-radius: 7px;
    transform: translateX(-50%) translateY(-80%);
    }
.reveal-modal h3 {
    font-size: 1.2em;
    line-height: 60px;
    font-weight: lighter;
}
.reveal-modal .close-reveal-modal {
    position: absolute;
    top:10px;
    right: 32px;
    font-size: 1.5em;
    color: #aaa;
    font-weight: bold;
    cursor: pointer;
}
.weixinPop {
    width: 13vw;
}
.weixinPop img {
    width: 100%;
}



/*---------------------------
 背景遮罩
----------------------------*/
.mask-black {
    display: block;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.36);
}
/*---------------------------
 附件
----------------------------*/
.mouseTip {
    position:absolute;
    left:49%;
    bottom:7%;
    z-index: 10;
    width:2%;
}
.mouseTip img {
    width: 100%;
}
.mouseTipa {
    position:absolute;
    left:0;
    bottom:7%;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 100;
    z-index: 10;
    text-align: center;
    color:rgba(255, 255, 255, .35);
}
.mouseTipa a {
    color:rgba(255, 255, 255, .7);
}
/*---------------------------
 公共按钮
----------------------------*/
.gotoButtonBright {
    display: block;
    position: relative;
    width: 15vw;
    min-width: 270px;
    height: 3em;
    line-height: 3em;
    font-weight: 300;
    text-align: center;
    color: #222;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin:9vw auto 0 auto;
}
.gotoButtonBright:hover {
    color: #fff !important;
    cursor:pointer;
}
.gotoButtonBright span{
	display: block;
	position: absolute;
    z-index: 2;
	width: 100%;
	height: 100%;	
}
.gotoButtonBright::before{
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	width: 0%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	background-color: #4ec459;
    border: 1px solid #4ec459;
    border-radius: 5px;
	transition: all 0.3s;

}
.gotoButtonBright:hover::before{
	opacity: 1;
	width: 100%;
}
.gotoButtonBright i {
    margin-left: 1em;
}


/*---------------------------
 动画选择器
----------------------------*/
/*循环弹跳*/
.animation-bounce {
	animation:animation-bounce 1s .5s ease both infinite;
}
@keyframes animation-bounce {
	0%,20%,50%,80%,100% {
        transform:translateY(0);
    }40% {
        transform:translateY(-8px);
    }60% {
        transform:translateY(-4px);
    }
}
/*落下*/
.animation-fall {
    animation:animation-fall 2s ease both;
}

@keyframes animation-fall {
    0% {
        opacity:0;
        transform:translateY(-5vh);
    }100% {
        opacity:1;
        transform:translateY(0);
    }
}
/*升起*/
.animation-rise {
    animation:animation-rise 2s  ease both;
}
/*升起*/
.animation-rise01 {
    animation:animation-rise 1s .2s  ease both;
}
/*升起*/
.animation-rise02 {
    animation:animation-rise 1s .3s  ease both;
}
@keyframes animation-rise {
    0% {
        opacity:0;
        transform:translateY(10vh);
    }100% {
        opacity:1;
        transform:translateY(0)};
}
/*右侧淡入*/
.animation-right {
    -webkit-animation:fadeInRight 1s .2s ease both;
    -moz-animation:fadeInRight 1s .2s ease both;
}
@-webkit-keyframes fadeInRight{
    0%{opacity:0;
    -webkit-transform:translateX(50%)
}
100%{
    opacity:1;
    -webkit-transform:translateX(0)
    }
}
/*打开*/
.animation-open {
    -webkit-animation:bounceIn 1s .2s ease both;
    -moz-animation:bounceIn 1s .2s ease both;
}
@-webkit-keyframes bounceIn {
    0%{
        opacity:0;
        -webkit-transform:scale(.3)
    }50% {
        opacity:1;
        -webkit-transform:scale(1.05)
    }70% {
        -webkit-transform:scale(.9)
    }100% {
        -webkit-transform:scale(1)
    }
}






/*---------------------------
 鼠标经过环绕效果
----------------------------*/
.outer {
    position:absolute;
    width:100%;
    height:100%;
}
.outer:before, .outer:after, .outer i:before, .outer i:after {
    display:block;
    position:absolute;
    content:"";
    transition:all 0.13s;
}
.outer:before {
    top:-7px;
    left:-0px;
    width:0;
    height:0;
    border-top:7px solid #7ce083;
    -webkit-transition-delay: 0.39s;
}
.outer:after {
    bottom:-7px;
    right:0px;
    width:0;
    height:0;
    border-top:7px solid #7ce083;
    -webkit-transition-delay: 0.13s;
}
.outer i:before {
    left:-7px;
    bottom:0px;
    height:0;
    width:0;
    border-left:7px solid #7ce083;
    transition-delay: 0s;
}
.outer i:after{
    right:-7px;
    height:0;
    width:0;
    border-left:7px solid #7ce083;
    transition-delay: 0.26s;
}  
.outer:hover:after, .outer:hover:before {
    width:calc(100% + 7px);
}
.outer:hover i:after, .outer:hover i:before {
    height:calc(100% + 7px);
}
.outer:hover:before {
    -webkit-transition-delay: 0s;
}
.outer:hover:after {
    -webkit-transition-delay: 0.26s;
}
.outer:hover i:after {
    -webkit-transition-delay: 0.13s;
}
.outer:hover i:before {
    -webkit-transition-delay: 0.39s;
}