/* .content {
  width: 100%;
  background:
    linear-gradient(217deg, #e2f7f7, rgba(255, 0, 0, 0) 70.71%),
    linear-gradient(127deg, #fcf3e5, rgba(0, 255, 0, 0) 70.71%),
    linear-gradient(336deg, #dfecff, rgba(0, 0, 255, 0) 70.71%);
  padding: 160px 0 40px 0;
} */

.canteen-page {
  width: 100%;
}

@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-image {
    margin-right: 0;
  }
}

/* 四个安全与治理问题部分 */
.section-header {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  color: var(--text-1, #262626);
  font-family: "PingFang SC";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-description {
  color: var(--text-2, #515A56);
  font-family: "PingFang SC";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 34px */
  margin-top: 10px;
}

.problems-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
}

.problems-container {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 44px;
}

.problem-card {
  width: 100%;
  max-width: 620px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  margin-bottom: 16px;
}

.face-container {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.face-image {
  width: 448px;
  height: 299px;
  border-radius: 20px;
}

.face-image1 {
  width: 812px;
  height: 299px;
  margin-left: 20px;
}

/* 信任理由部分样式 */
.problems-reason {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.reason-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reason-card:hover,
.reason-card:active {
  background-color: #165dff;
  color: #fff;
}

.reason-card:hover .reason-number,
.reason-card:active .reason-number,
.reason-card:hover .reason-title,
.reason-card:active .reason-title,
.reason-card:hover .reason-description,
.reason-card:active .reason-description {
  color: #fff;
}

.reason-card:hover .reason-icon,
.reason-card:active .reason-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.reason-card.highlight {
  background-color: #165dff;
  color: #fff;
}

.reason-card.highlight:hover,
.reason-card.highlight:active {
  background-color: #0f47d3;
}

.reason-card.highlight .reason-number,
.reason-card.highlight .reason-title,
.reason-card.highlight .reason-description {
  color: #fff;
}

.reason-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.reason-number {
  font-size: 28px;
  font-weight: 700;
  color: #1D2129;
}

.reason-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.reason-card:not(.highlight) .reason-icon {
  background-color: #f0f2f5;
  color: #165dff;
}

.reason-card.highlight .reason-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.reason-title {
  font-size: 20px;
  font-weight: 500;
  color: #1D2129;
  margin-bottom: 12px;
}

.reason-description {
  font-size: 16px;
  line-height: 22px;
  color: #595959;
}

/* 信任理由部分响应式设计 */
@media (max-width: 1024px) {
  .problems-reason {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .problems-reason {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .reason-card {
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .reason-title {
    font-size: 16px;
  }

  .reason-description {
    font-size: 13px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .reason-card {
    padding: 20px;
  }
}

/* 响应式设计 */
@media (max-width: 1366px) {
  .face-image {
    width: 380px;
    height: 253px;
  }

  .face-image1 {
    width: 700px;
    height: 253px;
    margin-left: 16px;
  }
}

@media (max-width: 1024px) {
  .face-container {
    flex-direction: column;
    align-items: center;
  }

  .face-image,
  .face-image1 {
    width: 100%;
    max-width: 812px;
    height: auto;
    margin-left: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .face-container {
    margin-top: 32px;
  }

  .face-image,
  .face-image1 {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .face-container {
    margin-top: 24px;
  }

  .face-image,
  .face-image1 {
    border-radius: 8px;
  }
}

/* 标准化流程部分 */
.process-container {
  width: 1280px;
}

/* 响应式设计 */
@media (max-width: 1366px) {
  .process-container {
    width: 100%;
    max-width: 1280px;
  }
}

@media (max-width: 1024px) {
  .process-container {
    width: 100%;
    max-width: 960px;
  }
}

@media (max-width: 767px) {
  .process-container {
    width: 100%;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .process-container {
    width: 100%;
    padding: 0 12px;
  }
}

/* 对比部分样式 */
.compare-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.compare-card {
  flex: 1;
  max-width: 400px;
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.compare-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
}

.compare-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.compare-card.left .compare-card-icon {
  background-color: #e8f3ff;
  color: #165dff;
}

.compare-card.right .compare-card-icon {
  background-color: #e6f7ee;
  color: #00b42a;
}

.compare-card-image {
  width: 40px;
  height: 40px;
}

.compare-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #1D2129;
}

.compare-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.compare-feature-icon {
  margin-top: 4px;
}

.compare-feature-text {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
}

.compare-feature-icon {
  width: 32px;
  height: 32px;
}

.compare-feature-icon {
  color: #f53f3f;
}

.compare-vs {
  width: 75px;
  height: 75px;
  background: #165DFF;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 对比部分响应式设计 */
@media (max-width: 1024px) {
  .compare-container {
    flex-direction: column;
    gap: 32px;
  }

  .compare-card {
    max-width: 100%;
    width: 100%;
  }

  .compare-vs {
    transform: rotate(90deg);
    margin: 20px 0;
  }
}

@media (max-width: 767px) {
  .compare-container {
    margin-top: 32px;
    padding: 0 16px;
  }

  .compare-card {
    padding: 24px;
  }

  .compare-card-title {
    font-size: 20px;
  }

  .compare-feature-text {
    font-size: 14px;
    line-height: 22px;
  }

  .compare-vs {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .compare-container {
    padding: 0 12px;
  }

  .compare-card {
    padding: 20px;
  }

  .compare-card-title {
    font-size: 18px;
  }

  .compare-feature-text {
    font-size: 13px;
    line-height: 20px;
  }
}


/* 响应式设计 */
@media (max-width: 1366px) {
  .problem-card {
    padding: 32px;
  }

  .problem-card-title {
    font-size: 24px;
  }

  .problem-card-description {
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 1024px) {
  .problems-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem-card {
    max-width: 100%;
  }

  .section-title {
    font-size: 30px;
  }

  .section-description {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .problems-section {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 15px;
  }

  .problem-card {
    padding: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .problem-card-icon {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .problem-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .problem-card-description {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .problems-section {
    padding: 40px 12px;
  }

  .problem-card {
    padding: 20px;
  }

  .problem-card-icon {
    width: 40px;
    height: 40px;
  }

  .problem-card-title {
    font-size: 18px;
  }

  .problem-card-description {
    font-size: 13px;
    line-height: 20px;
  }
}

.problem-card-blue {
  background-color: #165dff;
}

.problem-card-header {
  flex: 1;
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.problem-card-icon img {
  width: 100%;
  height: 100%;
}

.problem-card-title {
  font-size: 28px;
  font-weight: 500;
  color: #1D2129;
}

.problem-card-description {
  font-weight: 600;
  font-size: 16px;
  color: #595959;
  line-height: 26px;
}