:root {
  --zs-primary: #0f3567;
  --zs-accent: #caa24b;
  --zs-text: #2f3640;
  --zs-muted: #6b7280;
  --zs-bg: #ffffff;
  --zs-soft: #f5f7fb;
  --zs-border: #e5e7eb;
  --zs-shadow: 0 10px 30px rgba(8, 24, 48, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  color: var(--zs-text);
  background: var(--zs-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.zs-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.zs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.zs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--zs-primary);
  color: #fff;
  background: var(--zs-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.zs-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--zs-shadow);
}

.zs-section {
  padding: 72px 0;
}

.zs-section-soft {
  background: #f8fbff;
}

.zs-section-light {
  background: #f7f8fc;
}

.zs-title {
  margin: 0 0 16px;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.2;
  color: #1f2937;
}

.zs-desc {
  margin: 0;
  color: var(--zs-muted);
  line-height: 1.8;
  font-size: 16px;
}

.zs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #d9dee5;
  box-shadow: 0 1px 0 rgba(15, 53, 103, 0.08);
}

.zs-header-main .zs-container {
  position: relative;
  padding-top: 2px;
}

.zs-header-topline {
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.zs-header-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.zs-logo img {
  width: 122px;
  height: auto;
}

.zs-menu-toggle {
  display: none;
  border: 1px solid var(--zs-border);
  background: #fff;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.zs-nav {
  display: block;
  width: 100%;
}

.zs-nav > ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.zs-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #223244;
  position: relative;
  display: inline-flex;
  padding: 9px 0 12px;
  white-space: nowrap;
}

.zs-nav a:hover {
  color: var(--zs-primary);
}

.zs-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--zs-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.zs-nav a:hover::after,
.zs-nav a.is-active::after {
  transform: scaleX(1);
}

.zs-nav-item {
  position: relative;
}

.zs-nav-item--has-sub > a {
  padding-right: 16px;
}

.zs-nav-item--has-sub > a::before {
  content: "";
  position: absolute;
  right: 1px;
  top: 47%;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.zs-nav-submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 224px;
  background: #fff;
  border: 1px solid #e7ebf2;
  box-shadow: 0 14px 28px rgba(13, 29, 55, 0.12);
  display: none;
  z-index: 60;
}

.zs-nav-submenu li {
  width: 100%;
}

.zs-nav-submenu a {
  width: 100%;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.zs-nav-submenu a::after {
  display: none;
}

.zs-nav-submenu a:hover {
  color: var(--zs-primary);
  background: #f5f8ff;
}

.zs-nav-item--has-sub:hover > .zs-nav-submenu,
.zs-nav-item--has-sub:focus-within > .zs-nav-submenu,
.zs-nav-item--has-sub.is-open > .zs-nav-submenu {
  display: block;
}

.zs-nav-item--has-sub:hover > a::before,
.zs-nav-item--has-sub:focus-within > a::before,
.zs-nav-item--has-sub.is-open > a::before {
  transform: translateY(-40%) rotate(225deg);
}

.zs-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.zs-header-action-mail,
.zs-header-action-quote {
  height: 32px;
  border-radius: 2px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4f85f5;
  letter-spacing: 0.2px;
}

.zs-header-action-mail {
  color: #4f85f5;
  background: #fff;
}

.zs-header-action-quote {
  color: #fff;
  background: #4f85f5;
  cursor: pointer;
}

.zs-hero {
  position: relative;
  height: min(68vh, 720px);
  min-height: 460px;
  overflow: hidden;
  touch-action: pan-y;
}

.zs-hero-slides {
  height: 100%;
  cursor: grab;
}

.zs-hero.is-dragging .zs-hero-slides {
  cursor: grabbing;
}

.zs-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center;
}

.zs-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.zs-hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6, 19, 39, 0.72), rgba(15, 53, 103, 0.25));
}

.zs-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.zs-hero-panel {
  color: #fff;
  max-width: 660px;
}

.zs-hero-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.zs-hero-panel p,
.zs-hero-panel li {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.zs-hero-panel ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.zs-hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 3;
}

.zs-hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.zs-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.zs-hero-dot.is-active {
  background: #fff;
}

.zs-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .zs-grid-2-mobile-1 {
    grid-template-columns: 1fr !important;
  }
}

.zs-grid-3,
.zs-grid-4 {
  display: grid;
  gap: 26px;
}

.zs-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zs-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zs-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--zs-shadow);
}

.zs-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.zs-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zs-card:hover .zs-card-media img {
  transform: scale(1.08);
}

.zs-card-body {
  padding: 16px 18px;
}

.zs-card-title {
  margin: 0;
  color: #111827;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

.zs-lighting-grid {
  gap: 22px;
}

.zs-card--lighting {
  border: 1px solid #e9edf3;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.zs-card--lighting a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.zs-card--lighting .zs-card-media {
  aspect-ratio: 16 / 11;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f7fb 100%);
  padding: 18px;
}

