.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flexbox-center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flexbox-middle {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.flexbox-between {
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flexbox-end {
  -webkit-box-align: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.opacity:hover {
  opacity: 0.8;
}

/* ===========================
   Main Container
   =========================== */
body {
  background-color: #F8FAFC;
}
.openshop .openshop-container {
  width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 78px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ===========================
   Section Headers
   =========================== */
.openshop-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-dot {
  display: block;
  width: 6px;
  height: 24px;
  border-radius: 9999px;
}
.section-dot--blue {
  background-color: #0088fa;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #1E2939;
  line-height: 1.333;
  margin: 0;
}
.section-title--sub {
  font-size: 20px;
  line-height: 1.4;
  color: #364153;
}

/* ===========================
   Featured Cards Row
   =========================== */
.featured-row {
  display: flex;
  gap: 24px;
}
.featured-row .featured-card:nth-child(2) .btn-register--featured {
  background: #000000;
}
.featured-card {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 380px;
  border-radius: 14px;
  box-shadow: 0px 4px 6px -4px rgba(0,0,0,0.10), 0px 10px 15px -3px rgba(0,0,0,0.10);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -o-transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.slot-clone {
  position: absolute;
  right: 11px;
  top: 11px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.featured-card:hover {
  border-color: #155DFC;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(21, 93, 252, 0.15);
}
.featured-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 28px 24px;
  box-sizing: border-box;
  border-radius: 14px;
  box-shadow: 0px 4px 6px -4px rgba(0,0,0,0.10), 0px 10px 15px -3px rgba(0,0,0,0.10); 
}
.featured-card__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured-card__logo {
  display: block;
  width: 192px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.featured-card__name {
  font-size: 20px;
  font-weight: 700;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #101828;
  line-height: 1.4;
  margin: 0;
}
.featured-card__desc {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #858586;
  line-height: 1.625;
  max-height: 3.35em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.featured-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.featured-card__links {
  display: flex;
  gap: 8px;
}

/* ===========================
   Register Button (Shared)
   =========================== */
.btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #155DFC 0%, #2B7FFF 100%);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
}
.btn-register:hover {
  opacity: 0.85;
  color: #ffffff;
}
.btn-register--featured {
  height: 52px;
  font-size: 16px;
}


/* ===========================
   Secondary Buttons (Featured)
   =========================== */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #364153;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}
.btn-secondary:hover {
  background: #F3F4F6;
  border-color: #D1D5DC;
  color: #1E2939;
}
.btn-secondary .btn-icon {
  flex-shrink: 0;
  opacity: 0.7;
  margin-right: 6px;
  
}

/* ===========================
   Outline Buttons (Grid)
   =========================== */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #364153;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}
.btn-outline:hover {
  background: #F3F4F6;
  border-color: #D1D5DC;
  color: #1E2939;
}

/* ===========================
   Platform Grid
   =========================== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #F3F4F6;
  border-radius: 14px;
  padding: 28px;
  box-sizing: border-box;
  min-height: 360px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.platform-card:hover {
  border-color: #155DFC;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.platform-card__logo-wrap {
  margin-bottom: 16px;
}
.platform-card__logo-wrap img {
  display: block;
  width: 140px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
}
.platform-card__info {
  margin-bottom: 4px;
}
.platform-card__name {
  font-size: 18px;
  font-weight: 700;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #101828;
  line-height: 1.556;
  margin: 0;
}
.platform-card__desc {
  font-size: 14px;
  font-weight: 400;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #4A5565;
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  max-height: 4.875em;
  margin-bottom: 16px;
}
.platform-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.platform-card__links {
  display: flex;
  gap: 8px;
}

/* ===========================
   Coming Soon Card
   =========================== */
.platform-card--coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F9FAFB;
  border: 1px dashed #E5E7EB;
  min-height: 360px;
}
.platform-card--coming:hover {
  border-color: #E5E7EB;
  box-shadow: none;
}
.coming-soon__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.coming-soon__title {
  font-size: 18px;
  font-weight: 700;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #858586;
  margin-bottom: 16px;
  text-align: center;
}
.coming-soon__text {
  font-size: 14px;
  font-weight: 400;
  font-family: Inter, PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  color: #858586;
  text-align: center;
  padding: 0 20px;
  line-height: 20px;
}

/* ===========================
   Consult Popup
   =========================== */
.consult-model {
  display: none;
  align-items: center;
  flex-direction: column;
  background: #ffffff;
  padding: 9px 16px;
  border-radius: 8px;
  box-shadow: 1px 1px 14px 4px rgba(219,228,241,0.45); 
  position: absolute;
  z-index: 99;
  right: 12px;
  top: 49px;
}
.consult-model .code {
  width: 110px;
  height: 110px;
  margin: 4px auto;
  display: block;
  background: #ffffff;
}
.consult-model .describe-text {
  color: #858586;
  font-size: 12px;
  text-align: center;
  margin-bottom: 4px;
}
.consult-model .consult-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.consult-model .phone-img {
  width: 14px;
  height: 14px;
  margin: 0 !important;
}
.consult-model .phone-text {
  font-size: 14px;
  font-weight: 600;
  color: #020202;
}

/* ===========================
   Feikua Dropdown Overrides
   =========================== */
.openshop .feikua-drop {
  background: linear-gradient(90deg, #155DFC 0%, #2B7FFF 100%);
  border: none;
  border-radius: 10px;
}
.featured-row .featured-card:nth-child(1) .feikua-drop {
  background: linear-gradient(98deg, #ff9900, rgba(255,153,0,0.87) 100%);
}
.featured-row .featured-card:nth-child(2) .feikua-drop {
  background: linear-gradient(98deg, #000000, rgba(0,0,0,0.87) 100%);
}
.featured-row .featured-card:nth-child(3) .feikua-drop {
  background: linear-gradient(98deg, #ee4d2d, rgba(238,77,45,0.87) 100%);
}
.openshop .feikua-drop.btn-register--featured {
  height: 52px;
}
.openshop .feikua-drop:hover {
  opacity: 0.85;
}
.openshop .feikua-drop[label]::before {
  border-right: none;
}
.openshop .feikua-drop.btn-register[label]::before {
  background: url('/static_browser/home/image/openshop/storeIcon@2x.png') no-repeat left center;
  background-size: 20px 20px;
  padding-left: 28px;
}
.openshop .feikua-drop-2[label]::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23858586' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") no-repeat left center;
  background-size: 14px 14px;
  padding-left: 22px;
}
.openshop .feikua-drop.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #E5E7EB;
  color: #364153;
  font-size: 12px;
  font-weight: 500;
}
.openshop .feikua-drop.btn-secondary:hover {
  background: #F3F4F6;
  border-color: #D1D5DC;
  color: #1E2939;
  opacity: 1;
}
.openshop .feikua-drop.btn-outline {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  color: #364153;
  font-size: 12px;
  font-weight: 500;
}
.openshop .feikua-drop.btn-outline:hover {
  background: #F3F4F6;
  border-color: #D1D5DC;
  color: #1E2939;
  opacity: 1;
}
.openshop .feikua-dropcolumn:not([disabled])::after {
  content: '\25B2';
  transform: rotate(90deg);
  margin-left: 12px;
  font-size: 10px;
}

/* ===========================
   Detail Page (.openshopview) - PRESERVED
   =========================== */
.openshopview .openshopview-banner {
  height: 340px;
}
.openshopview .openshopview-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 68px 29px 51px 36px;
  width: 1280px;
  min-height: 500px;
  background: #ffffff;
  box-shadow: 0px 8px 10px 0px rgba(235, 235, 235, 0.45);
  box-sizing: border-box;
  margin: auto;
  margin-top: -62px;
  margin-bottom: 78px;
}
.openshopview .openshopview-container .openshopview-left-content {
  min-width: 847px;
}
.openshopview .openshopview-container .openshopview-left-content .markdown-body > p:first-of-type {
  width: 723px;
}
.openshopview .openshopview-container .openshopview-left-content .title-icon {
  display: block;
  width: 29px;
  height: 29px;
}
.openshopview .openshopview-container .openshopview-left-content .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 28px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 500;
  color: #0088fa;
}
.openshopview .openshopview-container .openshopview-left-content .title:target {
  padding-top: 84px;
  margin-top: 0 !important;
}
.openshopview .openshopview-container .openshopview-left-content .title:not(:first-child) {
  margin-top: 45px;
}
.openshopview .openshopview-container .openshopview-left-content .describe {
  font-size: 18px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  margin-top: 9px;
}
.openshopview .openshopview-container .openshopview-left-content .describe-img {
  display: block;
  width: 100%;
  height: auto;
}
.openshopview .openshopview-container .openshopview-left-content h2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.openshopview .openshopview-container .openshopview-left-content h2:not(:first-child) {
  margin-top: 45px;
}
.openshopview .openshopview-container .openshopview-left-content h2::before {
  content: ' ';
  display: block;
  background: url('/static_browser/home/image/openshop/title_icon.png') no-repeat;
  background-size: 100% 100%;
  width: 29px;
  height: 29px;
  margin-right: 9px;
}
.openshopview .openshopview-container .openshopview-right-content {
  min-height: 1200px;
}
.openshopview .openshopview-container .openshopview-right-content .sticky-content {
  position: sticky;
  top: 80px;
  min-height: 900px;
}
.openshopview .openshopview-container .openshopview-right-content img {
  width: 190px;
  height: 64px;
  display: block;
}
.openshopview .openshopview-container .openshopview-right-content .describe {
  font-size: 18px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 600;
  text-align: LEFT;
  color: #333333;
  margin-top: 5px;
  margin-bottom: 5px;
}
.openshopview .openshopview-container .openshopview-right-content .platform {
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #858586;
  margin-bottom: 14px;
  width: 300px;
}
.openshopview .openshopview-container .openshopview-right-content .website-text {
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  color: #ec8c02;
  background: #fff6f0;
  border-radius: 16px;
  padding: 6px 22px;
}
.openshopview .openshopview-container .openshopview-right-content .website-text:hover {
  opacity: 0.8;
}
.openshopview .openshopview-container .openshopview-right-content .register {
  padding: 6px 22px;
  background: linear-gradient(180deg, #ff8c21, #ff5b1b 100%);
  border-radius: 16px;
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
}
.openshopview .openshopview-container .openshopview-right-content .register:hover {
  opacity: 0.8;
}
.openshopview .openshopview-container .openshopview-right-content .href-group {
  margin-top: 43px;
}
.openshopview .openshopview-container .openshopview-right-content .href-group .subtitle {
  font-size: 16px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  margin-bottom: 11px;
}
.openshopview .openshopview-container .openshopview-right-content .href-group a {
  display: block;
  font-size: 16px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 600;
  text-decoration: underline;
  text-align: LEFT;
  color: #333333;
  line-height: 26px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group {
  margin-top: 34px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group .subtitle {
  font-size: 16px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  margin-bottom: 11px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group a {
  display: inline-block;
  box-sizing: border-box;
  padding: 6px 22px;
  border: 1px solid #edeef2;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  margin-top: 12px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group a:hover {
  opacity: 0.8;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group a:not(:nth-child(4n)) {
  margin-right: 6px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group a:hover {
  border: 1px solid #ec8c02;
  border-radius: 17px;
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #ec8c02;
}
.openshopview .openshopview-container .consult-model {
  width: 308px;
  background: linear-gradient(114deg, #d0eaff 0%, #f6fbff 44%, #edf7ff 100%);
  border-radius: 6px;
  padding: 14px 18px;
  box-sizing: border-box;
  margin-top: 33px;
}
.openshopview .openshopview-container .consult-model .qrcode {
  width: 100px;
  height: 100px;
  margin-right: 21px;
}
.openshopview .openshopview-container .consult-model .phone-img {
  width: 14px;
  height: 14px;
}
.openshopview .openshopview-container .consult-model .phone-text {
  font-size: 14px;
  font-weight: 600;
  color: #020202;
  margin-left: 4px;
}
.openshopview .openshopview-container .divide {
  width: 1px;
  background: #edeef2;
  margin: 0 30px;
}
.openshopview .openshopview-container .margin-t-45 {
  margin-top: 45px;
}
.feikua-drop::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: url('/static_browser/home/image/openshop/arrow_down.png') no-repeat center;
  background-size: contain;
  transform: rotate(0deg);
}
.featured-card__links .feikua-drop::after {
  content: '';
  display: block;
  width: 10px;
  height: 100%;
  background: url('/static_browser/home/image/arrow_down.png') no-repeat center;
  background-size: contain;
  transform: rotate(0deg);
}
.platform-card__links .feikua-drop::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url('/static_browser/home/image/arrow_down.png') no-repeat center;
  background-size: cover;
  margin-bottom: 3px;
  margin-left: -5px;
  transform: rotate(0deg);
}
