/*fp-seed:zoj11eqazz8w v4.9 eqbnd4bdr*/
/* ===== 首页 Banner 容器 ===== */
.royal-hero-banner {
  position: relative;
  width: 100vw;
  height: 600px;
  overflow: hidden;
  background: #0b1a33;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
  flex-shrink: 0}

/* ===== 背景轮播 ===== */
.banner-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0}
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity}
.banner-slide.active { opacity: 1}
.banner-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.1) 100%);*/
  z-index: 1}

/* ===== 顶层内容 ===== */
.royal-hero-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  height: 600px;
  justify-content: flex-start;
  padding-top: 0}

/* ===== Banner 文字 ===== */
.royal-hero-text {
  position: relative;
  z-index: 2;
  padding: 1rem 5rem;
  margin-top: 7rem;
  text-align: center;
  max-width: 100%}
.banner-text-wrapper {
  position: relative;
  min-height: 12rem}
.banner-text-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 0.8s ease;
  transform: translateY(12px);
  pointer-events: none}
.banner-text-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto}
.banner-text-slide h1,.banner-text-slide h2{
  font-size: clamp(2.2rem, 5.5vw, 2.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em}
.banner-text-slide h1 i,.banner-text-slide h2 i{
  font-style: normal;
  background: linear-gradient(135deg, #ffffff, #c7e2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text}
.banner-text-slide p {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  margin-top: 0.2rem}
.banner-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: right;
  width: 100%;
  margin-top: 18rem;
  justify-content: center}
.banner-cta .btn-primary-white {
  background: white;
  color: #0b1a33;
  padding: 0.7rem 2.2rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: var(--royal-transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  cursor: default}
.banner-cta .btn-primary-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25)}
.banner-cta .btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  padding: 0.7rem 2.2rem;
  border-radius: 3rem;
  font-weight: 500;
  transition: var(--royal-transition);
  backdrop-filter: blur(4px);
  cursor: default}
.banner-cta .btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: white}

/* ===== 指示器 ===== */
.banner-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.7rem}
.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15)}
.banner-dot.active {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.4);
  border-color: white}
.banner-dot:hover {
  background: rgba(255, 255, 255, 0.7)}

/* ===== 左右切换按钮 ===== */
.banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden}
.royal-hero-banner:hover .banner-nav-btn {
  opacity: 1;
  visibility: visible}
.banner-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08)}
.banner-nav-btn-prev { left: 20px}
.banner-nav-btn-next { right: 20px}

/* ===== 内页Banner（用于内页，但放在index.css中作为独立样式） ===== */
.inner-page-wrapper {
  position: relative;
  width: 100%;
  /*min-height: 100vh;*/
  background: #f5f7fa}
.inner-page-banner {
  width: auto;
  height: 420px;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem}
.inner-page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200" opacity="0.06"><path d="M0 100 Q 150 20 300 100 T 600 100 T 900 100 T 1200 100 L 1200 200 L 0 200 Z" fill="white"/></svg>') repeat-x bottom;
  background-size: 1200px 200px;
  pointer-events: none}
.inner-page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none}
.inner-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
  margin-top: 1.5rem}
.inner-banner-content h1,.inner-banner-content h2{
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  /*max-width: 700px;*/
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem}

.inner-banner-content p {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate}
.inner-banner-content .breadcrumb {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: white}
.inner-banner-content .breadcrumb i {
  margin: 0 0.4rem;
  font-size: 0.6rem}



/* ===== Homepage Specific Styles ===== */
.royal-home .royal-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--royal-space-xl)}

.royal-home .royal-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--royal-space-lg)}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 40px !important}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.7;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: var(--royal-transition);
  border: 2px solid transparent}

.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2)}

.swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
  transform: scale(1.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5)}

/* ===== Application Areas ===== */
.royal-applications-section {
  background: var(--royal-bg-white);
  padding: var(--royal-space-xs) 0}

.royal-applications-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--royal-space-md)}

