@charset "UTF-8";
@keyframes loading {
  0%, 40%, 100% {
    /*定义每帧的动作*/
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    -moz-transform: scaleY(0.5); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1); } }

body {
  margin: 0;
  padding: 0;
  min-width: 806px; }

input, select {
  padding-left: 10px; }

button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center; }
  button img {
    margin: 0 5px; }

::-webkit-scrollbar-track-piece {
  background-color: #f8f8f8; }

::-webkit-scrollbar {
  width: 9px;
  height: 9px; }

::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  background-clip: padding-box;
  min-height: 28px; }

::-webkit-scrollbar-thumb:hover {
  background-color: #bbb; }

input::-webkit-input-placeholder {
  color: #666666 !important;
  font-size: 12px; }

input:-moz-placeholder {
  color: #666666 !important;
  font-size: 12px; }

input::-moz-placeholder {
  color: #666666 !important;
  font-size: 12px; }

input:-ms-input-placeholder {
  color: #666666 !important;
  font-size: 12px; }

.margin-left-20 {
  margin-left: 20px; }

.page-loading {
  margin: 100px auto;
  width: 70px;
  height: 120px; }
  .page-loading .ddr {
    width: 10px;
    height: 120px;
    float: left;
    margin: 2px;
    background-color: #00ffff;
    animation: loading 1s infinite ease-in-out;
    /*animation：动画名称 持续时间 动画速度曲线 延迟 执行多少次 是否正反方向轮流播放*/ }
  .page-loading .ddr2 {
    animation-delay: -0.9s;
    /*定义开始执行的地方，负号表示直接从第900ms开始执行*/ }
  .page-loading .ddr3 {
    animation-delay: -0.8s; }
  .page-loading .ddr4 {
    animation-delay: -0.7s; }
  .page-loading .ddr5 {
    animation-delay: -0.6s; }

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999; }
  .loading > * {
    position: fixed;
    top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    overflow: hidden;
    color: #ffffff; }
  .loading .error {
    color: red;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 0.5em;
    text-align: center; }

.return-message {
  position: fixed;
  right: 5px;
  top: 85px;
  z-index: 9999; }
  .return-message .return-message-item {
    opacity: 0.6;
    background: #dbdbdb;
    border-radius: 8px;
    width: 200px;
    min-height: 60px;
    padding: 10px;
    margin: 2px; }

.add-item {
  padding: 30px 35px;
  background: #ffffff;
  margin-bottom: 1em;
  border-bottom: 1px solid #dbdbdb; }
  .add-item .bind-label {
    color: #ff0014;
    font-size: 12px;
    padding: 0px 10px;
    margin-bottom: 35px; }
  .add-item .add-contnet * {
    display: inline-block;
    width: initial;
    padding: 0 10px;
    color: #333333;
    font-size: 14px; }
  .add-item .add-contnet input {
    width: 168px;
    line-height: 26px;
    min-height: 30px;
    border: 1px solid #dbdbdb; }
  .add-item .add-contnet .btn {
    margin: 0 5px;
    background: #139ad8;
    color: #ffffff;
    font-size: 12px;
    line-height: 26px;
    width: 80px; }
  .add-item .add-body {
    padding-top: 15px;
    color: #666666;
    font-size: 12px;
    border-top: 1px solid #ededed; }

.page-form {
  background: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dbdbdb; }
  .page-form .page-form-item {
    position: relative;
    width: 436px;
    height: 30px;
    margin-bottom: 25px; }
    .page-form .page-form-item label {
      margin: 0 20px 0 0;
      color: #333333;
      font-size: 14px;
      width: 96px;
      text-align: right; }
      .page-form .page-form-item label + label {
        width: auto;
        text-align: left;
        padding: 10px; }
    .page-form .page-form-item input, .page-form .page-form-item select, .page-form .page-form-item .input {
      width: 320px;
      border: 1px solid #dbdbdb;
      min-height: 30px; }
      .page-form .page-form-item input + .link, .page-form .page-form-item select + .link, .page-form .page-form-item .input + .link {
        cursor: pointer;
        position: absolute;
        float: right;
        width: 90px;
        min-height: 30px;
        right: 0;
        top: 1px;
        border: 1px solid #139ad8;
        text-align: center; }
        .page-form .page-form-item input + .link:hover, .page-form .page-form-item select + .link:hover, .page-form .page-form-item .input + .link:hover {
          opacity: 0.6; }
    .page-form .page-form-item .btn {
      cursor: pointer;
      margin: 0 96px;
      background: #139ad8;
      color: #ffffff;
      font-size: 12px;
      line-height: 26px;
      width: 88px;
      padding: 0; }
      .page-form .page-form-item .btn:hover {
        opacity: 0.6; }

.answer-color-grey {
  color: #B3B3B3; }

.answer-color-limegreen {
  color: limegreen; }

.answer-color-darkorange {
  color: #FFD700; }

.answer-color-red {
  color: #FF0000; }

.answer-color-black {
  color: black; }

.copyright {
  color: #ffffff;
  margin-top: 36px; }
  .copyright a {
    color: #ffffff;
    text-decoration: none; }

.consumer-form {
  padding: 1em; }
  .consumer-form .row {
    padding: 0.5em; }
    .consumer-form .row.nowrap {
      flex-wrap: nowrap; }
    .consumer-form .row label {
      width: 120px;
      min-width: 120px;
      font-weight: 800;
      line-height: 30px; }
    .consumer-form .row span input, .consumer-form .row span select {
      width: 258px;
      height: 30px;
      padding: 0 0.5em;
      border: 1px solid #dbdbdb; }
    .consumer-form .row span i {
      color: red; }
  .consumer-form .actions {
    margin: 1em 3em; }
    .consumer-form .actions .btn {
      margin: 0 1em; }

.consumer-grid .no-data {
  text-align: center;
  margin: 15px;
  min-height: 60px; }
  .consumer-grid .no-data span {
    display: inline-block;
    font-size: 26px;
    color: #dbdbdb;
    transform: rotate(-15deg); }

.consumer-grid table.table.table-striped {
  margin-bottom: 0;
  text-align: center; }
  .consumer-grid table.table.table-striped thead tr {
    border: none;
    color: #000000;
    background: #c7d8e0;
    border-bottom: 2px solid #ddd; }
    .consumer-grid table.table.table-striped thead tr th {
      padding: 8px;
      color: #333333;
      font-weight: bold; }
    .consumer-grid table.table.table-striped thead tr th:first-child {
      padding-left: 20px; }
  .consumer-grid table.table.table-striped tbody tr {
    border: none;
    border-bottom: 1px solid #ededed; }
  .consumer-grid table.table.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fafafa; }
  .consumer-grid table.table.table-striped tbody tr:hover {
    background: #139ad9; }
    .consumer-grid table.table.table-striped tbody tr:hover td {
      color: #ffffff !important; }
      .consumer-grid table.table.table-striped tbody tr:hover td a, .consumer-grid table.table.table-striped tbody tr:hover td span {
        color: #ffffff !important; }
  .consumer-grid table.table.table-striped td:first-child {
    padding-left: calc(0.7em + 20px); }
  .consumer-grid table.table.table-striped td {
    border: none;
    max-width: 200px;
    margin: 0;
    padding: 0.7em;
    color: #666666;
    font-size: 12px; }
    .consumer-grid table.table.table-striped td.text-align-left {
      text-align: left; }
    .consumer-grid table.table.table-striped td.text-align-right {
      text-align: right; }
    .consumer-grid table.table.table-striped td .point {
      cursor: pointer; }
    .consumer-grid table.table.table-striped td span.default {
      color: #139adb !important; }
    .consumer-grid table.table.table-striped td span.red {
      color: #ff0014 !important; }
    .consumer-grid table.table.table-striped td span.gray {
      color: gray !important; }
    .consumer-grid table.table.table-striped td span.disabled {
      color: #d3d3d3 !important; }
    .consumer-grid table.table.table-striped td a {
      cursor: pointer;
      color: #139adb !important;
      padding-right: 0.5rem; }
      .consumer-grid table.table.table-striped td a.red {
        color: #ff0014 !important; }
      .consumer-grid table.table.table-striped td a.gray {
        color: gray !important; }
      .consumer-grid table.table.table-striped td a.disabled {
        color: #d3d3d3 !important; }
    .consumer-grid table.table.table-striped td a:hover {
      opacity: 0.6; }


.dialog-panel {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999; }
  .dialog-panel .dialog {
    position: fixed;
    top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px #139ad8;
    box-shadow: #000 2px 4px;
    overflow: hidden; }
    .dialog-panel .dialog .dialog-head {
      height: 35px;
      padding: 0.2em 1em;
      color: #000000; }
      .dialog-panel .dialog .dialog-head.dialog-head-background {
        background: #139ad8;
        color: #ffffff; }
      .dialog-panel .dialog .dialog-head label {
        text-align: center;
        width: calc(100% - 30px); }
      .dialog-panel .dialog .dialog-head a {
        cursor: pointer;
        float: right; }
        .dialog-panel .dialog .dialog-head a :hover {
          color: #5c0707; }
    .dialog-panel .dialog .dialog-content {
      max-height: 500px;
      overflow: auto; }
      .dialog-panel .dialog .dialog-content.level-3 {
        padding: 3em 1em 2em 4em;
        color: #333333;
        font-size: 14px; }
      .dialog-panel .dialog .dialog-content > div:first-child {
        margin: 1em; }
    .dialog-panel .dialog .dialog-footer {
      text-align: center;
      padding-bottom: 20px; }
      .dialog-panel .dialog .dialog-footer .btn {
        width: 120px;
        height: 34px;
        margin: 0 0.5em;
        font-size: 14px;
        border: 1px solid #139ad8; }
        .dialog-panel .dialog .dialog-footer .btn.btn-primary {
          color: #ffffff; }
      .dialog-panel .dialog .dialog-footer .btn:hover {
        opacity: 0.6; }
      .dialog-panel .dialog .dialog-footer .ok {
        background: #139ad8;
        color: #ffffff; }
      .dialog-panel .dialog .dialog-footer .cancel {
        background: #ffffff;
        color: #139ad8; }
      .dialog-panel .dialog .dialog-footer .full {
        width: calc(100% - 60px); }
  .dialog-panel .consumer-grid, .dialog-panel .studylogself-page, .dialog-panel .studylogschool-page {
    margin: 0 !important; }
  .dialog-panel .consumer-grid {
    text-align: center; }
    .dialog-panel .consumer-grid table.table.table-striped thead tr th {
      padding: 2px;
      color: #333333;
      font-size: 14px;
      font-weight: bold; }
  .dialog-panel .single-input {
    text-align: center; }
    .dialog-panel .single-input > * {
      width: calc(100% - 40px); }

.menu {
  padding: 0; }
  .menu .menu-item {
    cursor: pointer; }
    .menu .menu-item .menu-content {
      padding: 11px 10px 11px 35px;
      font-size: 14px;
      color: #ffffff; }
      .menu .menu-item .menu-content.selected {
        color: #001d2b; }
      .menu .menu-item .menu-content img:last-child {
        display: inline-block;
        float: right;
        right: 10px; }
      .menu .menu-item .menu-content a {
        margin: 16px 10px; }
    .menu .menu-item .menu-child {
      background: #047cb4; }
      .menu .menu-item .menu-child .menu-content {
        padding: 8px 10px 8px 58px;
        font-size: 12px; }
        .menu .menu-item .menu-child .menu-content._sel {
          color: #001d2b; }
          .menu .menu-item .menu-child .menu-content._sel .i-circle {
            background: #001d2b; }
        .menu .menu-item .menu-child .menu-content .i-circle {
          width: 4px;
          height: 4px;
          background: #ffffff;
          border-radius: 50%;
          float: left;
          margin-top: 8px; }


.select-input {
  position: relative;
  display: inline-block; }
  .select-input select {
    width: 100% !important;
    height: 100%;
    border: none !important; }
  .select-input input {
    position: absolute;
    top: 1px;
    width: calc(100% - 32px) !important;
    height: calc(100% - 2px);
    border: none !important; }
  .select-input input:focus {
    outline: none !important; }

.self-buttons button {
  margin: 5px 8px 5px 0;
  line-height: 1; }

.paginations {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px; }
  .paginations a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 6px;
    line-height: 1.42857;
    text-decoration: none;
    color: #337ab7; }
    .paginations a.active {
      background: #337ab7;
      color: #ffffff; }
    .paginations a:hover {
      background: #dbdbdb; }
  .paginations input {
    width: 30px;
    padding: 0;
    height: 18px;
    margin-right: 10px;
    border: 1px solid #dbdbdb; }
  .paginations select {
    width: 40px;
    padding: 0;
    border: 1px solid #dbdbdb; }

.self-select-disabled {
  color: #dbdbdb; }
  .self-select-disabled option {
    color: #000; }
    .self-select-disabled optiondisabled {
      display: none; }

.tabs {
  background: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid #dbdbdb; }
  .tabs div {
    cursor: pointer;
    display: inline-block;
    padding: 9px 20px 8px 10px;
    font-size: 14px;
    color: #333333; }
    .tabs div span {
      padding-left: 5px; }
  .tabs .active {
    color: #017cb4;
    border-bottom: 2px solid #38a7e1; }


@charset "UTF-8";
.download-page {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url(source/logo_bg.jpg) no-repeat center top #199cda;
  padding: 60px 0;
  margin: 0px;
  text-align: center;
  overflow: auto; }
  .download-page .choose .header {
    color: #ffffff; }
    .download-page .choose .header > *:first-child {
      font-size: 30px; }
      .download-page .choose .header > *:first-child i {
        margin-left: 1em;
        color: #d3d3d3; }
    .download-page .choose .header > *:last-child {
      cursor: pointer;
      margin-left: 600px; }
      .download-page .choose .header > *:last-child a {
        padding: 0 8px;
        margin-left: 1em;
        border-radius: 4px;
        border: 1px solid #79d1fb;
        color: #149edf;
        background: #fff; }
  .download-page .download-content {
    position: relative;
    margin: 2em 8em;
    padding-top: 36px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 12px; }
    .download-page .download-content:hover {
      box-shadow: 0 8px 30px rgba(230, 230, 230, 0.9);
      -webkit-box-shadow: 0 8px 30px rgba(230, 230, 230, 0.9);
      text-decoration: none !important; }
    .download-page .download-content > *:first-child {
      display: inline-block;
      width: calc(50% - 4px);
      height: 100%;
      text-align: center; }
    .download-page .download-content > *:last-child {
      display: inline-block;
      width: calc(50% - 4px);
      height: 100%;
      padding-left: 30px;
      text-align: left; }
    .download-page .download-content img {
      margin-bottom: 40px; }
    .download-page .download-content .title {
      font-size: 26px;
      font-weight: 500; }
    .download-page .download-content .info {
      margin: 20px 0; }
    .download-page .download-content .step {
      margin-top: 10px; }
      .download-page .download-content .step .step-item {
        margin: 5px 0; }
    .download-page .download-content .button {
      position: relative;
      margin: 20px 0; }
      .download-page .download-content .button a {
        cursor: pointer;
        padding: 10px 30px;
        background: #ffffff;
        border-radius: 8px;
        font-size: 20px;
        color: #00aaef;
        font-weight: 600; }
        .download-page .download-content .button a:focus {
          color: #2a7897; }
      .download-page .download-content .button .qrcode {
        position: absolute;
        top: -100px;
        left: 150px;
        z-index: 999; }
    .download-page .download-content .other {
      color: #dbdbdb; }

/*手机*/
@media screen and (max-width: 600px) {
  .download-page {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url(source/logo_bg.jpg) no-repeat center top #199cda;
    padding: 0px 0;
    margin: 0;
    text-align: center;
    overflow: auto; }
    .download-page img {
      width: 250px; }
    .download-page .logo {
      margin-top: 50px; }
    .download-page .choose .header {
      color: #ffffff; }
      .download-page .choose .header span {
        display: block; }
      .download-page .choose .header > *:first-child {
        font-size: 20px; }
        .download-page .choose .header > *:first-child i {
          margin-left: 1em;
          color: #d3d3d3; }
      .download-page .choose .header > *:last-child {
        cursor: pointer;
        margin-left: 1em; }
        .download-page .choose .header > *:last-child a {
          padding: 0 4px;
          margin-left: 1em;
          border-radius: 4px;
          border: 1px solid #79d1fb;
          color: #149edf;
          background: #fff; }
    .download-page .download-content {
      position: relative;
      margin: 20px 20px;
      padding-top: 20px;
      border: 1px solid #ffffff;
      border-radius: 4px;
      font-size: 12px; }
      .download-page .download-content:hover {
        box-shadow: 0 8px 10px rgba(230, 230, 230, 0.9);
        -webkit-box-shadow: 0 8px 10px rgba(230, 230, 230, 0.9);
        text-decoration: none !important; }
      .download-page .download-content > *:first-child {
        display: inline-block;
        width: calc(90% - 4px);
        height: 100%;
        text-align: center; }
      .download-page .download-content > *:last-child {
        display: inline-block;
        width: calc(90% - 4px);
        height: 100%;
        padding-left: 10px;
        text-align: left; }
      .download-page .download-content img {
        margin-bottom: 20px;
        width: 150px; }
      .download-page .download-content .title {
        font-size: 18px;
        font-weight: 200; }
      .download-page .download-content .info {
        margin: 20px 0; }
      .download-page .download-content .step {
        margin-top: 10px; }
        .download-page .download-content .step .step-item {
          margin: 5px 0; }
      .download-page .download-content .button {
        position: relative;
        margin: 10px 0; }
        .download-page .download-content .button a {
          cursor: pointer;
          padding: 5px 10px;
          background: #ffffff;
          border-radius: 4px;
          font-size: 16px;
          color: #00aaef;
          font-weight: 200; }
          .download-page .download-content .button a:focus {
            color: #2a7897; }
        .download-page .download-content .button .qrcode {
          position: absolute;
          top: -100px;
          left: 100px;
          z-index: 999; }
          .download-page .download-content .button .qrcode img {
            width: 100px;
            height: 100px; }
      .download-page .download-content .other {
        color: #dbdbdb; } }

.home-page .header {
  height: 80px;
  background: url(source/images/main/header.png) no-repeat center top;
  background-size: cover;
  padding: 16px 20px; }
  .home-page .header img + img {
    height: 30px;
    margin: 6px 20px; }
  .home-page .header .right {
    cursor: pointer;
    float: right;
    line-height: 40px; }
    .home-page .header .right a {
      color: #ffffff; }
      .home-page .header .right a:hover {
        border: none; }
      .home-page .header .right a span {
        margin: 0 10px; }
      .home-page .header .right a + a {
        margin-left: 20px;
        padding-left: 20px;
        border-left: 1px solid #1f6cb0; }

.home-page .left-menu {
  background: url(source/images/main/left.png) no-repeat center top;
  background-size: cover;
  position: fixed;
  left: 0;
  width: 214px;
  height: calc(100% - 80px);
  overflow: auto;
  padding-right: 4px; }
  .home-page .left-menu .media {
    padding: 8px; }
    .home-page .left-menu .media .media-object {
      height: 45px; }
    .home-page .left-menu .media .media-body {
      display: inline-block;
      line-height: 45px;
      width: calc(214px - 70px);
      padding-left: 1em;
      color: #ffffff;
      font-weight: 400; }

.home-page .right-page {
  position: fixed;
  left: 214px;
  width: calc(100% - 214px);
  height: calc(100% - 70px);
  overflow: auto;
  background: #f4f3f3; }
  .home-page .right-page .loaction {
    padding: 8px; }
    .home-page .right-page .loaction a {
      margin: 2px;
      font-size: 12px;
      color: #333333; }
    .home-page .right-page .loaction a + a::before {
      content: ">"; }
  .home-page .right-page .content {
    background: #eeeeee;
    padding: 20px; }
    .home-page .right-page .content .page-title {
      line-height: 40px;
      background: #ffffff;
      margin-bottom: 10px;
      border-bottom: 1px solid #dbdbdb;
      color: #333333;
      font-size: 14px; }
      .home-page .right-page .content .page-title img {
        margin: 0 10px; }
    .home-page .right-page .content .grid-content {
      background: #ffffff;
      width: 100%; }
  .home-page .right-page .info {
    width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 0.5em 0 1em;
    background: #ffffff; }

.login-page {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url(source/images/login/bg.png) no-repeat center top #199cda;
  background-size: cover;
  padding: 60px 0;
  margin: 0px;
  text-align: center;
  overflow: auto; }
  .login-page .logo img {
    margin: 1em; }
  .login-page .form-group {
    position: relative;
    background: url(source/images/login/form.png);
    background-size: cover;
    width: 649px;
    height: 344px;
    margin: 15px auto;
    padding: 20px;
    font-weight: normal; }
    .login-page .form-group .title {
      padding: 0.5em;
      text-align: center;
      color: #ffffff; }
    .login-page .form-group .form {
      padding: 50px 20px 0 300px; }
      .login-page .form-group .form .qrcode {
        cursor: pointer;
        position: absolute;
        width: 50px;
        top: 15px;
        right: 15px; }
        .login-page .form-group .form .qrcode:hover {
          opacity: 0.8; }
      .login-page .form-group .form iframe {
        margin: -130px 0 0 20px;
        transform: scale(0.7); }
      .login-page .form-group .form .input {
        padding: 5px;
        border-bottom: 1px solid #d3d3d3; }
        .login-page .form-group .form .input input {
          width: 260px;
          padding-left: 1em;
          border: none; }
      .login-page .form-group .form .checkbox {
        font-size: 14px;
        margin: 0.5em 5px;
        text-align: left; }
      .login-page .form-group .form .btn {
        color: #ffffff;
        background: #149edf; }
      .login-page .form-group .form .link {
        padding: 0.5em; }
        .login-page .form-group .form .link a {
          cursor: pointer;
          margin: 0 0.5em;
          color: #149edf; }

.regtype-page {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url(source/logo_bg.jpg) no-repeat center top #199cda;
  padding: 60px 0;
  margin: 0px;
  text-align: center;
  overflow: auto; }
  .regtype-page .choose .header {
    color: #ffffff; }
    .regtype-page .choose .header :first-child {
      font-size: 30px; }
    .regtype-page .choose .header :last-child {
      cursor: pointer;
      margin-left: 60px;
      padding: 0 8px;
      border-radius: 4px;
      border: 1px solid #79d1fb;
      color: #149edf;
      background: #fff; }
  .regtype-page .choose .content .reg-type {
    cursor: pointer;
    margin: 2% 2% !important;
    padding: 10% !important;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff !important;
    font-size: 20px;
    font-weight: bold;
    display: inline-block; }
    .regtype-page .choose .content .reg-type:hover {
      box-shadow: 0 8px 30px rgba(230, 230, 230, 0.9);
      -webkit-box-shadow: 0 8px 30px rgba(230, 230, 230, 0.9);
      text-decoration: none !important; }
  .regtype-page .form-group {
    width: 500px;
    margin: 15px auto;
    padding: 1em 4em;
    background: #ffffff;
    font-weight: normal;
    border-radius: 4px; }
    .regtype-page .form-group .error ul {
      list-style: none;
      color: #ff3333;
      margin: 0; }
    .regtype-page .form-group input.form-control {
      margin: 0.3em 0;
      border: 1px solid #d3d3d3;
      color: #333333; }
    .regtype-page .form-group .btn {
      color: #333;
      background-color: #fff;
      border-color: #ccc; }
      .regtype-page .form-group .btn:hover {
        background-color: #d3d3d3; }
      .regtype-page .form-group .btn.btn-primary {
        color: #fff;
        background-color: #337ab7;
        border-color: #2e6da4; }
    .regtype-page .form-group .code > * {
      display: inline-block;
      width: 182px !important;
      margin: 0.3em 0; }
    .regtype-page .form-group .code .email-code img {
      height: 60px; }
    .regtype-page .form-group .pd-decrpt {
      float: left;
      font-size: 12px;
      color: #999;
      margin-top: 4px;
      margin-bottom: 4px; }
      .regtype-page .form-group .pd-decrpt span {
        color: #ff0000; }
    .regtype-page .form-group .privacy {
      display: flex;
      font-size: 16px;
      color: #999;
      margin-top: 4px;
      margin-bottom: 4px; }
      .regtype-page .form-group .privacy a {
        color: #337ab7; }
      .regtype-page .form-group .privacy input {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.25rem;
        border: raduis; }

.retrieve-page {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url(source/logo_bg.jpg) no-repeat center top #199cda;
  padding: 60px 0;
  margin: 0px;
  text-align: center;
  overflow: auto; }
  .retrieve-page .choose .header {
    color: #ffffff; }
    .retrieve-page .choose .header :first-child {
      font-size: 30px; }
    .retrieve-page .choose .header :last-child {
      cursor: pointer;
      margin-left: 600px;
      padding: 0 8px;
      border-radius: 4px;
      border: 1px solid #79d1fb;
      color: #149edf;
      background: #fff; }
  .retrieve-page .choose .content .reg-type {
    cursor: pointer;
    margin: 2% 2% !important;
    padding: 10% !important;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff !important;
    font-size: 20px;
    font-weight: bold;
    display: inline-block; }
    .retrieve-page .choose .content .reg-type:hover {
      box-shadow: 0 8px 30px rgba(230, 230, 230, 0.9);
      -webkit-box-shadow: 0 8px 30px rgba(230, 230, 230, 0.9);
      text-decoration: none !important; }
  .retrieve-page .form-group {
    width: 500px;
    margin: 15px auto;
    padding: 1em 4em;
    background: #ffffff;
    font-weight: normal;
    border-radius: 4px; }
    .retrieve-page .form-group .error ul {
      list-style: none;
      color: #ff3333;
      margin: 0; }
    .retrieve-page .form-group input.form-control {
      margin: 0.3em 0;
      border: 1px solid #d3d3d3;
      color: #333333; }
    .retrieve-page .form-group .btn {
      color: #333;
      background-color: #fff;
      border-color: #ccc; }
      .retrieve-page .form-group .btn:hover {
        background-color: #d3d3d3; }
      .retrieve-page .form-group .btn.btn-primary {
        color: #fff;
        background-color: #337ab7;
        border-color: #2e6da4; }
    .retrieve-page .form-group .code > * {
      display: inline-block;
      width: 182px !important;
      margin: 0.3em 0; }
    .retrieve-page .form-group .code .email-code img {
      height: 60px; }


.activecode-page .add-item .add-link {
  margin: 30px 0 20px;
  color: #139ad8;
  font-size: 14px; }

@media screen and (max-width: 600px) {
  .activecode-page .add-item {
    width: 22.5rem; }
    .activecode-page .add-item div > * {
      margin-left: -30px; }
    .activecode-page .add-item .add-contnet input {
      width: 22.5rem;
      margin-bottom: 20px; }
  .activecode-page .page-title {
    width: 22.5rem; } }

.account-page .page-form .page-form-item input + .link {
  width: 120px; }

.myclass-page .add-class {
  height: 160px; }

.myclass-page .tab .tabs .tab-class:before, .myclass-page .tab .tabs .tab-school:before {
  width: 10px;
  height: 10px;
  content: "++";
  color: transparent;
  background-size: cover; }

.myclass-page .tab .tabs .tab-class:before {
  background: url(source/images/myclass/class_nor.png) no-repeat center center; }

.myclass-page .tab .tabs .tab-school:before {
  background: url(source/images/myclass/school_nor.png) no-repeat center center; }

.myclass-page .tab .tabs .active .tab-class:before {
  background: url(source/images/myclass/class_sel.png) no-repeat center center; }

.myclass-page .tab .tabs .active .tab-school:before {
  background: url(source/images/myclass/school_sel.png) no-repeat center center; }

.studylogdetal .dialog-content {
  height: 550px;
  overflow: auto;
  background: #ffffff; }
  .studylogdetal .dialog-content .part-page .part-header {
    background: #f3f3f3; }
    .studylogdetal .dialog-content .part-page .part-header > *:first-child {
      font-size: 26px;
      text-align: center;
      font-weight: bold; }
  .studylogdetal .dialog-content .part-page .part-content > * > *:first-child {
    font-size: 20px;
    text-align: center;
    font-weight: 500; }
  .studylogdetal .dialog-content .part-page .part-content > * .part-content-content {
    padding: 1em;
    border-bottom: 1px solid #d3d3d3; }
    .studylogdetal .dialog-content .part-page .part-content > * .part-content-content .standard-answer {
      color: #d3d3d3; }
    .studylogdetal .dialog-content .part-page .part-content > * .part-content-content .answer {
      color: 00aaef; }


.trend-chart {
  margin-top: 20px; }
  .trend-chart .trend-header {
    background: #ffffff;
    margin-bottom: 15px;
    border-bottom: 1px solid #dbdbdb; }
    .trend-chart .trend-header * {
      display: inline-block;
      color: #333333; }
    .trend-chart .trend-header div {
      line-height: 40px; }
      .trend-chart .trend-header div:first-child {
        font-size: 14px; }
        .trend-chart .trend-header div:first-child img {
          margin: 10px; }
      .trend-chart .trend-header div:last-child {
        width: calc(100% - 150px);
        right: 80px;
        padding: 0 20px;
        font-size: 12px;
        text-align: right; }
      .trend-chart .trend-header div select {
        width: 160px;
        margin: 0 10px;
        padding: 3px;
        border: 1px solid #dbdbdb;
        border-radius: 3px; }
      .trend-chart .trend-header div input {
        width: 140px;
        line-height: 22px;
        min-height: 26px;
        border: 1px solid #dbdbdb;
        border-radius: 3px; }
      .trend-chart .trend-header div button {
        width: 70px;
        margin: 0 10px;
        line-height: 24px;
        padding: 0;
        background: #38a7e1;
        color: #ffffff !important; }
  .trend-chart .trend-content {
    background: #ffffff; }

.studylogself-page .tab .tabs .tab-10000:before, .studylogself-page .tab .tabs .tab-11000:before, .studylogself-page .tab .tabs .tab-12000:before {
  width: 10px;
  height: 10px;
  content: "++";
  color: transparent;
  background-size: cover; }

.studylogself-page .tab .tabs .tab-10000:before {
  background: url(source/images/studylog/10000_nor.png) no-repeat center center; }

.studylogself-page .tab .tabs .tab-11000:before {
  background: url(source/images/studylog/11000_nor.png) no-repeat center center; }

.studylogself-page .tab .tabs .tab-12000:before {
  background: url(source/images/studylog/12000_nor.png) no-repeat center center; }

.studylogself-page .tab .tabs .tab-app:before {
  background: url(source/images/studylog/app_nor.png) no-repeat center center; }

.studylogself-page .tab .tabs .active .tab-10000:before {
  background: url(source/images/studylog/10000_sel.png) no-repeat center center; }

.studylogself-page .tab .tabs .active .tab-11000:before {
  background: url(source/images/studylog/11000_sel.png) no-repeat center center; }

.studylogself-page .tab .tabs .active .tab-12000:before {
  background: url(source/images/studylog/12000_sel.png) no-repeat center center; }

.studylogself-page .tab .tabs .active .tab-app:before {
  background: url(source/images/studylog/app_sel.png) no-repeat center center; }

.isteach-page .page-form .page-form-item {
  width: auto; }

.achievement-page .page-title {
  margin-bottom: 0 !important; }

.achievement-page .class-list .class-item-title {
  margin: 10px 0;
  border: 1px solid #dbdbdb; }
  .achievement-page .class-list .class-item-title .class-line {
    padding: 0 25px; }
    .achievement-page .class-list .class-item-title .class-line * + * {
      border-left: 1px solid #dbdbdb; }
    .achievement-page .class-list .class-item-title .class-line > div {
      display: inline-block;
      margin: 0 1%;
      min-width: 18%;
      padding: 6px 16px; }
    .achievement-page .class-list .class-item-title .class-line > .width {
      width: 20%; }
    .achievement-page .class-list .class-item-title .class-line > .width-250 {
      width: 250px; }
    .achievement-page .class-list .class-item-title .class-line label, .achievement-page .class-list .class-item-title .class-line span {
      line-height: 37px; }

.achievement-page .class-list .class-item {
  margin-bottom: 20px;
  padding: 0 1%;
  background: #c7d8e0; }
  .achievement-page .class-list .class-item .class-line {
    background: #c7d8e0;
    padding: 0 25px;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px; }
    .achievement-page .class-list .class-item .class-line > div {
      display: inline-block;
      margin: 0 1%;
      min-width: 18%; }
    .achievement-page .class-list .class-item .class-line > .width {
      width: 20%; }
    .achievement-page .class-list .class-item .class-line > .width-250 {
      width: 250px; }
    .achievement-page .class-list .class-item .class-line label, .achievement-page .class-list .class-item .class-line span {
      line-height: 37px; }
    .achievement-page .class-list .class-item .class-line .action {
      cursor: pointer;
      display: inline-flex;
      justify-content: center;
      align-items: center; }
      .achievement-page .class-list .class-item .class-line .action > * {
        display: inline-flex;
        justify-content: center;
        align-items: center; }
      .achievement-page .class-list .class-item .class-line .action .export {
        width: 20px;
        height: 20px;
        margin: 0 5px;
        background: url(source/images/achievement/export_nor.png) center center no-repeat; }
      .achievement-page .class-list .class-item .class-line .action > a:first-child:hover {
        color: #1f6cb0; }
        .achievement-page .class-list .class-item .class-line .action > a:first-child:hover .export {
          background: url(source/images/achievement/export_sel.png) center center no-repeat; }
      .achievement-page .class-list .class-item .class-line .action a + a {
        margin-left: 20px; }
      .achievement-page .class-list .class-item .class-line .action .fa.fa-angle-right, .achievement-page .class-list .class-item .class-line .action .fa.fa-angle-down {
        zoom: 2;
        color: #666666; }
      .achievement-page .class-list .class-item .class-line .action .open {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url(source/images/main/fx_right.png) center center no-repeat; }
        .achievement-page .class-list .class-item .class-line .action .open.select {
          background: url(source/images/main/fx_down.png) center center no-repeat; }

.achievement-page .class-list .consumer-grid {
  min-height: 100px;
  margin-bottom: 5px;
  background: #ffffff; }
  .achievement-page .class-list .consumer-grid table.table.table-striped {
    text-align: center; }
    .achievement-page .class-list .consumer-grid table.table.table-striped thead tr {
      background: #ffffff;
      border-bottom: 1px solid #dbdbdb; }
      .achievement-page .class-list .consumer-grid table.table.table-striped thead tr th {
        padding: 5px 10px;
        border-bottom: none;
        font-size: 12px; }
    .achievement-page .class-list .consumer-grid table.table.table-striped td {
      padding: 0.8em; }


.assign-work .choose-work span {
  padding: 0 10px; }
  .assign-work .choose-work span label {
    margin: 0 16px; }
  .assign-work .choose-work span select {
    min-width: 60px; }
    .assign-work .choose-work span select [disabled] {
      display: none; }

.assign-work .choose-work .choose-group div {
  margin: 16px 10px 0;
  padding-top: 5px;
  border-top: 1px solid #dbdbdb;
  display: inline-block; }
  .assign-work .choose-work .choose-group div button {
    margin: 0 20px 10px 0;
    line-height: 1;
    padding: 5px 20px; }

.assign-work .page-foot {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-top: 10px; }

.check-work .check-work .page-title {
  display: flex;
  align-items: center; }

.check-work .check-work span {
  padding: 0 10px; }
  .check-work .check-work span label {
    margin: 0 16px; }
  .check-work .check-work span select {
    min-width: 60px; }

.check-work .check-work button {
  line-height: 0.8;
  padding: 5px 20px;
  margin-left: 50px; }

.mangeaccount-page .tab .tabs .tab-apply:before, .mangeaccount-page .tab .tabs .tab-list:before {
  width: 10px;
  height: 10px;
  content: "++";
  color: transparent;
  background-size: cover; }

.mangeaccount-page .tab .tabs .tab-apply:before {
  background: url(source/images/mangeacount/apply_nor.png) no-repeat center center; }

.mangeaccount-page .tab .tabs .tab-list:before {
  background: url(source/images/mangeacount/list_nor.png) no-repeat center center; }

.mangeaccount-page .tab .tabs .active .tab-apply:before {
  background: url(source/images/mangeacount/apply_sel.png) no-repeat center center; }

.mangeaccount-page .tab .tabs .active .tab-list:before {
  background: url(source/images/mangeacount/list_sel.png) no-repeat center center; }

.mangeaccount-page button.btn {
  margin: 10px;
  width: 120px;
  padding: 2px 12px;
  background: #139ad8; }

.create-class {
  background: #ffffff;
  padding: 10px 5px;
  margin-bottom: 15px; }
  .create-class > * {
    display: inline-block;
    max-width: 30%;
    margin: 0 10px; }
    .create-class > * label {
      margin: 0 15px 0 30px; }
    .create-class > * select, .create-class > * input {
      min-width: 200px;
      line-height: 26px;
      min-height: 30px;
      border: 1px solid #dbdbdb; }
    .create-class > * select {
      min-width: 100px;
      padding: 4px; }
    .create-class > *button.btn {
      padding: 2px 12px;
      background: #139ad8; }
  .create-class button.btn {
    width: 120px;
    margin: 0 10px;
    padding: 2px 12px;
    background: #139ad8; }

.subject-list .item-title {
  margin-bottom: 8px;
  color: #00aaef;
  cursor: pointer; }

.work-detail {
  display: flex; }
  .work-detail > div {
    width: 100%; }
    .work-detail > div + div {
      margin-left: 16px; }
    .work-detail > div .item-title {
      margin-bottom: 8px;
      color: #00aaef;
      cursor: pointer; }
    .work-detail > div .pie-info {
      line-height: 1.5;
      margin: -20px 20px 10px; }
    .work-detail > div .height100 {
      height: calc(100% - 32px); }
    .work-detail > div .consumer-grid {
      height: 100%; }
