@charset "UTF-8";
.pointer {
  cursor: pointer;
}

/**
* flex start
*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex-jc-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-jc-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-jc-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-jc-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-space-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.flex-ai-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-ai-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-ai-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-ai-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-ai-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.flex-ac-center {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}

.flex-ac-space-between {
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
}

.flex-ac-space-around {
  -webkit-align-content: space-around;
      -ms-flex-line-pack: distribute;
          align-content: space-around;
}

/**
* 文本...
*/
.line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.line-2 {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-3 {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.border {
  border: 1px solid #ccc;
}

.border-t {
  border-top: 1px solid #ccc;
}

.border-r {
  border-right: 1px solid #ccc;
}

.border-b {
  border-bottom: 1px solid #ccc;
}

.border-l {
  border-left: 1px solid #ccc;
}

.wrap {
  min-width: 1200px;
  width: 100%;
  position: relative;
}

.container {
  width: 1200px;
}
.container.container-center {
  margin: 0 auto;
}

.hide {
  display: none;
}

@media (max-width: 767.98px) {
  .wrap-ml-left {
    margin-left: 22px !important;
  }
}
/*修改滚动条样式*/
.scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  margin-bottom: -17px;
  margin-right: -17px;
}

.scrollbar::-webkit-scrollbar-track {
  background: rgb(239, 239, 239);
}

.scrollbar::-webkit-scrollbar-thumb {
  background: #bfbfbf;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #295095;
}

.scrollbar::-webkit-scrollbar-corner {
  background: #295095;
}

.component-nav {
  min-width: 1200px;
  height: 60px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-transition: 0.36s;
  transition: 0.36s;
  background: #295095;
}
.component-nav .container {
  height: 100%;
}
.component-nav .wrap-ml-left {
  padding-left: 26px;
}
.component-nav .wrap-ml-left h1 img {
  width: 36px;
  height: 36px;
  display: block;
}
.component-nav .wrap-ml-left p {
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  margin-left: 8px;
}
.component-nav nav div {
  color: #fff;
  height: 60px;
  line-height: 60px;
  padding: 0 24px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}
.component-nav nav div.active {
  background: rgba(255, 255, 255, 0.1);
}
.component-nav nav div.active::before {
  position: absolute;
  content: "";
  left: 36%;
  right: 36%;
  bottom: 8px;
  background: #fff;
  height: 3px;
  border-radius: 2px;
}
.component-nav nav div:hover {
  background: rgba(255, 255, 255, 0.1);
}

.component-page-footer {
  background: #2e3033;
}
.component-page-footer .component-page-footer-main {
  padding: 24px 0;
}
.component-page-footer .component-page-footer-main .component-page-footer-nav-box {
  width: 720px;
  margin: 0 auto;
  display: block;
}
.component-page-footer .component-page-footer-main .footer-nav-item {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
}
.component-page-footer .body-description {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.6;
}
.component-page-footer #copyright {
  height: 68px;
  color: #ccc;
  font-size: 14px;
}
.component-page-footer #copyright span {
  padding-right: 12px;
}
.component-page-footer #copyright img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.component-page-footer #copyright a {
  padding-right: 12px;
  color: #ccc;
  cursor: pointer;
}
.component-page-footer #copyright a:hover {
  color: #409eff;
}

.image-viewer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.image-viewer__btn {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.image-viewer__close {
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #fff;
  background-color: #606266;
  padding: 6px;
}

.image-viewer__canvas {
  width: 100%;
  height: 100%;
  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;
}

.image-viewer__actions {
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 282px;
  height: 44px;
  padding: 0 23px;
  background-color: #606266;
  border-color: #fff;
  border-radius: 22px;
}

.image-viewer__actions__inner {
  width: 100%;
  height: 100%;
  text-align: justify;
  cursor: default;
  font-size: 23px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.image-viewer__next,
.image-viewer__prev {
  top: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #fff;
  background-color: #606266;
  border-color: #fff;
}

.image-viewer__prev {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 40px;
}

.image-viewer__next {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
  text-indent: 2px;
}

.image-viewer__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: #000;
}

.image-viewer__index {
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 44px;
  line-height: 44px;
  padding: 0 23px;
  background-color: #606266;
  border-color: #fff;
  border-radius: 22px;
  color: #fff;
}

.viewer-fade-enter-active {
  -webkit-animation: viewer-fade-in 0.3s;
          animation: viewer-fade-in 0.3s;
}

.viewer-fade-leave-active {
  -webkit-animation: viewer-fade-out 0.3s;
          animation: viewer-fade-out 0.3s;
}

@-webkit-keyframes viewer-fade-in {
  0% {
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes viewer-fade-in {
  0% {
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes viewer-fade-out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}
@keyframes viewer-fade-out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
select {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-size: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

footer,
header,
menu,
nav,
section {
  display: block;
}

input,
input[type=search],
button,
select,
option,
textarea,
a {
  outline: none;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  background: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  color: #333;
}

body,
input,
textarea {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #333;
}

div,
section,
header,
footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

[v-cloak] {
  display: none;
}

html,
body {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-text-size-adjust: 100% !important;
  background: #f8fafd;
  color: #333;
  min-width: 1200px;
}

.el-row {
  margin: 0 !important;
}