/* 基础样式 */
.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, 0, 0) 70.71%);
  padding: 120px 0 0px 0 !important;
}
/* Section styles */
.cooperate-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 60px;
}

.section-content {
  margin-top: 0;
}

.to-index-page {
  color: #1f2937;
  text-decoration: none;
}

nav ul li a {
  color: #1f2937;
}

.cooperate-section-full{
   position: relative;
}

.cooperate-section-full::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 100px;
   background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
   pointer-events: none;
   z-index: 10;
}

.number-space {
  width: 100%;
  background: linear-gradient(180deg, #FFF 73.87%, #EDF0FF 132.53%);
  padding: 10px 0 60px 0;
}

.schools-container {
  max-height: 1200px;
  overflow-y: auto;
  padding-bottom: 20px;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* 隐藏滚动条 - Chrome, Safari and Opera */
.schools-container::-webkit-scrollbar {
  display: none;
}

.school-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 10px;
}

.school-item {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.school-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

.school-logo {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  flex-shrink: 0;
}

.school-item span {
  color: var(--text-1, #1D2129);
  font-family: "Alibaba PuHuiTi";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .cooperate-section {
    padding: 0 16px;
    margin-bottom: 40px;
  }

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

  .section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .section-description {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .section-content {
    margin-top: 40px;
  }

  .school-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .school-item {
    padding: 16px;
    gap: 12px;
  }

  .school-logo {
    width: 55px;
    height: 55px;
  }

  .school-item span {
    font-size: 14px;
  }

  .schools-container {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .cooperate-section {
    padding: 0 16px;
    margin-bottom: 32px;
  }

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

  .section-title {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 32px;
  }

  .section-description {
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 20px;
  }

  .section-content {
    margin-top: 32px;
  }

  .school-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }

  .school-item {
    padding: 12px;
    gap: 10px;
  }

  .school-logo {
    width: 55px;
    height: 55px;
  }

  .school-item span {
    font-size: 12px;
  }

  .schools-container {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .cooperate-section {
    padding: 0 12px;
    margin-bottom: 24px;
  }

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

  .section-title {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 28px;
  }

  .section-description {
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 18px;
  }

  .section-content {
    margin-top: 24px;
  }

  .school-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .school-item {
    padding: 10px;
    gap: 8px;
    min-height: 60px;
    justify-content: center;
  }

  .school-logo {
    width: 55px;
    height: 55px;
  }

  .school-item span {
    font-size: 11px;
  }

  .schools-container {
    max-height: 400px;
  }
}

@media (max-width: 360px) {
  .cooperate-section {
    padding: 0 10px;
    margin-bottom: 20px;
  }

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

  .section-title {
    font-size: 18px;
    margin-bottom: 6px;
    line-height: 24px;
  }

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

  .section-content {
    margin-top: 20px;
  }

  .school-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .school-item {
    padding: 8px;
    min-height: 56px;
    justify-content: center;
  }

  .school-logo {
    width: 55px;
    height: 55px;
  }

  .school-item span {
    font-size: 10px;
  }
}

/* 数字场景部分 */
.digital-scenes {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.scene-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scene-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

.scene-image {
  margin-bottom: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.scene-card p {
  color: var(--text-2, #595959);
  text-align: center;

  /* 16/CN-Regular */
  font-family: "PingFang SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
  /* 150% */
}

.detail-link {
  color: var(--text-1, #1D2129);
  /* 14/CN-Regular */
  font-family: "PingFang SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 157.143% */
}

.detail-link:hover {
  color: var(--primary-6, #165DFF);
  text-decoration: underline;
}

/* 响应式设计 - 数字场景 */
@media (max-width: 1024px) {
  .digital-scenes {
    gap: 24px;
  }

  .scene-card {
    padding: 24px;
    max-width: 250px;
  }

  .scene-image {
    height: 180px;
  }

  .scene-card h3 {
    font-size: 16px;
  }

  .scene-card p {
    font-size: 13px;
  }

  .detail-link {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .digital-scenes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .scene-card {
    padding: 20px;
    max-width: 100%;
    width: 100%;
  }

  .scene-image {
    height: 160px;
  }

  .scene-card h3 {
    font-size: 15px;
  }

  .scene-card p {
    font-size: 12px;
  }

  .detail-link {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .scene-card {
    padding: 16px;
    width: 100%;
  }

  .scene-image {
    height: 140px;
  }

  .scene-card h3 {
    font-size: 14px;
  }

  .scene-card p {
    font-size: 11px;
  }

  .detail-link {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .scene-card {
    padding: 12px;
  }

  .scene-image {
    height: 120px;
  }

  .scene-card h3 {
    font-size: 13px;
  }

  .scene-card p {
    font-size: 10px;
  }

  .detail-link {
    font-size: 10px;
  }
}

.footerBox {
    background-color: #000;
    color: #fff;
    padding: 40px 15px;
}
@media (max-width: 768px) {
    .footerBox {
        padding: 30px 10px;
    }
}
@media (max-width: 480px) {
    .footerBox {
        padding: 20px 5px;
    }
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}
.footer-logo {
    flex: 0 0 180px;
}
.logo-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-circle {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-text {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}
.footer-nav {
    flex: 1;
    display: flex;
    justify-content: space-around;
    margin: 0 20px;
}
.nav-column {
    margin: 0 15px;
}
.nav-column h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}
.nav-column ul {
    list-style: none;
}
.nav-column ul li {
    font-size: 12px;
    margin-bottom: 8px;
}
.nav-column ul li a {
    color: #fff;
    text-decoration: none;
}
.nav-column ul li a:hover {
    text-decoration: underline;
}
.footer-follow {
    flex: 0 0 180px;
    text-align: right;
}
.footer-follow h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}
.qrcode {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.qrcode-image {
    width: 100px;
    height: 100px;
    background-color: #fff;
    margin-bottom: 10px;
    position: relative;
}
.qrcode-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #000;
}
.qrcode-text {
    font-size: 12px;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}
.copyright p {
    font-size: 12px;
    margin-bottom: 5px;
}
.designer p {
    font-size: 12px;
}
@media (max-width: 1500px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 30px;
    }
    .footer-nav {
        width: 100%;
        margin-bottom: 30px;
    }
    .nav-column {
        margin: 0 15px;
    }
    .footer-follow {
        flex: 0 0 auto;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .copyright {
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .footerBox {
        padding: 30px 20px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-logo {
        flex: 0 0 50px;
        margin-bottom: 20px;
    }
    .logo-text {
        font-size: 16px;
    }
    .footer-nav {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .nav-column {
        margin: 15px 0;
        width: 100%;
        max-width: 300px;
    }
    .nav-column h4 {
        font-size: 14px;
        margin-bottom: 10px;
        border-bottom: 1px solid #333;
        padding-bottom: 5px;
        width: 100%;
        text-align: center;
    }
    .nav-column ul {
        display: block;
        text-align: center;
    }
    .nav-column ul li {
        margin: 5px 0;
        font-size: 12px;
    }
    .footer-follow {
        margin-top: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .qrcode {
        align-items: center;
    }
    .qrcode-image {
        width: 80px;
        height: 80px;
    }
    .footer-bottom {
        padding-top: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .copyright {
        margin-bottom: 10px;
    }
    .copyright p,
    .designer p {
        font-size: 10px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footerBox {
        padding: 20px 15px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        flex: 0 0 20px;
        margin-bottom: 15px;
    }
    .logo-circle {
        width: 30px;
        height: 30px;
    }
    .logo-circle::before {
        width: 18px;
        height: 18px;
    }
    .logo-text {
        font-size: 14px;
    }
    .footer-nav {
        padding-left: 0;
        width: 100%;
        margin-bottom: 15px;
    }
    .nav-column {
        margin: 10px 0;
        width: 100%;
        max-width: 250px;
    }
    .nav-column h4 {
        font-size: 13px;
        text-align: center;
    }
    .nav-column ul {
        text-align: center;
    }
    .footer-follow {
        margin-top: 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .qrcode {
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .nav-column ul li {
        font-size: 11px;
    }
    .qrcode-image {
        width: 70px;
        height: 70px;
    }
    .qrcode-text {
        font-size: 11px;
    }
}