.nb-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 0;
  background: #FFF9F0;
  text-align: center;
}

.nb-info h2 {
  font-family: 快看世界体;
  font-size: 46px;
  font-weight: normal;
  line-height: 100%;
  color: #333;
  margin-bottom: 15px;
}

.nb-info p {
  font-family: PingFang SC;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0px;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
}

.nb-info-tab {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.nb-info-tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #fff9f0;
  border-radius: 8px;
  width: 420px;
  margin-left: 10px;
}

.nb-info-tab-title h3 {
  width: 64px;
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.nb-info-tab-content span {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  justify-content: flex-start;
}

.nb-info-tab-content img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.nb-info a {
  display: block;
  margin: 50px auto 100px;
  width: 210px;
  height: 62px;
  border-radius: 12px;
  opacity: 1;
  border: 2px solid;
  background: #FF9D1F;
  border-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF1E8 100%) 2;
  box-shadow: 0px 4px 10px 0px #FFE2BC, inset 0px 0px 20px 0px rgba(255, 112, 64, 0.81);
  padding: 12px 30px;
  background-color: #ffc107;
  color: #FFFFFF;
  font-family: PingFang SC;
  font-size: 30px;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 0px 1px 6px rgba(237, 129, 41, 0.84);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nb-info a:hover {
  background: #E88A00;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .nb-info h2 {
    font-size: 26px;
  }
  
  .nb-info-tab {
    gap: 15px 20px;
  }
  
  .nb-info-tab-content {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .nb-info {
    padding: 40px 15px;
  }
  
  .nb-info h2 {
    font-size: 22px;
  }
  
  .nb-info p {
    font-size: 16px;
  }
  
  .nb-info-tab-title h3 {
    font-size: 20px;
  }
  
  .nb-info-tab-content span {
    justify-content: flex-start;
  }
}