html{
  font-family: '微软雅黑','microsoft yahei';
  -webkit-text-size-adjust:100%;
  -ms-text-size-adjust:100%;
  color: #666;
}
body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset,legend,input,textarea,button,select {margin:0;padding:0;}
th,td{border-spacing:0;}
img,fieldset,iframe{border:0;}
img{max-width: 100%;vertical-align: top;}
ul,ol,li{list-style: none;}
a{text-decoration:none;color: #666;}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display: block;}
audio,canvas,progress,video{display: inline-block;vertical-align: baseline;}
/* animation */
.bpfz{
  min-width: 320px;
  width: 100%;
  margin:0 auto;
  background-color: #e9e9e9;
}
.bd60{
  padding-bottom: 60px;
}
.animated {-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}
.animated-fast {-webkit-animation-duration: .5s;animation-duration: .5s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}
/*手机版导航*/
.btn-nav{
  position: absolute;
  top:21px;
  right:0px;
  background: transparent;
  border:none;
  padding:0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  cursor: pointer;
  z-index: 9999;
  display: none;
}
.btn-nav:focus{
  outline: 0;
}
.icon-bar {
  display: block;
  margin: 9px 0;
  width: 45px;
  height: 2px;
  background-color:#707070;
}
.heaSub.header .icon-bar{
  background-color: #000;
}
.btn-nav:hover .icon-bar {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.nav-content {
  position: fixed;
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  background:#707070;
  display: block;
  height:100%;
  max-height: 1024px;
  z-index: 110;
}
.nav-list {
  list-style: none;
  padding: 0;
  position: relative;
  top:20px;
  text-align: center;
}
.item-anchor:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: transparent;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.item-anchor {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.item-anchor:hover,
.item-anchor:focus {
  color: #FCA311;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after{
  width: 100%;
  background: #FCA311;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav-item {
  margin: 0px auto;
  text-align: center;
  line-height: 35px;
}
.nav-item a{
  color:#fff;
}
.animate-nav {
  display: block;
  margin: 0 auto;
}

.animated-nav:hover .icon-bar,
.animated:focus .icon-bar{
  background-color: #fff;
}

.animated-nav:focus {
  cursor: pointer;
  z-index: 9999;
}
.middle {
  margin: 0 auto;
}

.icon-bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
  z-index: 999999;
}

.animated-nav .icon-bar {
  z-index: 999999;
}

.animated-nav .top {
  -webkit-transform: translateY(11px) rotateZ(45deg);
  -moz-transform: translateY(11px) rotateZ(45deg);
  -ms-transform: translateY(11px) rotateZ(45deg);
  -o-transform: translateY(11px) rotateZ(45deg);
  transform: translateY(11px) rotateZ(45deg);
}

.animated-nav .bottom {
  -webkit-transform: translateY(-11px) rotateZ(-45deg);
  -moz-transform: translateY(-11px) rotateZ(-45deg);
  -ms-transform: translateY(-11px) rotateZ(-45deg);
  -o-transform: translateY(-11px) rotateZ(-45deg);
  transform: translateY(-11px) rotateZ(-45deg);
}
.ove{
  overflow: hidden;
}
.animated-nav .middle {
  width: 0;
}
.nav-item.active a{
  color: #f71201;
}
@keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top:0px;
  }
}

@-webkit-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-moz-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top:0px;
  }
}

@-o-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top:0px;
  }
}
.showNav {
  -webkit-animation: showNav 1s ease forwards;
  -moz-animation: showNav 1s ease forwards;
  -o-animation: showNav 1s ease forwards;
  animation: showNav 1s ease forwards;
}
@keyframes hideNav {
  from {
    top:0px;
  }
  to {
    top: -100%;
  }
}

@-webkit-keyframes hideNav {
  from {
    top:0px;
  }
  to {
    top: -100%;
  }
}

@-moz-keyframes hideNav {
  from {
    top:0px;
  }
  to {
    top: -100%;
  }
}

