input::placeholder {
  font-size: 14px;
  color: #7E7E7E; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html, body {
  font-size: 15px; }

em, strong {
  font-style: normal; }

ul {
  padding: 0;
  margin: 0; }

ul > li {
  list-style: none; }

label {
  margin-bottom: 0; }

button, input:not([type='checkbox']) {
  outline: 0;
  border: 0;
  -webkit-appearance: none; }
  button:focus, input:not([type='checkbox']):focus {
    outline: 0; }

.disabled {
  filter: grayscale(100);
  pointer-events: none; }

.color-blue {
  color: #01A7F0; }

.hidden {
  display: none !important; }

a {
  color: inherit; }
  a:hover {
    text-decoration: none; }

button, .btn {
  padding: 0 32px;
  height: 34px;
  border: 1px solid #01A7F0;
  border-radius: 8px;
  background: transparent;
  font-size: 15px;
  outline: 0;
  -webkit-appearance: none;
  cursor: pointer; }
  button.blue, .btn.blue {
    background: #01A7F0;
    color: #fff;
    border: 0; }
  button.white, .btn.white {
    background: #fff;
    color: #01A7F0; }
  button.black, .btn.black {
    background: #333;
    color: #01A7F0; }
  button.gray, .btn.gray {
    background-color: #D5D5D5;
    color: #333;
    border-color: #D5D5D5; }
  button.btn-border, .btn.btn-border {
    border-radius: 100px; }

.header-block {
  height: 70px;
  width: 100%; }

header {
  background: #333;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9; }
  header .container {
    display: flex;
    align-items: center; }
  header .navs {
    display: flex;
    margin-left: 60px; }
    header .navs li {
      color: #fff;
      margin-right: 30px;
      position: relative;
      line-height: 1;
      transition: color 0.2s linear; }
      header .navs li:hover {
        color: #01A7F0; }
        header .navs li:hover a {
          color: #01A7F0; }
      header .navs li a {
        color: #fff;
        display: block;
        padding: 27px 14px; }
      header .navs li::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #01A7F0;
        display: none; }
      header .navs li.active {
        color: #01A7F0; }
        header .navs li.active a {
          color: #01A7F0; }
        header .navs li.active::after {
          display: block; }
      header .navs li:hover {
        cursor: pointer; }
      header .navs li:last-child {
        margin: 0; }
  header .login-wrap {
    margin-left: auto; }
  header button {
    margin-left: 20px; }

.banner {
  width: 100%;
  height: 320px;
  background-color: #81D3F8;
  position: relative;
  text-align: center; }
  .banner .home-banner {
    padding-top: 88px;
    text-align: center;
    font-size: 40px;
    color: #fff; }

.content-item {
  padding: 60px 0; }
  .content-item.black {
    background-color: #333;
    color: #fff; }
    .content-item.black .title::after {
      background-color: #fff; }
  .content-item .title {
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    font-size: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; }
    .content-item .title .dot {
      width: 8px;
      height: 8px;
      background: #333;
      border-radius: 4px;
      margin: 0 7px; }
    .content-item .title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 4px;
      background-color: #333; }
    .content-item .title.black {
      color: #333; }
    .content-item .title.noborder::after {
      display: none; }
  .content-item .content {
    display: flex;
    justify-content: center; }
  .content-item .c1 .item {
    width: 232px;
    height: 240px;
    border-radius: 2px;
    background-color: #F6F9FF; }
    .content-item .c1 .item img {
      transition: all 0.2s linear; }
      .content-item .c1 .item img:hover {
        transform: scale(1.05); }
    .content-item .c1 .item:not(:last-child) {
      margin-right: 10px; }
    .content-item .c1 .item .text {
      text-align: center;
      padding: 17px 20px;
      font-size: 16px; }
  .content-item .c2 {
    text-align: center; }
    .content-item .c2 .item {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .content-item .c2 .item:not(:last-child) {
        margin-right: 180px; }
    .content-item .c2 .img {
      position: relative;
      width: 100px;
      height: 115px; }
      .content-item .c2 .img .bg {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0; }
      .content-item .c2 .img .icon {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        z-index: 1;
        transition: all 0.5s ease-in-out; }
        .content-item .c2 .img .icon:hover {
          transform: rotate(360deg) scale(1.2); }
    .content-item .c2 .text {
      margin-top: 15px;
      line-height: 1.5; }
  .content-item.c3-item .title, .content-item.c5-item .title {
    margin-bottom: 18px; }
  .content-item.c3-item .des, .content-item.c5-item .des {
    margin-bottom: 35px;
    font-size: 20px;
    text-align: center; }
  .content-item.c3-item img, .content-item.c5-item img {
    max-width: 100%; }
  .content-item .c3 {
    display: flex;
    flex-direction: column; }
    .content-item .c3 ul {
      display: flex;
      width: 100%;
      justify-content: center; }
    .content-item .c3 ul li:last-child {
      margin-right: 0; }
    .content-item .c3 li {
      width: 170px;
      height: 195px;
      background-image: url("/img/c3_1.png");
      background-size: cover;
      background-position: center center;
      margin-right: 65px;
      display: flex;
      justify-content: center;
      align-items: center; }
    .content-item .c3:last-child {
      margin-right: 0; }
  .content-item.c4-item {
    background-color: #F7FBFF; }
    .content-item.c4-item .title {
      color: #01A7F0; }
  .content-item.c5-item ul {
    display: flex;
    width: 100%;
    justify-content: center; }
  .content-item.c5-item li {
    width: 232px;
    height: 270px;
    background: #f6f9ff;
    border-radius: 16px;
    padding: 20px 0;
    text-align: center;
    margin-right: 10px; }
    .content-item.c5-item li:last-child {
      margin-right: 0; }
    .content-item.c5-item li .item-title {
      display: block;
      width: 100%;
      text-align: center;
      padding-bottom: 10px;
      position: relative; }
      .content-item.c5-item li .item-title::after {
        content: '';
        position: absolute;
        width: 44px;
        height: 2px;
        background-color: #01A7F0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%); }
    .content-item.c5-item li p {
      display: block;
      line-height: 2;
      font-size: 14px;
      margin-top: 15px; }

.item-table {
  width: 1200px;
  margin: 0 auto; }
  .item-table p {
    margin-top: 10px; }

footer {
  color: #fff; }
  footer .f-info {
    background-color: #333;
    display: flex;
    justify-content: center;
    padding: 40px 0; }
    footer .f-info .f-logo {
      margin-right: 116px; }
    footer .f-info .tel {
      margin-right: 150px;
      font-size: 18px; }
    footer .f-info .qrcode-wrap {
      text-align: center; }
      footer .f-info .qrcode-wrap .des {
        font-size: 16px;
        color: #01A7F0;
        margin-top: 10px; }
  footer .f-copy {
    padding: 22px 0;
    display: flex;
    justify-content: center;
    background-color: #434343;
    border-top: 1px solid #EBEBEB;
    line-height: 1; }
    footer .f-copy a {
      color: #ffffff; }
    footer .f-copy span:not(:last-child) {
      margin-right: 180px; }

.modal.kefu {
  text-align: center; }
  .modal.kefu .modal-dialog {
    margin-top: 20%;
    width: 350px; }
  .modal.kefu .modal-header {
    border: 0;
    position: relative; }
  .modal.kefu .modal-content {
    font-size: 26px; }
  .modal.kefu .close {
    position: absolute;
    right: 1rem;
    top: 0.9rem; }
  .modal.kefu .modal-title {
    display: block;
    width: 100%;
    text-align: center; }

.pc {
  display: block; }

.mobile {
  display: none !important; }

.mask {
  position: fixed;
  left: 0;
  top: 50px;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; }

.login-container, .form-container {
  width: 100vw;
  min-height: calc(100vh - 70px);
  background-color: #eee; }
  .login-container .container, .form-container .container {
    display: flex;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%; }
  .login-container .text-con, .form-container .text-con {
    font-size: 30px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
  .login-container .login-con, .form-container .login-con {
    position: relative;
    width: 520px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 49px 0px rgba(1, 167, 240, 0.11);
    padding: 70px; }
    .login-container .login-con h4, .form-container .login-con h4 {
      margin-bottom: 60px;
      width: 100%;
      text-align: center;
      display: block; }
    .login-container .login-con a.btn, .form-container .login-con a.btn {
      display: block;
      width: 100%; }
  .login-container .reg-con, .login-container .reset-con, .login-container .reset-success, .form-container .reg-con, .form-container .reset-con, .form-container .reset-success {
    position: relative;
    width: 520px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 49px 0px rgba(1, 167, 240, 0.11);
    padding: 40px 70px; }
    .login-container .reg-con a.btn, .login-container .reset-con a.btn, .login-container .reset-success a.btn, .form-container .reg-con a.btn, .form-container .reset-con a.btn, .form-container .reset-success a.btn {
      display: block;
      width: 100%; }
    .login-container .reg-con .code-text, .login-container .reset-con .code-text, .login-container .reset-success .code-text, .form-container .reg-con .code-text, .form-container .reset-con .code-text, .form-container .reset-success .code-text {
      position: absolute;
      right: 0;
      top: 0px;
      cursor: pointer; }
    .login-container .reg-con .title-des, .login-container .reset-con .title-des, .login-container .reset-success .title-des, .form-container .reg-con .title-des, .form-container .reset-con .title-des, .form-container .reset-success .title-des {
      font-size: 14px;
      color: #666;
      margin: 20px 0 0; }
    .login-container .reg-con h4, .login-container .reset-con h4, .login-container .reset-success h4, .form-container .reg-con h4, .form-container .reset-con h4, .form-container .reset-success h4 {
      margin-bottom: 30px;
      width: 100%;
      text-align: center;
      display: block; }
  .login-container .reset-con, .form-container .reset-con {
    height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .login-container .reset-con h4, .form-container .reset-con h4 {
      margin-bottom: 30px; }
  .login-container .reset-success, .form-container .reset-success {
    height: 500px; }
    .login-container .reset-success > div, .form-container .reset-success > div {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      height: 100%;
      width: 100%; }
    .login-container .reset-success a.btn, .form-container .reset-success a.btn {
      display: block;
      width: 100%; }
    .login-container .reset-success button, .form-container .reset-success button {
      margin-top: 60px; }
    .login-container .reset-success p, .form-container .reset-success p {
      margin-top: 20px;
      color: #666;
      font-size: 14px;
      text-align: center; }
  .login-container .suc-des, .form-container .suc-des {
    color: #7e7e7e;
    font-size: 14px;
    margin-top: 50px; }
  .login-container .form-group, .form-container .form-group {
    position: relative;
    margin-bottom: 1.5rem; }
    .login-container .form-group .text-left, .form-container .form-group .text-left {
      position: absolute;
      left: 0;
      padding: 0 0 0 .5rem;
      font-size: 14px; }
      .login-container .form-group .text-left .text-danger, .form-container .form-group .text-left .text-danger {
        margin-bottom: 0; }
  .login-container .verification-code, .form-container .verification-code {
    position: relative; }
    .login-container .verification-code img, .form-container .verification-code img {
      position: absolute;
      right: 0;
      width: 100px;
      height: 40px;
      top: -15px; }
  .login-container .btn.blue, .form-container .btn.blue {
    width: 100%; }
  .login-container .form-control, .form-container .form-control {
    border: 0;
    border-bottom: 1px solid #E2E5EB;
    transition: border-bottom-color 0.2s linear;
    border-radius: 0; }
  .login-container .form-control:focus, .form-container .form-control:focus {
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #01A7F0; }
  .login-container .download-app-btn .watch-video-qr, .form-container .download-app-btn .watch-video-qr {
    top: 0;
    transform: translateY(-100%);
    left: -10px; }

.watch-video-wrap {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  left: 0;
  bottom: -60px; }
  .watch-video-wrap .watch-video button {
    width: 135px;
    margin-right: 30px; }
  .watch-video-wrap .watch-video:last-child button {
    margin-right: 0; }

.watch-video {
  position: relative; }
  .watch-video:hover .watch-video-qr {
    display: block; }

header .watch-video .watch-video-qr {
  padding-top: 20px; }

.watch-video-qr {
  display: none;
  position: absolute;
  bottom: 0;
  left: 10px;
  transform: translateY(100%);
  width: 155px;
  height: 167px;
  background-color: #fff;
  box-shadow: 0px 0px 13px 0px rgba(0, 159, 255, 0.18);
  text-align: center;
  padding: 10px; }
  .watch-video-qr img.code {
    width: 110px;
    height: 110px;
    margin-bottom: 5px; }
  .watch-video-qr .des {
    font-size: 12px;
    color: #7E7E7E;
    text-align: center;
    margin: 0; }

.about-card {
  width: 1200px;
  background: #F7FBFF;
  border-radius: 16px;
  padding: 60px;
  position: absolute;
  top: 270px;
  left: 50%;
  transform: translateX(-50%); }
  .about-card.mobile {
    position: relative;
    transform: none;
    padding: 5.3333333333vw 4.5333333333vw;
    width: 100%;
    left: 0;
    top: 0; }
    .about-card.mobile p {
      font-size: 3.2vw; }
    .about-card.mobile .title {
      font-size: 4.2666666667vw;
      margin-bottom: 20px; }
  .about-card .title {
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    font-size: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; }
    .about-card .title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 4px;
      background-color: #333; }
  .about-card p {
    line-height: 2;
    letter-spacing: 1.5px;
    text-align: left; }

.aboutus-content {
  padding-top: 530px; }
  .aboutus-content .timeline-item {
    position: relative;
    padding-bottom: 26px;
    padding-left: 40px; }
    .aboutus-content .timeline-item .line {
      height: 100%;
      border-left: 1px solid #e8eaec;
      position: absolute;
      left: 6px;
      top: 0; }
    .aboutus-content .timeline-item .dot-text {
      position: absolute;
      left: 12px;
      top: -5px;
      transform: translateX(-100%);
      z-index: 8; }
      .aboutus-content .timeline-item .dot-text .dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #333;
        margin-left: 10px; }
  .aboutus-content .timeline-card {
    width: 960px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 15px; }
    .aboutus-content .timeline-card .card-title {
      color: #222222; }
    .aboutus-content .timeline-card .card-des {
      color: #555555; }

.qa-container {
  background: #F7FBFF;
  padding: 0;
  margin-bottom: 40px;
  display: flex;
  margin-top: 40px;
  padding: 20px 0; }

.qa-menu {
  width: 200px;
  padding-right: 23px;
  min-height: 800px;
  border-right: 1px solid #DDDDDD; }
  .qa-menu a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #EEEEEE;
    padding: 15px 30px;
    color: #333; }
    .qa-menu a.act {
      color: #01A7F0; }

.qa-content {
  margin-left: 22px;
  padding-right: 10px; }
  .qa-content .qa-item {
    background: #FFFFFF;
    position: relative;
    width: 935px;
    padding: 13px;
    margin-bottom: 20px;
    cursor: pointer;
    line-height: 1;
    border-radius: 6px; }
    .qa-content .qa-item .icon-arrowTop {
      position: absolute;
      right: 13px;
      top: 13px;
      transform: rotate(180deg);
      transition: all 0.3s linear; }
    .qa-content .qa-item.active .a {
      display: flex; }
    .qa-content .qa-item.active .icon-arrowTop {
      transform: rotate(360deg); }
    .qa-content .qa-item .q {
      font-size: 15px;
      color: #333; }
    .qa-content .qa-item .a {
      font-size: 13px;
      display: flex;
      padding-left: 35px;
      margin-top: 10px;
      display: none;
      overflow: hidden; }
      .qa-content .qa-item .a .color-blue {
        padding-top: 3px; }
      .qa-content .qa-item .a .text {
        flex: 1;
        margin-left: 10px;
        line-height: 1.7; }
  .qa-content .modal.kefu .modal-dialog {
    margin-top: 0;
    width: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%; }

.swiper-icon-next, .swiper-icon-prev {
  position: absolute;
  top: 50%;
  z-index: 9; }
  .swiper-icon-next i, .swiper-icon-prev i {
    font-size: 40px;
    opacity: 0.4; }

.swiper-icon-next {
  left: 10px; }

.swiper-icon-prev {
  right: 10px; }

@media all and (max-width: 768px) {
  .pc {
    display: none !important; }

  .mobile {
    display: block !important; }

  .banner {
    height: 40vw !important; }
    .banner .home-banner {
      font-size: 5.3333333333vw;
      padding-top: 2.6666666667vw; }
      .banner .home-banner p {
        margin-bottom: 0; }
      .banner .home-banner em {
        font-size: 8vw !important; }

  .header-block {
    height: 50px; }

  header {
    height: 50px; }
    header .container {
      align-items: center;
      height: 50px; }
      header .container i {
        color: #fff; }
    header .list {
      position: absolute;
      transform: translateY(0);
      z-index: 99;
      background-color: #FFFFFF;
      width: 100%;
      padding: 0 15px;
      height: 0;
      transition: height 0.2s linear;
      overflow: hidden; }
      header .list.act {
        height: 260px;
        padding-top: 10px; }
      header .list li > a {
        display: block;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #EDEDED; }
      header .list .act {
        display: none; }
      header .list .btn-wrap {
        padding: 20px 0;
        display: flex;
        justify-content: space-between; }
      header .list button {
        border-radius: 5px;
        color: #01A7F0;
        width: 160px; }

  .content-item {
    padding-top: 8vw; }

  .content-item .title {
    font-size: 4.2666666667vw; }

  .content-item .c1 {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 4vw; }
    .content-item .c1 .item {
      width: 45.0666666667vw;
      height: 46.5333333333vw;
      margin-bottom: 1.4666666667vw;
      margin-right: 0 !important; }
      .content-item .c1 .item:not(:nth-child(2n)) {
        margin-right: 1.8666666667vw !important; }
      .content-item .c1 .item img {
        max-width: 100%; }
      .content-item .c1 .item .text {
        padding: 3.6vw 3.2vw;
        font-size: 3.2vw; }

  .content-item .c2 {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 5.3333333333vw; }
    .content-item .c2 .item {
      width: 38.1333333333vw;
      margin-bottom: 5.3333333333vw; }
    .content-item .c2 .item:not(:nth-child(2n)) {
      margin-right: 8vw; }
    .content-item .c2 .item:nth-child(2n) {
      margin-right: 0; }

  .content-item.c3-item .des {
    font-size: 2.6666666667vw; }

  .content-item .c3 ul li {
    width: 24.9333333333vw;
    height: 28.6666666667vw;
    margin-right: 8.8vw; }
    .content-item .c3 ul li:last-child {
      margin-right: 0; }

  .content-item.c4-item .title {
    margin-bottom: 5.3333333333vw; }

  .login-container {
    min-height: calc(100vh - 50px); }
    .login-container .container {
      padding-top: 40px; }
    .login-container .text-con {
      display: none; }
    .login-container .login-con {
      width: 100%;
      padding: 50px 6.6666666667vw; }
    .login-container .reset-con {
      padding: 50px 6.6666666667vw; }
    .login-container .download-app-btn {
      display: none; }

  footer .f-info {
    flex-wrap: wrap; }
    footer .f-info .f-logo {
      margin-right: 5.3333333333vw; }
    footer .f-info .tel {
      margin-right: 0;
      margin-bottom: 5.3333333333vw; }
  footer .f-copy {
    flex-wrap: wrap;
    text-align: center; }
    footer .f-copy span {
      margin-right: 0 !important; }
      footer .f-copy span:first-child {
        display: block;
        width: 100%;
        margin-bottom: 2.6666666667vw; }
      footer .f-copy span:nth-child(2) {
        margin-right: 2.6666666667vw !important; }

  .qa-container {
    width: 92vw;
    margin-top: 20px; }
    .qa-container .qa-menu {
      width: 22.6666666667vw;
      padding-right: 3.2vw;
      min-height: 400px; }
      .qa-container .qa-menu a {
        font-size: 3.2vw;
        padding: 2.6666666667vw; }
    .qa-container .qa-content .qa-item {
      width: 62.6666666667vw;
      margin-bottom: 2.6666666667vw;
      padding: 2.6666666667vw 1.8666666667vw; }
      .qa-container .qa-content .qa-item .icon-arrowTop {
        display: none; }
      .qa-container .qa-content .qa-item .q {
        font-size: 3.7333333333vw; }
      .qa-container .qa-content .qa-item .a {
        font-size: 3.2vw; }

  .banner .about-banner {
    padding-top: 40px; }

  .content-item {
    padding-top: 20px; }

  .content-item .title {
    margin-bottom: 20px; }

  .aboutus-content .content {
    padding-left: 13.3333333333vw; }

  .aboutus-content .timeline-card {
    width: 75.3333333333vw; }

  .aboutus-content .timeline-item {
    position: relative;
    padding-bottom: 2.6666666667vw;
    padding-left: 4.6666666667vw; }

  .item-table {
    width: 100%;
    padding: 20px 4vw; }
    .item-table img {
      width: 100%; }
    .item-table p {
      font-size: 2.9333333333vw; }

  .banner .btndi-banner {
    padding-top: 9.3333333333vw; }
    .banner .btndi-banner button {
      margin-top: 20px; }

  .content-item.c5-item ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 1.3333333333vw; }
  .content-item.c5-item li {
    width: 48%;
    margin-right: 2.6666666667vw;
    margin-bottom: 2.6666666667vw; }
    .content-item.c5-item li:nth-child(2n) {
      margin-right: 0; }

  .login-container .reg-con {
    width: 100%;
    padding: 50px 6.6666666667vw; } }
.page-title-with-bg {
  background: url("/img/404_01.jpg") transparent center top;
  height: auto;
  max-height: none; }

.page-title-with-bg .v-space-header {
  height: 150px; }

.page-title-with-bg h2 {
  color: #ff3e7d; }

.page-title-with-bg .error-code .balloon {
  background: url("/img/balloon.png") transparent center top;
  background-repeat: no-repeat;
  font-size: 300px;
  color: #00d1e2;
  height: 600px; }

.page-title-with-bg .error-message {
  color: #fff;
  font-size: 28px;
  font-weight: 200; }

.page-title-with-bg .v-space-footer {
  height: 50px; }

@media screen and (max-width: 767.98px) {
  .page-title-with-bg .error-code .balloon {
    font-size: 270px; }

  .page-title-with-bg .error-message {
    font-size: 24px; } }
@media screen and (max-width: 575.98px) {
  .page-title-with-bg .error-code .balloon {
    font-size: 168px; }

  .page-title-with-bg .error-message {
    font-size: 18px; } }

/*# sourceMappingURL=crm_front_common.css.map */
