#common-header{
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 1920px; min-width: 1450px;
  background: rgba(255,255,255,.8);
  box-shadow: 0px 2px 6px 0px rgba(1,82,82,0.33);
  .inner-box{
    padding: 0px 40px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-sizing: border-box;
    .left{
      .logo{
        width: 158px;
        height: 45px;
      }
    }
    .right{
      display: flex;
      align-items: center;
      height: 100%;
      > .item{
        display: flex;
        height: 100%;
        cursor: pointer;
        margin-left: 80px;
        position: relative;
        &.active a{
          color: #E84A19;
        }
        a{
          align-self: center;
          color: #333333;
          transition: .2s;
          font-size: 14px;
        }
        &:hover{
          > a{
            color: #E84A19;
          }
          .level-2{
            display: block;
            top: 80px;
            opacity: 1;
            background: rgba(255, 255, 255, .8);
          }
        }
        .level-2{
          display: none;
          transition: .2s;
          position: absolute;
          background: rgba(255, 255, 255, 0);
          top: 60px;
          opacity: 0;
          padding: 0 10px;
          width: 100px;
          transform: translateX(-50%);
          left: 50%;
          .item{
            color: #333333;
            transition: .2s;
            line-height: 36px;
            text-align: center;
            &.active{
              color: #E84A19;
            }
            &:hover{
              color: #E84A19;
            }
          }
        }
      }
    }
  }
}

#common-footer{
  max-width: 1920px; min-width: 1450px;
  margin: 0 auto;
  line-height: 1;
  .top{
    height: 66px;
    background: #367AEA;
    display: flex;
    justify-content: center;
    align-items: center;
    .item{
      height: 20px;
      font-size: 18px;
      line-height: 20px;
      margin-left: 128px;
      color: #FFFFFF;

      a{
        color: #FFFFFF;

      }
      &:first-child{
        margin-left: 0px;
        padding-right: 48px;
        font-weight: bold;
        border-right: 1px solid #fff;
      }
    }
  }
  .middle{
    background: #19202A;
    .inner{
      width: 1344px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      padding-top: 29px;
      padding-bottom: 23px;
      > .l{
        > .t{
          width: 660px;
          border-bottom: 1px solid #222F42;
          font-size: 24px;
          color: #FFFFFF;
          padding-bottom: 15px;
        }
        > .b{
          padding-top: 25px;
          padding-left: 38px;
          display: flex;
          flex-wrap: wrap;
          .item{
            width: 480px;
            font-size: 16px;
            color: #FFFFFF;
            margin-bottom: 28px;
          }
        }
      }
      > .r{
        display: flex;
        .item{
          margin-left: 35px;
          img{
            width: 110px;
            height: 110px;
          }
          .name{
            font-size: 14px;
            color: #FFFFFF;
            text-align: center;
            padding-top: 10px;
          }
        }

      }
    }

  }
  .bottom{
    background: #2A313A;
    .inner {
      width: 1344px;
      height: 44px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #FFFFFF;
    }
  }
}

/* 右侧固定拦 */
.right-nav {
  transition: .2s;
  position: fixed;
  z-index: 99;
  right: 0;
  top: 500px;

  .right-up {
    width: 70px;
    box-shadow: 0px 2px 11px 0px rgba(0,0,0,0.22);
    background-color: #ffffff;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .arrow-up {
    width: 70px;
    height: 70px;
    box-shadow: 0px 2px 11px 0px rgba(0,0,0,0.22);
    background-color: #ffffff;
    cursor: pointer;
    opacity: 0;

  }

  .wechat,
  .customer-service,
  .phone,
  .arrow-up {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .phone:hover::before {
    width: 160px;
    display: block;
    position: absolute;
    right: 64px;
    color: #086DDD;
    font-size: 20px;
    font-weight: 400;
    background-color: #FFFFFF;
    padding: 10px 0px 10px 17px;
  }

  .wechat:hover::before {
    width: 130px;
    height: 130px;
    right: 100%;
    display: block;
    position: absolute;
    /* content: '132-5596-7127'; */
    content: "";
    background: url('../assets/img/index/qrcode.png');
  }

  .phone:hover::before {
    content: '400-601-5988';
  }

  .mini-line {
    height: 1px;
    background: rgba(0, 0, 0, .05);
  }
}
