/* ========== /skin/css/css.css ========== */
/* 新盛游戏官网样式表 - 高端商务/金色主题 */

/* reset & base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #fefaf5;
  color: #1e2a2e;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul,
ol {
  list-style: none;
}

/* 容器 */
.zhao886-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* 金色主题变量 */
:root {
  --gold-primary: #c5a267;
  --gold-dark: #b28b4c;
  --gold-light: #e0c8a0;
  --dark-bg: #1e2a2e;
  --gray-light: #f5f0ea;
  --text-dark: #2c2c2c;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* 按钮 */
.zhao886-btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 40px;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(197, 162, 103, 0.3);
}

.zhao886-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 162, 103, 0.4);
  background: linear-gradient(135deg, #d0af70, #c09a50);
}

.zhao886-btn-outline {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 600;
  border-radius: 40px;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.zhao886-btn-outline:hover {
  background: var(--gold-primary);
  color: white;
}

.zhao886-btn-gold-md {
  background: var(--gold-primary);
  padding: 10px 28px;
  border-radius: 32px;
  color: white;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
}

.zhao886-btn-gold-md:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

.zhao886-btn-large {
  padding: 14px 40px;
  font-size: 1.1rem;
}

/* 头部导航 */
.zhao886-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 16px 0;
}

.zhao886-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.zhao886-logo-img {
  height: 48px;
  width: auto;
}

.zhao886-nav-list {
  display: flex;
  gap: 2rem;
}

.zhao886-nav-link {
  font-weight: 500;
  color: #2c2c2c;
  padding: 8px 0;
  position: relative;
}

.zhao886-nav-link.active {
  color: var(--gold-primary);
}

