@charset "UTF-8";
.col {
  display: inline-block;
  min-height: 2em; }

.grid {
  margin: 0 auto;
  max-width: 980px;
  overflow: hidden; }

.column {
  float: left;
  margin-right: 16px;
  display: inline-block;
  min-height: 2em; }

/* *********************************************************************************************************************
	One% CSS Grid - 12 Columns Fluid CSS Grid System

	Why One% ? Let’s count ...
		we have 12 columns (magic number divided by 2, 3, 4, 6)

		for 12 columns we need 11 margins

		so if we count margin 3%, then 3% * 11 margins = 33%

		and if we count width of 1 column 5.5%, than 5.5% * 12 columns = 66%

		in the end we have 33% + 66% = 99% aaand ???

		1% is still here so that's the name - One%

	2 starting options ? Let’s count a bit more ...
		1200px - perfectly fits 1280 screens
			12 columns
			margin 3% / 36px (full-width)
			col1 5.5% / 66px (full-width)

		1000px - perfectly fits 1024 screens
			12 columns
			margin 3% / 30px (full-width)
			col1 5.5% / 55px (full-width)
*/
/* *********************************************************************************************************************
 * Main container for all
 */
.onepcssgrid-1000, .onepcssgrid-1200 {
  margin: 0 auto;
  padding: 0 0 0 1%;
  /* THAT'S THE NAME ;) */ }

.onepcssgrid-1200 {
  max-width: 1220px; }

.onepcssgrid-1000 {
  max-width: 1020px; }

.onerow {
  clear: both;
  padding: 0 10px; }

/* *********************************************************************************************************************
 * Common columns definitions
 */
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
  float: left;
  margin: 0 3% 0 0; }

.col1.last, .col2.last, .col3.last, .col4.last, .col5.last, .col6.last, .col7.last, .col8.last, .col9.last, .col10.last, .col11.last, .col12 {
  margin: 0; }

.col1 {
  width: 5.5%; }

.col2 {
  width: 14%; }

.col3 {
  width: 22.5%; }

.col4 {
  width: 31%; }

.col5 {
  width: 39.5%; }

.col6 {
  width: 48%; }

.col7 {
  width: 56.5%; }

.col8 {
  width: 65%; }

.col9 {
  width: 73.5%; }

.col10 {
  width: 82%; }

.col11 {
  width: 90.5%; }

.col12 {
  width: 99%;
  margin: 0; }

.col1 img, .col2 img, .col3 img, .col4 img, .col5 img, .col6 img, .col7 img, .col8 img, .col9 img, .col10 img, .col11 img, .col12 img {
  width: 100%;
  height: auto;
  display: block; }

/* *********************************************************************************************************************
 * Disable padding left/right 10px if I'm 1024 or gibber - correct percentage math
 */
@media all and (min-width: 1024px) {
  .onepcssgrid-1000 {
    max-width: 1000px; }
  .onepcssgrid-1000 .onerow {
    padding: 0; } }

/* *********************************************************************************************************************
 * Small devices
 */
@media all and (max-width: 768px) {
  .col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11 {
    float: none;
    width: 99%; } }

.col {
  display: inline-block;
  min-height: 2em; }

.grid {
  margin: 0 auto;
  max-width: 980px;
  overflow: hidden; }

.column {
  float: left;
  margin-right: 16px;
  display: inline-block;
  min-height: 2em; }

body, ul, li, p, h1, h2, h3, h4, h5, h6, table, td, tr, tbody, thead, tfoot, article, input, textarea, select, figure, .mart-button, .mart-status {
  font-family: "PingFang SC", "Helvetica Neue", Helvetica, "Hiragino Sans GB", Arial, "Microsoft YaHei", "微软雅黑", sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  padding: 0;
  margin: 0; }

.btn, .mart-button, .mart-status {
  border: none;
  outline: none;
  padding: 8px 20px;
  border-radius: 18px;
  font-size: 13px;
  -webkit-transition: background 0.5s cubic-bezier(0, 0.98, 0.68, 0.92);
  transition: background 0.5s cubic-bezier(0, 0.98, 0.68, 0.92); }

.form select.form-input, .form input.form-input, .form .selectize-input, .form textarea.form-input {
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #f5f5f5;
  background-image: none;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  box-sizing: border-box; }

.form select.form-input-white, .form input.form-input-white, .form textarea.form-input-white {
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  box-sizing: border-box; }

