@charset "UTF-8";
/*背景色*/
/*线条颜色*/
/*字体颜色*/
/*按钮颜色*/
/*背景色*/
/*线条颜色*/
/*字体颜色*/
/*按钮颜色*/
/**
 * [borderRadius description]
 * @param  {[type]} $topLeft  [description]
 * @param  {[type]} $topRight [description]
 * @param  {[type]} $btmLeft  [description]
 * @param  {[type]} $btmRight [description]
 * @return {[type]}           [description]
 */
/** 
 * [displayFlex 设置盒子的display属性为flex]
 * @return {[type]}           [description]
 */
/**
 * [flex 设置盒子flex属性]
 * @param  {[number]} $num  [默认值为1]
 * @return {[type]}           [description]
 */
/**
 * [border 设置四边框]
 * eg: .border {
 *  @extend %border;
 * }
 */
/**
 * [border 设置圆角边框]
 * eg: .border {
 *  @extend %borderRadius;
 * }
 */
/**
 * [border 设置左边框]
 * eg: .border {
 *  @extend %borderLeft;
 * }
 */
/**
 * [border 设置右边框]
 * eg: .border {
 *  @extend %borderRight;
 * }
 */
/**
 * [border 设置上边框]
 * eg: .borderTop {
 *  @extend %borderRight;
 * }
 */
/**
 * [border 设置下边框]
 *  position: relative;
 *  @extend %borderBottom;
 * }
 */
h1 {
  font-size: .36rem;
  font-weight: bold;
  padding: .3rem;
  text-align: center; }

.m-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: .9rem;
  box-sizing: border-box; }
  .m-header h1 {
    font-weight: 500;
    font-size: .36rem;
    padding: 0; }
  .m-header a {
    margin: 0; }

.content {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  box-orient: vertical;
  flex-direction: column; }
  .content .main {
    box-sizing: border-box;
    padding-top: .9rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    height: 100%; }

/*# sourceMappingURL=form.css.map */