.royal-application-card {
  background: var(--royal-bg-white);
  border-radius: var(--royal-radius-md);
  padding: var(--royal-space-lg) var(--royal-space-sm);
  box-shadow: var(--royal-shadow);
  transition: var(--royal-transition);
  text-align: center;
  border: 1px solid var(--royal-border-light);
  position: relative;
  overflow: hidden}

.royal-application-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--royal-shadow-md)}

.royal-application-icon-container {
  margin-bottom: var(--royal-space-md)}

.royal-application-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--royal-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: var(--royal-font-xl);
  color: white}

/* Application icon color variations */
.royal-application-card:nth-child(1) .royal-application-icon { background: var(--royal-gradient-primary)}
.royal-application-card:nth-child(2) .royal-application-icon { background: var(--royal-gradient-green)}
.royal-application-card:nth-child(3) .royal-application-icon { background: var(--royal-gradient-purple)}
.royal-application-card:nth-child(4) .royal-application-icon { background: var(--royal-gradient-orange)}
.royal-application-card:nth-child(5) .royal-application-icon { background: var(--royal-gradient-red)}
.royal-application-card:nth-child(6) .royal-application-icon { background: var(--royal-gradient-cyan)}

.royal-application-card h3 {
  font-size: var(--royal-font-md);
  margin-bottom: 0.8rem;
  color: var(--royal-text-dark);
  font-weight: 600}

.royal-application-card p {
  color: var(--royal-text-lighter);
  line-height: 1.4}



/* Timeline */
.royal-timeline {
  margin: var(--royal-space-lg) 0;
  position: relative}

.royal-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--royal-primary-blue);
  margin-left: 15px}

.royal-timeline-item {
  margin-bottom: var(--royal-space-md);
  padding-left: var(--royal-space-xl);
  position: relative}

.royal-timeline-item:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--royal-primary-blue);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--royal-primary-blue)}

.royal-timeline-item h4 {
  font-size: var(--royal-font-md);
  margin-bottom: 0.5rem;
  color: var(--royal-primary-blue);
  font-weight: 600}

.royal-timeline-item p {
  color: var(--royal-text-light);
  margin-bottom: 0;
  line-height: 1.6}

.royal-about-image {
  border-radius: var(--royal-radius-md);
  overflow: hidden;
  box-shadow: var(--royal-shadow);
  height: 480px;
  margin-bottom: var(--royal-space-lg)}

.royal-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--royal-transition-slow)}

.royal-about-image:hover img {
  transform: scale(1.05)}

.royal-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--royal-space-xl)}

.royal-stat-number {
  font-size: var(--royal-font-xl);
  font-weight: 700;
  color: var(--royal-primary-blue);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem}

.royal-stat-text {
  color: var(--royal-text-light);
  font-weight: 500}



/* ===== News Section ===== */
.royal-news-section {
  background: var(--royal-bg-white);
  padding: var(--royal-space-default) 0}

.royal-news-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--royal-space-lg);
  align-items: start}

.royal-news-slider {
  height: 100%;
  border-radius: var(--royal-radius-md);
  overflow: hidden;
  box-shadow: var(--royal-shadow)}

.royal-news-swiper {
  height: 100%;
  border-radius: var(--royal-radius-md)}

.royal-news-slide-item {
  height: 100%;
  background: var(--royal-bg-white)}

.royal-news-slide-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--royal-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3}

/* Aspect ratio fallback */
@supports not (aspect-ratio: 4 / 3) {
  .royal-news-slide-image::before {
    content: '';
    display: block;
    padding-top: 75%}

  .royal-news-slide-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%}
}

.royal-news-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--royal-transition-slow)}

.royal-news-slide-item:hover .royal-news-slide-image img {
    transform: scale(1.1)}

.royal-news-slide-content {
  padding: var(--royal-space-lg)}

.royal-news-slide-content h3 {
  font-size: var(--royal-font-md);
  margin-bottom: var(--royal-space-sm);
  color: var(--royal-text-dark);
  font-weight: 600;
  line-height: 1.4}

.royal-news-slide-content p {
  color: var(--royal-text-light);
  margin-bottom: var(--royal-space-md);
  line-height: 1.6}

.royal-news-slide-content .royal-news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center}

