*,
html,
body,
a,
ul,
li,
div {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  list-style: none;
}

.top .logo {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 0;
}
@media (min-width: 992px) {
  .top .logo {
    text-align: left;
  }
}
.top .search {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.top .search .icon-button {
  cursor: pointer;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: #52a0fd;
  background: -webkit-linear-gradient(
    bottom,
    #3fa9ff 0%,
    #0d6efd 51%,
    #3fa9ff 100%
  );
  background: linear-gradient(to top, #3fa9ff 0%, #0d6efd 51%, #3fa9ff 100%);
  background-size: auto 200%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 37px;
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
  width: 37px;
  -webkit-box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.top .search .icon-button:hover {
  background-position: bottom center;
}

.title {
  text-align: center;
  margin-bottom: 30px;
  height: 120px;
  background: #f1f8ff;
  margin-top: 30px;
}
.title .breadcrumb {
  background: #f1f8ff !important;
}
.title h1 {
  color: #203656;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.title ol a {
  color: #9faabb !important;
  font-size: 14px;
}

.search-popup {
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 6;
}

.btn-close {
  display: block;
  margin-top: 10px;
  padding-right: 20px;
  float: right;
  font-size: 25px;
  color: #8888;
  border: 0;
  background: white;
  margin-bottom: 10px;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.search-content {
  text-align: center;
  margin-top: 10%;
}
.search-content h2 {
  font-weight: bold;
  margin-bottom: 20px;
}
.search-form input {
  display: block;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-bottom: 20px;
  height: 42px;
  text-indent: 10px;
}

.search-form .btn-search {
  cursor: pointer;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: #52a0fd;
  background: -webkit-linear-gradient(
    bottom,
    #3fa9ff 0%,
    #0d6efd 51%,
    #3fa9ff 100%
  );
  background: linear-gradient(to top, #3fa9ff 0%, #0d6efd 51%, #3fa9ff 100%);
  background-size: auto 200%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 37px;
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
  width: 37px;
  -webkit-box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.search-form .btn-search:hover {
  background-position: bottom center;
}

@media screen and (max-width: 768px) {
  .btn-close {
    margin-bottom: 20px !important;
  }
  .search-content {
    margin-top: 33% !important;
  }
  .search-content input {
    width: 80%;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .footer{
    font-size: 0.8em;
    text-align: center;
  }
  .list-box{
    height:auto !important;
    min-height: auto !important;
  }
}

.l-left .panel-body{
  padding: 0 10px;
}
.l-left-nav{
  font-size: 12px;
  margin-bottom: 20px;
}
.list-box{
  min-height: calc(70vh);
}
.list-item{
  margin-top:10px;
  margin-bottom:10px;
}
.list-item .a-title{
  margin-top: 0;
  
}
.list-item .a-title a{
  font-size: 0.66em;
  margin: 0;
  color: rgb(64, 7, 162);
  font-family: Arial, Helvetica, sans-serif;
}

.list-item p{
  white-space: 2;
  color: rgba(0, 0, 0, 0.6);
    /* 核心：限制行数 */
  display: -webkit-box; /* 必须，开启弹性盒模型 */
  -webkit-line-clamp: 2; /* 关键：显示2行 */
  -webkit-box-orient: vertical; /* 必须，垂直排列 */
  /* 基础：溢出隐藏 + 防止换行 */
  overflow: hidden; /* 溢出内容隐藏 */
  text-overflow: ellipsis; /* 溢出显示省略号（webkit内核下line-clamp已自带，可省略） */
  white-space: normal; /* 允许正常换行（必须，否则line-clamp无效） */
  line-height: 1.5; /* 行高，根据需求调整 */
  font-size: 0.9em;
  max-height: 3em; /* 可选：行高×行数，兜底兼容（1.5×2=3） */
}
.list-item .d-count{
  display: inline-block;
  text-align: left;
  width: 100%;
  font-size: 12px;
  color: #0d6efd;
}
.list-item .d-count i{
  margin-right: 2px;
}

.l-right .l-right-title{
  font-size: 13px;
  margin: 0;
}
.l-right .list-item{
  margin: 0;
}
.l-right .list-item .a-title{
  margin: 0;
}
.l-right .list-item .a-title a{
  font-size: 13px;
}
.footer {
  color: #333 !important;
}
.footer a {
  color: #333 !important;
}
