    /* 登录 注册文字样式 */

    .layui-tab-title li {
      font-size: 25px;
      padding: 0 22px;
    }

    .logRegBackground {
      box-shadow: 0 0 0 5px#009CFF;
      border-radius: 30px;
      padding: 10px 15px;
      background: #f2f2f2;
      position: relative;
      overflow: hidden;
    }

    .logRegBackground .layui-tab-title li {
      -moz-box-shadow: 0 0 2px #333330;
      -webkit-box-shadow: 0 0 2px #333330;
      box-shadow: 0 0 2px #333330;
      margin-right: 15px;
    }

    /* 右侧图标 */

    .right_bg {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row;
      position: relative;
    }

    .right_bg_line {
      position: absolute;
      top: 0;
      left: 0;
    }

    .right_bg_img {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row;
    }

    .right_bg_img img {
      height: 250px;
    }

    /* 右侧图标 */

    /* ========================================管理员登录入口样式============================================ */

    .admin-logBtnContainer {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      text-align: center;
    }

    .admin-logBtnContainer a.admin-logBtn {
      position: relative;
      display: block;
      width: 100%;
      height: 30px;
      background: #0175FF;
      overflow: hidden;
      z-index: 1;
    }

    .admin-logBtnContainer a span.bg {
      position: absolute;
      left: -5%;
      width: 0;
      height: 100%;
      background: #009CFF;
      -webkit-transition: 0.4s ease-out all;
      transition: 0.4s ease-out all;
      -webkit-transform: skewX(-10deg);
      transform: skewX(-10deg);
      z-index: 3;
    }

    .admin-logBtnContainer a:hover span.bg {
      width: 110%;
    }

    .admin-logBtnContainer a span.admin-logBtnText {
      position: absolute;
      width: 100%;
      height: 100%;
      line-height: 30px;
      text-align: center;
      left: 0;
      top: 0;
      color: #FFFFFF;
      font-size: 0.22rem;
      letter-spacing: 0.015rem;
      z-index: 4;
    }

    /* ========================================管理员登录入口样式============================================ */

    /* ----------------------------------------表单样式------------------------------------------------ */

    .fly-panel {
      position: relative;
      margin-bottom: 15px;
      border-radius: 2px;
      background-color: #fff;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: space-around;
      background: url(../img/log-regBG.jpg) no-repeat center top;
      background-size: cover;
      border-radius: 30px;
    }

    .fly-panel[pad20] {
      padding: 20px;
    }

    .fly-panel-title {
      position: relative;
      height: 50px;
      line-height: 50px;
      padding: 0 15px;
      border-bottom: 1px dotted #E9E9E9;
      color: #333;
      border-radius: 2px 2px 0 0;
      font-size: 14px;
    }

    .fly-panel .layui-tab {
      padding-top: 6rem;
    }

    .fly-panel-main {
      padding: 10px 15px;
    }

    /* 单行列表 */

    .fly-list-one .fly-panel-title {
      margin-bottom: 5px;
    }

    .fly-user-main>.fly-panel {
      min-height: 575px;
      margin: 0 0 10px 215px;
    }

    .fly-panel-user[pad20] {
      padding-top: 5px;
    }

    @media screen and (max-width: 768px) {
      .fly-user-main>.fly-panel-user {
        width: auto;
        margin-left: 0;
        transition: all .3s;
        -webkit-transition: all .3s;
      }
    }

    .fly-marginTop {
      min-height: 80vh;
      margin-top: 150px;
    }

    /* ----------------------------------------表单样式------------------------------------------------ */

    /* input输入框聚焦时阴影样式 */

    .cjInputShadowOut {
      transition: box-shadow 0.6s ease-out;
    }

    .cjInputShadow {
      -webkit-box-shadow: 0 0 10px rgba(0, 204, 204, .5);
      -moz-box-shadow: 0 0 10px rgba(0, 204, 204, .5);
      box-shadow: 0 0 10px rgba(0, 204, 204, .5);
      border-radius: 5px;
      transition: box-shadow 0.6s ease-out;
    }

    /* input输入框聚焦时阴影样式 */