* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #ffffff;
  color: #1D2129;
  overflow-x: hidden;
  padding-bottom: 100px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
}
.bg-gradient-ding {
  background: linear-gradient(135deg,#2962FF 0%,#7B61FF 100%);
}
.card-shadow {
  box-shadow: 0 2px 14px rgba(41,98,255,0.08);
}
.scroll-hide::-webkit-scrollbar {
  display:none;
}
.grad-purple{
  background: linear-gradient(rgb(213, 189, 255) 0%, rgb(248, 245, 252) 100%);
}
.grad-blue{
  background: linear-gradient(rgb(207, 219, 254) 0%, rgb(245, 245, 251) 100%);
}
.dd-home-head-operation-download {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 35px;
  padding: 6px 0px;
  border: 0px;
  border-radius: 6px;
  background: transparent;
  color: rgb(24, 28, 31);
  font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  white-space: nowrap;
  cursor: pointer;
}
.dd-home-head-operation-download:hover {
  color: #2962FF;
  transition: color 0.2s;
}
.fixedBottom_d41fcd6e {
  bottom: 0px;
  display: flex;
  justify-content: center;
  left: 50%;
  padding-bottom: 32px;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  padding-top: 12px;
  background: rgb(255, 255, 255);
}
.buttonContainer_d41fcd6e {
  padding: 0 16px;
  display: flex;
  gap:12px;
  width: 100%;
  max-width: 720px;
  box-sizing: border-box;
}
.btnItem_d41fcd6e {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  border-radius: 12px;
  font-size:16px;
  font-weight:600;
}
.btnItem_d41fcd6e:nth-child(1) {
  color: rgb(23, 26, 29);
  border: 1px solid rgba(127, 135, 144, 0.24);
  background: rgb(255, 255, 255);
}
.btnItem_d41fcd6e:nth-child(2) {
  color: rgb(255, 255, 255);
  background: linear-gradient(105deg, rgb(198, 118, 255) 0%, rgb(101, 76, 255) 41%, rgb(64, 94, 255) 75%, rgb(0, 127, 255) 99%);
}
.icon_d41fcd6e {
  width:20px;
  height:20px;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-title {
  font-size:20px;
  font-weight:bold;
  color:#2962FF;
}
.header-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.menu-icon {
  width: 24px;
  height:24px;
  cursor: pointer;
}
.flag-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.flag-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(127,135,144,0.24);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flag-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flag-btn:hover {
  border-color: #2962FF;
}
.flag-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  margin: 0;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(127,135,144,0.24);
  list-style: none;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  min-width: 160px;
}
.flag-menu.open {
  display: block;
}
.flag-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #1D2129;
}
.flag-menu li:hover {
  background: #F0F4FF;
}
.flag-menu li img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.banner-wrap {
  position: relative;
  overflow: hidden;
}
#bannerSlider {
  display: flex;
  transition: transform 0.5s ease-out;
  touch-action: pan-y;
}
.banner-item {
  min-width: 100%;
  position: relative;
}
.banner-inner {
  position: relative;
  height:420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner-bg-img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
}
.banner-text-wrap {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 6px;
  z-index:10;
}
.banner-title {
  font-size:22px;
  font-weight:bold;
  color:#444;
}
.banner-desc {
  margin-top:4px;
  font-size:15px;
  color:#555;
}
.banner-btn {
  margin-top:20px;
  background:#2563eb;
  color:#fff;
  border:none;
  font-size:14px;
  font-weight:500;
  padding:8px 20px;
  border-radius:999px;
  box-shadow:0 4px 6px rgba(0,0,0,0.1);
  cursor:pointer;
}
.banner-btn:hover {
  background:#1d4ed8;
}
.banner-dots {
  position:absolute;
  bottom:16px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:20;
}
.banner-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.banner-dot.active {
  background:#ffffff;
}
.jp-intro-section{
  padding:48px 16px;
  text-align:center;
}
.jp-intro-title{
  font-size:24px;
  font-weight:bold;
  line-height:1.5;
  color:#1D2129;
  margin-bottom:32px;
}
.jp-card-row{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:32px;
}
.jp-card{
  background:#f3f4f6;
  border-radius:16px;
  padding:24px;
  text-align:left;
}
.jp-card h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
}
.jp-card p{
  font-size:14px;
  color:#4E5969;
  line-height:1.6;
}
.jp-blue-block{
  background:#2962FF;
  color:#fff;
  border-radius:20px;
  padding:32px 20px;
  text-align:left;
}
.jp-blue-block h2{
  font-size:24px;
  margin-bottom:16px;
}
.jp-blue-block p{
  font-size:14px;
  line-height:1.7;
  margin-bottom:20px;
}
.jp-blue-btn{
  background:#fff;
  color:#2962FF;
  border:none;
  padding:12px 24px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
}
@media(min-width:720px){
  .jp-card-row{
    grid-template-columns:repeat(3,1fr);
  }
}
.product-section {
  padding:16px 16px;
}
.scroll-container {
  overflow-x:auto;
  scrollbar-width:none;
}
.scroll-row {
  display:flex;
  gap:16px;
  width:max-content;
  padding-bottom:8px;
}
.product-card {
  width:260px;
  background:#F0F4FF;
  border-radius:12px;
  padding:20px;
  box-shadow:0 2px 14px rgba(41,98,255,0.08);
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.product-icon-box {
  width:48px;
  height:48px;
  border-radius:12px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-icon-purple {
  background:#E9E5FF;
}
.product-icon-blue {
  background:#E0EBFF;
}
.product-icon-svg {
  width:24px;
  height:24px;
}
.product-card h3 {
  font-size:18px;
  font-weight:600;
}
.product-card p {
  font-size:14px;
  color:#86909C;
  margin-top:8px;
}
.solution-section {
  padding:16px 16px;
  background:#f9fafb;
}
.solution-grid {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.solution-card {
  background:#fff;
  padding:16px;
  border-radius:12px;
  box-shadow:0 2px 14px rgba(41,98,255,0.08);
}
.solution-card h4 {
  font-weight:600;
}
.solution-card p {
  font-size:12px;
  color:#86909C;
  margin-top:4px;
}
.logo-section {
  padding:40px 16px;
  background:#f9fafb;
}
.logo-title {
  text-align:center;
  font-size:20px;
  font-weight:bold;
  margin-bottom:24px;
}
.logo-grid {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:24px 8px;
}
.logo-item {
  display:flex;
  justify-content:center;
  align-items:center;
  height:48px;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* RTL 适配：基于 <html dir="rtl"> 纯 CSS 生效，无需 PHP/JS 干预 */
:root[dir="rtl"] .header-right { flex-direction: row-reverse; }
:root[dir="rtl"] .header-left { flex-direction: row-reverse; }
:root[dir="rtl"] .banner-text-wrap { direction: rtl; }
:root[dir="rtl"] .jp-card { text-align: right; }
:root[dir="rtl"] .jp-blue-block { text-align: right; }
:root[dir="rtl"] .footer-flex { flex-direction: row-reverse; }
:root[dir="rtl"] #bannerSlider { flex-direction: row-reverse; }
:root[dir="rtl"] .flag-menu { right: auto; left: 0; }
