.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.free-top {
  margin-top: auto;
}
.free-left {
  margin-left: auto;
}
.free-right {
  margin-right: auto;
}
.free-bottom {
  margin-bottom: auto;
}
.order-before {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.order-after {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.items-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.self-center {
  -ms-flex-item-align: center;
  align-self: center;
}
.self-baseline {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
.self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.self-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.self-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.content-start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.content-end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.content-center {
  -ms-flex-line-pack: center;
  align-content: center;
}
.content-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.content-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}
.content-stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.flex-min {
  min-height: 0;
  min-width: 0;
}
.flex-max {
  max-height: 100%;
  max-width: 100%;
}
.flex-golden {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 61.80339887%;
  flex: 0 1 61.80339887%;
}
.flex-initial {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.flex-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.flex-none {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flex-2 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}
.flex-4 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}
.flex-5 {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
}
.flex-6 {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}
.flex-7 {
  -webkit-box-flex: 7;
  -ms-flex: 7;
  flex: 7;
}
.flex-8 {
  -webkit-box-flex: 8;
  -ms-flex: 8;
  flex: 8;
}
.flex-9 {
  -webkit-box-flex: 9;
  -ms-flex: 9;
  flex: 9;
}
.flex-10 {
  -webkit-box-flex: 10;
  -ms-flex: 10;
  flex: 10;
}
.flex-11 {
  -webkit-box-flex: 11;
  -ms-flex: 11;
  flex: 11;
}
.flex-12 {
  -webkit-box-flex: 12;
  -ms-flex: 12;
  flex: 12;
}
.grow-0 {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.grow-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.grow-2 {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.grow-3 {
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
}
.grow-4 {
  -webkit-box-flex: 4;
  -ms-flex-positive: 4;
  flex-grow: 4;
}
.grow-5 {
  -webkit-box-flex: 5;
  -ms-flex-positive: 5;
  flex-grow: 5;
}
.grow-6 {
  -webkit-box-flex: 6;
  -ms-flex-positive: 6;
  flex-grow: 6;
}
.grow-7 {
  -webkit-box-flex: 7;
  -ms-flex-positive: 7;
  flex-grow: 7;
}
.grow-8 {
  -webkit-box-flex: 8;
  -ms-flex-positive: 8;
  flex-grow: 8;
}
.grow-9 {
  -webkit-box-flex: 9;
  -ms-flex-positive: 9;
  flex-grow: 9;
}
.grow-10 {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
}
.grow-11 {
  -webkit-box-flex: 11;
  -ms-flex-positive: 11;
  flex-grow: 11;
}
.grow-12 {
  -webkit-box-flex: 12;
  -ms-flex-positive: 12;
  flex-grow: 12;
}
.shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.shrink-1 {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.shrink-2 {
  -ms-flex-negative: 2;
  flex-shrink: 2;
}
.shrink-3 {
  -ms-flex-negative: 3;
  flex-shrink: 3;
}
.shrink-4 {
  -ms-flex-negative: 4;
  flex-shrink: 4;
}
.shrink-5 {
  -ms-flex-negative: 5;
  flex-shrink: 5;
}
.shrink-6 {
  -ms-flex-negative: 6;
  flex-shrink: 6;
}
.shrink-7 {
  -ms-flex-negative: 7;
  flex-shrink: 7;
}
.shrink-8 {
  -ms-flex-negative: 8;
  flex-shrink: 8;
}
.shrink-9 {
  -ms-flex-negative: 9;
  flex-shrink: 9;
}
.shrink-10 {
  -ms-flex-negative: 10;
  flex-shrink: 10;
}
.shrink-11 {
  -ms-flex-negative: 11;
  flex-shrink: 11;
}
.shrink-12 {
  -ms-flex-negative: 12;
  flex-shrink: 12;
}
.basis-0 {
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
}
.basis-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
}
.basis-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
}
.basis-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.basis-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
}
.basis-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
}
.basis-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.basis-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
}
.basis-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
}
.basis-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
}
.basis-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
}
.basis-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
}
.basis-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.basis-100vw {
  -ms-flex-preferred-size: 100vw;
  flex-basis: 100vw;
}
.basis-100vh {
  -ms-flex-preferred-size: 100vh;
  flex-basis: 100vh;
}
.basis-100vmax {
  -ms-flex-preferred-size: 100vmax;
  flex-basis: 100vmax;
}
.basis-100vmin {
  -ms-flex-preferred-size: 100vmin;
  flex-basis: 100vmin;
}
.basis-golden {
  -ms-flex-preferred-size: 61.80339887%;
  flex-basis: 61.80339887%;
}
.basis-content {
  -ms-flex-preferred-size: content;
  flex-basis: content;
}
.basis-auto {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media (orientation: portrait) {
.flex\@portrait {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.inline-flex\@portrait {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.flex-wrap\@portrait {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-nowrap\@portrait {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.flex-wrap-reverse\@portrait {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}
}
@media (orientation: landscape) {
.flex\@landscape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.inline-flex\@landscape {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.flex-wrap\@landscape {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-nowrap\@landscape {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.flex-wrap-reverse\@landscape {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}
}
[class*="__search"] {
  margin-bottom: 6px;
}
[class*="__search"] .ivu-form-item {
  margin-right: 20px!important;
}
[class*="__search"] .ivu-form-item .ivu-form-item-content {
  float: left;
  margin-left: 0!important;
}
.router-view-fade-enter-active {
  -webkit-animation: router-view-fade 1s;
          animation: router-view-fade 1s;
}
.router-view-fade-leave-active {
  animation: router-view-fade 0.3s reverse;
}
@-webkit-keyframes router-view-fade {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
@keyframes router-view-fade {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
body .ivu-modal .ivu-modal-body {
  min-height: 100px;
  max-height: 600px !important;
}
.c-primary {
  color: #2db7f5;
}
.c-success {
  color: #19be6b;
}
.c-warning {
  color: #ff9900;
}
.c-error {
  color: #ed4014;
}
.c-fail {
  color: #999;
}
.c-disabled {
  color: #808695;
}
.c-black {
  color: #515a6e;
}
/* 清除浮动 */
.no-float:after {
  clear: both;
  content: '.';
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
  line-height: 0;
}
.no-scrollbar ::-webkit-scrollbar {
  width: 0;
  height: 0;
  color: transparent;
}
.search-wrap .ivu-form-item {
  margin-bottom: 16px;
}
.search-wrap .search-wrap_btn-content {
  float: right;
}
.search-wrap .search-wrap_btn-content button {
  margin-left: 10px;
}
.body > .ivu-layout {
  padding-bottom: 10px !important;
}
.body > .ivu-layout > .ivu-layout-content {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.ivu-form .ivu-form-item.ivu-form-item-error .ivu-form-item-label {
  color: #ed4014;
}
.ivu-modal-wrap .ivu-modal .ivu-modal-body {
  max-height: 70vh;
  overflow-y: auto;
}
.ivu-table-cell {
  padding-left: 12px;
  padding-right: 12px;
}
.ivu-checkbox-group-item {
  margin-top: 6px;
  margin-bottom: 6px;
}
.ivu-checkbox-group-item:first-child {
  margin-top: 0;
}
.ivu-menu-vertical .ivu-menu-submenu-title {
  background-color: #d0d4dc;
}
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item {
  color: #fff;
}
.ivu-menu-light.ivu-menu-vertical .ivu-menu-item {
  border-bottom: 1px solid #f2f2f2;
}
.ivu-menu-light.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu),
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item:hover,
.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item:hover,
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item-active {
  color: #5c9dff;
}
.ivu-menu-light.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu) {
  border-right-color: #5c9dff;
}
.ivu-input-number-input[disabled] {
  color: #333;
}
.required {
  position: relative;
}
.required::after {
  content: "*";
  position: absolute;
  top: -5px;
  left: -10px;
  color: red;
}
.img_w50 {
  width: 50px;
  height: 50px;
}
.mar-l10 {
  margin-left: 10px;
}
.mar-l20 {
  margin-left: 20px;
}
.mar-l30 {
  margin-left: 30px;
}
.mar-r10 {
  margin-right: 10px;
}
.mar-r20 {
  margin-right: 20px;
}
.mar-r30 {
  margin-right: 30px;
}
.mar-btm10 {
  margin-bottom: 10px ;
}
.pointer_s {
  cursor: pointer;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex_item_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.applymentResult {
  background: #f6ffed;
  border-color: #b7eb8f;
  border: 1px solid #e8eaec;
  padding: 10px;
  color: #52c41a;
  word-wrap: break-word;
}
.option_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#app {
  min-height: 500px;
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main[data-v-6bc7c5ba] {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #2c3e50 url(../img/login-bg.jpg);
  background-size: cover;
}
.main .login[data-v-6bc7c5ba] {
  width: 380px;
  background: #FFF;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.main .login .logo[data-v-6bc7c5ba] {
  height: 150px;
  background: #222834;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main .login .logo img[data-v-6bc7c5ba] {
  -webkit-transform: scale(0.24);
      -ms-transform: scale(0.24);
          transform: scale(0.24);
}
.main .login .login-form[data-v-6bc7c5ba] {
  padding: 30px 30px 0 30px;
}
.main .login .login-form .login-form-button[data-v-6bc7c5ba] {
  background-color: #e60146;
  border-color: #e60146;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.main .login .login-form .login-form-button[data-v-6bc7c5ba]:hover {
  opacity: 0.8;
}
.main .login .login-form .login-form-forgot[data-v-6bc7c5ba] {
  float: right;
}

.demo-spin-icon-load[data-v-d960adee] {
  -webkit-animation: ani-demo-spin-data-v-d960adee 1s linear infinite;
          animation: ani-demo-spin-data-v-d960adee 1s linear infinite;
}
@-webkit-keyframes ani-demo-spin-data-v-d960adee {
from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
}
@keyframes ani-demo-spin-data-v-d960adee {
from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
}
.loading-fade-enter-active[data-v-d960adee],
.loading-fade-leave-active[data-v-d960adee] {
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.loading-fade-enter[data-v-d960adee],
.loading-fade-leave-to[data-v-d960adee] {
  opacity: 0;
}
.ui-loading[data-v-d960adee] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  top: 0;
  z-index: 5000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ui-loading .tip[data-v-d960adee] {
  margin-top: 2px;
  color: #1890ff;
  font-size: 12px;
}

.wrap[data-v-7865fcda] {
  padding-right: 50px;
}

.title-wrap__title[data-v-08354113] {
  height: 14px;
  line-height: 1;
  padding-left: 10px;
  border-left: 3px solid #515a6e;
}
.title-wrap__sub-title[data-v-08354113] {
  font-size: 12px;
  margin-left: 10px;
  color: gray;
}
.title-wrap__body[data-v-08354113] {
  padding: 30px 13px 0;
}

.ui-export {
  margin-left: 10px;
}

.ui-import {
  display: inline-block;
  margin-left: 10px;
}

[class*="container__"] {
  margin-bottom: 20px;
}
.container__table {
  position: relative;
}
.container__page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
}
.container__page .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.upload-file--continuous {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.upload-file--continuous .upload_input {
  width: 58px;
}
.upload-file--continuous .upload_block {
  width: 58px;
  height: 58px;
  line-height: 58px;
  position: relative;
}
.upload-file--continuous .upload_file {
  width: 58px;
  height: 58px;
  line-height: 58px;
  position: relative;
  margin-right: 6px;
}
.upload-file--continuous .upload_file img,
.upload-file--continuous .upload_file object {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.upload-file--continuous .upload_file .remove {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
  -webkit-transform: translate(40%, -40%);
      -ms-transform: translate(40%, -40%);
          transform: translate(40%, -40%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  color: #515a6e;
}
.upload-file--continuous .upload_img_show {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.upload-file--separate .upload_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.upload-file--separate .upload_content {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.upload-file--separate .upload_content .list {
  width: 120px;
  margin: 0 10px 10px 0;
}
.upload-file--separate .upload_content .list .cover {
  position: relative;
  width: 120px;
  height: 120px;
  cursor: pointer;
}
.upload-file--separate .upload_content .list .cover .img {
  width: 100%;
  height: 100%;
}
.upload-file--separate .upload_content .list .cover.hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.upload-file--separate .upload_content .list .cover .remove {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  font-size: 30px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.upload-file--separate .upload_content .list .cover:hover.hover:before {
  background: rgba(0, 0, 0, 0.7);
}
.upload-file--separate .upload_content .list .cover:hover .remove {
  opacity: 1;
}
.video-wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.video-wrap--playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lds-dual-ring {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 32px;
  height: 32px;
  margin: 4px;
  border-radius: 50%;
  border: 3px solid #515a6e;
  border-color: #515a6e transparent #515a6e transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}
@-webkit-keyframes lds-dual-ring {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
}
@keyframes lds-dual-ring {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
}

