/* 瀛椾綋 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 1.6rem;
}

.page_wrap {
  padding-top: 1.1rem;
  background: url("../img/bg.png") rgba(251, 251, 251, 1) no-repeat bottom
    center;
  background-size: contain;
  padding-bottom: 0.87rem;
}

:root {
  --c: #1c488f;
  --s_tran: 0.3s ease-in-out;
  --l_tran: 0.5s ease-in-out;
}

.main {
  max-width: 17rem;
  width: 94%;
  margin: 0 auto;
}

.flex_box {
  display: flex;
}
.hc_flex_box {
  display: flex;
  align-items: flex-start;
}

[class*="fb"] {
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  min-width: 0;
}

.flex_list {
  display: flex;
  flex-wrap: wrap;
}

.lmx_h1 {
  width: 0px;
  height: 0px;
  margin: 0;
  text-indent: -9999em;
}

html {
  font-size: 100px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

span {
  color: inherit;
  font-size: inherit;
}

input,
textarea {
  outline: 0;
  border: none;
}

hr {
  border-top: 0.01rem solid rgba(222, 222, 222, 1);
  margin-top: 0.47rem;
  margin-bottom: 0.4rem;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*多行溢出*/
.line1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.jx-header {
  width: 100%;
  background: #fff;
  font-family: "Microsoft YaHei", sans-serif;
}
.jx-header__main {
  width: 94%;
  max-width: 140rem;
  height: 12.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jx-brand {
  height: 7.7rem;
}
.jx-brand img {
  display: block;
  width: auto;
  height: 100%;
}
.jx-header__tools {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  padding-top: 2rem;
}
.jx-search {
  display: flex;
  width: 32rem;
  height: 4.1rem;
  background: #eee;
  border-radius: 2.1rem;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  overflow: hidden;
}
.jx-search input {
  min-width: 0;
  flex: 1;
  padding: 0 1.7rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: #222;
  font-size: 1.4rem;
}
.jx-search button {
  position: relative;
  flex: 0 0 5.4rem;
  border: 0;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  background: #00479d;
  cursor: pointer;
}
.jx-search button span {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  top: 1.1rem;
  left: 1.7rem;
}
.jx-search button span::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.2rem;
  right: -0.5rem;
  bottom: -0.25rem;
  background: #fff;
  transform: rotate(45deg);
}
.jx-account {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 4.1rem;
  white-space: nowrap;
  width: 15rem;
}
.jx-account a {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}
.jx-account a:hover {
  color: #00479d;
}
.jx-account i {
  width: 0.2rem;
  height: 1.7rem;
  background: #707070;
}
.jx-nav {
  height: 5rem;
  background: #404040;
}
.jx-nav__inner {
  width: 94%;
  max-width: 140rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
.jx-nav__item {
  flex: 0 0 17.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0.1rem solid #707070;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  transition: background 0.2s;
}
.jx-nav__item:first-child {
  border-left: 0.1rem solid #707070;
}
.jx-nav__item:hover,
.jx-nav__item.active {
  background: #00479d;
}
.jx-menu-button {
  display: none;
}
.jx-mobile-search {
  display: none;
}
.jx-drawer-mask,
.jx-mobile-drawer {
  display: none;
}
.jx-sr-only {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.jx-footer {
  background: #10233e;
  color: #fff;
  font-family: "Microsoft YaHei", sans-serif;
}
.jx-footer__info {
  width: 94%;
  max-width: 140rem;
  min-height: 33.5rem;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
.jx-footer h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
}
.jx-footer .jx-footer__subscribe h2::after {
  display: none;
}

.jx-footer h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.2rem;
  margin: 2rem 0;
  background: #00479d;
}
.jx-footer__contact {
  min-width: 35rem;
}
.jx-footer__hotline {
  display: flex;
  align-items: center;
  margin: 0 0 2rem;
  font-family: Oswald, "Microsoft YaHei", sans-serif;
  font-size: 4rem;
}
.jx-footer__hotline span {
  width: 5rem;
  height: 5rem;
  margin-right: 1rem;
  border-radius: 50%;
  background: url(../img/footericon.png);
  background-size: 100% 100%;
}
.jx-footer__contact > p:not(.jx-footer__hotline) {
  margin: 0;
  font-size: 1.6rem;
  line-height: 3.6rem;
}
.jx-footer__links {
  width: 30rem;
}
.jx-footer__links div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.jx-footer__links a {
  color: #fff;
  font-size: 1.6rem;
  line-height: 3.6rem;
  text-decoration: none;
}
.jx-footer__links a:hover {
  color: #79b4f0;
}
.jx-footer__subscribe {
  width: 38rem;
}
.jx-subscribe-form {
  display: flex;
  height: 4.6rem;
  margin-top: 2rem;
}
.jx-subscribe-form input {
  min-width: 0;
  flex: 1;
  padding: 0 1.5rem;
  border: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.4rem;
}
.jx-subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.jx-subscribe-form button {
  width: 8rem;
  border: 0;
  background: #00479d;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
}
.jx-subscribe-form button:hover {
  background: #0a61c2;
}
.jx-subscribe-message {
  min-height: 2rem;
  margin: 0.8rem 0 0;
  color: #a9d0ff;
  font-size: 1.3rem;
}
.jx-social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.jx-social a {
  width: 3rem;
  display: flex;
  text-decoration: none;
  transition: 0.2s;
}

.jx-social a:hover img {
  filter: grayscale(0);
}

.jx-social a img {
  width: 100%;
  height: auto;
  filter: grayscale(1);
}

.jx-footer__copyright {
  min-height: 6.5rem;
  padding: 1.6rem max(3%, calc((100% - 140rem) / 2));
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #00479d;
  color: #fff;
  font-size: 1.4rem;
}
.jx-footer__copyright a {
  color: #fff;
  text-decoration: none;
}
.jx-footer__copyright a:hover {
  text-decoration: underline;
}

/* Shared Vue-style floating utility bar, loaded from footer.html. */
.jx-float-aside {
  position: fixed;
  z-index: 900;
  right: 2rem;
  bottom: 15rem;
  width: 6rem;
  font-family: "Microsoft YaHei", sans-serif;
}
.jx-float-aside__list {
  padding: 1.8rem .8rem;
  border-radius: 10rem;
  background: #fff;
  box-shadow: 0 0 0.9rem 0.1rem rgba(0, 0, 0, 0.16);
  transition: transform 0.3s, opacity 0.3s;
}
.jx-float-aside__item {
  width: 100%;
  min-height: 6.4rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 0;
  border-bottom: 0.1rem solid #e9e9e9;
  background: transparent;
  color: #333;
  font-family: inherit;
  font-size: 1.2rem;
  line-height: 1.45;
  text-decoration: none;
  cursor: pointer;
}
.jx-float-aside__item:last-child {
  border-bottom: 0;
}
.jx-float-aside__item img {
  width: auto;
  height: 2.4rem;
  display: block;
}
.jx-float-aside__item:nth-child(2) img,
.jx-float-aside__item:nth-child(4) img,
.jx-float-aside__item:nth-child(5) img {
  height: 2.6rem;
}
.jx-float-aside__item span {
  margin-top: .35rem;
  white-space: nowrap;
}
.jx-float-aside__item.jx-float-aside__notice {
  position: relative;
}
.jx-float-aside__qr {
  width: 17rem;
  min-height: 18rem;
  display: block;
  position: absolute;
  z-index: 2;
  right: calc(100% + 2rem);
  top: 50%;
  padding: 1.6rem;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 0 0.4rem 0.1rem rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  pointer-events: none;
  margin-top: 0 !important;
}
.jx-float-aside__qr::after {
  content: "";
  position: absolute;
  right: -0.8rem;
  top: 50%;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 0.8rem solid #fff;
  transform: translateY(-50%);
}
.jx-float-aside__notice:hover .jx-float-aside__qr,
.jx-float-aside__notice:focus-visible .jx-float-aside__qr,
.jx-float-aside__notice.is-qr-open .jx-float-aside__qr {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}
.jx-float-aside__item .jx-float-aside__qr img {
  width: 12rem;
  height: 12rem;
  display: block;
  margin: 0 auto 0.8rem;
  object-fit: contain;
  background: #fafafa;
}
.jx-float-aside__qr b {
  display: block;
  margin: 0;
  color: #333;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.jx-float-aside__round {
  width: 6rem;
  height: 6rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0.9rem 0.1rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.jx-float-aside__top {
  display: none;
}
.jx-float-aside.has-top .jx-float-aside__top {
  display: flex;
}
.jx-float-aside__top img {
  width: 2rem;
  height: 2.5rem;
}
.jx-float-aside__toggle span {
  width: 2.8rem;
  height: 2.8rem;
  position: relative;
  border: 0.2rem solid #00479d;
  border-radius: 50%;
}
.jx-float-aside__toggle span::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  top: .7rem;
  left: .65rem;
  border-top: 0.2rem solid #00479d;
  border-right: 0.2rem solid #00479d;
  transform: rotate(45deg);
}
.jx-float-aside.is-collapsed .jx-float-aside__list,
.jx-float-aside.is-collapsed .jx-float-aside__top {
  opacity: 0;
  pointer-events: none;
  transform: translateX(170%);
}
.jx-float-aside.is-collapsed .jx-float-aside__toggle span::after {
  left: .95rem;
  transform: rotate(-135deg);
}

@media (max-width: 850px) {
  .jx-header__main {
    height: 5rem;
    position: relative;
    justify-content: flex-start;
    padding: 0 15px;
    width: 100%;
    border-bottom: 0.1rem solid #eee;
  }
  .jx-brand {
    width: auto;
    height: 3.2rem;
    margin-left: 5rem;
  }
  .jx-brand img {
    width: auto;
    height: 100%;
    display: block;
  }
  .jx-header__tools {
    display: flex;
    margin-left: auto;
    padding: 0;
  }
  .jx-search {
    display: none;
  }
  .jx-account {
    width: auto;
    height: 3rem;
    gap: 0.7rem;
  }
  .jx-account a {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .jx-account i {
    width: 0.1rem;
    height: 1.6rem;
  }
  .jx-menu-button {
    width: 3rem;
    height: 3rem;
    display: flex;
    position: absolute;
    left: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .jx-mobile-search {
    width: 3rem;
    height: 3rem;
    display: block;
    position: relative;
    margin-left: 1.6rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .jx-mobile-search::before {
    content: "";
    width: 1.7rem;
    height: 1.7rem;
    position: absolute;
    top: 0.45rem;
    left: 0.35rem;
    border: 0.16rem solid #111;
    border-radius: 50%;
  }
  .jx-mobile-search::after {
    content: "";
    width: 0.85rem;
    height: 0.16rem;
    position: absolute;
    top: 1.9rem;
    left: 2rem;
    background: #111;
    transform: rotate(45deg);
    transform-origin: left center;
  }
  .jx-menu-button span {
    width: 2.1rem;
    height: 0.2rem;
    background: #222;
    transition: transform 0.2s, opacity 0.2s;
  }
  .jx-menu-button.is-open span:nth-child(1) {
    transform: translateY(0.7rem) rotate(45deg);
  }
  .jx-menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }
  .jx-menu-button.is-open span:nth-child(3) {
    transform: translateY(-0.7rem) rotate(-45deg);
  }
  .jx-nav {
    display: none;
  }
  .jx-drawer-mask {
    display: block;
    position: fixed;
    z-index: 9998;
    inset: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .jx-mobile-drawer {
    width: 80%;
    max-width: 32rem;
    height: 100vh;
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    overflow: hidden;
    background: #fff;
    color: #000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .jx-drawer-open .jx-drawer-mask {
    visibility: visible;
    opacity: 1;
  }
  .jx-drawer-open .jx-mobile-drawer {
    transform: translateX(0);
  }
  .jx-mobile-drawer__top {
    height: 6rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.1rem solid #eee;
  }
  .jx-mobile-drawer__brand {
    height: 3rem;
  }
  .jx-mobile-drawer__brand img {
    display: block;
    width: auto;
    height: 100%;
  }
  .jx-mobile-drawer__close {
    width: 3rem;
    height: 3rem;
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .jx-mobile-drawer__close::before,
  .jx-mobile-drawer__close::after {
    content: "";
    width: 1.8rem;
    height: 0.1rem;
    position: absolute;
    top: 1.45rem;
    left: 0.6rem;
    background: #222;
  }
  .jx-mobile-drawer__close::before {
    transform: rotate(45deg);
  }
  .jx-mobile-drawer__close::after {
    transform: rotate(-45deg);
  }
  .jx-mobile-drawer__panel {
    display: none;
  }
  .jx-mobile-drawer__panel.is-current {
    display: block;
  }
  .jx-mobile-drawer__item {
    width: calc(100% - 3rem);
    height: 4.5rem;
    margin: 0 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    border: 0;
    border-bottom: 0.1rem solid #eee;
    background: transparent;
    color: #000;
    font-family: inherit;
    font-size: 1.4rem;
    line-height: 4.5rem;
    text-align: left;
    text-decoration: none;
  }
  .jx-mobile-drawer__forward::after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    margin-left: auto;
    border-top: 0.1rem solid #444;
    border-right: 0.1rem solid #444;
    transform: rotate(45deg);
  }
  .jx-mobile-drawer__back::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 1rem;
    border-bottom: 0.1rem solid #444;
    border-left: 0.1rem solid #444;
    transform: rotate(45deg);
  }

  .jx-footer__info {
    min-height: 0;
    flex-wrap: wrap;
    gap: 3.5rem;
  }
  .jx-footer__contact {
    min-width: 30rem;
  }
  .jx-footer__subscribe {
    flex: 1;
    min-width: 30rem;
  }
  .jx-float-aside {
    right: 1.2rem;
    bottom: 10rem;
  }
  .jx-float-aside__item {
    min-height: 4.8rem;
    font-size: 1.15rem;
  }
  .jx-float-aside__item img,
  .jx-float-aside__item:nth-child(2) img,
  .jx-float-aside__item:nth-child(4) img,
  .jx-float-aside__item:nth-child(5) img {
    height: 1.8rem;
  }
  .jx-float-aside__list {
    padding: 1.2rem .8rem;
  }
  .jx-float-aside__qr {
    display: none;
  }
}
@media (max-width: 560px) {
  .jx-footer__info {
    padding: 3.6rem 0;
    gap: 3rem;
  }
  .jx-footer__contact,
  .jx-footer__links,
  .jx-footer__subscribe {
    width: 100%;
    min-width: 0;
  }
  .jx-footer__hotline {
    font-size: 3.1rem;
  }
  .jx-footer__hotline span {
    width: 4.2rem;
    height: 4.2rem;
    font-size: 2.2rem;
  }
  .jx-footer__copyright {
    display: block;
    line-height: 1.7;
  }
  .jx-footer__copyright a {
    display: block;
  }

  .jx-subscribe-form {
    width: 87%;
  }
}

/* Reusable service category side navigation. */
.service-aside {
  width: 26rem;
  flex: 0 0 26rem;
  overflow: hidden;
  background: #fff;
  font-family: "Microsoft YaHei", sans-serif;
}
.service-aside__title {
  width: 100%;
  height: 5.6rem;
  padding-left: 2.3rem;
  background: #00479d;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 5.6rem;
}
.service-aside__list,
.service-aside__children {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-aside__item > a,
.service-aside__parent {
  width: 100%;
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border: 0;
  border-bottom: 0.1rem solid #f1f1f1;
  background: #fff;
  color: #000;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.service-aside__parent::after {
  content: "+";
  margin-left: auto;
  color: inherit;
  font-size: 2rem;
  font-weight: 300;
}
.service-aside__item.is-open > .service-aside__parent::after {
  content: "-";
}
.service-aside__item.is-open > .service-aside__children {
  display: block;
}
.service-aside__children {
  display: none;
  background: #fafcff;
}
.service-aside__children a {
  min-height: 4.6rem;
  padding-left: 4rem;
  font-size: 1.5rem;
}

.service-aside__item.active > a {
  background: #3399ff;
  color: #fff;
}

.service-aside__item > a:hover {
  background-color: #f5f7fa;
}

@media (max-width: 1024px) {
  .service-aside {
    width: 100%;
    flex-basis: auto;
    border-radius: 0;
  }
}

.analyze-breadcrumb {
  height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  color: #757575;
  font-size: 1.4rem;
}

.analyze-breadcrumb svg {
  width: 12px;
  height: 13px;
}

.analyze-breadcrumb a {
  color: #303133;
  font-weight: 700;
  text-decoration: none;
}

.analyze-breadcrumb i {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.1rem solid #999;
  border-right: 0.1rem solid #999;
  transform: rotate(45deg);
}

.analyze-breadcrumb strong {
  color: #757575;
  font-weight: 400;
}
.analyze-breadcrumb__home {
  color: #666;
  font-size: 1.5rem;
  line-height: 1;
}

.jx-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #606266;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 1.3rem;
  line-height: 3rem;
  width: 100%;
  margin-top: 4rem;
}

.jx-pagination__total {
  margin-right: 1.2rem;
}

.jx-pagination__button,
.jx-pagination__number {
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.7rem;
  border: 0;
  border-radius: 0.2rem;
  background: #f4f4f5;
  color: #606266;
  font: inherit;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
}

.jx-pagination__button:hover:not(:disabled),
.jx-pagination__number:hover:not(.is-active) {
  color: #00479d;
}

.jx-pagination__number.is-active {
  background: #00479d;
  color: #fff;
  cursor: default;
}

.jx-pagination__button:disabled,
.jx-pagination__button.is-disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}
@media (max-width: 1024px) {
  .analyze-breadcrumb{
    display: none;
  }
}
