@charset "UTF-8";
/*

- 所有后端样式，试卷编辑／模版编辑／题库编辑 以pages下文件来引用,img也都放在同一个目录下不同文件夹
- 组件尽量可复用，做到不在page里设置样式（要求规范设计，脱离页面：组件：按钮，表单，弹出框，面板... 文字：大小颜色）
- 每一个page最顶层都设置一个id，页面级样式在id内写
- 样式选择器尽量避免标签选择器（避免不必要的样式冲突）
*/
/* color - S */
/* 灰度,从深到浅 */
/* 颜色值 */
/* btn_color */
/* color - E */
/* font - S */
/* font - E */
/*** mixins ***/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

html, body {
  background-color: #f7f7ff; }

/* icon-font - S */
@font-face {
  font-family: 'eziconfont';
  /* project id 485766 */
  src: url("../font/iconfont_admin/iconfont.eot");
  src: url("../font/iconfont_admin/iconfont.eot?#iefix") format("embedded-opentype"), url("../font/iconfont_admin/iconfont.woff") format("woff"), url("../font/iconfont_admin/iconfont.ttf") format("truetype"), url("../font/iconfont_admin/iconfont.svg") format("svg"); }
.ez-icon-font {
  font-family: "eziconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale; }

/* icon-font - E */
a, a:hover, a:active, a:focus {
  text-decoration: none; }

ul, li {
  margin: 0;
  padding: 0;
  list-style: none; }

label {
    font-weight: normal;
}

.err {
  color: #ff0000; }

/*
- 整个页面loading
- 按钮上loading
*/
.page-loading {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999; }
  .page-loading .cont {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    padding-top: 50px;
    border-radius: 5px;
    text-align: center;
    background: url(../images/component/loading.gif) 50% 10px #fff no-repeat; }

/*generate-button($background, $color ,$borderColor, $hoverBg, $hoverCo)*/
/*generate-button-border($background, $color, $borderColor, $hoverBg, $hoverCo) */
.btn-theme {
  min-width: 85px;
  display: inline-block;
  text-align: center;
  padding: 9px 8px;
  border-radius: 4px;
  background: #0195ff;
  color: #fff;
  border: 1px solid #0195ff;
  cursor: pointer; }
  .btn-theme:hover, .btn-theme:focus {
    color: #fff;
    border-color: #36acff;
    background: #36acff; }

.btn-disabled {
  min-width: 85px;
  display: inline-block;
  text-align: center;
  padding: 9px 8px;
  border-radius: 4px;
  background: #cfcfcf;
  color: #fff;
  border: 1px solid #cfcfcf;
  cursor: pointer;
  cursor: not-allowed; }
  .btn-disabled:hover, .btn-disabled:focus {
    color: #fff;
    border-color: #cfcfcf;
    background: #cfcfcf; }

.btn-theme-sub {
  min-width: 85px;
  display: inline-block;
  text-align: center;
  padding: 9px 8px;
  border-radius: 4px;
  background: transparent;
  color: #1976d2;
  border: 1px solid #1976d2;
  cursor: pointer; }
  .btn-theme-sub:hover, .btn-theme-sub:focus {
    color: #fff;
    background: #2083e4; }

.btn-disabled-sub {
  min-width: 85px;
  display: inline-block;
  text-align: center;
  padding: 9px 8px;
  border-radius: 4px;
  background: transparent;
  color: #999;
  border: 1px solid #cfcfcf;
  cursor: pointer;
  cursor: not-allowed; }
  .btn-disabled-sub:hover, .btn-disabled-sub:focus {
    color: #999;
    background: transparent; }

.btn-sub-hightlight {
  min-width: 85px;
  display: inline-block;
  text-align: center;
  padding: 9px 8px;
  border-radius: 4px;
  background: gainsboro;
  color: #1976d2;
  border: 1px solid gainsboro;
  cursor: pointer; }
  .btn-sub-hightlight:hover, .btn-sub-hightlight:focus {
    color: #1976d2;
    border-color: gainsboro;
    background: gainsboro; }

.btn-theme-min {
  display: inline-block;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  background: #1976d2;
  color: #fff;
  border: 1px solid #1669bb;
  cursor: pointer; }
  .btn-theme-min:hover, .btn-theme-min:focus {
    color: #fff;
    border-color: #2083e4;
    background: #2083e4; }

.btn-white {
  min-width: 85px;
  display: inline-block;
  text-align: center;
  padding: 9px 8px;
  border-radius: 4px;
  background: #fff;
  color: #333;
  border: 1px solid #fff;
  cursor: pointer; }
  .btn-white:hover, .btn-white:focus {
    color: #333;
    border-color: #fff;
    background: #fff; }

.btn-gray {
  min-width: 85px;
  display: inline-block;
  text-align: center;
  padding: 9px 8px;
  border-radius: 4px;
  background: #fafafa;
  color: #333;
  border: 1px solid #f5f5f5;
  cursor: pointer; }
  .btn-gray:hover, .btn-gray:focus {
    color: #333;
    border-color: #fafafa;
    background: #fafafa; }

[class^=btn-] {
  line-height: 1.15; }

[class^=btn-] i,
.txt-btn i {
  font-size: 13px; }

/* 文字按钮 */
.txt-btn {
  cursor: pointer; }

/* radio、checkbox: 点选中；对号选中；*/
.ez-radio-right,
.ez-checkbox-right {
  float: left;
  margin-top: 5px; }
  .ez-radio-right input,
  .ez-checkbox-right input {
    display: none; }
  .ez-radio-right .checkmark,
  .ez-checkbox-right .checkmark {
    width: 20px;
    height: 20px;
    position: relative;
    border: 1px solid #ccc;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle; }
    .ez-radio-right .checkmark:after,
    .ez-checkbox-right .checkmark:after {
      opacity: 0;
      content: '';
      position: absolute;
      width: 12px;
      height: 7px;
      background: transparent;
      top: 4px;
      left: 3px;
      border: 2px solid #fff;
      border-top: none;
      border-right: none;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
  .ez-radio-right .opt-id,
  .ez-checkbox-right .opt-id {
    vertical-align: middle;
    display: inline-block; }
  .ez-radio-right input:checked + .checkmark,
  .ez-checkbox-right input:checked + .checkmark {
    background-color: #1976d2;
    border-color: #1976d2; }
    .ez-radio-right input:checked + .checkmark:after,
    .ez-checkbox-right input:checked + .checkmark:after {
      opacity: 1; }
    .ez-radio-right input:checked + .checkmark + .opt-id,
    .ez-checkbox-right input:checked + .checkmark + .opt-id {
      color: #1976d2;
      font-weight: bold; }

.ez-checkbox-right .checkmark {
  border-radius: 4px; }

.line-theme-v {
  border-right: 1px solid #2083e4; }
  .line-theme-v:before {
    content: " ";
    display: inline-block; }

.txt-tip {
  color: #f77d00; }

#post-select-form .alternative-paper .err {
  font-size: 12px; }
#post-select-form .alternative-paper .sub-detail {
  font-size: 12px; }

#form-detail .paper-structure-name .pull-left {
  line-height: 30px; }
#form-detail .paper-structure-name .name {
  max-width: 210px;
  float: left;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; }
#form-detail .delete-section,
#form-detail .btn-delete-instr {
  margin: 0 15px; }

.paper-group-list li > a.error {
  background-color: #ff0000;
  color: #fff;
  border-radius: 4px; }

/*# sourceMappingURL=app.css.map */
