/* purgecss start ignore */

.message-root {
  position: fixed;
  top: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10001;
  pointer-events: none;
}

.message-item {
  /* content-based width */
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  /* spacing and card style */
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2937;
  /* slate-800 */
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
  pointer-events: auto;
  gap: 10px;
  -webkit-animation: message-slide-down 240ms ease-out;
  animation: message-slide-down 240ms ease-out;
  /* avoid being too long */
  max-width: 420px;
}

/* Spinner for loading */

.message-spinner {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #2f80ed;
  /* blue */
  border-left-color: #2f80ed;
  -webkit-animation: message-rotate 0.8s linear infinite;
  animation: message-rotate 0.8s linear infinite;
}

/* Colored dot for other types */

.message-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.message-dot.info {
  background: #2f80ed;
}

.message-dot.success {
  background: #16a34a;
}

.message-dot.warning {
  background: #f59e0b;
}

.message-dot.error {
  background: #ef4444;
}

.message-content {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  word-break: break-word;
}

/* Keep background white for all types; emphasis via indicator */

.message-item.info,
.message-item.success,
.message-item.warning,
.message-item.error,
.message-item.loading {
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .message-item {
    max-width: 90vw;
  }
}

@-webkit-keyframes message-slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes message-slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@-webkit-keyframes message-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes message-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* purgecss end ignore */

/* purgecss start ignore */

