/*<!--筝��������桁�-->*/
.mobile {
  width: 100%;
  float: left;
  margin-top: 100px;
}
.mobile-inner {
  width: 550px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fafafa;
  position: relative;
}
.mobile-inner img {
  width: 100%;
  margin-bottom: 30px;
}
.mobile-inner p {
  color: #676767;
  line-height: 25px;
  font-size: 16px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0;
}
.mobile-inner-header {
  background-color: rgb(255, 255, 255);
  width: 50px;
  height: 50px;
  position: absolute;
  top: 20px !important;
  right: 0;
  display: none;
}
.mobile-inner-header-icon {
  color: #ffffff;
  height: 50px;
  font-size: 25px;
  text-align: center;
  float: right;
  width: 50px;
  position: relative;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}
.mobile-inner-header-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.mobile-inner-header-icon span {
  position: absolute;
  left: calc((100% - 25px) / 2);
  top: calc((100% - 1px) / 2);
  width: 25px;
  height: 1px;
  background-color: #048041;
}
.mobile-inner-header-icon span:nth-child(1) {
  transform: translateY(4px) rotate(0deg);
  -webkit-transform: translateY(4px) rotate(0deg);
  -moz-transform: translateY(4px) rotate(0deg);
  -ms-transform: translateY(4px) rotate(0deg);
  -o-transform: translateY(4px) rotate(0deg);
}
.mobile-inner-header-icon span:nth-child(2) {
  transform: translateY(-4px) rotate(0deg);
  -webkit-transform: translateY(-4px) rotate(0deg);
  -moz-transform: translateY(-4px) rotate(0deg);
  -ms-transform: translateY(-4px) rotate(0deg);
  -o-transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickfirst;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: clickfirst;
}
.mobile-inner-header-icon-click span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clicksecond;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: clicksecond;
}

.mobile-inner-header-icon-out span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outfirst;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: outfirst;
}
.mobile-inner-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outsecond;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: outsecond;
}

.mobile-inner-nav a {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes clickfirst {
  0% {
    transform: translateY(4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes clickfirst {
  0% {
    transform: translateY(4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}

@-webkit-keyframes clicksecond {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes clicksecond {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

@-webkit-keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}
@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}

@-webkit-keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}
@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.mobile-inner-nav {
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  position: absolute;
  top: 70px;
  left: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  display: none;
  z-index: 2;
}
.mobile-inner-nav a {
  display: inline-block;
  line-height: 50px;
  text-decoration: none;
  width: 80%;
  margin-left: 10%;
  color: #ffffff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 300;
  text-align: center;
}
.mobile-inner-nav a:hover {
  color: rgba(255, 255, 255, 0.4);
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
@media (max-width: 1023px) {
  .mobile-inner-nav {
    top: 95px;
  }
}
@media screen and (min-width: 1150px) {
  #header .operation {
    display: block;
  }
  #header .nav {
    display: block;
  }
  .mobile-inner-header,
  .mobile-inner-nav {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  .mobile-inner-nav1 {
    top: 2.5%;
  }
  .wrap-inner {
    width: 100%;
  }
  #header .operation {
    display: none;
  }
  #header .wrap-inner {
    width: 100%;
  }
  #header .wrap-inner .logo a img {
    width: 76%;
    margin-top: 0 !important;
  }
  #header .nav {
    display: none;
  }
  .mobile-inner-header {
    display: block !important;
    top: 15px !important;
    right: 7px;
  }
  .navbar {
    position: fixed !important;
    height: 64px;
  }
  .navbar.is-scrolling.navbar-inactive {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
  .bottom_3,
  .bottom_1 {
    float: none;
    margin-left: 0;
  }
  .bottom_all {
    min-width: inherit;
  }
  .bottom {
    width: auto;
  }
  .bottom_5 {
    line-height: 26px;
  }
  .bottom_4 img {
    display: block;
    box-sizing: border-box;
    margin-top: 0;
  }
  .bottom_all {
    min-width: 100%;
  }
  .bottom {
    width: 96%;
  }
  .bottom_1 {
    width: 75%;
    margin-top: 15px;
  }
  .bottom_2 {
    width: 45%;
  }
  .bottom_3 {
    width: 45%;
  }
  .bottom_4 {
    width: 15%;
  }
  .bottom_5 {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .mobile-inner-nav {
    top: 70px;
  }
  .mobile-inner-nav1 {
    top: 2.4% !important;
  }
  #header .operation {
    display: none;
  }
  .navbar {
    position: fixed !important;
    height: 64px;
  }
  .navbar2 {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .wrap-inner {
    width: 100%;
  }
  #header .wrap-inner .logo a img {
    width: 75%;
  }
  #header .nav {
    display: none;
  }
  .topnav .nav_left {
    text-align: left;
  }
  .topnav .nav_left a img {
    width: 75%;
    margin-top: 3px;
  }
  .lavaLampBottomStyle {
    display: none;
  }
  .nav_signup {
    display: none;
  }
  .mobile-inner-header {
    display: block;
    top: 15px !important;
    right: 7px;
  }

  #footer {
    min-width: 0;
  }
  #footer .wrap-inner .links {
    margin-bottom: 10px;
  }
  #footer .wrap-inner .links a {
    margin: 0 12px;
  }
  #footer .wrap-inner .copyright span {
    display: block;
    margin: 0;
  }
  .bottom_all {
    min-width: 100%;
  }
  .bottom {
    width: 100%;
  }
  .bottom_2 {
    width: 100%;
    box-sizing: border-box;
  }
  .bottom_1_1 {
    padding: 0 3%;
  }
  .bottom_3 {
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
  }
  .bottom_1 {
    width: 68%;
    margin-left: 2%;
  }
  .bottom_1 span a {
    width: 62px;
    padding-top: 10px;
    font-size: 14px;
  }
  .bottom_1_1 span {
    line-height: 35px;
    margin-top: 0 !important;
  }
  .bottom_2 .bottom_1_1 span {
    font-size: 14px;
    margin-top: -2px;
  }
  .bottom_2 .bottom_1_1 span a.zix {
    margin-bottom: 10px;
  }
  .bottom_2 .bottom_1_1 p {
    font-size: 16px;
  }
  .bottom_2 .bottom_1_1 p a {
    font-size: 16px;
  }
  .bottom_3 .bottom_1_1 span a {
    font-size: 18px;
    font-weight: 600;
  }
  .bottom_4 {
    width: 29%;
    float: left;
  }
  .bottom_4 img {
    width: 100%;
    display: block;
    height: auto;
    margin-top: 78px;
  }
  .bottom_5 {
    margin-top: 2%;
    line-height: 24px;
  }
  .bottom_3 .kfdt {
    width: 100% !important;
  }
  .bottom_3 .kfdt .time {
    float: right !important;
    line-height: 28px;
  }
}

@media screen and (max-width: 350px) {
  #header .operation {
    display: none;
  }
  .wrap-inner {
    width: 100%;
  }
  #header .wrap-inner .logo a img {
    width: 76%;
    height: 62%;
  }
  #header .nav {
    display: none;
  }
  #header .logo {
    width: 100%;
  }
  .mobile-inner-header {
    top: 7px !important;
  }
  .mobile-inner-nav {
    top: 55px !important;
  }
}
@media (min-width: 1024px) {
  .mobile-inner-header,
  .mobile-inner-header-icon {
    display: none !important;
  }
}
