/* 清除默认样式 */
* {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  list-style: none;
}
/* 手机端 */
@media screen and (max-width: 992px) {
  body {
    display: flex;
    flex-direction: column;
  }
  body .app {
    margin: 2.13rem 0 0 0;
    flex: 1;
  }
  body .app .title {
    font-size: 0.4rem;
    color: #333333;
    font-weight: bold;
    height: 1rem;
    margin: 0.2rem 0;
    text-align: center;
  }
  body .app .tables {
    flex: 1;
    margin: 0.3rem 0.5rem 0.5rem;
    box-sizing: border-box;
  }
  body .app .tables .li {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.4rem;
    margin: 0.2rem 0;
  }
  body .app .tables .li .contents {
    font-size: 0.4rem;
    font-weight: bold;
    color: #333333;
    flex: 1;
  }
  body .app .tables .li .date {
    font-size: 0.3rem;
    width: 2rem;
    color: #666666;
    text-align: end;
  }
}
/* PC端 */
@media screen and (min-width: 992px) {
  body {
    display: flex;
    flex-direction: column;
  }
  body .app {
    /*margin: calc(0.52rem * 0.8) 0 0 0;*/
    flex: 1;
    margin: 134px 0 0 0;
  }
  .title {
    font-size: 0.26rem;
    color: #333333;
    font-weight: bold;
    margin: calc(0.82rem * 0.8) auto 0;
    text-align: center;
  }
  .tables {
    margin: 0.3rem auto;
    width: 50%;
    box-sizing: border-box;
  }
  .tables .li {
    box-sizing: border-box;
    height: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.1rem;
  }
  .tables .li .contents {
    font-size: 0.1rem;
    font-weight: bold;
    color: #333333;
  }
  .tables .li .date {
    font-size: 0.09rem;
    color: #666666;
  }
}