.royal-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  background: var(--royal-bg-white);
  border-radius: var(--royal-radius-md);
  padding: 0 var(--royal-space-md);
  box-shadow: var(--royal-shadow)}

.royal-news-list-item {
  padding: var(--royal-space-md) 0rem;
  transition: var(--royal-transition);
  display: flex;
  gap: var(--royal-space-md);
  align-items: flex-start;
  border-bottom: 1px solid var(--royal-border-light)}

.royal-news-list-item:last-child {
  border-bottom: none}

.royal-news-list-image {
  width: 7.5rem;
  position: relative;
  overflow: hidden;
  background: var(--royal-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--royal-radius)}

/* Aspect ratio fallback */
@supports not (aspect-ratio: 4 / 3) {
  .royal-news-list-image::before {
    content: '';
    display: block;
    padding-top: 75%}

  .royal-news-list-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%}
}

.royal-news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--royal-transition-slow)}
 
.royal-news-list-content {
  flex: 1}

.royal-news-list-content h4 {
  font-size: var(--royal-font-default);
  margin-bottom:var(--royal-space-xs);
  color: var(--royal-text-dark);
  font-weight: 600;
  line-height: 1.4}

.royal-news-list-content p {
  color: var(--royal-text-lighter);
   font-size: var(--royal-font-sm);
    margin-bottom:var(--royal-space-xs)}

.royal-news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center}

.royal-news-date {
  color: var(--royal-text-lighter);
  font-weight: 500;
   font-size: var(--royal-font-sm)}

.royal-news-category {
  background: var(--royal-blue-100);
  color: var(--royal-blue-500);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: var(--royal-font-xs);
  font-weight: 600}





/* ===== Contact Section ===== */
.royal-contact-section {
  background: var(--royal-bg-white);
  padding: var(--royal-space-default) 0}

.royal-contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem}

.royal-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--royal-space-md)}

.royal-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--royal-space-md);
  background: var(--royal-bg-white);
  padding: var(--royal-space-md);
  border-radius: var(--royal-radius-md);
  box-shadow: var(--royal-shadow-sm);
  transition: var(--royal-transition);
  border: 1px solid var(--royal-border-light)}

.royal-contact-item:hover {
  transform: translateX(3px);
  box-shadow: var(--royal-shadow)}

.royal-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--royal-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--royal-font-md);
  flex-shrink: 0}

/* Contact icon color variations */
.royal-contact-item:nth-child(1) .royal-contact-icon { background: var(--royal-gradient-primary)}
.royal-contact-item:nth-child(2) .royal-contact-icon { background: var(--royal-gradient-green)}
.royal-contact-item:nth-child(3) .royal-contact-icon { background: var(--royal-gradient-purple)}
.royal-contact-item:nth-child(4) .royal-contact-icon { background: var(--royal-gradient-orange)}
.royal-contact-item:nth-child(5) .royal-contact-icon { background: var(--royal-gradient-red)}
.royal-contact-item:nth-child(6) .royal-contact-icon { background: var(--royal-gradient-cyan)}

.royal-contact-details h3 {
  margin-bottom: 0.5rem;
  color: var(--royal-text-dark);
  font-size: var(--royal-font-md);
  font-weight: 600}

.royal-contact-details p {
  color: var(--royal-text-light)}

.royal-jobs-preview {
  background: var(--royal-blue-50);
  padding: var(--royal-space-sm);
  border-radius: var(--royal-radius);
  margin-top: var(--royal-space-sm);
  border-left: 3px solid var(--royal-primary-blue)}

.royal-job-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--royal-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center}

.royal-job-item:last-child {
  border-bottom: none}

.royal-job-title {
  font-weight: 500;
  width:10rem;
  color: var(--royal-text-dark);
  font-size: var(--royal-font-sm)}

.royal-job-meta {
  color: var(--royal-text-light);
  font-size: var(--royal-font-sm)}

.royal-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--royal-space-md);
  background: var(--royal-bg-white);
  padding: var(--royal-space-xl);
  border-radius: var(--royal-radius-lg);
  box-shadow: var(--royal-shadow);
  border: 1px solid var(--royal-border-light)}/*global-9s9313dcgte*/

.royal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem}

