﻿.information .item {
  border-bottom: 1px dashed black;
  display: flex;
}
@media screen and (max-width: 767px) {
  .information .item {
    display: block;
  }
}
.information .item .left-item {
  width: 30%;
  *font-size: 16px;
  font-weight: 600;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .information .item .left-item {
    width: 100%;
    padding-bottom: 0;
  }
}
.information .item .right-item {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .information .item .right-item {
    width: 100%;
  }
}
.information .item .right-item ul {
  list-style-type: none;
  padding: 20px;
}