.section.law-firm-header {
  margin-top: 5.9375rem;
}
.section.law-firm-header .title-box .subtitle {
  font-size: 18px;
}
.section.law-firm-header .title-box .title {
  padding: 10px 0;
  font-size: 3.25rem;
  font-weight: 900;
  color: #252525;
}
.section.law-firm-header .law-firm-featured {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  /* 确保高度一致 */
  align-items: stretch;
  /* 子元素高度拉伸到网格容器的大小 */
  height: 100%;
  /* 如果需要，可以将高度设置为父容器的 100% */
  gap: 32px;
}
.section.law-firm-header .law-firm-featured .justice-banner {
  display: flex;
  flex-direction: column;
  grid-column: span 8;
  /* justice-banner占据6列 */
  overflow: hidden;
}
.section.law-firm-header .law-firm-featured .justice-banner .en-title {
  padding: 8px 18px;
  background: #000;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  width: fit-content;
}
.section.law-firm-header .law-firm-featured .justice-banner .banner {
  flex: 1;
  margin-top: 13px;
  position: relative;
}
.section.law-firm-header .law-firm-featured .justice-banner .banner .img {
  width: 100%;
  height: 100%;
}
.section.law-firm-header .law-firm-featured .justice-banner .banner .title-box {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(50% - 10px);
  padding: 3.25rem 0 0 40px;
}
.section.law-firm-header .law-firm-featured .justice-banner .banner .title-box .img-tit {
  color: #FFF;
  font-size: 3.25rem;
  font-weight: 900;
}
.section.law-firm-header .law-firm-featured .justice-banner .banner .title-box .img-tit.img-en-tit {
  font-size: 2rem;
}
.section.law-firm-header .law-firm-featured .legal-news-list {
  grid-column: span 4;
  height: 100%;
}
.section.law-firm-header .law-firm-featured .legal-news-list .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section.law-firm-header .law-firm-featured .legal-news-list .title-box .h3 {
  color: #252525;
  font-size: 20px;
}
.section.law-firm-header .law-firm-featured .legal-news-list .title-box .h3:after {
  content: " news";
  text-transform: capitalize;
  /* 将首字母大写 */
  color: #e60012;
  font-size: 1rem;
  vertical-align: bottom;
}
.section.law-firm-header .law-firm-featured .legal-news-list .title-box .more {
  color: #FFF;
  padding: 5px 16px;
  border-radius: 16px;
  background: #252525;
  font-size: 14px;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card {
  border-radius: 16px;
  background: #f2f2f2;
  padding: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card:hover {
  cursor: pointer;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card:hover .news-title {
  transition: all 0.2s;
  color: #e60012 !important;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card .news-thumb {
  position: relative;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card .news-thumb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card .news-thumb:before {
  display: block;
  content: "";
  padding-top: 70%;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card .news-thumb img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card .news-meta {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  /* 确保内容区域占满剩余空间 */
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card .news-meta .news-title {
  color: #252525;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 描述最多显示三行 */
  -webkit-box-orient: vertical;
  margin: 12px 0 8px;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card .news-meta .news-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 描述最多显示三行 */
  -webkit-box-orient: vertical;
  font-size: 13px;
  color: #56585d;
  line-height: 22px;
}
.section.law-firm-header .law-firm-featured .legal-news-list .news-card-list .news-card .news-meta .news-time {
  font-size: 12px;
  color: #b6b6b6;
}
.section.law-firm-header .law-firm-stats-bar {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  /* 确保高度一致 */
  align-items: stretch;
  /* 子元素高度拉伸到网格容器的大小 */
  gap: 32px;
}
.section.law-firm-header .law-firm-stats-bar .stat-item {
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #FFF;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  height: 90px;
}
.section.law-firm-header .law-firm-stats-bar .stat-item.erji {
  grid-column: span 7;
  /* justice-banner占据6列 */
  background-image: url('../img/home/erji.png');
}
.section.law-firm-header .law-firm-stats-bar .stat-item.book {
  grid-column: span 3;
  /* justice-banner占据6列 */
  background-image: url('../img/home/book.png');
}
.section.law-firm-header .law-firm-stats-bar .stat-item.files {
  grid-column: span 2;
  /* justice-banner占据6列 */
  background-image: url('../img/home/files.png');
}
.section.team-section .top-box {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
}
.section.team-section .top-box .view-all-btn {
  grid-column: 4 / span 3;
  background: #252525;
  padding: 1.5rem;
  color: #FFF;
  border-radius: 1.5rem;
  text-align: center;
}
.section.team-section .top-box .title-box {
  grid-column: span 3;
}
.section.team-section .top-box .title-box .main-title {
  font-size: 7.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.section.team-section .top-box .title-box .main-title .jt {
  display: inline-block;
  vertical-align: bottom;
}
.section.team-section .team-box .team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 确保左右各占一半宽度 */
  grid-gap: 20px;
  box-sizing: border-box;
}
.section.team-section .team-box .team-cards .card {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  /* 可选：添加圆角增强视觉效果 */
}
.section.team-section .team-box .team-cards .card a {
  height: 100%!important;
}
.section.team-section .team-box .team-cards .card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* 确保图片覆盖整个容器且不变形 */
  transition: transform 0.3s ease;
  /* 可选：添加hover效果 */
}
.section.team-section .team-box .team-cards .card:hover img {
  transform: scale(1.03);
  /* 可选：hover时轻微放大图片 */
}
.section.team-section .team-box .team-cards .card .card-info {
  padding: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  /* 添加渐变背景增强文字可读性 */
  transition: background 0.3s ease;
  /* 平滑过渡效果 */
}
.section.team-section .team-box .team-cards .card .card-info .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.section.team-section .team-box .team-cards .card .name {
  font-size: 2rem;
  margin: 0 0 5px 0;
  font-weight: bold;
  color: #FFF;
}
.section.team-section .team-box .team-cards .card .position,
.section.team-section .team-box .team-cards .card .desc {
  margin: 0;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}
.section.team-section .team-box .team-cards .card .position {
  padding: 7px 26px;
  border-radius: 16px;
  width: fit-content;
  font-size: 2rem;
  background: #FFF;
  color: #252525;
}
.section.team-section .team-box .team-cards .card .desc {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
.section.team-section .team-box .team-cards .large {
  /* 让大卡片占满左侧整列高度 */
  grid-row: 1 / -1;
}
.section.team-section .team-box .team-cards .large .card-info {
  padding: 45px 3.25rem;
}
.section.team-section .team-box .team-cards .large .card-info .name {
  font-size: 40px;
  /* 大卡片名字稍大 */
  margin-bottom: 15px;
}
.section.team-section .team-box .team-cards .large .card-info .position {
  font-size: 28px;
  margin-bottom: 10px;
}
.section.team-section .team-box .team-cards .large .card-info .desc {
  border-radius: 1.5rem;
}
.section.team-section .team-box .team-cards .card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  height: 100%;
  /* 确保右侧网格充满高度 */
}
.section.team-section .team-box .team-cards .small {
  height: 100%;
  /* 小卡片充满网格空间 */
}
.section.team-section .team-box .team-cards .small .card-info {
  padding: 32px 27px;
}
.section.team-section .team-box .team-cards .small .card-info .name {
  font-size: 2rem;
  /* 小卡片名字稍小 */
}
.section.team-section .team-box .team-cards .small .card-info .position {
  font-size: 1rem;
  border-radius: 12px;
  padding: 7px 14px;
}
.section.legal-news-section {
  margin-top: 70px;
}
.section.legal-news-section .news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section.legal-news-section .news-header .news-title {
  font-size: 7.5rem;
  color: #252525;
  line-height: 1.05;
}
.section.legal-news-section .news-header .btn {
  color: #FFF;
  border-radius: 16px;
  padding: 1.5rem 48px;
  background: #252525;
  font-weight: 700;
  width: fit-content;
  font-size: 1.5rem;
}
.section.legal-news-section .news-cate {
  display: flex;
  flex-wrap: nowrap;
  background: #f2f2f2;
  width: fit-content;
  margin: 15px 0 23px;
}
.section.legal-news-section .news-cate .cate-item {
  flex-shrink: 0;
  padding: 10px 1.5rem;
  transition: transform 0.2s ease;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.section.legal-news-section .news-cate .cate-item:hover {
  cursor: pointer;
  color: #e60012 !important;
  transition: all 0.2s;
}
.section.legal-news-section .news-cate .cate-item.act {
  color: #e60012;
}
.section.legal-news-section .news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.section.legal-news-section .news-list .news-item {
  background: #f2f2f2;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.section.legal-news-section .news-list .news-item:hover {
  cursor: pointer;
}
.section.legal-news-section .news-list .news-item:hover .news-title {
  color: #e60012 !important;
  transition: all 0.2s;
}
.section.legal-news-section .news-list .news-item .news-brief {
  flex: 1;
}
.section.legal-news-section .news-list .news-item .news-date {
  color: #888888;
  font-size: 1.125rem;
  display: inline-block;
  margin-top: auto;
}
.section.legal-news-section .news-list .news-item.large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.section.legal-news-section .news-list .news-item.large img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  min-height: 100%;
}
.section.legal-news-section .news-list .news-item.large .news-content {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section.legal-news-section .news-list .news-item.large .news-content .news-title {
  color: #252525;
  border-radius: 1.5rem;
  margin: 0 0 20px 0;
  line-height: 1.4;
  font-size: 1.5rem;
}
.section.legal-news-section .news-list .news-item.large .news-content .news-brief {
  line-height: 1.8;
  margin: 0 0 25px 0;
  color: #555;
  flex-grow: 1;
  font-size: 1rem;
}
.section.legal-news-section .news-list .news-item.small {
  padding: 20px;
}
.section.legal-news-section .news-list .news-item.small .news-title {
  color: #252525;
  font-size: 1.25rem;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.section.legal-news-section .news-list .news-item.small .news-brief {
  line-height: 1.6;
  font-size: 1rem;
  margin: 0 0 12px 0;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section.legal-news-section .news-list .news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .section.law-firm-header .law-firm-featured .justice-banner .banner .title-box .img-tit.img-en-tit {
    font-size: 1rem;
  }
  .section.team-section .top-box .view-all-btn {
    grid-column: 5 / span 2;
  }
  .section.law-firm-header .law-firm-featured .justice-banner {
    grid-column: span 7;
  }
  .section.law-firm-header .law-firm-featured .legal-news-list {
    grid-column: span 5;
  }
}
@media screen and (max-width: 1200px) {
  .section.law-firm-header .law-firm-featured {
    display: block;
  }
  .section.law-firm-header .law-firm-featured .legal-news-list {
    margin-top: 32px;
  }
}
@media screen and (max-width: 1080px) {
  .section.law-firm-header .law-firm-stats-bar .stat-item {
    grid-column: span 4 !important;
    font-size: 1rem;
  }
  .section.team-section .top-box .title-box .main-title,
  .section.legal-news-section .news-header .news-title {
    font-size: 5.5rem;
  }
  .section.team-section .top-box .title-box .main-title .jt,
  .section.legal-news-section .news-header .news-title .jt {
    width: 35%;
  }
  .section.legal-news-section .news-header .btn {
    border-radius: 8px;
    padding: 10px;
    font-size: 1rem;
  }
  .section.legal-news-section .news-cate .cate-item {
    font-size: 1rem;
  }
}
@media screen and (max-width: 980px) {
  .section.law-firm-header {
    margin-top: 20px;
  }
  .section.law-firm-header .title-box {
    text-align: center;
  }
  .section.law-firm-header .law-firm-featured .justice-banner .en-title {
    margin: 0 auto;
  }
  .section.law-firm-header .law-firm-featured .justice-banner .banner .title-box {
    text-align: left;
    padding: 20px 0 0 20px;
    margin: 0;
  }
  .section.law-firm-header .law-firm-featured .justice-banner .title-box .img-tit.img-en-tit {
    margin-left: 0 !important;
  }
  .section.team-section .team-box .team-cards .small .card-info {
    padding: 10px;
  }
  .section.team-section .team-box .team-cards .large .card-info {
    padding: 20px;
  }
  .section.team-section .team-box .team-cards .card .desc {
    font-size: 14px !important;
  }
  .section.team-section .team-box .team-cards .small .card-info .name {
    font-size: 1.5rem;
  }
  .section.law-firm-header .law-firm-stats-bar,
  .section.law-firm-header .law-firm-featured .legal-news-list .news-card-list {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .section.legal-news-section .news-list .news-item.large .news-content,
  .section.legal-news-section .news-list .news-item.large img {
    grid-column: span 10;
  }
  .section.law-firm-header .law-firm-featured .justice-banner .banner {
    display: none;
  }
  .section.law-firm-header .law-firm-stats-bar .stat-item {
    grid-column: span 6 !important;
  }
  .section.law-firm-header .law-firm-stats-bar .stat-item.erji {
    grid-column: span 12 !important;
  }
  .section.team-section .top-box .title-box {
    grid-column: span 5;
  }
  .section.team-section .top-box .view-all-btn {
    grid-column: 6 / span 1;
    padding: 8px 14px;
    border-radius: 8px;
  }
  .section.legal-news-section .news-header .btn {
    font-size: 14px;
    font-weight: normal;
  }
}
@media screen and (max-width: 650px) {
  .section.legal-news-section {
    margin-top: 20px;
  }
  .section.team-section .top-box .title-box .main-title,
  .section.legal-news-section .news-header .news-title {
    font-size: 2.5rem;
  }
  .section.law-firm-header .law-firm-featured .legal-news-list .news-card-list,
  .section.team-section .team-box .team-cards {
    grid-template-columns: 1fr;
  }
  .section.team-section .top-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 16px;
  }
  .section.team-section .top-box .title-box .main-title {
    font-size: 2.5rem;
  }
  .section.team-section .top-box .title-box .main-title img,
  .section.team-section .top-box .title-box .main-title span {
    display: none !important;
  }
}
@media screen and (max-width: 550px) {
  .section.legal-news-section .news-list .news-grid {
    grid-template-columns: 1fr;
  }
  .section.law-firm-header .title-box .title {
    font-size: 2.5rem;
  }
}
/*# sourceMappingURL=home.css.map */