body {
  color: #333;
  background: #f0f2f5;
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 14px;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

* {
  font-family: "PingFang SC", "Helvetica Neue", Helvetica, "Hiragino Sans GB", Arial, "Microsoft YaHei", "微软雅黑", sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  outline: none; }

ul {
  list-style: none;
  padding: 0; }

li {
  list-style: none;
  padding: 0; }

h1 {
  font-weight: 400; }

h2 {
  font-weight: 400; }

h3 {
  font-weight: 400; }

h4 {
  font-weight: 400; }

h5 {
  font-weight: 400; }

h6 {
  font-weight: 400; }

a {
  text-decoration: none;
  color: #2d59a2; }
  a.button {
    text-decoration: none; }

:after {
  box-sizing: border-box; }

:before {
  box-sizing: border-box; }

.block {
  display: block; }

.right {
  float: right; }

.cursor {
  cursor: pointer; }

.inline {
  display: inline-block !important; }

.clearfix {
  zoom: 1; }
  .clearfix:before {
    content: "";
    display: table; }
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
    overflow: hidden; }

.green {
  color: #ffffff;
  background: #32be77; }

.blue {
  color: #ffffff;
  background: #5191bd; }

.pink {
  color: #ffffff;
  background: #E84D60; }

.black {
  color: #ffffff;
  background: #474b48; }

.button {
  display: inline-block;
  font-size: 16px;
  padding: 0 1.5em;
  text-transform: none;
  line-height: 30px;
  height: 30px;
  color: #ffffff;
  background-image: none;
  border-radius: 2em;
  outline: 0;
  cursor: pointer; }

.align-center {
  text-align: center;
  margin: 0 auto; }

.btn {
  cursor: pointer; }
  .btn:hover {
    -webkit-transition: background 0.5s cubic-bezier(0, 0.98, 0.68, 0.92);
    transition: background 0.5s cubic-bezier(0, 0.98, 0.68, 0.92); }

.mart-button {
  cursor: pointer; }
  .mart-button:hover {
    -webkit-transition: background 0.5s cubic-bezier(0, 0.98, 0.68, 0.92);
    transition: background 0.5s cubic-bezier(0, 0.98, 0.68, 0.92); }

.sub-button {
  padding: 9px 27px;
  background: #1976d2;
  border-radius: 30px;
  font-size: 18px;
  color: #ffffff; }

.btn-with-shadow {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2); }

i.label-icon {
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  background: #1976d2;
  border-radius: 30px;
  color: #ffffff;
  margin-right: 10px;
  font-family: Helvetica Neue, Helvetica, Arial;
  font-weight: bold;
  font-style: normal; }

hr.head-line {
  height: 1px;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  border: 0;
  margin-bottom: 20px;
  padding: 0;
  border-top: 1px solid #d7d8d7; }

i.type-0 {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -46px -6px; }

i.type-1 {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -46px -6px; }

i.type-2 {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -118px -6px; }

i.type-3 {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -142px -6px; }

i.type-4 {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -273px -6px; }

i.type-5 {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -70px -6px; }

i.type-6 {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -291px -28px; }

i.icon-userinfo {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -46px -28px;
  display: inline-block;
  float: left; }

i.icon-skills {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -70px -28px;
  display: inline-block;
  float: left; }

i.icon-identity {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -94px -28px;
  display: inline-block;
  float: left; }

i.fullfilled {
  float: right;
  margin-right: 10px;
  font-size: 18px;
  color: #4289DB; }

i.icon-cashier {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -118px -28px;
  display: inline-block;
  float: left; }

i.icon-survey {
  width: 18px;
  height: 19px;
  background-repeat: no-repeat;
  background-image: url(/images/reward/ICONS.png);
  background-position: -297px -6px;
  display: inline-block;
  float: left; }

.breadcrumb {
  padding-top: 30px;
  padding-bottom: 20px;
  line-height: 17px; }
  .breadcrumb .crumb-parent {
    color: #4289DB; }
  .breadcrumb .crumb-arrow {
    color: #c7c7c7; }
  .breadcrumb .crumb-current {
    color: #474b48; }
  .breadcrumb span.coding-info {
    color: #d3d3d0;
    font-size: 12px;
    float: right; }
    .breadcrumb span.coding-info .global-key {
      color: #4289DB; }
    .breadcrumb span.coding-info .email {
      color: #474b48; }

.border-radius {
  border-radius: 4px; }

.border-radius-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.border-radius-bottom {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.mart-tooltipster-mid {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  max-width: 270px; }
  .mart-tooltipster-mid .tooltipster-content {
    font-size: 13px;
    line-height: 18px;
    padding: 8px 10px; }
  .mart-tooltipster-mid .tooltipster-arrow-top span,
  .mart-tooltipster-mid .tooltipster-arrow-top-right span,
  .mart-tooltipster-mid .tooltipster-arrow-top-left span {
    bottom: -8px; }

.mart-section {
  width: 100%;
  min-height: 60px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  margin-top: 10px;
  box-sizing: border-box; }

table.gridtable {
  width: 100%;
  border-spacing: 0px;
  margin: 10px 0; }
  table.gridtable tr:first-child th:first-child {
    border-top-left-radius: 3px; }
  table.gridtable tr:first-child th:last-child {
    border-top-right-radius: 3px; }
  table.gridtable tr:last-child th:first-child {
    border-bottom-left-radius: 3px; }
  table.gridtable tr:last-child th:last-child {
    border-bottom-right-radius: 3px; }
  table.gridtable tr:first-child td:first-child {
    border-top-left-radius: 3px; }
  table.gridtable tr:first-child td:last-child {
    border-top-right-radius: 3px; }
  table.gridtable tr:last-child td:first-child {
    border-bottom-left-radius: 3px; }
  table.gridtable tr:last-child td:last-child {
    border-bottom-right-radius: 3px; }
  table.gridtable tbody:before {
    content: "-";
    display: block;
    line-height: 1em;
    color: transparent; }
  table.gridtable th {
    height: 32px;
    background-image: -webkit-linear-gradient(to top, #e8e8e8, #fcfcfc);
    background-image: -webkit-linear-gradient(bottom, #e8e8e8, #fcfcfc);
    background-image: linear-gradient(to top, #e8e8e8, #fcfcfc);
    border: 1px solid #d0d0d0; }
  table.gridtable td {
    height: 44px;
    border: 1px solid #ECECEC;
    text-align: center; }
  table.gridtable tr th, table.gridtable tr td {
    border-left: none;
    border-bottom: none; }
    table.gridtable tr th:first-child, table.gridtable tr td:first-child {
      border-left: 1px solid #d0d0d0; }
  table.gridtable tr:last-child th, table.gridtable tr:last-child td {
    border-bottom: 1px solid #d0d0d0; }

.main-container {
  min-height: 100%;
  position: relative;
  overflow-x: hidden; }
  .main-container .view-container {
    padding-top: 64px;
    min-height: 600px;
    padding-bottom: 70px; }
    .main-container .view-container.detailed-footer {
      padding-bottom: 366px; }
    .main-container .view-container.nonactive {
      padding-top: 115px; }
    .main-container .view-container.transparent {
      padding-top: 0; }

@media only screen and (max-width: 767px) {
  .main-container .view-container {
    padding-top: 0;
    min-height: 0;
    padding-bottom: 158px; }
    .main-container .view-container.detailed-footer {
      padding-bottom: 1008px; }
    .main-container .view-container.nonactive {
      padding-top: 0; }
    .main-container .view-container.nonactive.transparent {
      padding-top: 72px; } }

/*-----------------------------------checkbox & radio ---------------------------*/
.icheckbox_square-mart,
.iradio_square-mart {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  background: url(/images/reward/ICONS.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-mart {
  background-position: -242px 0; }

.icheckbox_square-mart.checked {
  background-position: -212px 0; }

.iradio_square-mart {
  background-position: -261px -28px; }

.iradio_square-mart.checked {
  background-position: -230px -28px; }

/*--------------------------------- select -------------------------------------*/
.selectBox-dropdown {
  position: relative;
  border: solid 1px #e8e8e8;
  line-height: 1.5;
  text-decoration: none;
  text-align: left;
  color: #474b48;
  outline: none;
  vertical-align: middle;
  background: #f5f5f5;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border-radius: 4px;
  display: inline-block;
  cursor: default;
  padding: 5px;
  box-sizing: border-box; }
  .selectBox-dropdown.selectBox-menuShowing {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .selectBox-dropdown .selectBox-label {
    padding: 2px 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden; }
  .selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 16px;
    height: 9px;
    background-repeat: no-repeat;
    background-image: url(/images/reward/ICONS.png);
    background-position: -164px -28px; }
  .selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666; }

.selectBox-dropdown-menu {
  position: absolute;
  z-index: 99999;
  max-height: 200px;
  min-height: 1em;
  border: solid 1px #e8e8e8;
  background: #f5f5f5;
  overflow: auto; }

.selectBox-inline {
  min-width: 150px;
  outline: none;
  border: solid 1px #bbb;
  background: #ffffff;
  display: inline-block;
  border-radius: 4px;
  overflow: auto; }
  .selectBox-inline:focus {
    border-color: #666; }
  .selectBox-inline.selectBox-disabled {
    color: #888 !important; }
    .selectBox-inline.selectBox-disabled .selectBox-options A {
      background-color: transparent !important; }

.selectBox-options {
  list-style: none;
  display: block;
  cursor: default;
  padding: 0;
  margin: 0; }
  .selectBox-options LI {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0; }
    .selectBox-options LI A {
      list-style: none;
      display: block;
      cursor: default;
      padding: 0;
      margin: 0;
      line-height: 1.5;
      padding: 0 .5em;
      white-space: nowrap;
      overflow: hidden;
      background: 6px center no-repeat;
      color: #474b48; }
    .selectBox-options LI.selectBox-hover A {
      background-color: #eee; }
    .selectBox-options LI.selectBox-disabled A {
      color: #888;
      background-color: transparent; }
    .selectBox-options LI.selectBox-selected A {
      background-color: #c8def4; }
  .selectBox-options .selectBox-optgroup {
    color: #666;
    background: #eee;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap; }

.selectBox.selectBox-disabled {
  color: #888 !important; }

/*--------------------------------- form -------------------------------------*/
.form {
  max-width: 980px;
  margin: 0 auto; }
  .form .format-error {
    color: red;
    display: none; }
  .form .content {
    margin: 40px auto;
    padding-bottom: 50px;
    background: #ffffff;
    min-height: 500px;
    box-shadow: 0 1px 2px rgba(183, 195, 192, 0.95);
    font-size: 14px;
    color: #333;
    border-radius: 4px; }
    .form .content .box {
      padding-top: 60px;
      max-width: 500px;
      margin: 40px auto; }
  .form .ds-table {
    display: table !important;
    width: 100%;
    table-layout: fixed; }
  .form .ds-table-cell {
    display: table-cell !important;
    table-layout: fixed; }
  .form section {
    padding-bottom: 30px; }
  .form div.label {
    margin-bottom: 20px; }
    .form div.label .item label {
      font-size: 20px;
      color: #555555; }
  .form div.input {
    margin-bottom: 30px;
    box-sizing: border-box; }
    .form div.input label {
      font-size: 14px;
      color: #555555;
      margin-bottom: 10px;
      display: block; }
      .form div.input label.input-budget a {
        float: right;
        background: #979FA8;
        border-radius: 2px;
        padding: 2px 4px;
        font-size: 11px;
        color: #fff; }
        .form div.input label.input-budget a:hover {
          background: #1976d2; }
    .form div.input .icon.ds-table-cell {
      width: 26px;
      text-align: center;
      white-space: nowrap;
      vertical-align: middle; }
    .form div.input .icon i {
      width: 20px;
      height: 20px;
      background: #333;
      color: #ffffff;
      display: inline-block;
      text-align: center;
      border-radius: 4px;
      font-size: 12px;
      line-height: 16px;
      font-weight: bold; }
    .form div.input input.ds-table-cell {
      width: 100%; }
  .form .date-pick b {
    vertical-align: middle; }
  .form .date-pick i.fa {
    font-size: 30px;
    cursor: pointer;
    margin-right: 5px; }
  .form .date-tips {
    font-size: 16px;
    color: #4d4d4d;
    padding-left: 20px;
    line-height: 30px; }
  .form .pd-left-10 {
    padding-left: 10px; }
  .form .pd-right-10 {
    padding-right: 10px; }
  .form .mg-bottom-20 {
    margin-bottom: 20px; }
  .form .mg-bottom-6 {
    margin-bottom: 6px; }
  .form .row {
    margin-right: -15px;
    margin-left: -15px; }
  .form .col-3 {
    width: 33.3%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box; }
  .form .tips {
    padding: 10px;
    font-size: 13px;
    color: #666;
    border: 1px solid #f3f5f7;
    background: #f3f5f7;
    margin-bottom: 30px; }
    .form .tips a {
      color: #666;
      text-decoration: underline; }
  .form p.nav {
    margin: 30px 0 10px; }
    .form p.nav a {
      color: #3f5d7c;
      font-size: 14px;
      text-decoration: none; }
  .form select.form-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0; }
  .form input.form-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 12px; }
  .form .form-text {
    font-size: 18px; }
  .form textarea.form-input {
    display: block;
    width: 100%;
    padding: 6px;
    resize: none; }
  .form select.form-input-white {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0; }
  .form input.form-input-white {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 12px; }
  .form textarea.form-input-white {
    display: block;
    width: 100%;
    padding: 6px;
    resize: none; }
  .form .date-picker > div {
    display: inline-block; }

/*--------------------------------- modal -------------------------------------*/
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99999; }
  .modal .box {
    vertical-align: middle;
    max-height: 100%;
    max-width: 500px;
    width: 100%; }
    .modal .box .form {
      margin: 0 auto;
      min-height: inherit;
      position: relative;
      border-radius: 4px;
      padding-top: 1em;
      box-shadow: 0 1px 2px rgba(183, 195, 192, 0.95);
      background: #F9F9F9;
      border: 1px solid #f1f2f3; }
      .modal .box .form .breaker {
        width: 95%;
        background-color: #DCDCDC;
        height: 1px; }
      .modal .box .form .title {
        font-size: 16px;
        padding: .5em 1em;
        color: #474b48; }
      .modal .box .form .desc {
        padding: .5em 1em; }
      .modal .box .form .input {
        padding: 1em 1.5em; }
        .modal .box .form .input input {
          width: 100%;
          height: 40px; }
        .modal .box .form .input .modal-desc {
          font-size: 12px;
          color: #808080;
          padding: 5px 0; }
        .modal .box .form .input .modal-warning {
          font-size: 12px;
          color: #E84D60; }
      .modal .box .form .buttons {
        height: 58px;
        padding: 1em;
        text-align: right;
        background-image: -webkit-linear-gradient(to top, #DEDEDE, #F4F4F4);
        background-image: -webkit-linear-gradient(bottom, #DEDEDE, #F4F4F4);
        background-image: linear-gradient(to top, #DEDEDE, #F4F4F4);
        box-shadow: 0 1px 0 0 #D1D1D1, 0 2px 0 0 #ffffff inset;
        box-sizing: border-box; }
        .modal .box .form .buttons span {
          float: left;
          color: #4289DB;
          padding-left: 10px;
          font-size: 14px; }
      .modal .box .form button {
        float: left;
        padding: 8px 13px; }
        .modal .box .form button.cancel {
          background: transparent;
          border: none;
          cursor: pointer; }
        .modal .box .form button.send {
          color: #ffffff;
          border: 1px solid #53A35D;
          border-radius: 3px;
          cursor: pointer;
          background-image: -webkit-linear-gradient(to top, #469D59, #65C279);
          background-image: -webkit-linear-gradient(bottom, #469D59, #65C279);
          background-image: linear-gradient(to top, #469D59, #65C279); }
      .modal .box .form span.close {
        position: absolute;
        top: .5em;
        right: .5em;
        width: 1.5em;
        height: 1.5em;
        line-height: 20px;
        text-align: center;
        border-radius: 1.5em;
        color: #666;
        border: 1px solid #efefef;
        cursor: pointer;
        -webkit-transition: all .5s;
        transition: all .5s; }
        .modal .box .form span.close:hover {
          -webkit-transform: rotate(45deg);
                  transform: rotate(45deg); }

/*-------------- Pager ----------------*/
.pager.pagination {
  border-radius: 0;
  text-align: center;
  border-radius: 0;
  margin-bottom: 3em;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-size: 9pt; }
  .pager.pagination ul {
    display: inline-block; }
  .pager.pagination li:first-child a, .pager.pagination li:first-child span {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .pager.pagination li.active a, .pager.pagination li.active a:focus, .pager.pagination li.active a:hover, .pager.pagination li.active span, .pager.pagination li.active span:focus, .pager.pagination li.active span:hover {
    background-color: #1976d2;
    color: #FFF; }
  .pager.pagination li {
    float: left; }
    .pager.pagination li a,
    .pager.pagination li span {
      width: 30px;
      height: 30px;
      line-height: 30px;
      background-color: #F0F0F0;
      border-radius: 2px;
      margin: 0 5px;
      color: #b3b3b3;
      font-size: 13px;
      margin-right: .2em;
      display: inline-block;
      cursor: pointer; }
    .pager.pagination li a:focus, .pager.pagination li a:hover, .pager.pagination li span, .pager.pagination li span:focus, .pager.pagination li span:hover {
      background-color: #D6D6D6; }

@media only screen and (max-width: 980px) {
  .form {
    padding: 0 1em; } }

@media only screen and (max-width: 767px) {
  .form .info {
    padding: 0 .5em; }
  .head-line {
    display: none !important; } }

@media only screen and (max-width: 500px) {
  .form {
    padding: 0 .4em; }
  .form .content {
    padding-left: .5em;
    padding-right: .5em; } }

@-webkit-keyframes o-notch-loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes o-notch-loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.fa-circle-o-notch.loading {
  -webkit-animation: o-notch-loading 1s linear infinite;
          animation: o-notch-loading 1s linear infinite; }

.notification-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 40px; }
  .notification-pagination .pagination {
    text-align: center;
    font-size: 12px; }
    .notification-pagination .pagination li {
      display: inline-block; }
      .notification-pagination .pagination li a, .notification-pagination .pagination li span {
        color: #a9a9a9;
        padding: 0 5px 0 5px; }
      .notification-pagination .pagination li a {
        cursor: pointer; }
      .notification-pagination .pagination li.active a {
        color: #4289DB; }
      .notification-pagination .pagination li:hover a {
        color: #4289DB; }

#mart-index .first-page {
  max-height: 960px;
  position: relative;
  z-index: 10000; }
  #mart-index .first-page .bx-wrapper {
    box-shadow: none;
    border: none;
    background: transparent;
    margin: 0 auto; }
    #mart-index .first-page .bx-wrapper .bx-prev {
      left: 10px;
      background: url("/icp/index-banner-next@2x.png");
      width: 1.2rem;
      height: 3rem;
      background-size: cover;
      opacity: 0.6; }
      @media only screen and (max-width: 768px) {
        #mart-index .first-page .bx-wrapper .bx-prev {
          display: none; } }
      #mart-index .first-page .bx-wrapper .bx-prev:hover {
        opacity: 1; }
    #mart-index .first-page .bx-wrapper .bx-next {
      right: 10px;
      background: url("/icp/index-banner-next@2x.png");
      rotation: 180deg;
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
      -webkit-filter: FlipH;
              filter: FlipH;
      width: 1.2rem;
      height: 3rem;
      background-size: cover;
      opacity: 0.6; }
      @media only screen and (max-width: 768px) {
        #mart-index .first-page .bx-wrapper .bx-next {
          display: none; } }
      #mart-index .first-page .bx-wrapper .bx-next:hover {
        opacity: 1; }
    #mart-index .first-page .bx-wrapper .bx-pager-item {
      vertical-align: middle; }
    #mart-index .first-page .bx-wrapper .bx-pager {
      bottom: 21px;
      z-index: 1000; }
    #mart-index .first-page .bx-wrapper .bx-pager.bx-default-pager a {
      background: rgba(221, 227, 235, 0.8);
      height: 6px;
      width: 6px;
      margin: 0 9px; }
    #mart-index .first-page .bx-wrapper .bx-pager.bx-default-pager a.active,
    #mart-index .first-page .bx-wrapper .bx-pager.bx-default-pager a:focus,
    #mart-index .first-page .bx-wrapper .bx-pager.bx-default-pager a:hover {
      background: #FFF;
      width: 8px;
      height: 8px; }
  #mart-index .first-page .index-top {
    position: relative;
    background: transparent;
    border: 0;
    max-height: 640px;
    height: calc(100vh - 115px);
    min-height: 41rem;
    padding-top: 6.5rem;
    padding-bottom: 39px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1; }
    #mart-index .first-page .index-top .top-motto-container {
      width: 100%;
      z-index: -2; }
      #mart-index .first-page .index-top .top-motto-container .top-motto {
        text-align: center;
        font-size: 3rem;
        line-height: 4rem;
        color: #fff; }
    #mart-index .first-page .index-top .sub-motto-container {
      width: 100%;
      z-index: 999;
      margin-top: 1.5rem;
      margin-left: 0; }
      #mart-index .first-page .index-top .sub-motto-container .sub-motto {
        text-align: center;
        font-size: 1.3rem;
        color: #fff;
        line-height: 1.5rem;
        font-weight: 200; }
    #mart-index .first-page .index-top .start-button {
      width: 160px;
      height: 49px;
      line-height: 47px;
      display: block;
      text-align: center;
      background-color: #1976d2;
      color: #fff;
      border: 1px solid #fff;
      border-radius: 5px;
      font-size: 1.3rem;
      cursor: pointer;
      -webkit-transition: 0.3s linear;
      transition: 0.3s linear;
      margin-top: 30px;
      margin-left: 0; }
      #mart-index .first-page .index-top .start-button:hover {
        background-color: #fff;
        color: #4187DB; }
  #mart-index .first-page #banner-1 {
    display: none;
    background: url("/icp/banner-1.png") center/cover no-repeat; }
    #mart-index .first-page #banner-1 .index-top .sub-motto-container {
      margin-left: 0; }
      #mart-index .first-page #banner-1 .index-top .sub-motto-container .sub-motto {
        line-height: 1.8rem; }
        #mart-index .first-page #banner-1 .index-top .sub-motto-container .sub-motto span {
          border: 1px solid #fff;
          border-radius: 4px;
          padding: 1px 5px;
          margin-right: 9px; }
    #mart-index .first-page #banner-1 .index-top .btn-list {
      text-align: center; }
      #mart-index .first-page #banner-1 .index-top .btn-list .start-button {
        margin: 53px auto 0;
        border: none;
        width: 13.8rem;
        line-height: 49px;
        display: inline-block; }
      #mart-index .first-page #banner-1 .index-top .btn-list .project-list-btn {
        background: none;
        border: 1px solid #FFF;
        margin-left: 40px; }
        #mart-index .first-page #banner-1 .index-top .btn-list .project-list-btn:hover {
          background: #FFF;
          color: #4289DB; }
      @media only screen and (max-width: 768px) {
        #mart-index .first-page #banner-1 .index-top .btn-list .start-button {
          display: block; }
        #mart-index .first-page #banner-1 .index-top .btn-list .project-list-btn {
          margin-top: 20px;
          margin-left: 0; } }
      @media only screen and (max-width: 374px) {
        #mart-index .first-page #banner-1 .index-top .btn-list .start-button {
          margin-top: 30px; }
        #mart-index .first-page #banner-1 .index-top .btn-list .project-list-btn {
          margin-top: 20px; } }
    @media only screen and (max-width: 767px) {
      #mart-index .first-page #banner-1 .index-top .sub-motto-container .sub-motto .publish-button {
        width: 13.9rem;
        margin-top: 40px;
        font-size: 1.1rem;
        line-height: 2.9rem;
        height: 2.9rem; } }
    #mart-index .first-page #banner-1::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      bottom: 0;
      background: rgba(16, 63, 127, 0.3) left repeat; }
  #mart-index .first-page #banner-project {
    display: none;
    background: -webkit-linear-gradient(top, #1F2D3D 0%, #3C4858 100%);
    background: linear-gradient(-180deg, #1F2D3D 0%, #3C4858 100%); }
    #mart-index .first-page #banner-project .motto-container {
      width: 85%;
      max-width: 900px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      #mart-index .first-page #banner-project .motto-container .top-motto-container {
        z-index: 999;
        width: initial; }
        #mart-index .first-page #banner-project .motto-container .top-motto-container .top-motto {
          padding: 0;
          text-align: left;
          letter-spacing: 1px;
          line-height: 59px;
          white-space: nowrap; }
        #mart-index .first-page #banner-project .motto-container .top-motto-container .start-button {
          margin-top: 28px;
          width: 130px;
          height: 42px;
          line-height: 3rem;
          border-radius: 4px;
          background: transparent;
          font-size: 1rem; }
          #mart-index .first-page #banner-project .motto-container .top-motto-container .start-button:hover {
            background: #FFFFFF;
            color: #3C4858; }
      #mart-index .first-page #banner-project .motto-container .spacer {
        height: 100%;
        width: 18%;
        max-width: 160px; }
      #mart-index .first-page #banner-project .motto-container .sub-motto-container {
        width: initial;
        margin-top: 0; }
        #mart-index .first-page #banner-project .motto-container .sub-motto-container img {
          min-width: 333px;
          width: 333px; }
    @media only screen and (max-width: 768px) {
      #mart-index .first-page #banner-project .motto-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        width: initial; }
        #mart-index .first-page #banner-project .motto-container .top-motto-container {
          -webkit-box-ordinal-group: 3;
          -webkit-order: 2;
              -ms-flex-order: 2;
                  order: 2; }
          #mart-index .first-page #banner-project .motto-container .top-motto-container .top-motto {
            text-align: center;
            font-size: 2rem; }
          #mart-index .first-page #banner-project .motto-container .top-motto-container .start-button {
            margin: 23px auto 0;
            width: 108px;
            height: 35px;
            line-height: 35px; }
        #mart-index .first-page #banner-project .motto-container .spacer {
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1;
          width: 100%;
          height: 19px; }
        #mart-index .first-page #banner-project .motto-container .sub-motto-container {
          -webkit-box-ordinal-group: 1;
          -webkit-order: 0;
              -ms-flex-order: 0;
                  order: 0; }
          #mart-index .first-page #banner-project .motto-container .sub-motto-container img {
            margin: 0 auto;
            min-width: 100%;
            width: 100%;
            max-width: 234px; } }
  #mart-index .first-page #banner-enterprise {
    display: none;
    background: url("https://yuanqqbucket.yuanqq.cn/685ff4e3-bd66-4e82-ad1c-a2078314fbad.png") center/cover no-repeat;
    background-size: auto 100%;
    background-color: #282d50; }
    #mart-index .first-page #banner-enterprise .motto-container {
      width: 100%;
      max-width: 900px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      #mart-index .first-page #banner-enterprise .motto-container .top-motto-container {
        z-index: 999; }
        #mart-index .first-page #banner-enterprise .motto-container .top-motto-container .top-motto {
          padding: 0;
          text-align: left;
          letter-spacing: 1px;
          line-height: 59px;
          white-space: nowrap; }
        #mart-index .first-page #banner-enterprise .motto-container .top-motto-container .start-button {
          border: none;
          margin-top: 266px;
          width: 160px;
          height: 42px;
          line-height: 3rem;
          background: transparent;
          font-size: 1rem; }
      #mart-index .first-page #banner-enterprise .motto-container .spacer {
        height: 100%;
        width: 18%;
        max-width: 160px; }
      #mart-index .first-page #banner-enterprise .motto-container .sub-motto-container {
        width: initial;
        margin-top: 0; }
        #mart-index .first-page #banner-enterprise .motto-container .sub-motto-container img {
          min-width: 333px;
          width: 333px; }
    @media only screen and (max-width: 768px) {
      #mart-index .first-page #banner-enterprise .motto-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        width: initial; }
        #mart-index .first-page #banner-enterprise .motto-container .top-motto-container {
          -webkit-box-ordinal-group: 3;
          -webkit-order: 2;
              -ms-flex-order: 2;
                  order: 2; }
          #mart-index .first-page #banner-enterprise .motto-container .top-motto-container .top-motto {
            text-align: center;
            font-size: 2rem; }
          #mart-index .first-page #banner-enterprise .motto-container .top-motto-container .start-button {
            margin: 23px auto 0;
            width: 108px;
            height: 35px;
            line-height: 35px; }
        #mart-index .first-page #banner-enterprise .motto-container .spacer {
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1;
          width: 100%;
          height: 19px; }
        #mart-index .first-page #banner-enterprise .motto-container .sub-motto-container {
          -webkit-box-ordinal-group: 1;
          -webkit-order: 0;
              -ms-flex-order: 0;
                  order: 0; }
          #mart-index .first-page #banner-enterprise .motto-container .sub-motto-container img {
            margin: 0 auto;
            min-width: 100%;
            width: 100%;
            max-width: 234px; } }
  @media only screen and (max-width: 767px) {
    #mart-index .first-page .index-top {
      height: calc(100vh - 80px);
      min-height: 30rem;
      padding-top: 70px; }
      #mart-index .first-page .index-top .top-motto-container .top-motto {
        text-align: center;
        font-size: 2rem;
        line-height: 3rem;
        padding: 0 2.1rem; }
      #mart-index .first-page .index-top .sub-motto-container .sub-motto {
        text-align: center;
        font-size: 1rem;
        line-height: 1.4rem; }
        #mart-index .first-page .index-top .sub-motto-container .sub-motto .start-button {
          margin-left: auto;
          margin-right: auto; }
    #mart-index .first-page .bx-wrapper .bx-pager {
      bottom: 12px; } }
