body {
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 14px;
  -webkit-text-size-adjust: none;
  background-color: #eeeeee;
  overflow-x: hidden;
}
ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}
p {
  margin-block-start: 0;
  margin-block-end: 0;
}
ul li {
  list-style-type: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}

.app {
  position: relative;
  .nav-bar {
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    .bar {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 8px 15px;
      .logo {
        height: 32px;
      }
      .btn-menu {
        color: #fff;
        font-size: 24px;
      }
    }
    .menu {
      color: #fff;
      font-size: 18px;
      padding: 0 15px;
      font-weight: 200;
      height: 0;
      visibility: hidden;
      transition: all 0.3s;
      > li {
        margin-bottom: 15px;
      }
    }
    &.active {
      .menu {
        padding: 30px 15px;
        visibility: visible;
        height: 100vh;
      }
    }
  }
  .app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 8px;
  }
  .app-content {
    margin: 60px 15px;
    .platform-wrapper {
      .item {
        display: flex;
        flex-direction: row;
        background-color: #fff;
        margin-bottom: 15px;
        .icon {
          background-color: #5c57ee;
          padding: 8px;
          text-align: center;

          > img {
            width: 60px;
            object-fit: cover;
          }
        }
        .content {
          display: flex;
          flex-direction: column;
          padding: 8px;
          .title {
            font-weight: 500;
            display: inline-block;
            width: 60px;
          }
          > p {
            margin-bottom: 5px;
          }
        }
      }
    }

    .cert-wrapper {
      .item {
        background-color: #fff;
        margin-bottom: 15px;
        text-align: center;
        font-size: 18px;
        > img {
          width: 100%;
        }
        > span {
          display: block;
          background-color: #5c57ee;
          color: #fff;
          padding: 5px;
        }
      }
    }

    .org-wrapper {
      .item {
        background-color: #fff;
        padding: 15px;
        border-radius: 15px;
        margin-bottom: 15px;
        .brand-logo {
          background-color: #ffffff;
          height: 90px;
          background-position: center;
          background-size: 86%;
          background-repeat: no-repeat;
          margin-bottom: 10px;
        }
        .content {
          display: flex;
          flex-direction: column;
          .label {
            width: 60px;
            font-weight: bold;
            margin-bottom: 8px;
          }
          .summary {
            width: 290px;
            margin-bottom: 8px;
            > i {
              margin-left: 15px;
            }
            > a {
              color: #5c57ee;
            }
          }
        }
      }
    }
  }
}
