html,
body {
  position: relative;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: -apple-system, SF UI Text, Helvetica Neue, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  overflow: hidden;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
.v-modal-enter-active,
.v-modal-leave-active {
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.v-modal-enter,
.v-modal-leave-active {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(1.185);
  transform: translate3d(0, 0, 0) scale(1.185);
}
.v-modal-leave-active {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.v-action-sheet-enter-active,
.v-action-sheet-leave-active {
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
.v-action-sheet-enter-active .v-action-sheet__content,
.v-action-sheet-leave-active .v-action-sheet__content {
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.v-action-sheet-enter,
.v-action-sheet-leave-active {
  opacity: 0;
}
.v-action-sheet-enter .v-action-sheet__content,
.v-action-sheet-leave-active .v-action-sheet__content {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
/* === Page/Content/blockTitle/Header/Footer  === */
.v-page {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.v-page--has-header > .v-content {
  padding-top: 44px;
}
.v-page--has-footer > .v-content {
  padding-bottom: 44px;
}
.v-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  z-index: 10;
  background: #efeff4;
}
.v-content-block {
  margin: 25px 0;
  padding: 0 15px;
  color: #6d6d72;
  box-sizing: border-box;
}
.v-content-block p {
  padding: 1em 0;
}
.v-block-title {
  position: relative;
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  color: #6d6d72;
  margin: 25px 15px 10px;
}
.v-block-title + .v-content-block {
  margin-top: 10px;
}
.v-block-title + .v-list {
  margin-top: 15px;
}
.v-header,
.v-footer {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 11;
}
.v-header {
  top: 0;
  height: 44px;
}
.v-footer {
  bottom: 0;
  height: 44px;
}
/* === v-button === */
.v-button {
  background: #1A98FF;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  padding: 0 10px;
  margin: 0;
  height: 29px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-family: inherit;
  line-height: 28px;
  cursor: pointer;
  outline: 0;
  position: relative;
  border: none;
}
.v-button--round {
  border-radius: 28px;
}
.v-button--outline {
  border: 1px solid #1A98FF;
  background: none;
  color: #1A98FF;
}
.v-button--large {
  font-size: 17px;
  height: 44px;
  line-height: 42px;
}
.v-button--small {
  font-size: 13px;
  height: 24px;
  line-height: 24px;
}
.v-button.primary {
  background: #1A98FF;
}
.v-button.primary.v-button--outline {
  border: 1px solid #1A98FF;
  background: none;
  color: #1A98FF;
}
.v-button.success {
  background: #73C613;
}
.v-button.success.v-button--outline {
  border: 1px solid #73C613;
  background: none;
  color: #73C613;
}
.v-button.info {
  background: #B8DFFF;
}
.v-button.info.v-button--outline {
  border: 1px solid #B8DFFF;
  background: none;
  color: #B8DFFF;
}
.v-button.warning {
  background: #FFB825;
}
.v-button.warning.v-button--outline {
  border: 1px solid #FFB825;
  background: none;
  color: #FFB825;
}
.v-button.danger {
  background: #FF2929;
}
.v-button.danger.v-button--outline {
  border: 1px solid #FF2929;
  background: none;
  color: #FF2929;
}
.v-buttons-row {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.v-buttons-row .v-button {
  border-radius: 0 0 0 0;
  border-left-width: 0;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}
.v-buttons-row .v-button:first-child {
  border-radius: 5px 0 0 5px;
  border-left-width: 1px;
  border-left-style: solid;
}
.v-buttons-row .v-button:last-child {
  border-radius: 0 5px 5px 0;
}
.v-buttons-row .v-button:first-child:last-child {
  border-radius: 5px;
}
.v-buttons-row .v-button.v-button--round:first-child {
  border-radius: 27px 0 0 27px;
}
.v-buttons-row .v-button.v-button--round:last-child {
  border-radius: 0 27px 27px 0;
}
/* === v-switch === */
.v-switch {
  display: inline-block;
  vertical-align: middle;
  width: 52px;
  border-radius: 16px;
  box-sizing: border-box;
  height: 32px;
  position: relative;
  cursor: pointer;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.v-switch .v-switch__checkbox {
  width: 52px;
  border-radius: 16px;
  box-sizing: border-box;
  height: 32px;
  background: #e5e5e5;
  z-index: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  position: relative;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}
.v-switch .v-switch__checkbox:before {
  content: ' ';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 48px;
  border-radius: 16px;
  box-sizing: border-box;
  height: 28px;
  background: #fff;
  z-index: 1;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.v-switch .v-switch__checkbox:after {
  content: ' ';
  height: 28px;
  width: 28px;
  border-radius: 28px;
  background: #fff;
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}
.v-switch input[type="checkbox"] {
  display: none;
}
.v-switch input[type="checkbox"]:checked + .v-switch__checkbox {
  background: #1A98FF;
}
.v-switch input[type="checkbox"]:checked + .v-switch__checkbox:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.v-switch input[type="checkbox"]:checked + .v-switch__checkbox:after {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}
.v-switch input[type="checkbox"]:disabled + .v-switch__checkbox {
  background: #dbdbdb;
}
.v-switch input[type="checkbox"]:disabled + .v-switch__checkbox:before {
  background: #dbdbdb;
}
.v-switch.red input[type="checkbox"]:checked + .v-switch__checkbox {
  background: #FF2929;
}
.v-switch.red input[type="checkbox"]:disabled + .v-switch__checkbox {
  background: #dbdbdb;
}
.v-switch.gray input[type="checkbox"]:checked + .v-switch__checkbox {
  background: #999999;
}
.v-switch.gray input[type="checkbox"]:disabled + .v-switch__checkbox {
  background: #dbdbdb;
}
.v-switch.green input[type="checkbox"]:checked + .v-switch__checkbox {
  background: #73C613;
}
.v-switch.green input[type="checkbox"]:disabled + .v-switch__checkbox {
  background: #dbdbdb;
}
.v-switch.lightblue input[type="checkbox"]:checked + .v-switch__checkbox {
  background: #B8DFFF;
}
.v-switch.lightblue input[type="checkbox"]:disabled + .v-switch__checkbox {
  background: #dbdbdb;
}
.v-switch.blue input[type="checkbox"]:checked + .v-switch__checkbox {
  background: #1A98FF;
}
.v-switch.blue input[type="checkbox"]:disabled + .v-switch__checkbox {
  background: #dbdbdb;
}
/* === v-grid === */
.v-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.v-row > [class*="v-col--"] {
  box-sizing: border-box;
}
.v-row .v-col--auto {
  width: 100%;
}
.v-row .v-col--100 {
  width: 100%;
  width: -webkit-calc((100% - 15px*0) / 1);
  width: calc((100% - 15px*0) / 1);
}
.v-row.v-row--no-gutter .v-col--100 {
  width: 100%;
}
.v-row .v-col--95 {
  width: 95%;
  width: -webkit-calc((100% - 15px*0.05263157894736836) / 1.0526315789473684);
  width: calc((100% - 15px*0.05263157894736836) / 1.0526315789473684);
}
.v-row.v-row--no-gutter .v-col--95 {
  width: 95%;
}
.v-row .v-col--90 {
  width: 90%;
  width: -webkit-calc((100% - 15px*0.11111111111111116) / 1.1111111111111112);
  width: calc((100% - 15px*0.11111111111111116) / 1.1111111111111112);
}
.v-row.v-row--no-gutter .v-col--90 {
  width: 90%;
}
.v-row .v-col--85 {
  width: 85%;
  width: -webkit-calc((100% - 15px*0.17647058823529416) / 1.1764705882352942);
  width: calc((100% - 15px*0.17647058823529416) / 1.1764705882352942);
}
.v-row.v-row--no-gutter .v-col--85 {
  width: 85%;
}
.v-row .v-col--80 {
  width: 80%;
  width: -webkit-calc((100% - 15px*0.25) / 1.25);
  width: calc((100% - 15px*0.25) / 1.25);
}
.v-row.v-row--no-gutter .v-col--80 {
  width: 80%;
}
.v-row .v-col--75 {
  width: 75%;
  width: -webkit-calc((100% - 15px*0.33333333333333326) / 1.3333333333333333);
  width: calc((100% - 15px*0.33333333333333326) / 1.3333333333333333);
}
.v-row.v-row--no-gutter .v-col--75 {
  width: 75%;
}
.v-row .v-col--70 {
  width: 70%;
  width: -webkit-calc((100% - 15px*0.4285714285714286) / 1.4285714285714286);
  width: calc((100% - 15px*0.4285714285714286) / 1.4285714285714286);
}
.v-row.v-row--no-gutter .v-col--70 {
  width: 70%;
}
.v-row .v-col--66 {
  width: 66.66666666666666%;
  width: -webkit-calc((100% - 15px*0.5000000000000002) / 1.5000000000000002);
  width: calc((100% - 15px*0.5000000000000002) / 1.5000000000000002);
}
.v-row.v-row--no-gutter .v-col--66 {
  width: 66.66666666666666%;
}
.v-row .v-col--65 {
  width: 65%;
  width: -webkit-calc((100% - 15px*0.5384615384615385) / 1.5384615384615385);
  width: calc((100% - 15px*0.5384615384615385) / 1.5384615384615385);
}
.v-row.v-row--no-gutter .v-col--65 {
  width: 65%;
}
.v-row .v-col--60 {
  width: 60%;
  width: -webkit-calc((100% - 15px*0.6666666666666667) / 1.6666666666666667);
  width: calc((100% - 15px*0.6666666666666667) / 1.6666666666666667);
}
.v-row.v-row--no-gutter .v-col--60 {
  width: 60%;
}
.v-row .v-col--55 {
  width: 55%;
  width: -webkit-calc((100% - 15px*0.8181818181818181) / 1.8181818181818181);
  width: calc((100% - 15px*0.8181818181818181) / 1.8181818181818181);
}
.v-row.v-row--no-gutter .v-col--55 {
  width: 55%;
}
.v-row .v-col--50 {
  width: 50%;
  width: -webkit-calc((100% - 15px*1) / 2);
  width: calc((100% - 15px*1) / 2);
}
.v-row.v-row--no-gutter .v-col--50 {
  width: 50%;
}
.v-row .v-col--45 {
  width: 45%;
  width: -webkit-calc((100% - 15px*1.2222222222222223) / 2.2222222222222223);
  width: calc((100% - 15px*1.2222222222222223) / 2.2222222222222223);
}
.v-row.v-row--no-gutter .v-col--45 {
  width: 45%;
}
.v-row .v-col--40 {
  width: 40%;
  width: -webkit-calc((100% - 15px*1.5) / 2.5);
  width: calc((100% - 15px*1.5) / 2.5);
}
.v-row.v-row--no-gutter .v-col--40 {
  width: 40%;
}
.v-row .v-col--35 {
  width: 35%;
  width: -webkit-calc((100% - 15px*1.8571428571428572) / 2.857142857142857);
  width: calc((100% - 15px*1.8571428571428572) / 2.857142857142857);
}
.v-row.v-row--no-gutter .v-col--35 {
  width: 35%;
}
.v-row .v-col--33 {
  width: 33.333333333333336%;
  width: -webkit-calc((100% - 15px*2) / 3);
  width: calc((100% - 15px*2) / 3);
}
.v-row.v-row--no-gutter .v-col--33 {
  width: 33.333333333333336%;
}
.v-row .v-col--30 {
  width: 30%;
  width: -webkit-calc((100% - 15px*2.3333333333333335) / 3.3333333333333335);
  width: calc((100% - 15px*2.3333333333333335) / 3.3333333333333335);
}
.v-row.v-row--no-gutter .v-col--30 {
  width: 30%;
}
.v-row .v-col--25 {
  width: 25%;
  width: -webkit-calc((100% - 15px*3) / 4);
  width: calc((100% - 15px*3) / 4);
}
.v-row.v-row--no-gutter .v-col--25 {
  width: 25%;
}
.v-row .v-col--20 {
  width: 20%;
  width: -webkit-calc((100% - 15px*4) / 5);
  width: calc((100% - 15px*4) / 5);
}
.v-row.v-row--no-gutter .v-col--20 {
  width: 20%;
}
.v-row .v-col--15 {
  width: 15%;
  width: -webkit-calc((100% - 15px*5.666666666666667) / 6.666666666666667);
  width: calc((100% - 15px*5.666666666666667) / 6.666666666666667);
}
.v-row.v-row--no-gutter .v-col--15 {
  width: 15%;
}
.v-row .v-col--10 {
  width: 10%;
  width: -webkit-calc((100% - 15px*9) / 10);
  width: calc((100% - 15px*9) / 10);
}
.v-row.v-row--no-gutter .v-col--10 {
  width: 10%;
}
.v-row .v-col--5 {
  width: 5%;
  width: -webkit-calc((100% - 15px*19) / 20);
  width: calc((100% - 15px*19) / 20);
}
.v-row.v-row--no-gutter .v-col--5 {
  width: 5%;
}
.v-row .v-col--auto:nth-last-child(1),
.v-row .v-col--auto:nth-last-child(1) ~ .v-col--auto {
  width: 100%;
  width: -webkit-calc((100% - 15px*0) / 1);
  width: calc((100% - 15px*0) / 1);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(1),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(1) ~ .v-col--auto {
  width: 100%;
}
.v-row .v-col--auto:nth-last-child(2),
.v-row .v-col--auto:nth-last-child(2) ~ .v-col--auto {
  width: 50%;
  width: -webkit-calc((100% - 15px*1) / 2);
  width: calc((100% - 15px*1) / 2);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(2),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(2) ~ .v-col--auto {
  width: 50%;
}
.v-row .v-col--auto:nth-last-child(3),
.v-row .v-col--auto:nth-last-child(3) ~ .v-col--auto {
  width: 33.33333333%;
  width: -webkit-calc((100% - 15px*2) / 3);
  width: calc((100% - 15px*2) / 3);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(3),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(3) ~ .v-col--auto {
  width: 33.33333333%;
}
.v-row .v-col--auto:nth-last-child(4),
.v-row .v-col--auto:nth-last-child(4) ~ .v-col--auto {
  width: 25%;
  width: -webkit-calc((100% - 15px*3) / 4);
  width: calc((100% - 15px*3) / 4);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(4),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(4) ~ .v-col--auto {
  width: 25%;
}
.v-row .v-col--auto:nth-last-child(5),
.v-row .v-col--auto:nth-last-child(5) ~ .v-col--auto {
  width: 20%;
  width: -webkit-calc((100% - 15px*4) / 5);
  width: calc((100% - 15px*4) / 5);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(5),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(5) ~ .v-col--auto {
  width: 20%;
}
.v-row .v-col--auto:nth-last-child(6),
.v-row .v-col--auto:nth-last-child(6) ~ .v-col--auto {
  width: 16.66666667%;
  width: -webkit-calc((100% - 15px*5) / 6);
  width: calc((100% - 15px*5) / 6);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(6),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(6) ~ .v-col--auto {
  width: 16.66666667%;
}
.v-row .v-col--auto:nth-last-child(7),
.v-row .v-col--auto:nth-last-child(7) ~ .v-col--auto {
  width: 14.28571429%;
  width: -webkit-calc((100% - 15px*6) / 7);
  width: calc((100% - 15px*6) / 7);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(7),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(7) ~ .v-col--auto {
  width: 14.28571429%;
}
.v-row .v-col--auto:nth-last-child(8),
.v-row .v-col--auto:nth-last-child(8) ~ .v-col--auto {
  width: 12.5%;
  width: -webkit-calc((100% - 15px*7) / 8);
  width: calc((100% - 15px*7) / 8);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(8),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(8) ~ .v-col--auto {
  width: 12.5%;
}
.v-row .v-col--auto:nth-last-child(9),
.v-row .v-col--auto:nth-last-child(9) ~ .v-col--auto {
  width: 11.11111111%;
  width: -webkit-calc((100% - 15px*8) / 9);
  width: calc((100% - 15px*8) / 9);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(9),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(9) ~ .v-col--auto {
  width: 11.11111111%;
}
.v-row .v-col--auto:nth-last-child(10),
.v-row .v-col--auto:nth-last-child(10) ~ .v-col--auto {
  width: 10%;
  width: -webkit-calc((100% - 15px*9) / 10);
  width: calc((100% - 15px*9) / 10);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(10),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(10) ~ .v-col--auto {
  width: 10%;
}
.v-row .v-col--auto:nth-last-child(11),
.v-row .v-col--auto:nth-last-child(11) ~ .v-col--auto {
  width: 9.09090909%;
  width: -webkit-calc((100% - 15px*10) / 11);
  width: calc((100% - 15px*10) / 11);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(11),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(11) ~ .v-col--auto {
  width: 9.09090909%;
}
.v-row .v-col--auto:nth-last-child(12),
.v-row .v-col--auto:nth-last-child(12) ~ .v-col--auto {
  width: 8.33333333%;
  width: -webkit-calc((100% - 15px*11) / 12);
  width: calc((100% - 15px*11) / 12);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(12),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(12) ~ .v-col--auto {
  width: 8.33333333%;
}
.v-row .v-col--auto:nth-last-child(13),
.v-row .v-col--auto:nth-last-child(13) ~ .v-col--auto {
  width: 7.69230769%;
  width: -webkit-calc((100% - 15px*12) / 13);
  width: calc((100% - 15px*12) / 13);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(13),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(13) ~ .v-col--auto {
  width: 7.69230769%;
}
.v-row .v-col--auto:nth-last-child(14),
.v-row .v-col--auto:nth-last-child(14) ~ .v-col--auto {
  width: 7.14285714%;
  width: -webkit-calc((100% - 15px*13) / 14);
  width: calc((100% - 15px*13) / 14);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(14),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(14) ~ .v-col--auto {
  width: 7.14285714%;
}
.v-row .v-col--auto:nth-last-child(15),
.v-row .v-col--auto:nth-last-child(15) ~ .v-col--auto {
  width: 6.66666667%;
  width: -webkit-calc((100% - 15px*14) / 15);
  width: calc((100% - 15px*14) / 15);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(15),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(15) ~ .v-col--auto {
  width: 6.66666667%;
}
.v-row .v-col--auto:nth-last-child(16),
.v-row .v-col--auto:nth-last-child(16) ~ .v-col--auto {
  width: 6.25%;
  width: -webkit-calc((100% - 15px*15) / 16);
  width: calc((100% - 15px*15) / 16);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(16),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(16) ~ .v-col--auto {
  width: 6.25%;
}
.v-row .v-col--auto:nth-last-child(17),
.v-row .v-col--auto:nth-last-child(17) ~ .v-col--auto {
  width: 5.88235294%;
  width: -webkit-calc((100% - 15px*16) / 17);
  width: calc((100% - 15px*16) / 17);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(17),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(17) ~ .v-col--auto {
  width: 5.88235294%;
}
.v-row .v-col--auto:nth-last-child(18),
.v-row .v-col--auto:nth-last-child(18) ~ .v-col--auto {
  width: 5.55555556%;
  width: -webkit-calc((100% - 15px*17) / 18);
  width: calc((100% - 15px*17) / 18);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(18),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(18) ~ .v-col--auto {
  width: 5.55555556%;
}
.v-row .v-col--auto:nth-last-child(19),
.v-row .v-col--auto:nth-last-child(19) ~ .v-col--auto {
  width: 5.26315789%;
  width: -webkit-calc((100% - 15px*18) / 19);
  width: calc((100% - 15px*18) / 19);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(19),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(19) ~ .v-col--auto {
  width: 5.26315789%;
}
.v-row .v-col--auto:nth-last-child(20),
.v-row .v-col--auto:nth-last-child(20) ~ .v-col--auto {
  width: 5%;
  width: -webkit-calc((100% - 15px*19) / 20);
  width: calc((100% - 15px*19) / 20);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(20),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(20) ~ .v-col--auto {
  width: 5%;
}
.v-row .v-col--auto:nth-last-child(21),
.v-row .v-col--auto:nth-last-child(21) ~ .v-col--auto {
  width: 4.76190476%;
  width: -webkit-calc((100% - 15px*20) / 21);
  width: calc((100% - 15px*20) / 21);
}
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(21),
.v-row.v-row--no-gutter .v-col--auto:nth-last-child(21) ~ .v-col--auto {
  width: 4.76190476%;
}
/* === v-list === */
.v-list {
  background: #ffffff;
  list-style: none;
  padding: 0;
  margin: 35px 0;
  position: relative;
}
.v-list li {
  position: relative;
  box-sizing: border-box;
}
.v-list li:last-child .v-item__content .v-item__inner:after {
  display: none;
}
.v-list li:active {
  background: #f5f5f5;
}
.v-list li .v-item__link {
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  display: block;
  color: inherit;
  text-decoration: none;
}
.v-list li .v-item__link .v-item__inner {
  padding-right: 35px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2060%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'm60%2061.5-38.25%2038.25-9.75-9.75%2029.25-28.5-29.25-28.5%209.75-9.75z'%20fill%3D'%23c7c7cc'%2F%3E%3C%2Fsvg%3E");
  background-size: 10px 20px;
  background-repeat: no-repeat;
  background-position: 95% center;
  background-position: -webkit-calc(100% - 15px) center;
  background-position: calc(100% - 15px) center;
}
.v-list li .v-item__content {
  padding-left: 15px;
  box-sizing: border-box;
  display: flex;
}
.v-list li .v-item__media {
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
  box-sizing: border-box;
  padding-top: 8px;
  padding-bottom: 7px;
}
.v-list li .v-item__media i {
  width: 22px;
  height: 22px;
}
.v-list li .v-item__media + .v-item__inner {
  margin-left: 15px;
}
.v-list li .v-item__inner {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 7px;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-box-pack: justify;
  align-items: center;
  align-self: center;
  padding-right: 45px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2060%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'm60%2061.5-38.25%2038.25-9.75-9.75%2029.25-28.5-29.25-28.5%209.75-9.75z'%20fill%3D'%23c7c7cc'%2F%3E%3C%2Fsvg%3E");
  background-size: 10px 20px;
  background-repeat: no-repeat;
  background-position: 95% center;
  background-position: -webkit-calc(100% - 15px) center;
  background-position: calc(100% - 15px) center;
}
.v-list li .v-item__inner.v-item--noarrow {
  padding-right: 15px;
  background-image: none;
}
.v-list li .v-item__inner:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  height: 1px;
  width: 100%;
  background-color: #c8c7cc;
  display: block;
  z-index: 15;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
html.pixel-ratio-2 .v-list li .v-item__inner:after {
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
html.pixel-ratio-3 .v-list li .v-item__inner:after {
  -webkit-transform: scaleY(0.33);
  transform: scaleY(0.33);
}
.v-list li .v-item__inner .v-item-title {
  -webkit-flex-shrink: 1;
  -ms-flex: 0 1 auto;
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.v-list li .v-item__inner .v-item-subtitle {
  font-size: 15px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
}
.v-list li .v-item__inner .v-item-text {
  font-size: 15px;
  color: #8e8e93;
  line-height: 21px;
  position: relative;
  overflow: hidden;
  height: 42px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.v-list li .v-item-after {
  white-space: nowrap;
  color: #8e8e93;
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  margin-left: 5px;
  display: flex;
  max-height: 28px;
}
.v-list:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: auto;
  right: auto;
  height: 1px;
  width: 100%;
  background-color: #c8c7cc;
  display: block;
  z-index: 15;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
html.pixel-ratio-2 .v-list:before {
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
html.pixel-ratio-3 .v-list:before {
  -webkit-transform: scaleY(0.33);
  transform: scaleY(0.33);
}
.v-list:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  height: 1px;
  width: 100%;
  background-color: #c8c7cc;
  display: block;
  z-index: 15;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
html.pixel-ratio-2 .v-list:after {
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
html.pixel-ratio-3 .v-list:after {
  -webkit-transform: scaleY(0.33);
  transform: scaleY(0.33);
}
.v-list.v-list--inset {
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 7px;
}
.v-list.v-list--inset:before {
  display: none;
}
.v-list.v-list--inset:after {
  display: none;
}
.v-list.v-list--inset .content-block-title {
  margin-left: 0;
  margin-right: 0;
}
.v-list.v-list--inset li:first-child > a {
  border-radius: 7px 7px 0 0;
}
.v-list.v-list--inset li:last-child > a {
  border-radius: 0 0 7px 7px;
}
.v-list.v-list--inset li:first-child:last-child > a {
  border-radius: 7px;
}
/* === dialog === */
.v-dialog {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 11000;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.v-modal {
  width: 270px;
  text-align: center;
  border-radius: 13px;
  overflow: hidden;
  color: #000;
}
.v-modal-inner {
  padding: 15px;
  border-radius: 13px 13px 0 0;
  position: relative;
  background: #FFFFFF;
}
.v-modal-inner:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  height: 1px;
  width: 100%;
  background-color: #999999;
  display: block;
  z-index: 15;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
html.pixel-ratio-2 .v-modal-inner:after {
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
html.pixel-ratio-3 .v-modal-inner:after {
  -webkit-transform: scaleY(0.33);
  transform: scaleY(0.33);
}
.v-modal-title {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}
.v-modal-title + .v-modal-text {
  margin-top: 5px;
}
.v-modal-buttons {
  height: 44px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.v-modal-button {
  width: 100%;
  padding: 0 5px;
  height: 44px;
  font-size: 17px;
  line-height: 44px;
  text-align: center;
  color: #1A98FF;
  display: block;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  background: #FFFFFF;
}
.v-modal-button:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  bottom: auto;
  width: 1px;
  height: 100%;
  background-color: #999999;
  display: block;
  z-index: 15;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
html.pixel-ratio-2 .v-modal-button:after {
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
}
html.pixel-ratio-3 .v-modal-button:after {
  -webkit-transform: scaleX(0.33);
  transform: scaleX(0.33);
}
.v-modal-button:first-child {
  border-radius: 0 0 0 13px;
}
.v-modal-button:last-child {
  border-radius: 0 0 13px 0;
}
.v-modal-button:last-child:after {
  display: none;
}
.v-modal-button:first-child:last-child {
  border-radius: 0 0 13px 13px;
}
input.v-modal-text-input {
  box-sizing: border-box;
  height: 30px;
  background: #fff;
  margin: 0;
  margin-top: 15px;
  padding: 0 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  width: 100%;
  font-size: 14px;
  font-family: inherit;
  display: block;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  appearance: none;
}
input.v-modal-text-input + input.v-modal-text-input {
  margin-top: 5px;
}
.v-modal-input-double + .v-modal-input-double input.v-modal-text-input {
  border-top: 0;
  margin-top: 0;
}
/* === Action Sheet === */
.v-action-sheet {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 11000;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.v-action-sheet__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 13500;
  width: 100%;
}
.v-action-sheet__group {
  margin: 8px;
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.v-action-sheet__button,
.v-action-sheet__label {
  width: 100%;
  text-align: center;
  font-weight: normal;
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  display: block;
  position: relative;
  overflow: hidden;
}
.v-action-sheet__button:after,
.v-action-sheet__label:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  z-index: 15;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
html.pixel-ratio-2 .v-action-sheet__button:after,
html.pixel-ratio-2 .v-action-sheet__label:after {
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
html.pixel-ratio-3 .v-action-sheet__button:after,
html.pixel-ratio-3 .v-action-sheet__label:after {
  -webkit-transform: scaleY(0.33);
  transform: scaleY(0.33);
}
.v-action-sheet__button a,
.v-action-sheet__label a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.v-action-sheet__button b,
.v-action-sheet__label b {
  font-weight: 500;
}
.v-action-sheet__button.v-action-sheet__button--bold,
.v-action-sheet__label.v-action-sheet__button--bold {
  font-weight: 500;
}
.v-action-sheet__button.v-action-sheet__button--red,
.v-action-sheet__label.v-action-sheet__button--red {
  color: #FF2929;
}
.v-action-sheet__button:first-child,
.v-action-sheet__label:first-child {
  border-radius: 13px 13px 0 0;
}
.v-action-sheet__button:last-child,
.v-action-sheet__label:last-child {
  border-radius: 0 0 13px 13px;
}
.v-action-sheet__button:last-child:after,
.v-action-sheet__label:last-child:after {
  display: none;
}
.v-action-sheet__button:first-child:last-child,
.v-action-sheet__label:first-child:last-child {
  border-radius: 13px;
}
.v-action-sheet__button.disabled,
.v-action-sheet__label.disabled {
  opacity: 0.9;
  color: #999999;
}
.v-action-sheet__button {
  cursor: pointer;
  height: 54px;
  line-height: 54px;
  font-size: 20px;
  color: #1A98FF;
  white-space: normal;
  text-overflow: ellipsis;
}
.v-action-sheet__label {
  font-size: 13px;
  line-height: 1.3;
  min-height: 54px;
  padding: 8px 10px;
  color: #8a8a8a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (orientation: landscape) {
  .v-action-sheet__label {
    min-height: 44px;
  }
  .v-action-sheet__button {
    height: 44px;
    line-height: 44px;
  }
}
/* === Preloader === */
.v-preloader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 11000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.v-preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 10px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  z-index: 13500;
  border-radius: 5px;
  color: #fff;
  text-align: center;
}
.v-preloader__content .v-preloader__spinner {
  display: block;
  width: 34px;
  height: 34px;
}
.v-preloader__content .v-preloader__spinner ~ span {
  padding: 4px 4px 0 4px;
}
/* === Toast === */
.v-toast {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 11000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.v-toast__content {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 12px 18px;
  max-width: 220px;
  line-height: 24px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 13500;
  border-radius: 5px;
  color: #fff;
  transform: translate(-50%, -50%);
}
.v-toast__content.top-toast {
  top: 80px;
  transform: translate(-50%, 0);
}
.v-toast__content.bottom-toast {
  top: auto;
  bottom: 80px;
  transform: translate(-50%, 0);
}
.v-toast__content i.icon {
  flex: 1;
  line-height: 60px;
  padding-top: 5px;
  font-size: 50px;
  color: #fff;
  display: none;
}
.v-toast__content span {
  flex: 1;
}
label.v-item__radio {
  cursor: pointer;
}
label.v-item__radio input[type="checkbox"],
label.v-item__radio input[type="radio"] {
  display: none;
}
label.v-item__radio input[type="checkbox"] ~ .v-item__inner,
label.v-item__radio input[type="radio"] ~ .v-item__inner {
  padding-right: 35px;
  background-image: none;
}
label.v-item__radio input[type="checkbox"]:checked ~ .v-item__inner,
label.v-item__radio input[type="radio"]:checked ~ .v-item__inner {
  background: no-repeat center;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='#007aff' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
  background-position: 90% center;
  background-position: -webkit-calc(100% - 15px) center;
  background-position: calc(100% - 15px) center;
  -webkit-background-size: 13px 10px;
  background-size: 13px 10px;
}
.v-item__checkbox {
  cursor: pointer;
}
.v-item__checkbox i.icon-form-checkbox {
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 22px;
  border: 1px solid #c7c7cc;
  box-sizing: border-box;
}
.v-item__checkbox i.icon-form-checkbox:after {
  content: ' ';
  position: absolute;
  left: 50%;
  margin-left: -6px;
  top: 50%;
  margin-top: -4px;
  width: 12px;
  height: 9px;
}
.v-item__checkbox input[type="checkbox"],
.v-item__checkbox input[type="radio"] {
  display: none;
}
.v-item__checkbox input[type="checkbox"]:checked + .v-item__media i.icon-form-checkbox,
.v-item__checkbox input[type="radio"]:checked + .v-item__media i.icon-form-checkbox {
  border: none;
  background-color: #1A98FF;
}
.v-item__checkbox input[type="checkbox"]:checked + .v-item__media i.icon-form-checkbox:after,
.v-item__checkbox input[type="radio"]:checked + .v-item__media i.icon-form-checkbox:after {
  background: no-repeat center;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 12 9' xml:space='preserve'><polygon fill='#ffffff' points='12,0.7 11.3,0 3.9,7.4 0.7,4.2 0,4.9 3.9,8.8 3.9,8.8 3.9,8.8 '/></svg>");
  -webkit-background-size: 12px 9px;
  background-size: 12px 9px;
}
.v-item__checkbox input[type="checkbox"] ~ .v-item__inner,
.v-item__checkbox input[type="radio"] ~ .v-item__inner {
  padding-right: 15px;
  background-image: none;
}
/* === pull-refresh === */
.v-pull-refresh__content {
  position: relative;
}
.v-pull-refresh__layer {
  width: 100%;
  height: 44px;
  margin-top: -44px;
  position: relative;
  left: 0;
  top: 0;
  line-height: 44px;
  font-size: 14px;
  text-align: center;
  color: #666;
}
.loader {
  width: 100%;
  text-align: center;
  height: 100%;
}
/**
* refreshing
*/
.v-pull-refresh__content.refreshing {
  transform: translate3d(0, 44px, 0);
  transition-duration: 300ms;
}
/**
* refreshdone
*/
.v-pull-refresh__content.refreshdone {
  transform: translate3d(0, 0, 0);
  transition-duration: 300ms;
}
.v-infinite-scroll {
  height: 100%;
  overflow-y: auto;
}
.v-infinite-scroll .v-infinite-scroll__loader {
  text-align: center;
  padding: 10px 0;
}