.zs-card--lighting .zs-card-media img {
  object-fit: contain;
}

.zs-card--lighting .zs-card-body {
  padding: 14px 16px 18px;
}

.zs-card--lighting .zs-card-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.zs-card--lighting:hover {
  transform: translateY(-6px);
  border-color: #cfe0ff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.zs-banner {
  background: url("../img/certificate_img.webp") center/cover fixed no-repeat;
  position: relative;
}

.zs-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 47, 0.66);
}

.zs-banner .zs-container {
  position: relative;
  z-index: 2;
  min-height: 280px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.zs-banner h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.2;
}

.zs-features {
  padding-top: 64px;
  padding-bottom: 54px;
}

.zs-features-title {
  text-align: center;
  margin-bottom: 34px;
  font-size: clamp(36px, 3.3vw, 52px);
}

.zs-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.zs-feature-item {
  text-align: center;
  color: #072349;
}

.zs-feature-icon-wrap {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 3px solid #003b86;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: #003b86;
}

.zs-feature-icon-wrap svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-feature-heading {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.zs-feature-text {
  margin: 0;
  text-align: left;
  font-size: 16px;
  line-height: 1.68;
  color: #173a66;
}

.zs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.zs-carousel {
  position: relative;
  --zs-carousel-visible: 4;
  --zs-carousel-gap: 16px;
}

.zs-carousel-viewport {
  overflow: hidden;
  border-radius: 10px;
  cursor: grab;
}

.zs-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.zs-carousel-track {
  display: flex;
  gap: var(--zs-carousel-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.zs-carousel-slide {
  flex: 0 0 calc((100% - (var(--zs-carousel-visible) - 1) * var(--zs-carousel-gap)) / var(--zs-carousel-visible));
}

.zs-carousel-slide img {
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  user-select: none;
  pointer-events: none;
}

.zs-carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 53, 103, 0.72);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.zs-carousel-btn.is-prev {
  left: -12px;
}

.zs-carousel-btn.is-next {
  right: -12px;
}

.zs-carousel-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.zs-carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #cad5e2;
  cursor: pointer;
}

.zs-carousel-dots button.is-active {
  background: var(--zs-primary);
}

.zs-tabs {
  margin-top: 30px;
}

.zs-tab-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.zs-tab-btn {
  border: 1px solid var(--zs-border);
  background: #fff;
  color: #1f2937;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.zs-tab-btn.is-active {
  background: var(--zs-primary);
  border-color: var(--zs-primary);
  color: #fff;
}

.zs-tab-panel {
  display: none;
}

.zs-tab-panel.is-active {
  display: block;
}

.zs-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.zs-case-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--zs-border);
}

.zs-case-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.zs-case-item p {
  margin: 0;
  padding: 12px;
  text-align: center;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 600;
}

.zs-post-meta {
  margin-top: 10px;
  color: #6b7280;
  font-size: 13px;
}

.zs-faq-wrap {
  max-width: 1200px;
  width: min(1200px, 92%);
  margin: 0 auto;
}

.zs-faq-item {
  border: 1px solid var(--zs-border);
  border-bottom: 0;
}

.zs-faq-item:last-child {
  border-bottom: 1px solid var(--zs-border);
}

.zs-faq-q {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 16px 20px 16px 44px;
  font-weight: 700;
  font-size: 16px;
  color: #182437;
  cursor: pointer;
  position: relative;
}

.zs-faq-q::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--zs-primary);
  border-bottom: 2px solid var(--zs-primary);
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.2s ease;
}

.zs-faq-item.is-open .zs-faq-q::before {
  transform: translateY(-50%) rotate(45deg);
}

.zs-faq-a {
  display: none;
  padding: 0 20px 20px;
  color: #4b5563;
  line-height: 1.85;
}

.zs-faq-item.is-open .zs-faq-a {
  display: block;
}

.zs-cta {
  position: relative;
  background: #3f8dfd;
  text-align: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

.zs-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #fff;
}

.zs-cta .zs-title {
  margin-bottom: 14px;
  font-size: clamp(34px, 3.2vw, 54px);
  color: #fff;
  line-height: 1.15;
}

.zs-cta .zs-desc {
  margin: 0 auto;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(14px, 1.06vw, 18px);
  line-height: 1.6;
}

.zs-cta-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.zs-cta-btn {
  min-width: 164px;
  height: 44px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 18px;
}

.zs-cta-btn:hover {
  transform: none;
  box-shadow: none;
}

.zs-cta-btn--light {
  background: #fff;
  border-color: #fff;
  color: #3f8dfd;
}

.zs-cta-btn--dark {
  background: #0f3567;
  border-color: #0f3567;
  color: #fff;
}

