/* 现代化联系我们页面样式 */
.banner {
  position: relative;
  height: 395px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1.12);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.12);
  }
}

.banner .banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  color: white;
}

.banner .banner-title {
  width: 100%;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  position: absolute;
  margin-bottom: 20px;
  position: relative;
}

.banner .banner-subtitle {
  width: 100%;
  white-space: nowrap;
  margin-bottom: 10px;
  font-size: 70px;
  line-height: 70px;
  text-align: center;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: -40px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.2)
  );
  transform: translateX(-50%);
  -webkit-background-clip: text;
  color: transparent;
}

.banner .banner-desc {
  width: 100%;
  font-size: 18px;
  color: #fff;
  line-height: 18px;
  text-align: center;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 40px 20px;
}

.guide-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* 指南区块样式 */
.guide-section {
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 10px 20px;
  height: 52px;
  box-sizing: border-box;
  background: #cc0a28;
  border-radius: 5px 5px 0px 0px;
}

.section-header .section-icon {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.section-header .section-icon img {
  color: #fff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  margin: 0;
  flex: 1;
}

.more-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.more-link:hover {
  transform: translateX(5px);
}

/* 内容网格布局 */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 15px;
  height: 400px;
}

.content-item {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.content-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.item-image {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-item:hover .item-image img {
  transform: scale(1.05);
}

.item-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(231, 76, 60, 0.9);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.item-info {
  box-sizing: border-box;
  padding: 20px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-desc {
  height: 45px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 10px 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.item-date {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}