.zhao886-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.zhao886-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.zhao886-lang-switch,
.zhao886-member-icon {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.zhao886-cta-small {
  background: var(--gold-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
}

.zhao886-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* hero */
.zhao886-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zhao886-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zhao886-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zhao886-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.zhao886-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 24px;
}

.zhao886-hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.zhao886-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.zhao886-hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.zhao886-scroll-hint {
  font-size: 0.85rem;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.zhao886-hero-circle-deco {
  position: absolute;
  bottom: 5%;
  right: 3%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 245, 225, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 3;
}
.zhao886-circle-inner {
  text-align: center;
  padding: 12px;
}
.zhao886-circle-text {
  font-size: 0.7rem;
  font-weight: bold;
  color: #b27d40;
  display: block;
}
.zhao886-circle-images {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.zhao886-circle-images img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

/* 筛选区 */
.zhao886-filter-section {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}
.zhao886-filter-grid {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.zhao886-filter-item {
  flex: 1;
  min-width: 160px;
}
.zhao886-filter-item label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.zhao886-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2dcd5;
  border-radius: 28px;
  background: #fefaf5;
  font-size: 0.9rem;
  outline: none;
}
.zhao886-btn-gold-sm {
  background: var(--gold-primary);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
}

/* 三栏卡片 */
.zhao886-cards-section {
  padding: 80px 0;
}
.zhao886-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.zhao886-card {
  background: white;
  padding: 32px 24px;
  border-radius: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.zhao886-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}
.zhao886-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.zhao886-card-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--gold-dark);
}
.zhao886-card-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.zhao886-card-link {
  color: var(--gold-primary);
  font-weight: 600;
}

/* 地图模块 */
.zhao886-map-section {
  padding: 80px 0;
  background: var(--gray-light);
}
.zhao886-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.zhao886-map-img {
  border-radius: 28px;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}
.zhao886-accordion-item {
  background: white;
  margin-bottom: 12px;
  border-radius: 24px;
  overflow: hidden;
}
.zhao886-accordion-header {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  background: white;
  display: flex;
  justify-content: space-between;
}
.zhao886-accordion-content {
  padding: 0 20px 16px 20px;
  display: none;
  color: #5a5a5a;
}
.zhao886-accordion-item.active .zhao886-accordion-content {
  display: block;
}
.zhao886-map-right {
  background: linear-gradient(145deg, #fff4e6, #fff);
  padding: 40px;
  border-radius: 40px;
}
.zhao886-map-title {
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.zhao886-city {
  display: inline-block;
  background: var(--gold-light);
  padding: 6px 18px;
  border-radius: 60px;
  margin: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* 优惠活动轮播 */
.zhao886-offer-section {
  padding: 80px 0;
}
.zhao886-offer-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.zhao886-carousel-container {
  overflow: hidden;
  border-radius: 32px;
}
.zhao886-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.zhao886-carousel-slide {
  flex: 0 0 100%;
}
.zhao886-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}
.dot.active {
  background: var(--gold-primary);
  width: 28px;
  border-radius: 10px;
}
.zhao886-offer-info h2 {
  font-size: 2.2rem;
  margin: 12px 0;
}
.zhao886-offer-badge {
  color: var(--gold-primary);
  letter-spacing: 2px;
  font-weight: 600;
}

/* 餐饮模块 -> 研发文化 */
.zhao886-dining-section {
  background: var(--gray-light);
  padding: 80px 0;
}
.zhao886-dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.zhao886-dining-carousel {
  overflow: hidden;
  border-radius: 32px;
}
.zhao886-dining-track {
  display: flex;
  transition: transform 0.5s ease;
}
.zhao886-dining-slide {
  flex: 0 0 100%;
}
.zhao886-dining-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}
.zhao886-dining-buttons button {
  background: white;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 40px;
  margin: 0 4px;
  cursor: pointer;
}
.zhao886-dining-text h3 {
  color: var(--gold-primary);
  letter-spacing: 2px;
  font-size: 1rem;
}
.zhao886-dining-text h2 {
  font-size: 2.4rem;
  margin: 16px 0;
}

/* 用户评价 */
.zhao886-reviews-section {
  padding: 80px 0;
}
.zhao886-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.zhao886-reviews-carousel {
  overflow: hidden;
}
.zhao886-reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 32px;
}
.zhao886-review-card {
  background: white;
  flex: 0 0 calc(33.333% - 22px);
  padding: 32px;
  border-radius: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.zhao886-carousel-dots-reviews {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

/* 联系+售后 */
.zhao886-contact-section {
  background: #1e2a2e;
  color: #f0ebe5;
  padding: 80px 0;
}
.zhao886-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.zhao886-contact-list li {
  margin-bottom: 14px;
}
.zhao886-contact-list a {
  color: var(--gold-light);
}
.zhao886-faq-item {
  background: rgba(255,255,240,0.05);
  margin-bottom: 16px;
  border-radius: 28px;
}
.zhao886-faq-question {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.zhao886-faq-answer {
  padding: 0 24px 18px 24px;
  display: none;
}
.zhao886-faq-item.active .zhao886-faq-answer {
  display: block;
}
.zhao886-social-links {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  font-size: 1.8rem;
}

/* 底部 */
.zhao886-footer {
  background: #0f191c;
  color: #ccc;
  padding: 48px 0 24px;
}
.zhao886-footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.zhao886-footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
}
.zhao886-mini-map span {
  display: inline-block;
  margin: 8px 12px 0 0;
  color: var(--gold-light);
}
.zhao886-brand-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.zhao886-brand-logos img {
  height: 40px;
  opacity: 0.8;
}
.zhao886-copyright {
  text-align: center;
  border-top: 1px solid #2a3a3f;
  padding-top: 24px;
  font-size: 0.8rem;
}

/* 响应式 */
@media (max-width: 1024px) {
  .zhao886-cards-grid, .zhao886-map-wrapper, .zhao886-offer-flex, .zhao886-dining-grid, .zhao886-contact-grid, .zhao886-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .zhao886-nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 24px;
    margin-top: 20px;
  }
  .zhao886-nav-list.show {
    display: flex;
  }
  .zhao886-mobile-toggle {
    display: block;
  }
  .zhao886-header-actions {
    margin-left: auto;
  }
  .zhao886-hero-title {
    font-size: 2.5rem;
  }
  .zhao886-review-card {
    flex: 0 0 100%;
  }
  .zhao886-hero-circle-deco {
    width: 100px;
    height: 100px;
    bottom: 2%;
  }
}
@media (max-width: 640px) {
  .zhao886-container {
    padding: 0 20px;
  }
  .zhao886-filter-grid {
    flex-direction: column;
  }
  .zhao886-btn-large {
    padding: 10px 24px;
  }
}