* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* user-select: none; */
}

.container {
  /* height: 800px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.header_container {
  background: linear-gradient(to bottom, #3761ff 20%, #bac8ff 100%);
  width: 100%;
  padding: 80px;
  padding-top: 40px;
}

.term_box {
  width: 70%;
  margin: auto;
}

.term_box p {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 50px;
  padding-bottom: 40px;
  padding-top: 50px;
}

.content_box {
  width: 60%;
  margin: auto;
  padding-top: 30px;
  line-height: 22px;
  font-size: 18px;
  /* user-select: none; */
  font-family:
    courier new,
    courier,
    monospace;
}
.higolive {
  width: 98px;
  height: 40px;
}


/* Child Safety Section */
.child-safety-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.child-safety-text {
  flex: 1;
}

.child-safety-img {
  flex-shrink: 0;
  width: 120px;
  cursor: pointer;
}

.child-safety-img img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: opacity 0.2s;
}

.child-safety-img img:hover {
  opacity: 0.8;
}

/* 图片放大遮罩层 */
.img-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.img-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .header_container {
    padding: 5.3333vw;
  }
  .term_box {
    width: 100%;
  }
  .term_box p {
    font-size: 8.5333vw;
  }
  .content_box{
    width: 90%;
    font-size: 4.8vw;
    word-break: break-all;
    line-height: 6.4vw;
  }
  .child-safety-section {
    flex-direction: column;
    align-items: center;
  }
  .child-safety-img {
    width: 40vw;
    margin-top: 10px;
  }
}

