.elementor-31183 .elementor-element.elementor-element-54f7786{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-31183 .elementor-element.elementor-element-54f7786.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:769px){.elementor-31183 .elementor-element.elementor-element-54f7786{--width:102.685%;}}/* Start custom CSS for text-editor, class: .elementor-element-fcac30a *//* ================= 全局与基础样式 ================= */
.peek-premium-container {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
  line-height: 1.6;
}

.peek-section {
  padding: 60px 20px;
  border-bottom: 1px solid #eaeaea;
}

.peek-section:nth-child(even) {
  background-color: #f8fbff;
}

.peek-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.peek-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0066cc;
  margin: 15px auto 0;
}

/* ================= 卡片与网格布局 ================= */
.peek-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.peek-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #0066cc;
}

.peek-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.peek-card-icon {
  font-size: 2rem;
  color: #0066cc;
  margin-bottom: 20px;
}

.peek-card h3 {
  font-size: 1.25rem;
  color: #0a2540;
  margin-bottom: 15px;
  font-weight: 600;
}

.peek-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* 列表型展示 (性能参数) */
.peek-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

.peek-list-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background: #fff;
  border-left: 3px solid #0066cc;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.peek-list-item i {
  font-size: 1.2rem;
  color: #0066cc;
  margin-top: 4px;
  margin-right: 15px;
  width: 25px;
  text-align: center;
}

/* ================= 采购须知特殊高亮 ================= */
.peek-highlight-box {
  background: #0a2540;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-top: 20px;
}

.peek-highlight-box h3 {
  color: #fff;
  margin-bottom: 20px;
}

.peek-highlight-box ul {
  list-style: none;
  padding: 0;
}

.peek-highlight-box li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.peek-highlight-box li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #4db8ff;
}

/* ================= FAQ 风箱式模块 ================= */
.peek-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.peek-details {
  margin-bottom: 15px;
  border: 1px solid #e0e6ed;
  border-radius: 6px;
  background-color: #fff;
}

.peek-summary {
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0a2540;
}

.peek-summary::-webkit-details-marker { display: none; }

.peek-details[open] .peek-summary {
  border-bottom: 1px solid #e0e6ed;
  color: #0066cc;
}

.peek-faq-content {
  padding: 20px 25px;
  color: #555;
  background-color: #fafbfc;
}

/* ================= 召唤按钮 ================= */
.peek-btn-container {
  text-align: center;
  margin-top: 40px;
}

.peek-btn {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.peek-btn:hover {
  background-color: #004b99;
  transform: translateY(-2px);
  color: #fff;
}

/* ================= 弹窗表单 (Modal) ================= */
.peek-modal-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 37, 64, 0.7);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.peek-modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  animation: peekModalFadeIn 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes peekModalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.peek-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.peek-modal-close:hover {
  color: #333;
}

.peek-modal-header {
  font-size: 1.5rem;
  color: #0a2540;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 10px;
}/* End custom CSS */