/**
 * 统一化的所有颜色
 */
/* 安全等级 */
/* 中性色 */
.common-color--darkred {
  color: #a00 !important;
}
.common-color--red {
  color: #e55 !important;
}
.common-color--yellow {
  color: #f90 !important;
}
.common-color--gold {
  color: #fc0 !important;
}
.common-color--blue {
  color: #4d8dd9 !important;
}
.common-color--lightgreen {
  color: #3dc4b8 !important;
}
.common-color--green {
  color: #22b07b !important;
}
.common-color--gray {
  color: #80848f !important;
}
.common-bg--darkred {
  background-color: #a00 !important;
}
.common-bg--red {
  background-color: #e55 !important;
}
.common-bg--yellow {
  background-color: #f90 !important;
}
.common-bg--gold {
  background-color: #fc0 !important;
}
.common-bg--blue {
  background-color: #4d8dd9 !important;
}
.common-bg--lightgreen {
  background-color: #3dc4b8 !important;
}
.common-bg--green {
  background-color: #22b07b !important;
}
.common-bg--gray {
  background-color: #80848f !important;
}
html,
body {
  margin: 0;
}
html {
  height: 100%;
  overflow-y: scroll;
}
body {
  color: #495060;
  min-width: 1348px;
  background: #E6EDF5;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
li {
  list-style: none;
}
label {
  font-weight: normal;
}
a {
  color: #4e8dda;
  text-decoration: none;
}
a:hover,
a:visited {
  color: #3e80da;
}
/**
 * @file 覆盖 sf-vue-component 组件的样式
 */
.shadow-bottom,
body .sfv-table_cell_detail {
  box-shadow: inset 0 -1px 0 #eee;
}
body {
  /* 组件公共样式覆盖 */
  /*面包屑*/
  /*panel && scroll*/
  /*end*/
  /*sf-notify*/
  /*end*/
  /* 覆盖textarea组件不会自动换行的问题 */
}
body .sfv-modal .sfv-msgbox {
  max-width: 800px;
}
body .hand {
  cursor: pointer;
}
body .sfv-modal_footer {
  overflow: hidden;
}
body .sfv-msgbox {
  max-width: 800px;
}
body .sfv-time-field {
  line-height: normal;
}
body .sfv-panel_body-inner {
  padding: 0 12px;
}
body .sf-com-breadcrumb {
  padding: 10px 0;
}
body .sf-scroll {
  overflow-y: scroll;
}
body .sf-scroll::-webkit-scrollbar {
  width: 5px;
}
body .sf-scroll::-webkit-scrollbar-button {
  display: none;
}
body .sf-scroll::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 4px;
}
body .sf-scroll::-webkit-scrollbar-track {
  background: #d6d6d6;
}
body .sf-scroll::-webkit-scrollbar-track-piece {
  background: #f5f5f5;
}
body .sfv-card__shadow {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
body .sfv-card__radiu {
  border-radius: 0;
}
body .sf-notify {
  position: relative;
  background: #fdf3e4;
  padding: 10px;
  text-align: center;
  color: #a6660a;
  border: 1px solid #f2dfc3;
}
body .sf-notify .iconfont {
  margin-right: 5px;
}
body .sf-notify .close {
  position: absolute;
  right: 12px;
  top: 5px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.5;
  color: #333;
}
body .sf-notify .close:hover {
  opacity: 0.8;
}
body #sfMask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 1010;
}
body #sfMask.sfv-mask-position {
  display: block;
}
body .sfv-table .sfv-checkbox-input:disabled + .sfv-checkbox-wrap:before {
  height: 0;
  width: 8px;
  left: 3px;
  top: 5px;
}
body .sfv-textfield.sfv-textarea textarea {
  white-space: pre-wrap;
}
body .sfv-scrollbar-auto-height + .sfv-table-empty-wrap {
  position: relative;
  height: 100%;
  padding-bottom: 12px;
}
body .sfv-table_cell_detail {
  background-color: #f9f9f9;
}
body .sfv-modal_content {
  border-radius: 10px;
  overflow: hidden;
}
body .sfv-modal_body {
  overflow: visible;
}
body .sfv-modal_header {
  border-bottom: none;
}
body .sfv-modal_close {
  z-index: 1000;
}
/*=================================================================================
 *
 *   重置系统默认样式
 *
 *=================================================================================*/
