.main {
  padding-top: 50px;
  padding-bottom: 60px;
}

.app-tit {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}

.app-tit .pic {
  width: 46%;
  position: relative;
}

.app-tit .pic img {
  position: relative;
  z-index: 10;
}

.app-tit .txt {
  flex: 1;
  margin-right: 10px;
}

.app-tit .txt h1 {
  font-size: 32px;
  color: #212121;
  line-height: 1;
  font-weight: 700;
}

.app-tit .txt h1::after {
  content: "";
  width: 80px;
  height: 2px;
  background: var(--color-primary);
  margin: 30px auto 0 0;
  display: block;
}

.app-tit .txt p {
  font-size: 16px;
  color: #666;
  line-height: 32px;
  margin: 20px 0 0;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.app-tit .txt a {
  margin: 40px 0 0;
}

.app-tit .more1 {
  padding: 0 40px;
  height: 64px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dbe0e3;
  font-size: 15px;
  color: #212121;
  font-weight: 700;
}

.app-tit .more1 span {
  width: 13px;
  height: 12px;
  background: var(--color-primary);
  margin-right: 10px;
}

.app-tit .more1 span:last-child {
  margin-right: 27px;
}

.app-tit .more1:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.app-tit .more1:hover span {
  background: #fff;
}

.news-content {
  line-height: 2;
  font-size: 17px;
  color: #666;
  border-top: 1px solid #eee;
  padding: 40px 0 20px;
}

.news-content p {
  margin-bottom: 20px;
}

.news-content strong {
  color: #333;
}

.news-content h5 {
  font-size: 22px;
  color: #000009;
  font-weight: 700;
  margin-bottom: 20px;
}

.news-content .table-response {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.news-content table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #dcdcdc;
  line-height: 24px;
  color: #484848;
  font-size: 14px;
}

.news-content table tr>th {
  padding: 10px 20px;
  color: #212121;
  font-weight: 600;
  border: 1px solid #dcdcdc;
  text-align: center;
}

.news-content table tr>td {
  padding: 10px 20px;
  border: 1px solid #dcdcdc;
  text-align: center;
}

.pnbar {
  margin: 0 0 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 70px 0 30px;
}

.pnbar>a {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.pnbar>a.m {
  width: 20%;
  text-align: center;
  font-size: 16px;
  color: #999;
}

.pnbar>a.l,
.pnbar>a.r {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.pnbar>a.r {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: right;
}

.pnbar i {
  color: #999;
  font-size: 16px;
  text-align: left;
  vertical-align: middle;
}

.pnbar em {
  font-size: 16px;
  color: #999;
  margin: 0 0 0 10px;
}

.pnbar p {
  margin: 0 0 0 20px;
  color: #212121;
  line-height: 28px;
  font-size: 18px;
  border: none;
}

.pnbar>a.r em {
  margin: 0 10px 0 0;
}

.pnbar>a.r p {
  margin: 0 20px 0 0;
}

.pnbar>a.m:hover {
  color: var(--color-primary);
}

.pnbar>a:hover i {
  color: #212121;
}

.pnbar>a:hover em {
  color: #212121;
}

.pnbar>a:hover p {
  color: var(--color-primary);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .main {
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .app-tit {
    display: block;
    margin: 0 0 20px;
  }

  .app-tit .txt {
    margin: 0 0 20px;
  }

  .app-tit .txt p {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .app-tit .txt a {
    margin: 16px 0 0;
  }

  .app-tit .pic {
    width: 100%;
  }

  .pnbar {
    display: block;
    margin-top: 20px;
  }
  .pnbar > a {
    width: 100%;
    padding: 0 10px;
    flex-direction: row !important;
    text-align: left !important;
    border: 1px solid #ddd;
  }
  .pnbar > a.r {
    border-top: none;
  }
  .pnbar > a.m,
  .pnbar > a > i {
    display: none;
  }
  .pnbar > a > em,
  .pnbar > a > p {
    margin: 0 !important;
  }
  
  .pnbar em::after {
    content: ': ';
  }

  .pnbar p {
    padding: 7px 10px;
    font-size: 15px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .app-tit {
    flex-wrap: wrap;
  }

  .app-tit .pic {
    width: 100%;
  }

  .pnbar {
    display: block;
  }

  .pnbar>a {
    width: 100%;
  }

  .pnbar>a.r {
    -webkit-flex-direction: initial;
    flex-direction: initial;
    text-align: left;
  }
}