@-o-keyframes hideNav {
  from {
    top:0px;
  }
  to {
    top: -100%;
  }
}
.hideNav {
  -webkit-animation: hideNav 1s ease forwards;
  -moz-animation: hideNav 1s ease forwards;
  -o-animation: hideNav 1s ease forwards;
  animation: hideNav 1s ease forwards;
}
.hidden{
  display: none;
}
/* 增 */
.page.no-transition .scroll-animation-child[data-animation-class="animation-text-slidein-rtl"],.page.no-transition .scroll-animation-child[data-animation-class="animation-text-slidein-ltr"],.page.no-transition .scroll-animation-child[data-animation-class="animation-text-slidein-btt"],.page.no-transition .scroll-animation-child[data-animation-class="animation-overlay-slideout"]:after,.page.no-transition .scroll-animation-child[data-animation-class="animation-image-fadein"]:after,.page.no-transition .scroll-animation-child[data-animation-class="animation-overlay-scaleup"]:after {
	transition:none
}
.scroll-animation-child[data-animation-class="animation-text-slidein-rtl"] {
	transition:transform 2s cubic-bezier(0.3,0.5,0,1),opacity 2s cubic-bezier(0.3,0.5,0,1);
	transform:translate3d(22px,0,0);
	opacity:0
}
.scroll-animation-child.animation-text-slidein-rtl {
	transform:translate3d(0,0,0);
	opacity:1
}
.scroll-animation-child[data-animation-class="animation-text-slidein-ltr"] {
	transition:transform 2s cubic-bezier(0.3,0.5,0,1),opacity 2s cubic-bezier(0.3,0.5,0,1);
	transform:translate3d(-22px,0,0);
	opacity:0
}
.scroll-animation-child.animation-text-slidein-ltr {
	transform:translate3d(0,0,0);
	opacity:1
}
.scroll-animation-child[data-animation-class="animation-text-slidein-btt"] {
	transition:transform 2s cubic-bezier(0.3,0.5,0,1),opacity 2s cubic-bezier(0.3,0.5,0,1);
	transform:translate3d(0,22px,0);
	opacity:0
}
.scroll-animation-child.animation-text-slidein-btt {
	transform:translate3d(0,0,0);
	opacity:1
}
.scroll-animation-child[data-animation-class="animation-overlay-slideout"] {
	position:relative;
	overflow:hidden
}
.scroll-animation-child[data-animation-class="animation-overlay-slideout"]:after {
	transition:transform 1s cubic-bezier(0.3,0.5,0,1);
	transform:translate3d(0%,0,0);
	content:'';
	display:block;
	position:absolute;
	left:-1px;
	top:-1px;
	right:-1px;
	bottom:-1px;
	background:white
}
.scroll-animation-child.animation-overlay-slideout:after {
	transform:translate3d(100%,0,0)
}
.scroll-animation-child[data-animation-class="animation-overlay-scaleup"] {
	position:relative;
	overflow:hidden
}
.scroll-animation-child[data-animation-class="animation-overlay-scaleup"]:before {
	content:'';
	display:block;
	width:100%;
	height:2px;
	background-color:white;
	position:absolute;
	left:0;
	top:-1px
}
.scroll-animation-child[data-animation-class="animation-overlay-scaleup"]:after {
	transition:transform 1s cubic-bezier(0.3,0.5,0,1);
	transform:scale(0.8)
}
.scroll-animation-child.animation-overlay-scaleup:after {
	transform:scale(1)
}
.scroll-animation-child[data-animation-class="animation-image-fadein"] {
	transition:opacity 2s cubic-bezier(0.3,0.5,0,1);
	opacity:0
}
.scroll-animation-child.animation-image-fadein {
	opacity:1
}
/* common */
.clearfix{
  *height:1%;
  *zoom:1;
}
.clearfix:after{
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.fl{float: left;}
.fr{float: right;}
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination li{
  display:inline-block;
  padding:4px 10px;
  color:#666; 
  border: 1px solid #d8d8d8;
  cursor: pointer;
  background-color: #fff;
}
.pagination li a{
  color:#666;
}
.pagination li.active{
  background-color:#05a6ea;
  color: #fff;
}
.pagination li.active a{
  color: #fff;
 }
 em{
  font-style:normal;
 }
.pwrap{
    width:80%;
    margin: 0 auto;
    position: relative;
    min-width: 1000px;
}
.cwrap{
  width: 1180px;
  padding: 0 10px;
  margin: 0 auto;
}
.pd60{
	padding: 60px 0;
}
.pbanner{
	background-size: cover;
}
/* header */
.alogo{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 192px;
	line-height: 100px;
	height: 100px;
	z-index: 99;
}
.alogo img{
	width: 100%;
	vertical-align: middle;
}
.header{
	position: relative;
  padding-left: 200px;
  padding-right: 160px;
  height: 100px;
}
.bnav{
  text-align: right;
}
.nav_ul{
  display: inline-block;
}
.nav_ul li{
    float: left;
    text-align: center;
    line-height: 100px;
}
.nav_ul li a {
    display: block;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    padding: 0 25px;
}
.nav_ul li a span{
  position: relative;
  display: inline-block;
  line-height: 3;
}
.nav_ul li.active a span:before{
  position: absolute;
  content: "";
  height: 2px;
  background-color: #000;
  width: 100%;
  bottom: 0;
}
.kwrap{
  width: 90%;
  margin:0 auto;
  position: relative;
}
.ptop{
  background-color: #fff;
}
.qie{
  position: absolute;
  right:0;
  top:50%;
  margin-top: -12px;
}
.qie a{
  font-size: 20px;
  font-weight: 500;
  color: #ccc;
  position: relative;
  margin-left: 12px;
}
.qie a:before{
  position: absolute;
  content: "";
  right:-9px;
  height: 60%;
  top: 20%;
  width: 1px;
  background-color: #ccc;
}
.qie a:last-child:before{
  display: none;
}
.qie a.active{
  color: #000;
}
/* footer */
.footer{
  background-color: #e9e9e9;
  padding-top: 230px;
}
.fo_top{
  text-align: center;
}
.fo_top img{
  width: 15.1%;
  min-width: 100px;
  margin-bottom:30px;
}
.fo_top a{
  display: block;
  color: #000;
  font-size: 26px;
}
.fo_mid{
  margin-top: 90px;
  margin-bottom:230px;
  text-align: center;
}
.fo_mid a{
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin:0 15px;
}
.fo_bot{
  text-align:center;
  font-size: 20px;
  color: #000;
  padding-bottom: 70px;
  line-height:1.6;
}
/* 导航 */
#nav {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9;
    width: 0;
    height: 0;
}
#nav h1 {
    -moz-transition: -moz-transform 600ms ease,background-color 200ms ease;
    -o-transition: -o-transform 600ms ease,background-color 200ms ease;
    -webkit-transition: -webkit-transform 600ms ease,background-color 200ms ease;
    transition: transform 600ms ease,background-color 200ms ease;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: relative;
    z-index: 9;
    width: 240px;
    height: 70px;
    margin: 0;
    background-color: #EBEBEB;
    cursor: pointer;
}
#nav.active h1 {
    -moz-transform: translateX(-240px);
    -ms-transform: translateX(-240px);
    -webkit-transform: translateX(-240px);
    transform: translateX(-240px);
}
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 15px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
}
#nav h1 button {
    -moz-transition: background-color 200ms ease;
    -o-transition: background-color 200ms ease;
    -webkit-transition: background-color 200ms ease;
    transition: background-color 200ms ease;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    width: 70px;
    height: 70px;
    background-color: #707070;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}
