body {
    padding-bottom:8rem;
}


.content {
    width: 64%;
    min-width: 960px;
    margin: 32px auto 0;
    padding: 1.5rem 1rem;
    background-color: #fff;
    position: relative;
    height: 70vh;
    overflow-y: scroll;

}

/* 整体滚动条 */
.content::-webkit-scrollbar {
    width: 8px; /* 滚动条宽度 */
    height: 8px; /* 滚动条高度（横向滚动条） */
  }
  
  /* 滚动条轨道 */
  .content::-webkit-scrollbar-track {
    background: #f0f0f0; /* 轨道背景色 */
    border-radius: 4px; /* 圆角 */
  }
  
  /* 滚动条滑块 */
  .content::-webkit-scrollbar-thumb {
    background: #b81719; /* 滑块颜色 */
    border-radius: 4px; /* 滑块圆角 */
    border: 2px solid #f0f0f0; /* 滑块边框，与轨道背景色相同 */
  }
  


.privacy-text {
    margin-top: 1.5rem;
    width: 100%;
    border-top:2px solid #ccc ;
    padding: 2rem 0;
    font-size: 1rem;
    text-indent: 2rem;
}

.privacy-text-title {
    margin-top: 1.5rem;
}
.mask {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    background-color: #00000057;
    display: none;
    z-index: 99;
}

.centent {
    text-align: center;
}

.text-right {
    text-align: right;
}
.privacy-text>p {
    margin: 1rem;
}

.bold {
    font-weight: bold;
}