.resource-filters-section {
  margin-bottom: 20px;
  background-color: #fff;
  padding: 0 60px;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.resource-filters-section.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.resource-filters-section .resource-filter-group {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px 0;
}

.resource-filters-section .resource-filter-group .resource-filter-label {
  color: #7F8181;
}

.resource-filters-section .resource-filter-group .resource-filter-tabs {
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}

.resource-filters-section .resource-filter-group .resource-filter-tabs .resource-filter-tab {
  color: #3D3D3D;
  height: 36px;
  line-height: 36px;
  cursor: pointer;
  padding: 0 18px;
  transition: all 0.3s ease;
}

.resource-filters-section .resource-filter-group .resource-filter-tabs .resource-filter-tab.active {
  background: #FC7322;
  border-radius: 18px;
  color: white;
}

.resource-filters-section .resource-filter-group .resource-filter-tabs .resource-filter-tab.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.resource-filters-section .resource-filter-group:not(:last-child) {
  border-bottom: 1px solid #D8D8D8;
}

/* purgecss end ignore */

/* purgecss start ignore */

.pagination-section {
  text-align: center;
}

.pagination-section .pagination-info {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.pagination-section .pagination-wrapper {
  display: inline-block;
  background-color: transparent;
}

.pagination-section .pagination-wrapper .pagination {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
}

.pagination-section .pagination-wrapper .pagination li {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
}

.pagination-section .pagination-wrapper .pagination li a {
  background: #fff;
  outline: none;
  text-decoration: none;
  display: block;
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  color: rgba(0, 0, 0, 0.65);
}

.pagination-section .pagination-wrapper .pagination li.active a {
  border: 1px solid #FF6800;
  color: #FF6800;
}

.pagination-section .pagination-wrapper .pagination li.disabled a {
  color: #d9d9d9;
  cursor: not-allowed;
}

.pagination-section .pagination-wrapper .pagination li.break-me {
  border: none;
}

.pagination-section .pagination-wrapper .pagination li.break-me a {
  border: none;
  background: transparent;
}

/* purgecss end ignore */

/* purgecss start ignore */

.skeleton-shimmer {
  background: #f0f0f0;
}

.skeleton-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.skeleton-card .skeleton-image {
  width: 100%;
  height: 200px;
  background: #f0f0f0;
}

.skeleton-card .skeleton-content {
  padding: 16px;
}

.skeleton-card .skeleton-content .skeleton-tags {
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.skeleton-card .skeleton-content .skeleton-tags .skeleton-tag {
  width: 60px;
  height: 24px;
  border-radius: 12px;
  background: #f0f0f0;
}

.skeleton-card .skeleton-content .skeleton-tags .skeleton-tag:nth-child(2) {
  width: 80px;
}

.skeleton-card .skeleton-content .skeleton-title {
  width: 80%;
  height: 20px;
  margin-bottom: 12px;
  border-radius: 4px;
  background: #f0f0f0;
}

.skeleton-card .skeleton-content .skeleton-text {
  width: 60%;
  height: 16px;
  border-radius: 4px;
  background: #f0f0f0;
}

.skeleton-card .skeleton-content .skeleton-text:not(:last-child) {
  margin-bottom: 8px;
}

.skeleton-card .skeleton-content .skeleton-metrics {
  display: -webkit-flex;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.skeleton-card .skeleton-content .skeleton-metrics .skeleton-metric {
  -webkit-flex: 1;
  flex: 1;
  height: 40px;
  border-radius: 4px;
  background: #f0f0f0;
}

.skeleton-card .skeleton-content .skeleton-button {
  width: 100%;
  height: 36px;
  margin-top: 12px;
  border-radius: 4px;
  background: #f0f0f0;
}

.skeleton-filter {
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
}

.skeleton-filter .skeleton-filter-group .skeleton-filter-options {
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.skeleton-filter .skeleton-filter-group .skeleton-filter-options .skeleton-filter-option {
  width: 100px;
  height: 32px;
  border-radius: 16px;
  background: #f0f0f0;
}

/* purgecss end ignore */

/* purgecss start ignore */

.resource-center-loading {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 300px;
}

.resource-center-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #FF7300;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.resource-center-loading .loading-text {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* purgecss end ignore */

/* purgecss start ignore */

.resource-center-banner-section {
  background-color: #1b3345;
  padding: 120px 0 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 225px;
  height: 600px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.resource-center-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 48px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .resource-center-banner-content {
    font-size: 32px;
  }
}

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

.resource-center-main-content {
  background: #F1F1F1;
  min-height: calc(100vh - 200px);
  padding: 0;
}

.resource-center-breadcrumb {
  background: transparent;
  margin-top: 0px;
  padding: 0;
}

.resource-center-breadcrumb .wrapper {
  color: #666;
  font-size: 18px;
  margin: 0 !important;
}

.resource-center-breadcrumb .wrapper .item:last-child {
  color: #7F8181;
}

.resource-center-empty-state {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 150px;
  font-size: 18px;
  color: #666;
}

@media (max-width: 768px) {
  .industry-report-container {
    max-width: 100%;
    width: 100%;
    padding: 20px 15px;
  }

  .industry-report-banner-section {
    height: 400px;
    padding-top: 150px;
  }
}

/* purgecss end ignore */

/* purgecss start ignore */

.success-case-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .success-case-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .success-case-cases-grid {
    grid-template-columns: 1fr;
  }
}

.success-case-case-card {
  background: white;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
  box-shadow: 0px 0px 16px 0px rgba(146, 146, 146, 0.2);
  min-width: 0;
  max-width: 100%;
}

.success-case-case-card .success-case-case-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.success-case-case-card .success-case-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.success-case-case-card .success-case-case-content {
  padding: 15px 40px 40px;
}

.success-case-case-card .success-case-case-content .success-case-case-tags {
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-bottom: 15px;
  min-height: 17px;
}

.success-case-case-card .success-case-case-content .success-case-case-tags .success-case-case-tag {
  color: #999;
  font-size: 14px;
}

.success-case-case-card .success-case-case-content .success-case-case-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 28px;
  line-height: 24px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.success-case-case-card .success-case-case-content .success-case-case-metrics {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 27px;
  border-top: 1px solid #D8D8D8;
}

.success-case-case-card .success-case-case-content .success-case-case-metrics .success-case-metric-item {
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
  line-height: 1.2;
  gap: 5px;
  min-width: 0;
  width: 0;
}

.success-case-case-card .success-case-case-content .success-case-case-metrics .success-case-metric-item .success-case-metric-value {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #FF7300;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.success-case-case-card .success-case-case-content .success-case-case-metrics .success-case-metric-item .success-case-metric-label {
  display: block;
  font-size: 14px;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* purgecss end ignore */



/* purgecss start ignore*/

.rc-rate {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  font-style: normal;
  outline: none;
}

.rc-rate-rtl {
  direction: rtl;
}

.rc-rate-disabled .rc-rate-star {
  cursor: default;
}

.rc-rate-disabled .rc-rate-star:before,
.rc-rate-disabled .rc-rate-star-content:before {
  cursor: default;
}

.rc-rate-disabled .rc-rate-star:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.rc-rate-star {
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s;
  color: #e9e9e9;
  cursor: pointer;
  line-height: 1.5;
}

.rc-rate-rtl .rc-rate-star {
  margin-right: 0;
  margin-left: 8px;
  float: right;
}

.rc-rate-star-first,
.rc-rate-star-second {
  transition: all 0.3s;
}

.rc-rate-star-focused,
.rc-rate-star:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.rc-rate-star-first {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}

.rc-rate-rtl .rc-rate-star-first {
  right: 0;
  left: auto;
}

.rc-rate-star-half .rc-rate-star-first,
.rc-rate-star-half .rc-rate-star-second {
  opacity: 1;
}

.rc-rate-star-half .rc-rate-star-first,
.rc-rate-star-full .rc-rate-star-second {
  color: #f87a18;
}

.rc-rate-star-half:hover .rc-rate-star-first,
.rc-rate-star-full:hover .rc-rate-star-second {
  color: #faa25d;
}

@font-face {
  font-family: 'anticon';

  src: url('//at.alicdn.com/t/font_r5u29ls31bgldi.eot');

  /* IE9*/

  src: url('//at.alicdn.com/t/font_r5u29ls31bgldi.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('//at.alicdn.com/t/font_r5u29ls31bgldi.woff') format('woff'), /* chrome、firefox */ url('//at.alicdn.com/t/font_r5u29ls31bgldi.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('//at.alicdn.com/t/font_r5u29ls31bgldi.svg#iconfont') format('svg');

  /* iOS 4.1- */
}

.anticon {
  font-style: normal;
  vertical-align: baseline;
  text-align: center;
  text-transform: none;
  line-height: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.anticon:before {
  display: block;
  font-family: 'anticon' !important;
}

.anticon-star:before {
  content: '\e660';
}

/* purgecss end ignore*/



@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap);
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*purgecss start ignore */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

button,
input,
optgroup,
option,
select,
textarea {
  font-family: inherit;
}

input,
textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

html,
body {
  height: 100%;
}

html {
  box-sizing: border-box;
  color: hsl(200, 19%, 18%);
  font-size: 20px;
  font-family: Roboto, 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica', 'Arial', 'Microsoft YaHei UI', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  overflow: auto;
  overflow-x: hidden;
}

html[lang^='ja'] {
  font-family: 'Noto Sans JP', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, Roboto, sans-serif;
}

html.lockscroll {
  overflow: hidden;
}

body {
  font-size: 16px;
  line-height: 1.5em;
}

:first-child {
  margin-top: 0;
}

:last-child {
  margin-bottom: 0;
}

[disabled] {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

a,
a:link {
  transition: all 0.2s linear;
  text-decoration: none;
}

html[scroll-snap] {
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

html[theme='dark'] {
  background: #121424;
  color: #fff;
}

.app-ai-chat-box {
  width: 64px;
  height: 80px;
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 999;
  margin-top: -160px;
  text-align: center;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.app-ai-chat-box button {
  cursor: pointer;
}

.app-ai-chat-box .ai-icon {
  width: 33px;
  height: 33px;
  margin: 10px auto;
  background-image: url(//r0.cmcm.com/web_overseas_cmcm_com_release_prod20251120-1544/includes/assets/ba68ba9db5465978160964068eda718f.png);
  background-size: contain;
  background-repeat: none;
}

@media screen and (max-width: 700px) {
  .app-ai-chat-box {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .ai-chat-box {
    display: none;
  }
}

.form-wrapper form {
  max-width: 700px !important;
  -webkit-flex-direction: column !important;
  flex-direction: column !important;
}

.form-wrapper form .form-code {
  -webkit-justify-content: start !important;
  justify-content: start !important;
}

.form-wrapper form .form-code .item {
  display: -webkit-flex !important;
  display: flex !important;
}

.form-wrapper form .form-code .item .label {
  text-align: right !important;
}

@media screen and (max-width: 700px) {
  .form-wrapper {
    padding: 10px !important;
    width: 100vw !important;
    margin-left: -20px !important;
  }
}

/*purgecss end ignore */



/*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

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

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0px;
}

.top-1 {
  top: 0.25rem;
}

.top-0\.5 {
  top: 0.125rem;
}

.top-1\/4 {
  top: 25%;
}

.right-0 {
  right: 0px;
}

.bottom-8 {
  bottom: 2rem;
}

.-bottom-20 {
  bottom: -5rem;
}

.-bottom-28 {
  bottom: -7rem;
}

.-left-1 {
  left: -0.25rem;
}

.-left-2 {
  left: -0.5rem;
}

.-left-1\.5 {
  left: -0.375rem;
}

.m-auto {
  margin: auto;
}

.mx-40 {
  margin-left: 10rem;
  margin-right: 10rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mt-28 {
  margin-top: 7rem;
}

.-mt-2 {
  margin-top: -0.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml-9 {
  margin-left: 2.25rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.list-item {
  display: list-item;
}

.hidden {
  display: none;
}

.h-20 {
  height: 5rem;
}

.h-full {
  height: 100%;
}

.w-20 {
  width: 5rem;
}

.w-40 {
  width: 10rem;
}

.w-44 {
  width: 11rem;
}

.w-64 {
  width: 16rem;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-1\/4 {
  width: 25%;
}

.w-1\/5 {
  width: 20%;
}

.w-full {
  width: 100%;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.flex-col {
  flex-direction: column;
}

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

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-4 {
  gap: 1rem;
}

.border {
  border-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-DAFAFF {
  --tw-bg-opacity: 1;
  background-color: rgba(218, 250, 255, var(--tw-bg-opacity));
}

.bg-E2EBFD {
  --tw-bg-opacity: 1;
  background-color: rgba(226, 235, 253, var(--tw-bg-opacity));
}

.bg-FFE9FC {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 233, 252, var(--tw-bg-opacity));
}

.bg-DDFBE8 {
  --tw-bg-opacity: 1;
  background-color: rgba(221, 251, 232, var(--tw-bg-opacity));
}

.bg-E3DCFF {
  --tw-bg-opacity: 1;
  background-color: rgba(227, 220, 255, var(--tw-bg-opacity));
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-36 {
  padding-left: 9rem;
  padding-right: 9rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.text-center {
  text-align: center;
}

.text-20 {
  font-size: 20px;
}

.text-24 {
  font-size: 24px;
}

.text-28 {
  font-size: 28px;
}

.text-40 {
  font-size: 40px;
}

.text-50 {
  font-size: 50px;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-semibold {
  font-weight: 600;
}

.font-extrabold {
  font-weight: 800;
}

.italic {
  font-style: italic;
}

.text-292929 {
  --tw-text-opacity: 1;
  color: rgba(41, 41, 41, var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.filter {
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur {
  --tw-blur: blur(8px);
}

@media (min-width: 640px) {
  .sm\:text-66 {
    font-size: 66px;
  }
}

@media (min-width: 768px) {
  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

  .md\:mt-20 {
    margin-top: 5rem;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(5rem * var(--tw-space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-24 {
    font-size: 24px;
  }

  .md\:text-26 {
    font-size: 26px;
  }

  .md\:text-28 {
    font-size: 28px;
  }

  .md\:text-34 {
    font-size: 34px;
  }

  .md\:text-60 {
    font-size: 60px;
  }

  .md\:leading-normal {
    line-height: 1.5;
  }

  .md\:leading-relaxed {
    line-height: 1.625;
  }
}

@media (min-width: 1024px) {
}

@media (min-width: 1280px) {
}

@media (min-width: 1536px) {
}



/* purgecss start ignore */

.index-succes-case {
  padding: 80px 0;
  background-color: #fff;
}

.index-succes-case-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.index-succes-case-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #202126;
  margin-bottom: 60px;
}

.index-succes-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1024px) {
  .index-succes-case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .index-succes-case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* purgecss end ignore */



/* purgecss start ignore */

.industry-report-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.industry-report-grid .industry-report-card {
  background: white;
  overflow: hidden;
  width: 100%;
  padding: 0 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  height: 284px;
  box-shadow: 0px 0px 16px 0px rgba(146, 146, 146, 0.2);
}

.industry-report-grid .industry-report-card .industry-report-image {
  position: relative;
  width: 388px;
  height: 240px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: center;
  align-self: center;
}

.industry-report-grid .industry-report-card .industry-report-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.industry-report-grid .industry-report-card .industry-report-content {
  padding: 40px;
  padding-right: 0;
  -webkit-flex: 1;
  flex: 1;
}

.industry-report-grid .industry-report-card .industry-report-content .industry-report-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}

.industry-report-grid .industry-report-card .industry-report-content .industry-report-title {
  font-weight: bold;
  color: #000;
  font-size: 28px;
  line-height: 1.2;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-right: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.industry-report-grid .industry-report-card .industry-report-content .industry-report-tags {
  -webkit-flex: none;
  flex: none;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}

.industry-report-grid .industry-report-card .industry-report-content .industry-report-tags .industry-report-tag {
  color: #ff7300;
  font-size: 14px;
  background: rgba(255, 115, 0, 0.1);
  padding: 0 10px;
  height: 24px;
  line-height: 24px;
}

.industry-report-grid .industry-report-card .industry-report-content .industry-report-meta {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 14px;
  color: #999999;
}

.industry-report-grid .industry-report-card .industry-report-content .industry-report-meta .industry-report-date {
  color: #999;
  margin-right: 20px;
}

.industry-report-grid .industry-report-card .industry-report-content .industry-report-meta .industry-report-views {
  margin-right: 20px;
}

.industry-report-grid .industry-report-card .industry-report-content .industry-report-download-btn {
  margin-top: 60px;
  background: #ff6800;
  color: white;
  border: none;
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .industry-report-grid .industry-report-card {
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: auto;
  }

  .industry-report-grid .industry-report-card .industry-report-image {
    width: 100%;
    height: 200px;
  }

  .industry-report-grid .industry-report-card .industry-report-content {
    padding: 20px 25px 30px;
  }
}

/* purgecss end ignore */



/* purgecss start ignore */

.kol-wrap {
  font-family: Poppins !important;
  max-width: 1200px;
  color: #212121;
  line-height: 1.15;
}

@media (max-width: 1200px) {
  .kol-wrap {
    padding: 0 20px;
  }
}

.kol-wrap .sm-title {
  position: relative;
  padding-left: 15px;
}

.kol-wrap .sm-title:before {
  position: absolute;
  left: 0;
  top: 2px;
  content: '';
  display: block;
  width: 6px;
  /* 设置方块的宽度 */
  height: 26px;
  /* 设置方块的高度 */
  background-color: #c073e9;
  /* 设置方块的背景颜色 */
}

.footer {
  background-color: #f8f7fe;
}

.footer img {
  max-width: 1200px !important;
  width: 100%;
  margin: 0 auto;
}

.animate-rotate {
  -webkit-animation: rotate 7s linear infinite;
  animation: rotate 7s linear infinite;
}

.animate-rotate.animate-rotate-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-name: rotateReverse;
  animation-name: rotateReverse;
}

.animate-rotate.animate-rotate-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animate-rotate.animate-rotate-4 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.animate-rotate.animate-rotate-5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-name: rotateReverse;
  animation-name: rotateReverse;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes rotateReverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotateReverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/* purgecss end ignore */



/* purgecss start ignore */

.academy-case-tags {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 10px;
  min-height: 17px;
  color: #999;
  font-size: 14px;
}

.academy-case-tags .tags {
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.academy-case-content {
  padding-bottom: 14px !important;
}

.academy-case-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: 24px;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* purgecss end ignore */



/* purgecss start ignore */

.article-detail-skeleton {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

@-webkit-keyframes skeleton-loading {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes skeleton-loading {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.article-detail-skeleton .skeleton-line,
.article-detail-skeleton .skeleton-button,
.article-detail-skeleton .skeleton-image,
.article-detail-skeleton .skeleton-tag {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  -webkit-animation: skeleton-loading 1.5s ease-in-out infinite;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.article-detail-skeleton .article-header-skeleton {
  text-align: center;
  margin-bottom: 60px;
}

.article-detail-skeleton .article-header-skeleton .skeleton-date {
  width: 120px;
  height: 20px;
  margin: 0 auto 20px;
}

.article-detail-skeleton .article-header-skeleton .skeleton-title {
  width: 60%;
  height: 36px;
  margin: 0 auto 12px;
}

.article-detail-skeleton .article-header-skeleton .skeleton-title-line2 {
  width: 40%;
  height: 36px;
  margin: 0 auto 40px;
}

.article-detail-skeleton .article-header-skeleton .skeleton-button {
  width: 160px;
  height: 48px;
  margin: 0 auto;
  border-radius: 24px;
}

.article-detail-skeleton .article-content-skeleton {
  margin-bottom: 40px;
}

.article-detail-skeleton .article-content-skeleton .skeleton-paragraph {
  margin-bottom: 30px;
}

.article-detail-skeleton .article-content-skeleton .skeleton-paragraph .skeleton-line {
  height: 20px;
  margin-bottom: 16px;
}

.article-detail-skeleton .article-content-skeleton .skeleton-paragraph .skeleton-line.skeleton-line-short {
  width: 70%;
}

.article-detail-skeleton .article-content-skeleton .skeleton-image {
  width: 100%;
  height: 400px;
  margin: 40px 0;
  border-radius: 8px;
}

.article-detail-skeleton .article-tags-skeleton {
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article-detail-skeleton .article-tags-skeleton .skeleton-tag {
  width: 80px;
  height: 32px;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .article-detail-skeleton {
    padding: 40px 15px;
  }

  .article-detail-skeleton .article-header-skeleton .skeleton-title {
    width: 90%;
    height: 28px;
  }

  .article-detail-skeleton .article-header-skeleton .skeleton-title-line2 {
    width: 70%;
    height: 28px;
  }

  .article-detail-skeleton .article-content-skeleton .skeleton-image {
    height: 200px;
  }
}

/* purgecss end ignore */