.royal-form-group label {
  font-weight: 500;
  color: var(--royal-text-dark);
  font-size: var(--royal-font-md)}

.royal-form-group input,
.royal-form-group textarea {
  padding: 0.9rem;
  border: 1.5px solid var(--royal-border-light);
  border-radius: var(--royal-radius);
  font-size: var(--royal-font-sm);
  transition: var(--royal-transition);
  background: var(--royal-bg-light)}

.royal-form-group input:focus,
.royal-form-group textarea:focus {
  outline: none;
  border-color: var(--royal-primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1)}

/* 数字力量区域 (保留完整样式，与整体风格统一) */
.royal-stats-section {
  background: var(--royal-gradient-bg);
  padding: var(--royal-space-default) 0;
  position: relative}
.royal-section-title {
  text-align: center;
  margin-bottom: var(--royal-space-sm)}
.royal-section-title h2 {
  font-size: var(--royal-font-xl);
  color: var(--royal-text-dark);
  margin-bottom: var(--royal-space-sm);
  font-weight: 700;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  gap: var(--royal-space-sm)}
.royal-section-title h2:before,
.royal-section-title h2:after {
  content: '◆';
  color: var(--royal-primary-blue);
  font-size: var(--royal-font-sm);
  animation: royal-diamond-bounce 2s ease-in-out infinite}
@keyframes royal-diamond-bounce {
  0%, 100% { transform: translateY(0)}
  50% { transform: translateY(-0.1875rem)}
}
.royal-section-title p {
  color: var(--royal-text-light);
  max-width: 45rem;
  margin: 0 auto;
  font-size: var(--royal-font-md)}
.royal-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--royal-space-lg);
  margin-top: var(--royal-space-md)}
.royal-stat-card {
  background: var(--royal-bg-white);
  border-radius: var(--royal-radius-xl);
  padding: var(--royal-space-lg) var(--royal-space-md);
  text-align: center;
  box-shadow: var(--royal-shadow);
  transition: var(--royal-transition);
  border: 1px solid var(--royal-border-light);
  position: relative}
.royal-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--royal-shadow-lg)}
.royal-stat-icon {
  width: 4rem;
  height: 4rem;
  background: var(--royal-gradient-ico);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  color: white;
  font-size: 1.8rem}
.royal-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1a5fad, #1f50c1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent}
.royal-stat-label {
  font-size: var(--royal-font-default);
  font-weight: 600;
  color: var(--royal-text-dark);
  margin: 0.5rem 0 0.25rem}
.royal-stat-desc {
  font-size: var(--royal-font-sm);
  color: var(--royal-text-light)}
.royal-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  background: radial-gradient(circle, rgba(59,130,246,0.03) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none}
.royal-more-products {
  text-align: center;
  margin-top: var(--royal-space-sm)}

/* ========= 合作伙伴区域：无边框设计，5:2 宽高比例（aspect-ratio 5 / 2）高级排版 ========= */
.royal-partners-section {
  padding: var(--royal-space-default) 0;
  background: var(--royal-gradient-bg);
  position: relative}
/* 背景微光提升层次感 */
.royal-partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(59,130,246,0.02) 0%, rgba(255,255,255,0) 80%);
  pointer-events: none}
.royal-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem 0.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2}
/* 卡片完全无边框，仅悬浮微动效，背景透明 */
.royal-partner-card {
  background: transparent;
  border-radius: var(--royal-radius-lg);
  padding: 0.2rem;
  transition: var(--royal-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  box-shadow: none;
  border: none}
.royal-partner-card:hover {
  transform: translateY(-5px)}
/* Logo 容器强制 5:2 宽高比例，精致且无边框 */
.partner-logo-box {
  width: 100%;
  aspect-ratio: 5 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#fff;
  border-radius: var(--royal-radius);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  padding: 0rem}
.partner-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.05) brightness(0.99);
  transition: all 0.4s ease;
  opacity: 0.88}
.royal-partner-card:hover .partner-logo-img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.02);
  opacity: 1}
/* 图片加载失败优雅占位（无边框风格） */
.partner-logo-box .logo-fallback {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 400;
  border: none}
