#News {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .contentBox .modulesBox {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  ::-webkit-scrollbar {
    display: none;
  }

  .contentBox {
    position: relative;
    min-height: 500px;
    margin: 40px auto;
  }

  .modulesBox .name {
    width: 35%;
  }

  .modulesBox .url {
    width: 65%;
  }
}

@media (min-width: 768px) {
  .container {
    width: 100%;
  }

  .contentBox .modulesBox {
    width: 100%;
    height: auto;
    margin: 0 auto 130px;
  }

  .contentBox {
    position: relative;
    min-height: 500px;
    margin: 48px auto;
  }

  .modulesBox .name {
    width: 40%;
  }

  .modulesBox .url {
    width: 60%;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

@media (min-width: 1366px) {
  .container {
    width: 1230px;
  }
}

.modulesBox {
  font-size: 16px;
}

.modulesBox .head-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.modulesBox .meter-header {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  border-top: 2px solid #194BBF;
  width: 100%;
  min-height: 50px;
  color: rgba(0, 0, 0, 0.4);
  padding: 0 20px;
}

.modulesBox .current,
.modulesBox .archive,
.modulesBox .issue {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  color: rgba(0, 0, 0, 0.86);
  padding: 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  word-wrap: break-word;
}

.modulesBox .current .url,
.modulesBox .issue .url {
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.modulesBox .issue .name {
  padding-left: 20px;
  color: rgba(0, 0, 0, 0.6);
}