/* 生活态度页面样式 */

.attitude-section {
  padding: 5rem 0 6rem;
  background-color: #ffffff;
}

.attitude-header {
  text-align: center;
  margin-bottom: 3rem;
}

.attitude-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
}

.attitude-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  margin-top: 1rem;
}

/* 态度卡片网格布局 */
.attitude-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* 引用卡片样式 */
.attitude-quote-card {
  background-color: #f6f7f8;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.attitude-quote-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.08),
    0 6px 12px rgba(0, 0, 0, 0.06);
}

.quote-icon {
  font-size: 4rem;
  color: #137fec;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quote-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

/* 总结区域 */
.attitude-summary {
  margin-top: 4rem;
}

.summary-card {
  background: linear-gradient(135deg, #137fec 0%, #0f6ac6 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  color: #ffffff;
  text-align: center;
}

.summary-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.summary-text {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto 1rem;
}
