/* 初始化 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  /* font-size: 5.3333vw; */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100% !important; /* 禁止字体缩放 */
  text-size-adjust: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem 0;
}

header, footer {
  /* background-color: #f8f8f8; */
  padding: 0 1rem;
  /* text-align: center; */
}

main {
  flex: 1;
  padding: 1rem;
}

section {
  background-color: white;
  padding: .5rem;
  /* border: .1rem solid #ddd;
  border-radius: .25rem; */
}
p{
  font-size: .7rem;
  color: #666;
}
h1{
  text-align: left;
  font-size: .84rem;
  margin: .4rem 0;
}
h2{
  text-align: center;
  font-size: .5rem;
}
.title1{
  text-align: center;
  font-size: .8rem;
}
.title2{
  text-align: center;
  font-size: .5rem;
}
.text-right{
  text-align: right;
}
.text-left{
  text-align: left;
}