html,
body {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.ml-page {
  height: 100vh;
  background-color: #F5F6F7;
  background-image: url('../img/bg.png');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 20px 12px;
  overflow-y: auto;
}

.ml-page .ml-one {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0 10px 10px;
  text-decoration: none;
}

.ml-one .ml-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 40px;
  color: #ccc;
  font-size: 12px;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 10px;
}

.ml-one .ml-status div:last-child {
  font-size: 16px;
  font-weight: 600;
}

.ml-one .ml-name {
  line-height: 22px;
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.ml-one .ml-detail {
  line-height: 16px;
  color: #666;
  font-size: 12px;
}