@charset "UTF-8";
/*sass变量*/
/* 超小屏幕（手机，小于 768px） */
/* 小屏幕（平板，大于等于 768px） */
/* 中等屏幕（桌面显示器，大于等于 992px） */
/* 大屏幕（大桌面显示器，大于等于 1200px） */
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 24px 40px;
  z-index: 9; }

.brand {
  float: left;
  line-height: 40px;
  font-size: 0; }
  .brand img {
    vertical-align: middle; }

.header-sideb {
  float: right; }

.header-lang {
  float: left;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  line-height: 40px;
  margin-right: 40px; }
  .header-lang a {
    color: white; }
    .header-lang a:hover {
      color: #fff !important; }
  .header-lang span {
    margin: 0 5px; }

.nav {
  float: left;
  line-height: 40px; }
  .nav li {
    float: left;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin: 0 25px;
    position: relative; }
    .nav li a {
      color: white; }
      .nav li a:hover {
        color: #fff !important; }
    .nav li.on {
      font-weight: 700; }
      .nav li.on:after {
        content: "";
        width: 8px;
        height: 15px;
        background-color: white;
        position: absolute;
        left: -13px;
        top: 50%;
        margin-top: -8px; }
      .nav li.on:before {
        display: none; }
    .nav li:before {
      content: "";
      width: 10%;
      height: 1px;
      background-color: white;
      position: absolute;
      bottom: 5px;
      left: 50%;
      margin-left: -5%;
      -webkit-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      transition: all 0.3s linear;
      opacity: 0;
      filter: alpha(opacity=0); }
    .nav li:hover:before {
      width: 100%;
      margin-left: -50%;
      opacity: 1;
      filter: alpha(opacity=100); }

/* 底部 */
.footer {
  padding: 20px 0;
  margin-top: 50px; }

.footer-brand {
  text-align: center; }

.footer-copyright {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #bababa;
  margin-top: 10px;
  line-height: 20px; }
  .footer-copyright p {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 10px; }
    .footer-copyright p span {
      margin-right: 10px; }
  .footer-copyright a {
    color: #bababa; }
