/*
 * @ form mask */
.fmask {
  position: relative; }
  .fmask:after {
    clear: both;
    display: block;
    content: " "; }
  .fmask.select {
    width: 100%;
    transition: .1s; }
    .fmask.select .h {
      box-sizing: border-box;
      font-weight: 400;
      padding: 8px 8px;
      color: #555;
      border: 2px solid #eae8e8;
      background: white; }
      .fmask.select .h .arrow {
        color: #686767;
        position: absolute;
        right: 8px;
        top: 0px;
        height: 100%;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 11px; }
        .fmask.select .h .arrow i {
          height: 6px;
          line-height: 11px;
          top: 1px; }
      .fmask.select .h label {
        font-size: 16px;
        top: 0; }
    .fmask.select:hover i.arrow {
      color: #000; }
    .fmask.select.on .h {
      border-color: #DFDFDF; }
    .fmask.select .t {
      display: none; }
    .fmask.select .b {
      display: none;
      position: absolute;
      width: 100%;
      z-index: 1;
      box-shadow: 0 7px 6px rgba(80, 80, 80, 0.1);
      background: #d6d6d6;
      border-radius: 0  0 4px 4px;
      padding: 0 0 1px 0;
      border-left: 1px solid #d2d2d2;
      border-right: 1px solid #d2d2d2;
      box-sizing: border-box;
      border-top: 1px solid #f1f1f1; }
    .fmask.select .s {
      overflow: hidden;
      height: 100%;
      background: white;
      border-radius: 0  0 2px 2px; }
    .fmask.select:not(.htm) li {
      padding: 8px 8px;
      cursor: default;
      line-height: 16px; }
    .fmask.select.htm li a {
      display: block;
      padding: 5px 8px;
      font-size: 14px;
      color: #333;
      line-height: 16px; }
    .fmask.select.htm ol li:last-child {
      border-bottom: 0; }
    .fmask.select.htm ol li:last-child a {
      padding: 6px 8px 7px 8px;
      border-radius: 0  0 2px 2px; }
    .fmask.select[data-width='medium'] {
      width: 220px; }
    .fmask.select[data-width='large'] {
      width: 280px; }
    .fmask.select[data-width='small'] {
      width: 120px; }
    .fmask.select[data-width='likit'] {
      width: 100%; }
    .fmask.select[data-scroll='medium'] .b {
      height: 120px; }
    .fmask.select[data-scroll='large'] .b {
      height: 260px; }
    .fmask.select[data-scroll='maxlarge'] .b {
      max-height: 260px; }
    .fmask.select[data-scroll='small'] .b {
      height: 90px; }
    .fmask.select[data-scroll='false'] .b {
      overflow: visible;
      height: auto; }
    .fmask.select li[data-selected='on'] {
      color: #D6D7D8; }
    .fmask.select li a:hover {
      background: #3399FF;
      color: white; }
  .fmask.mobil .b {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    box-shadow: 0 0 0;
    background: none;
    border-radius: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    border: 0;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    transition: .8s;
    -webkit-transform: translate3d(0%, 200%, 0px);
    transform: translate3d(0%, 200%, 0px); }
    .fmask.mobil .b.on {
      visibility: visible;
      webkit-transform: translate3d(0%, 0%, 0px);
      -webkit-transform: translate3d(0%, 0%, 0px);
              transform: translate3d(0%, 0%, 0px); }
  .fmask.mobil .s {
    background: white;
    overflow: auto;
    border-radius: 0; }
  .fmask.mobil .t {
    background: #444;
    color: white;
    padding: 0 0 0 14px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 54px;
    max-height: 54px;
    min-height: 54px; }
    .fmask.mobil .t .sol {
      font-weight: 700;
      font-size: 16px; }
    .fmask.mobil .t .sag {
      font-size: 20px;
      cursor: pointer;
      height: 100%;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      width: 50px;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .fmask.mobil .t .sag i {
        height: 10px;
        line-height: 14px; }
  .fmask.mobil ol {
    display: block; }
    .fmask.mobil ol li {
      border-bottom: 1px solid #ddd; }
      .fmask.mobil ol li a {
        border-radius: 0;
        padding: 15px !important; }
