:root {
  color: #000;
  background: #fff;
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
}

.agreement-header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #fff;

  .brand {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    width: 200px;
    height: 100%;
    padding-left: 24px;
    overflow: hidden;
  }

  .logo {
    width: 88px;
    height: 44px;
    object-fit: contain;
  }
}

.agreement-page {
  width: 100%;
  min-height: 100vh;
  padding: 0 24px 80px;

  .article {
    width: min(800px, 100%);
    margin: 0 auto;
  }

  .title {
    margin: 0 0 24px;
    color: #000;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }

  .content {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
  }

  .paragraph {
    margin: 0;
  }

  .notice {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .strong {
    font-weight: 700;
  }

  .underline {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .data-table {
    width: 100%;
    margin: 16px 0;
    border-collapse: collapse;
    table-layout: fixed;
    word-break: break-word;

    th,
    td {
      padding: 8px 12px;
      border: 1px solid #000;
      text-align: left;
      vertical-align: middle;
      font-size: inherit;
      line-height: 1.6;
      font-weight: 400;
      text-align: center;
    }
  }
}

/* 隐藏滚动条的基础样式 */
html {
  scrollbar-width: thin; /* Firefox */
}