.zs-mt-12 {
  margin-top: 12px;
}

.zs-mt-14 {
  margin-top: 14px;
}

.zs-mt-16 {
  margin-top: 16px;
}

.zs-mt-20 {
  margin-top: 20px;
}

.zs-mt-22 {
  margin-top: 22px;
}

.zs-mt-26 {
  margin-top: 26px;
}

.zs-mt-30 {
  margin-top: 30px;
}

.zs-mt-50 { margin-top: 50px; }
.zs-mt-60 { margin-top: 60px; }
.zs-mt-70 { margin-top: 70px; }
.zs-mt-80 { margin-top: 80px; }

.zs-logo-small {
  width: 160px;
}

.zs-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 35, 0.65);
  display: grid;
  place-items: center;
  z-index: 120;
  padding: 20px;
}

.zs-modal[hidden] {
  display: none;
}

.zs-modal-panel {
  width: min(560px, 96%);
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}

.zs-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #374151;
}

.zs-footer {
  background: #0f1e35;
  color: #d8deea;
}

.zs-footer-main {
  padding: 68px 0 34px;
}

.zs-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}

.zs-footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}

.zs-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.zs-footer p,
.zs-footer li,
.zs-footer a {
  line-height: 1.8;
  font-size: 14px;
}

.zs-footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.zs-footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 4px 10px;
  border-radius: 2px;
  color: #dbe5f4;
}

.zs-footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: #4f85f5;
}

.zs-footer-contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
}

.zs-footer-contact-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: #4f85f5;
}

.zs-footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  padding: 16px 0 18px;
}

@media (max-width: 1100px) {
  .zs-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .zs-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zs-carousel {
    --zs-carousel-visible: 2;
  }

  .zs-header-main .zs-container {
    padding-top: 0;
  }

  .zs-header-topline {
    min-height: 64px;
    gap: 10px;
  }

  .zs-header-right {
    gap: 0;
  }

  .zs-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--zs-border);
    box-shadow: 0 16px 28px rgba(13, 29, 55, 0.1);
  }

  .zs-nav.is-open {
    display: block;
  }

  .zs-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
    gap: 14px;
    justify-content: flex-start;
  }

  .zs-menu-toggle {
    display: inline-flex;
  }

  .zs-header-actions {
    display: none;
  }

  .zs-nav a {
    padding: 0;
  }

  .zs-nav a::after {
    display: none;
  }

  .zs-nav-item {
    width: 100%;
  }

  .zs-nav-item--has-sub > a {
    width: 100%;
    padding-right: 18px;
  }

  .zs-nav-item--has-sub > a::before {
    right: 4px;
  }

  .zs-nav-submenu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    background: #f7f9fc;
    margin-top: 8px;
  }

  .zs-nav-submenu a {
    padding: 9px 12px;
    font-size: 14px;
  }

  .zs-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zs-split {
    grid-template-columns: 1fr;
  }

  .zs-banner .zs-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 46px 0;
  }
}

@media (max-width: 640px) {
  .zs-cta {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .zs-cta::before {
    border-left-width: 14px;
    border-right-width: 14px;
    border-top-width: 14px;
  }

  .zs-cta-btn {
    min-width: 148px;
    height: 40px;
    font-size: 14px;
  }

  .zs-features {
    padding-top: 54px;
    padding-bottom: 44px;
  }

  .zs-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zs-feature-heading {
    margin-bottom: 12px;
  }

  .zs-feature-text {
    text-align: center;
  }

  .zs-carousel {
    --zs-carousel-visible: 1;
  }

  .zs-carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .zs-carousel-btn.is-prev {
    left: 4px;
  }

  .zs-carousel-btn.is-next {
    right: 4px;
  }

  .zs-grid-3,
  .zs-grid-4,
  .zs-case-grid,
  .zs-footer-grid {
    grid-template-columns: 1fr;
  }

  .zs-section {
    padding: 56px 0;
  }

  .zs-hero {
    min-height: 430px;
    height: 62vh;
  }

  .zs-hero-panel p,
  .zs-hero-panel li {
    font-size: 15px;
    line-height: 1.7;
  }
}

.zs-text-center {
  text-align: center;
}

.t-pages{padding: 30px 0;margin-top: 25px;display: flex;justify-content: center;border-radius: 3px;}
.t-pages .pagination{display:inline-block;padding-left:0;border-radius:4px;}
.t-pages .pagination li{float: left;display:inline}
.t-pages .pagination li a,.t-pages .pagination li span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;color:#393D49;background:#eaeaea;margin:0 0 0 8px;border-radius: 3px;}
.t-pages .pagination li a:hover{color:#fff;background:#49a0f5}
.t-pages .pagination .active span{background:#49a0f5;color:#fff}
.t-pages .pagination .disabled{display:none}
