.title-one {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 7rem;
  height: 7rem;
  background-color: #ecf8ff;
  display: block;
}

.title-tow {
  display: none;
}
.title-tow .column-box {
  width: 100%;
  height: 14rem;
}
.title-tow .column-box .columns {
  gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.title-tow .column-box .columns .column {
  padding: 0.5rem;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}
.title-tow .column-box .columns .column .name {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8rem;

  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.title-tow .column-box .columns .active .column .name {
  color: #fff;
}
.title-tow .column-box .columns .column > img {
  background-color: #fff;
  border-radius: 0.8rem;
  width: 8rem;
  height: 8rem;
  user-select: none;
}
.title-tow .title-tow-nav {
  background-color: #ecf8ff;
  border-radius: 1rem 1rem 0 0;
  height: 8rem;
  padding: 0 2rem;
}
.title-tow .title-tow-nav .nav-left {
  color: #003cb3;
}
.title-tow .title-tow-nav .nav-left .label {
  font-size: 1.8rem;
  font-weight: bold;
}
.title-tow .title-tow-nav .nav-left .value {
  font-size: 3rem;
  font-weight: bold;
}
.title-tow .title-tow-nav .nav-right {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  overflow: hidden;
  transform: translateX(2rem);
}
.title-tow .title-tow-nav .nav-right .btn {
  height: 5rem;
  background-color: #0040b5;
  min-width: 10rem;
  border-radius: 2.5rem 0 0 2.5rem;
  cursor: pointer;
  user-select: none;
}
.title-tow .title-tow-nav .nav-right .btn-home {
  position: relative;
  transform: translateX(1.2rem);
}
.title-tow .title-tow-nav .nav-right .btn-home::after {
  content: '';
  position: absolute;
  right: -3rem;
  top: -0.5rem;
  width: 5rem;
  height: 6rem;
  border-radius: 3rem 0 0 3rem;
  background-color: #9dd4f5;
}
.title-tow .title-tow-nav .nav-right .btn-back {
  position: relative;
  z-index: 10;
}


/* 控制主内容高度 */
.content {
  height: calc(100% - 7rem) !important;
}


/* 小于等于960px时 */
@media screen and (max-width: 960px) {
  .title-one {
    display: none;
  }

  .title-tow {
    display: block;
  }

  .content {
    height: calc(100% - 8rem - 14rem) !important;
    border-radius: 0 0 1rem 1rem;
  }
}
/* 小于等于480px时 */
@media screen and (max-width: 480px) {
  .title-one {
    display: none;
  }

  .title-tow {
    display: block;
  }

  .title-tow .title-tow-nav .nav-left .label {
    font-size: 1.3rem;
  }
  .title-tow .title-tow-nav .nav-left .value {
    font-size: 2rem;
  }

  .content {
    height: calc(100% - 8rem - 14rem) !important;
    border-radius: 0 0 1rem 1rem;
  }
}