* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  word-break: break-all;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.p {
  line-height: 24px;
  font-size: 14px;
}

.strong {
  font-weight: bold;
}

.mr-16 {
  margin-right: 16px;
}

.mt-4 {
  margin-top: 4px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mr-4 {
  margin-right: 4px;
}

.ml-4 {
  margin-left: 4px;
}

.mr-8 {
  margin-right: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-32 {
  margin-top: 32px;
}

.mx-auto {
  margin: 0 auto;
}

.pt-16 {
  padding-top: 16px;
}

.p-16 {
  padding: 16px;
}

.p-32 {
  padding: 32px;
}

.color-gray {
  color: #999;
}

.textOverFlow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-end {
  justify-content: flex-end;
}

.bg-white {
  background: #fff;
}

.w-460 {
  width: 460px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.primary-a {
  color: #795548;
}

.primary-a:hover {
  color: #a97e19;
}