#nav h1 .hamburger-box {
    -moz-transform: scale(0.6) translateY(3px);
    -ms-transform: scale(0.6) translateY(3px);
    -webkit-transform: scale(0.6) translateY(3px);
    transform: scale(0.6) translateY(3px);
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 40px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #000;
}
.hamburger--spin .hamburger-inner {
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .22s;
}
#nav h1 .hamburger.is-active .hamburger-inner, #nav h1 .hamburger.is-active .hamburger-inner:after, #nav h1 .hamburger.is-active .hamburger-inner:before, #nav h1 .hamburger-inner, #nav h1 .hamburger-inner:after, #nav h1 .hamburger-inner:before {
    background-color: #fff;
    border-radius: 0;
}
.hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -10px;
}
.hamburger--spin .hamburger-inner:before {
    transition: top .1s ease-in .25s,opacity .1s ease-in;
}
.hamburger-inner:after {
    bottom: -10px;
}
#nav h1:hover button {
    background-color: #333;
}
#nav h1 button.hamburger.is-active:hover, #nav h1 button.hamburger:hover {
    opacity: 1;
}
.hamburger.is-active:hover, .hamburger:hover {
    opacity: .7;
}
.hamburger--spin.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(225deg);
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #000;
}
.hamburger--spin.is-active .hamburger-inner:before {
    top: 0;
    transition: top .1s ease-out,opacity .1s ease-out .12s;
    opacity: 0;
}
.hamburger--spin.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
    transform: rotate(-90deg);
}
#nav h1 button+span {
    display: inline-block;
    vertical-align: top;
    width: 160px;
    height: 70px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto",sans-serif;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
    line-height: 70px;
    text-align: center;
    box-sizing: border-box;
}
#nav nav {
    -moz-transition: -moz-transform 600ms ease;
    -o-transition: -o-transform 600ms ease;
    -webkit-transition: -webkit-transform 600ms ease;
    transition: transform 600ms ease;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: relative;
    z-index: 9;
    box-sizing: border-box;
    width: 260px;
    height: calc(100vh - 70px);
    padding-left: 35px;
    background-color: white;
    overflow-y: auto;
}
#nav.active.open nav {
    -moz-transform: translateX(-240px);
    -ms-transform: translateX(-240px);
    -webkit-transform: translateX(-240px);
    transform: translateX(-240px);
}
#nav nav>div {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 580px;
}
#nav nav p {
    margin: 0;
}
#nav nav .toplevel {
    font-weight: 700;
}
#nav nav .toplevel a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 20px;
    text-decoration: none;
    color: #d1d1d1;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
    cursor: default;
}
#nav nav .toplevel a[href] {
    color: inherit;
    cursor: pointer;
}
#nav nav .toplevel a[href] {
    line-height: 1.6em;
}
#nav nav .toplevel a:after {
    -moz-transition: width 300ms ease;
    -o-transition: width 300ms ease;
    -webkit-transition: width 300ms ease;
    transition: width 300ms ease;
    position: relative;
    top: 5px;
    content: '';
    display: block;
    width: 0%;
    height: 1px;
    margin: 0 auto 0 0;
    background-color: #333;
}
#nav nav .toplevel a[href]:hover:after, #nav nav .toplevel.active a:after {
    width: 100%;
}
#nav:after {
    -moz-transition: visibility 600ms ease,opacity 600ms ease;
    -o-transition: visibility 600ms ease,opacity 600ms ease;
    -webkit-transition: visibility 600ms ease,opacity 600ms ease;
    transition: visibility 600ms ease,opacity 600ms ease;
    content: '';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(0,0,0,0.3);
    visibility: hidden;
    opacity: 0;
}
#nav.active.open:after {
    visibility: visible;
    opacity: 1;
}
@media (max-width:1600px){
  .footer{
    padding-top: 240px;
  }
  .fo_mid{
    margin-top: 60px;
    margin-bottom:200px;
  }
  .fo_bot{
    padding-bottom: 50px;
    font-size: 18px;
  }
  .fo_mid a{
    font-size: 20px;
  }
  .fo_top a{
    font-size: 24px;
  }
  .nav_ul li a{
    font-size: 18px;
  }
}
@media (max-width:1400px){
  .footer{
    padding-top: 190px;
  }
  .fo_mid{
    margin-top: 40px;
    margin-bottom:120px;
  }
  .fo_bot{
    padding-bottom: 40px;
  }
  .nav_ul li a,.qie a{
    font-size: 16px;
  }
  .alogo{
    width: 170px;
  }
  .header{
    padding-left:190px;
    padding-right:120px;
  }
  .nav_ul li a{
    padding:0 20px;
  }
}
@media (max-width:1200px){
	.pwrap{
    width: 85%;
    min-width: initial;
  }
  .footer{
    padding-top: 150px;
  }
  .fo_mid{
    margin-top: 30px;
    margin-bottom:90px;
  }
  .fo_bot{
    padding-bottom: 30px;
  }
  .fo_mid a{
    font-size: 18px;
  }
  .fo_top a{
    font-size: 20px;
  }
  .kwrap{
    width: 94%;
  }
   .qie a{
    font-size: 15px;
  }
  .nav_ul li a{
    padding:0 15px;
  }
  .bd60{
    padding-bottom: 40px;
  }
}
@media (max-width:1080px){
  .pd60{
    padding: 50px 0;
  }
  .pwrap{
    width: 92%;
  }
  .fo_bot{
    font-size: 16px;
  }
  .fo_mid a{
    font-size: 16px;
  }
  .fo_top a{
    font-size: 18px;
  }
  .fo_mid{
    margin-top: 20px;
    margin-bottom: 80px;
  }
  .fo_top img{
    margin-bottom:18px;
  }
  .alogo{
    width:140px; 
    height: 80px;
    line-height: 80px;
  }
  .nav_ul li{
    line-height: 80px;
  }
  .nav_ul li a{
    font-size: 15px;
    padding:0 12px;
  }
  .header{
    height: 80px;
    padding-left: 160px;
    padding-right: 110px;
  }
}
@media (max-width:900px){
  .pd60{
    padding: 40px 0;
  }
  .footer{
    padding-top: 120px;
  }
  .fo_mid a,.fo_bot,.fo_top a{
    font-size: 14px;
  }
  .fo_mid a{
    margin:0 10px;
  }
  .bnav,#nav{
    display: none;
  }
  .btn-nav{
    display: block;
  }
  .qie{
    right: 75px;
  }
}
@media (max-width:768px){
  .footer{
    padding-top: 48px;
  }
  .fo_mid a,.fo_bot,.fo_top a{
    font-size: 12px;
  }
  .kwrap{
    width: 100%;
  }
  .fo_mid{
    margin-bottom: 40px;
  }
  .alogo{
    left: 4%;
    height: 60px;
    width: 120px;
    line-height: 60px;
  }
  .btn-nav{
    background-color: #707070;
    top: 0;
    height: 100%;
    padding:0 18px;
  }
  .header{
    height: 60px;
  }
  .icon-bar{
    background-color: #fff;
    width: 26px;
    margin:7px 0;
  }
  .animated-nav .middle{
    width: 0;
  }
  .qie{
    right: 84px;
  }
  .bd60{
    padding-bottom: 10px;
  }
  .animated-nav .top{
    -webkit-transform: translateY(7px) rotateZ(45deg);
    -moz-transform: translateY(7px) rotateZ(45deg);
    -ms-transform: translateY(7px) rotateZ(45deg);
    -o-transform: translateY(7px) rotateZ(45deg);
    transform: translateY(7px) rotateZ(45deg);
  }
}
@media (max-width:640px){
  .pd60{
    padding: 30px 0;
  }
  .footer{
    padding-top: 50px;
  }
  .fo_mid{
    margin-bottom: 40px;
  }
  .alogo{
    width: 100px;
    height: 50px;
    line-height: 50px;
  }
  .header{
    height: 50px;
  }
}
@media (max-width:414px){
  .pd60{
    padding: 20px 0;
  }
  .footer{
    padding-top: 30px;
  }
  .fo_top img{
    margin-bottom:10px;
  }
  .fo_mid a{
    margin:0 5px;
  }
  .fo_mid{
    margin:15px 0 20px;
  }
  .fo_bot{
    padding-bottom: 18px;
  }
  .qie a{
    margin-left: 0px;
    padding: 0 3px;
    font-size: 14px;
  }
  .qie a:before{
    right: -3px;
  }
  .qie{
    right: 58px;
  }
  .btn-nav{
    padding: 0 12px;
  }
  .icon-bar{
    width: 22px;
    margin:5px 0;
  }
  .animated-nav .top{
    -webkit-transform: translateY(3px) rotateZ(45deg);
    -moz-transform: translateY(3px) rotateZ(45deg);
    -ms-transform: translateY(3px) rotateZ(45deg);
    -o-transform: translateY(3px) rotateZ(45deg);
    transform: translateY(3px) rotateZ(45deg);
  }
}