*,
*:before,
*:after {
  box-sizing: border-box;
}
#body {
  /*outline: 1px solid #f00;debug*/
  height: calc(100vh - 60px);
  margin-top: 60px;
  min-height: 500px;
  overflow: auto;
}
/* 默认背景色 */
.bgc-default {
  height: inherit;
  background-color: #fff;
}
.sim-link {
  color: #4677c6;
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  transition: 0.3s color;
}
.sim-link:hover {
  color: #6892d1;
  text-decoration: none;
}
a.btn-link.btn-link-blue {
  color: #4d8dd9;
  text-decoration: none;
}
a.btn-link.btn-link-blue:hover {
  color: #6892d1;
  text-decoration: none;
}
span.btn-link--text {
  color: #4d8dd9;
  text-decoration: none;
  cursor: pointer;
  margin-right: 24px;
}
span.btn-link--text:hover {
  color: #6892d1;
  text-decoration: none;
}
.common-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.no-padding {
  padding: 0;
}
.x-common-separator {
  display: inline-block;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(0deg, #fff, #ddd 50%, #fff);
}
fieldset {
  padding: 20px 0 5px;
  vertical-align: top;
  text-align: left;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
fieldset legend {
  margin-left: 12px;
  margin-bottom: 0;
  width: auto;
  font-size: 15px;
  padding: 0 12px;
  border: 0;
  color: #333;
}
.sfv-fieldlabel-top {
  width: auto !important;
}
/*media*/
.sf-media {
  margin-top: 15px;
}
.sf-media:first-child {
  margin-top: 0;
}
.sf-media-right,
.sf-media > .pull-right {
  padding-left: 20px;
}
.sf-media-left,
.sf-media > .pull-left {
  padding-right: 20px;
}
.sf-media-left,
.sf-media-right,
.sf-media-body {
  display: table-cell;
  vertical-align: top;
}
.sf-media-body {
  width: 10000px;
}
.sf-media-middle {
  vertical-align: middle;
}
.sf-media-bottom {
  vertical-align: bottom;
}
.sf-media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.noscroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 16px;
}
[v-cloak] {
  display: none;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.common-tag-square {
  display: inline-block;
  min-width: 60px;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 16px;
}
.common-wrapper {
  width: 1280px;
  margin: 0 auto;
}
.common-title {
  font-size: 36px;
  color: #000;
}
.common-sub-title {
  font-size: 18px;
  color: #666666;
}
.common-btn {
  border: 1px solid #0A69FA;
  border-radius: 2px;
}
.common-price-table {
  color: #000;
  margin-top: 40px;
}
.common-product__text--empty {
  font-size: 20px;
  line-height: 18px;
  color: #999;
}
.common-anchor {
  display: block;
  height: 0;
}
.common-price-table-cell {
  display: inline-block;
  min-height: 28px;
  line-height: 28px;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
#ECHAT_mini_icon:hover {
  color: #fff;
}
.ivu-drawer {
  width: auto;
  position: fixed;
  top: 0;
  height: calc(100% - 90px);
  margin-top: 75px;
}
.ivu-drawer-inner {
  position: absolute;
}
.ivu-drawer-left {
  left: 0;
}
.ivu-drawer-right {
  right: 0;
}
.ivu-drawer-hidden {
  display: none !important;
}
.ivu-drawer-wrap {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.ivu-drawer-wrap-inner {
  position: absolute;
  overflow: hidden;
}
.ivu-drawer-wrap * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.ivu-drawer-mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(55, 55, 55, 0.6);
  height: 100%;
  z-index: 1001;
}
.ivu-drawer-mask-hidden {
  display: none;
}
.ivu-drawer-mask-inner {
  position: absolute;
}
.ivu-drawer-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #fff;
  border: 0;
  border-radius: 5px;
  background-clip: padding-box;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ivu-drawer-content-no-mask {
  pointer-events: auto;
}
.ivu-drawer-header {
  border-bottom: 1px solid #e8eaec;
  padding: 14px 16px;
  line-height: 1;
}
.ivu-drawer-header p,
.ivu-drawer-header-inner {
  display: inline-block;
  width: 100%;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  color: #17233d;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ivu-drawer-header p i,
.ivu-drawer-header p span {
  vertical-align: middle;
}
.ivu-drawer-close {
  z-index: 1;
  font-size: 12px;
  right: 8px;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  left: -24px;
  top: 38px;
  width: 24px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: inset -1px 0 4px 0 rgba(0, 0, 0, 0.13);
}
.ivu-drawer-close .ivu-icon-ios-close {
  font-size: 31px;
  color: #999;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  position: relative;
  top: 1px;
}
.ivu-drawer-close .ivu-icon-ios-close:hover {
  color: #444;
}
.ivu-drawer-body {
  width: 100%;
  padding: 24px 32px;
  max-height: 100%;
  height: calc(100% - 51px);
  font-size: 12px;
  line-height: 1.5;
  word-wrap: break-word;
  position: absolute;
  overflow: auto;
}
.ivu-drawer-no-header .ivu-drawer-body {
  height: 100%;
  word-break: break-all;
}
.ivu-drawer-no-mask {
  pointer-events: none;
}
.ivu-time-with-hash {
  cursor: pointer;
}
.ivu-time-with-hash:hover {
  text-decoration: underline;
}
.el-carousel__indicator.el-carousel__indicator--horizontal {
  padding: 12px 5px;
}
.el-carousel__indicator--horizontal .el-carousel__button {
  height: 4px;
  width: 35px;
  border-radius: 1px;
  opacity: 0.2;
  background: #FFFFFF;
}
.el-carousel .el-carousel__indicators--horizontal {
  bottom: 52px;
}
.el-carousel__indicator.is-active button {
  background: #1A93FF;
  opacity: 1;
}
.el-tabs .el-tabs__nav-scroll {
  display: flex;
  justify-content: center;
}
.el-tabs .el-tabs__active-bar {
  background-color: #0A69FA;
}
.el-tabs .el-tabs__active-bar:before {
  content: '';
  display: inline-block;
  position: absolute;
  border-width: 0 4px 4px;
  border-style: solid;
  border-color: transparent transparent #0A69FA;
  bottom: 2px;
  left: 50%;
  transform: translate(-50%, 0);
}
.el-tabs .el-tabs__header {
  margin-bottom: 0;
}
.el-tabs .el-tabs__item {
  font-size: 18px;
  color: #333;
  padding: 0 64px;
  height: 54px;
  line-height: 54px;
}
.el-tabs .el-tabs__item:hover {
  color: #333;
}
.el-tabs .el-tabs__nav-wrap::after {
  height: 0;
}
.el-tabs .el-tabs__item.is-active {
  color: #0A69FA;
  font-size: 18px;
}
.el-tabs .el-tabs__item.is-active:hover {
  color: #0A69FA;
}

.float-box[data-v-7089022a] {
  position: fixed;
  right: 10px;
  top: calc(50% - 130px);
  height: 208px;
  z-index: 1100;
}
.float-box__item[data-v-7089022a] {
  width: 60px;
  height: 70px;
}
.float-box__back-tpp[data-v-7089022a] {
  position: absolute;
  right: 0;
}
.float-box__backto-top[data-v-7089022a] {
  width: 60px;
  height: 60px;
  background: url(../image/top.db982af.png);
  background-size: cover;
}
.float-box__phone[data-v-7089022a] {
  background: url(../image/phone_hover.dbac93c.png);
  background-size: cover;
  z-index: 1200;
  cursor: pointer;
}
.float-box__chat[data-v-7089022a] {
  background: url(../image/chat.6a5a82f.png);
  background-size: cover;
  cursor: pointer;
  margin: 64px 0 4px;
}
.float-box__phone-number[data-v-7089022a] {
  position: absolute;
  overflow: hidden;
  right: 58px;
  top: 138px;
  width: 160px;
  height: 70px;
  line-height: 70px;
  background: #FF6E00;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding-left: 20px;
}
.fade-enter-active[data-v-7089022a],
.fade-leave-active[data-v-7089022a] {
  transition: all 0.3s;
}
.fade-enter[data-v-7089022a],
.fade-leave-to[data-v-7089022a] {
  width: 0;
  opacity: 0;
}

.header-menu .router-link-active .header-menu--active {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-block;
  height: 3px;
  width: 50px;
  background: #0A69FA;
}

.header-menu[data-v-05343d74] {
  height: 62px;
  color: #495060;
  display: inline-block;
  margin-left: 60px;
  position: relative;
  z-index: 100;
}
.header-menu__link[data-v-05343d74] {
  position: relative;
  box-sizing: border-box;
  min-width: 50px;
  margin: 0 20px;
  text-align: center;
  line-height: 62px;
  font-size: 16px;
  height: 62px;
  float: left;
  cursor: pointer;
}
.header-menu__link-a[data-v-05343d74] {
  display: inline-block;
  height: 100%;
  color: #495060;
}
.header-menu__link-a[data-v-05343d74]:hover,
.header-menu__link-a[data-v-05343d74]:visited {
  color: #495060;
}

.username-box[data-v-c2e0b196] {
  height: 100%;
  display: inline-block;
}
.img-warpper[data-v-c2e0b196] {
  height: 100%;
  display: flex;
  align-items: center;
}
.logo[data-v-c2e0b196] {
  cursor: pointer;
  width: 170px;
  height: 40px;
}

.mod-header[data-v-49bf36f6] {
  position: relative;
  padding: 4px 0;
  background: #fff;
}
.header-content[data-v-49bf36f6] {
  display: flex;
  align-items: center;
  height: 100%;
  width: 1280px;
  margin: 0 auto;
}
.header-logo[data-v-49bf36f6] {
  margin: 10px 0 0 0;
  box-sizing: border-box;
  z-index: 99;
  position: absolute;
  left: 0;
  top: 0;
}
.service-content[data-v-49bf36f6] {
  position: relative;
  height: 100%;
}
.btn-box[data-v-49bf36f6] {
  float: left;
}
.btn-wrapper[data-v-49bf36f6] {
  position: relative;
  left: 20px;
  display: inline-block;
}
.login-btn[data-v-49bf36f6] {
  border: 1px solid #0A69FA;
  color: #0A69FA;
}

.try-free__success-info,
.try-free__btn {
  text-align: center;
}
.try-free__success-logo {
  height: 60px;
  width: 60px;
  margin-top: 13px;
}
.try-free__success-des {
  margin-top: 16px;
  font-size: 18px;
  color: #000;
}
.try-free__success-chat {
  margin-top: 34px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
.try-free__chat-online {
  margin-left: 16px;
}

.try-free__form .language-wrap {
  display: inline-block;
  margin-top: 6px;
  font-size: 16px;
  color: #000;
}
/*stylelint-disable*/
.sfv-textfield_input {
  font-size: 16px;
}
/*stylelint-enable*/

.try-free[data-v-896a3c00] {
  position: relative;
}
.try-free__header[data-v-896a3c00] {
  position: relative;
  top: -36px;
  background: #F7F8FA;
  padding: 30px 0;
  text-align: center;
}
.try-free__title[data-v-896a3c00] {
  font-weight: bold;
}
.try-free__des[data-v-896a3c00] {
  margin-top: 10px;
  font-size: 16px;
  color: #000;
}
.try-free__form[data-v-896a3c00] {
  margin-top: -20px;
  padding-right: 10px;
}
.try-free__btn[data-v-896a3c00] {
  text-align: center;
}
.try-free__content-star[data-v-896a3c00] {
  font-size: 14px;
  color: #f63;
}

.content-box .try-free__header {
  padding: 30px 0 0;
  background: none;
}
.content-box .try-free__title,
.content-box .try-free__des,
.content-box .sfv-fieldlabel {
  color: #fff;
}
.content-box .sfv-btn-primary {
  background-color: #00D184;
  border-color: #00D184;
  margin-left: 11px;
}
.content-box .sfv-btn-primary:hover {
  background-color: #00C47C;
}

.access-footer {
  height: 618px;
  background: #06142F;
}
.access-footer__content {
  height: 618px;
  margin: auto;
  background: url(../image/biaodan_bg.5f45cb2.png) 100% 100% / cover no-repeat;
}
.access-footer__body {
  width: 512px;
  height: 618px;
  padding-top: 60px;
  margin: auto;
}

.footer[data-v-5e96b6b8] {
  background: #1F2430;
}
.footer-info__wrapper[data-v-5e96b6b8] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 0;
}
.footer-info[data-v-5e96b6b8] {
  display: flex;
  padding-top: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-info__item[data-v-5e96b6b8] {
  display: flex;
  flex-direction: column;
  padding-left: 80px;
}
.footer-info__title[data-v-5e96b6b8] {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 30px;
}
.footer-info__content[data-v-5e96b6b8] {
  font-size: 20px;
  color: #999;
}
.footer-info__qr[data-v-5e96b6b8] {
  display: flex;
  margin-left: 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-info__qr-img[data-v-5e96b6b8] {
  width: 120px;
  height: 120px;
}
.footer-info__qr-des[data-v-5e96b6b8] {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.6;
  color: #FFF;
}
.footer-copyright__wrapper[data-v-5e96b6b8] {
  padding: 13px;
  background: #0F1117;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copyright__wrapper-item[data-v-5e96b6b8] {
  padding-right: 20px;
  font-size: 12px;
  opacity: 0.6;
  color: #FFF;
}
.footer-copyright__beian[data-v-5e96b6b8] {
  font-size: 12px;
  color: #FFF;
}
























































































/*stylelint-disable*/
#app[data-v-633ec260] {
    font-family: PingFang SC,Hiragino Sans GB,Microsoft YaHei,WenQuanYi Micro Hei,Helvetica Neue,Arial,sans-serif;
}
/*stylelint-enable*/
.app-container[data-v-633ec260] {
    height: inherit;
    min-height: 768px;
    /*兼容1366 * 768的屏幕，宽度减去18px的竖滚动条*/
    min-width: 1348px;
}
.view-body[data-v-633ec260] {
    position: relative;
    background-color: #fff;
    min-height: 100vh;
}

