/*
Theme Name: 123
*/

/* Theme styles are embedded in index.php for performance optimization */

@media (min-width: 991px) {

  ul.nav-menu#navMenu>*:nth-child(n+6) {
    display: none;
  }
}

@media (max-width: 991px){
  section.hero-banner{
    display: none;
  }
}

/* 默认手机样式 - 最大宽度100% */
figure.wp-block-image  >img {
  max-width: 100%;
}

/* 平板设备 - 最小宽度768px */
@media (min-width: 768px) {
  figure.wp-block-image  >img {
    max-width: 66%;
  }
}

/* 电脑设备 - 最小宽度992px */
@media (min-width: 992px) {
  figure.wp-block-image  >img {
    max-width: 33%;
  }
}

div.article-content > p {
  /* 设置行高，用于计算高度 */
  line-height: 1.5;

  /* 固定高度为3行文字的高度 */
  height: 4.5em;
  /* 3 * 1.5 = 4.5em */

  /* 限制最多显示3行 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  /* 超出部分隐藏 */
  overflow: hidden;

  /* 文字超出时显示省略号 */
  text-overflow: ellipsis;

  /* 确保文字换行 */
  word-wrap: break-word;
  word-break: break-word;
}

h2.article-title{
  /* 强制单行显示 */
  white-space: nowrap;

  /* 超出部分隐藏 */
  overflow: hidden;

  /* 显示省略号 */
  text-overflow: ellipsis;

  /* 移除文本装饰（如下划线） */
  text-decoration: none;
}

span.meta-date >a{
  text-decoration: none;
  color: #ffffff;
}
