* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}
.protect_carousel-content {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.protect_carousel-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 640px) {
  .banner-img {
    height: 200px;
  }
  .protect_carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
  }
  .protect_carousel-content h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 968px) {
  .protect_carousel-content h2 {
    font-size: 2rem;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* 页面头部 */
.page-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1A4FA2, #2563eb);
  opacity: 0.05;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1A4FA2, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  position: relative;
  z-index: 1;
}

/* 主要内容区域 */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* 联系信息卡片 */
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1A4FA2, #2563eb);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-title-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1A4FA2, #2563eb);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

/* 公司Logo区域 */
.company-logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1A4FA2, #2563eb);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 79, 162, 0.3);
}

.logo-text {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.company-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.company-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
}

/* 联系信息列表 */
.contact-info-contact {
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A4FA2;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
}

.contact-value a {
  color: #1A4FA2;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-value a:hover {
  color: #2563eb;
}

/* 快速联系按钮 */
.quick-contact {
  margin-top: 30px;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1A4FA2, #2563eb);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 79, 162, 0.3);
}

.quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 79, 162, 0.4);
}

/* 地图区域 */
.map-section {
  margin-top: 50px;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
  text-align: center;
}

.map-container {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  height: 400px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1A4FA2;
  cursor: pointer;
}

.map-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.map-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.map-address {
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.5;
}

/* 工作时间 */
.business-hours {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
}

.hours-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.hours-day {
  color: #6b7280;
}

.hours-time {
  color: #1f2937;
  font-weight: 500;
}

/* 平板适配 */
@media screen and (max-width: 1024px) {
  .container {
    padding: 30px 20px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .main-content {
    gap: 30px;
  }

  .contact-card {
    padding: 30px;
  }

  .map-container {
    height: 350px;
  }
}

/* 手机端适配 */
@media screen and (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  .page-header {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .page-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  .contact-card {
    padding: 25px;
    border-radius: 16px;
  }

  .contact-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .logo-container {
    width: 100px;
    height: 100px;
    border-radius: 16px;
  }

  .logo-text {
    font-size: 1.6rem;
  }

  .company-name {
    font-size: 1.1rem;
  }

  .contact-item {
    padding: 14px 0;
  }

  .contact-item:hover {
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .contact-value {
    font-size: 0.95rem;
  }

  .quick-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .map-container {
    height: 300px;
    border-radius: 12px;
  }

  .map-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .map-text {
    font-size: 1rem;
  }

  .map-address {
    font-size: 0.85rem;
    padding: 0 20px;
  }

  .business-hours {
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
  }

  .hours-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hours-item {
    font-size: 0.85rem;
  }
}

/* 小屏手机适配 */
@media screen and (max-width: 480px) {
  .container {
    padding: 15px 12px;
  }

  .page-header {
    padding: 25px 15px;
    border-radius: 16px;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .logo-container {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .company-name {
    font-size: 1rem;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .business-hours {
    padding: 16px;
  }

  .hours-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}

/* 加载动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container > * {
  animation: fadeInUp 0.6s ease forwards;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1A4FA2, #2563eb);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #164f8a, #1d4ed8);
}
