/* 基础全局样式 */
body {
  font-family: "Open Sans", sans-serif; /* 设置默认字体 */
  color: #4d4643; /* 主要文字颜色 */
}

/* 链接基础样式 */
a {
  color: #3498db; /* 链接颜色 - 蓝色 */
  text-decoration: none; /* 移除下划线 */
}

/* 链接悬停状态 */
a:hover {
  color: #000000; /* 悬停时变为黑色 */
  text-decoration: none; /* 保持无下划线 */
}

/* 标题字体设置 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Muli", sans-serif; /* 标题使用不同字体 */
}

/*--------------------------------------------------------------
# 返回顶部按钮样式
--------------------------------------------------------------*/
.back-to-top {
  position: fixed; /* 固定定位 */
  visibility: hidden; /* 初始隐藏 */
  opacity: 0; /* 初始透明 */
  right: 15px; /* 距离右侧15px */
  bottom: 15px; /* 距离底部15px */
  z-index: 996; /* 层级设置 */
  background: #3498db; /* 蓝色背景 */
  width: 40px; /* 宽度 */
  height: 40px; /* 高度 */
  border-radius: 4px; /* 圆角 */
  transition: all 0.4s; /* 过渡动画 */
}

.back-to-top i {
  font-size: 28px; /* 图标大小 */
  color: #fff; /* 白色图标 */
  line-height: 0; /* 行高为0 */
}

.back-to-top:hover {
  background: #3498db; /* 悬停保持蓝色 */
  color: #fff; /* 白色文字 */
}

.back-to-top.active {
  visibility: visible; /* 激活时可见 */
  opacity: 1; /* 完全不透明 */
}

/*--------------------------------------------------------------
# 移动端禁用AOS延迟
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important; /* 移动端移除动画延迟 */
  }
}

/*--------------------------------------------------------------
# 头部样式
--------------------------------------------------------------*/
#header {
  height: 70px; /* 固定高度 */
  transition: all 0.5s; /* 过渡动画 */
  z-index: 997; /* 层级设置 */
  background: #fff; /* 白色背景 */
}

#header.fixed-top {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1); /* 固定时的阴影效果 */
}

#header .logo h1 {
  font-size: 28px; /* Logo字体大小 */
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400; /* 常规字重 */
  letter-spacing: 1px; /* 字间距 */
  text-transform: uppercase; /* 文本大写 */
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #2b2320; /* 深棕色文字 */
  text-decoration: none; /* 无下划线 */
}

#header .logo img {
  padding: 0;
  margin-bottom: 5px; /* 底部外边距 */
  max-height: 60px; /* 最大高度 */
}

.scrolled-offset {
  margin-top: 70px; /* 滚动时的顶部偏移 */
}

/*--------------------------------------------------------------
# 导航菜单
--------------------------------------------------------------*/
/**
* 桌面端导航
*/
.navbar {
  padding: 0; /* 无内边距 */
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex; /* 弹性布局 */
  list-style: none; /* 移除列表样式 */
  align-items: center; /* 垂直居中 */
}

.navbar li {
  position: relative; /* 相对定位，为下拉菜单准备 */
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 两端对齐 */
  padding: 10px 0 10px 20px; /* 内边距 */
  font-size: 13px; /* 较小字体 */
  color: #65534c; /* 文字颜色 */
  white-space: nowrap; /* 不换行 */
  text-transform: uppercase; /* 文本大写 */
  transition: 0.3s; /* 过渡动画 */
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px; /* 图标大小 */
  line-height: 0;
  margin-left: 5px; /* 左侧间距 */
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #3498db; /* 悬停和激活状态变为蓝色 */
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #3498db; /* 蓝色背景 */
  padding: 8px 20px; /* 内边距 */
  margin-left: 30px; /* 左侧外边距 */
  border-radius: 4px; /* 圆角 */
  color: #fff; /* 白色文字 */
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff; /* 白色文字 */
  background: #fd490f; /* 悬停时橙色背景 */
}

/* 下拉菜单样式 */
.navbar .dropdown ul {
  display: block;
  position: absolute; /* 绝对定位 */
  left: 14px;
  top: calc(100% + 30px); /* 定位在父元素下方 */
  margin: 0;
  padding: 10px 0;
  z-index: 99; /* 较高层级 */
  opacity: 0; /* 初始透明 */
  visibility: hidden; /* 初始隐藏 */
  background: #fff; /* 白色背景 */
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); /* 阴影效果 */
  transition: 0.3s; /* 过渡动画 */
}

.navbar .dropdown ul li {
  min-width: 200px; /* 最小宽度 */
}

.navbar .dropdown ul a {
  padding: 10px 20px; /* 内边距 */
  font-size: 13px;
  text-transform: none; /* 不大写 */
  font-weight: 500; /* 中等字重 */
  color: #581601; /* 深红色文字 */
}

.navbar .dropdown ul a i {
  font-size: 12px; /* 图标大小 */
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3498db; /* 悬停时蓝色 */
}

.navbar .dropdown:hover>ul {
  opacity: 1; /* 完全不透明 */
  top: 100%; /* 调整位置 */
  visibility: visible; /* 可见 */
}

/* 二级下拉菜单 */
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden; /* 初始隐藏 */
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible; /* 悬停时显示 */
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%; /* 小屏幕调整位置 */
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%; /* 悬停位置调整 */
  }
}

/**
* 移动端导航
*/
.mobile-nav-toggle {
  color: #2b2320; /* 图标颜色 */
  font-size: 28px; /* 图标大小 */
  cursor: pointer; /* 手型指针 */
  display: none; /* 默认隐藏 */
  line-height: 0;
  transition: 0.5s; /* 过渡动画 */
}

.mobile-nav-toggle.bi-x {
  color: #fff; /* 关闭按钮白色 */
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block; /* 移动端显示汉堡菜单 */
  }

  .navbar ul {
    display: none; /* 隐藏桌面导航 */
  }
}

.navbar-mobile {
  position: fixed; /* 固定定位 */
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(14, 11, 10, 0.9); /* 半透明黑色背景 */
  transition: 0.3s; /* 过渡动画 */
  z-index: 999; /* 最高层级 */
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff; /* 白色背景 */
  overflow-y: auto; /* 垂直滚动 */
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px; /* 移动端稍大字体 */
  color: #581601; /* 文字颜色 */
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3498db; /* 悬停蓝色 */
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px; /* 外边距 */
}

.navbar-mobile .dropdown ul {
  position: static; /* 静态定位 */
  display: none; /* 默认隐藏 */
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1; /* 完全不透明 */
  visibility: visible; /* 可见 */
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block; /* 激活时显示 */
}

/*--------------------------------------------------------------
# 英雄区域（轮播图）
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh; /* 视口高度的70% */
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover; /* 背景图覆盖 */
  background-position: center; /* 居中 */
  background-repeat: no-repeat; /* 不重复 */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end; /* 底部对齐 */
  justify-content: center; /* 水平居中 */
  position: absolute;
  bottom: 150px;
  top: 50px;
  left: 50px;
  right: 50px;
}

#hero .carousel-content {
  background: rgba(28, 23, 21, 0.7); /* 半透明深色背景 */
  padding: 20px;
  color: #fff; /* 白色文字 */
  -webkit-animation-duration: 0.5s; /* 动画持续时间 */
  animation-duration: 0.5s;
  border-top: 5px solid #3498db; /* 顶部蓝色边框 */
}


#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700; /* 粗体 */
}

#hero .btn-get-started {
  font-family: "Muli", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px; /* 字间距 */
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s; /* 过渡动画 */
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s; /* 动画延迟 */
  animation-delay: 0.8s;
  border: 2px solid #3498db; /* 蓝色边框 */
  background: #3498db; /* 蓝色背景 */
}

#hero .btn-get-started:hover {
  background: #fff; /* 悬停白色背景 */
  color: #3498db; /* 悬停蓝色文字 */
  text-decoration: none;
}

/* 轮播图过渡效果 */
#hero .carousel-inner .carousel-item {
  transition-property: opacity; /* 透明度过渡 */
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0; /* 透明 */
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1; /* 不透明 */
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0); /* 3D变换 */
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%; /* 控制按钮宽度 */
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none; /* 无背景 */
  font-size: 48px; /* 图标大小 */
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer; /* 手型指针 */
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%; /* 桌面端宽度60% */
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%; /* 桌面端较小按钮 */
  }
}

@media (max-width: 992px) {
  #hero {
    height: calc(100vh - 70px); /* 移动端高度计算 */
  }

  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px; /* 移动端较小标题 */
  }

  #hero .carousel-content p {
    font-size: 15px; /* 移动端较小文字 */
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh; /* 矮屏幕增加高度 */
  }
}

/*--------------------------------------------------------------
# 通用区域样式
--------------------------------------------------------------*/
section {
  padding: 40px 0 20px 0; /* 区域内边距 */
  overflow: hidden; /* 隐藏溢出 */
}

.section-bg {
  background-color: #f6f3f2; /* 区域背景色 */
}

.section-title {
  padding-bottom: 30px;
  text-align: center; /* 标题居中 */
}

.section-title h2 {
  font-size: 28px;
  font-weight: 300; /* 细体 */
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #65534c; /* 标题颜色 */
}

.section-title h2 strong {
  font-weight: 700; /* 粗体强调 */
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 面包屑导航
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2320; /* 深色背景 */
  min-height: 40px; /* 最小高度 */
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
  color: #fff; /* 白色文字 */
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap; /* 允许换行 */
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ded5d2; /* 浅色文字 */
}

.breadcrumbs ol a {
  color: #fe825a; /* 橙色链接 */
}

.breadcrumbs ol li+li {
  padding-left: 10px; /* 列表项间距 */
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #c8bab5; /* 分隔符颜色 */
  content: "/"; /* 分隔符 */
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important; /* 移动端块级显示 */
  }

  .breadcrumbs ol {
    display: block; /* 移动端垂直排列 */
  }

  .breadcrumbs ol li {
    display: inline-block; /* 行内块显示 */
  }
}

/*--------------------------------------------------------------
# 行动号召区域
--------------------------------------------------------------*/
.cta {
  background: #f3f1f0; /* 浅灰色背景 */
  padding: 60px 0;
  color: #574741; /* 文字颜色 */
}

.cta h3 {
  font-size: 28px;
  font-weight: 700; /* 粗体 */
}

.cta h3 span {
  color: #3498db; /* 蓝色强调 */
}

.cta p {
  padding: 0;
  margin: 0;
}

.cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase; /* 文本大写 */
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px; /* 字间距 */
  display: inline-block;
  padding: 10px 25px;
  border-radius: 2px;
  transition: 0.4s; /* 过渡动画 */
  margin: 10px;
  border-radius: 4px;
  border: 2px solid #3498db; /* 蓝色边框 */
  color: #3498db; /* 蓝色文字 */
  background: #fff; /* 白色背景 */
}

.cta .cta-btn:hover {
  background: #3498db; /* 悬停蓝色背景 */
  color: #fff; /* 悬停白色文字 */
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll; /* 移动端取消背景固定 */
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 桌面端右对齐 */
  }
}

/*--------------------------------------------------------------
# 服务区域
--------------------------------------------------------------*/
.services .icon-box {
  padding: 50px 20px;
  margin-top: 35px;
  margin-bottom: 25px;
  text-align: center; /* 文本居中 */
  border: 1px solid #ebe6e4; /* 边框 */
  height: 150px; /* 固定高度 */
  position: relative;
  background: #faf9f8; /* 浅色背景 */
}

.services .icon {
  position: absolute;
  top: -36px; /* 向上偏移 */
  left: calc(50% - 36px); /* 水平居中 */
  transition: 0.2s; /* 过渡动画 */
  border-radius: 50%; /* 圆形 */
  border: 6px solid #fff; /* 白色边框 */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #3498db; /* 蓝色背景 */
}

.services .icon img{
  border-radius: 50%; /* 圆形图片 */
  border: 6px solid #fff;
  background: #3498db;
}

.services .icon i {
  color: #fff; /* 白色图标 */
  font-size: 24px;
  line-height: 0;
}

.services .title {
  font-weight: 700; /* 粗体 */
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase; /* 文本大写 */
}

.services .title a {
  color: #343a40; /* 深色链接 */
}

.services .icon-box:hover .icon {
  background: #fff; /* 悬停白色背景 */
  border: 2px solid #3498db; /* 悬停蓝色边框 */
}

.services .icon-box:hover .icon i {
  color: #3498db; /* 悬停蓝色图标 */
}

.services .icon-box:hover .title a {
  color: #3498db; /* 悬停蓝色链接 */
}

.services .description {
  line-height: 24px;
  font-size: 14px; /* 描述文字较小 */
}

/*--------------------------------------------------------------
# 作品集区域，就是导航区域
--------------------------------------------------------------*/
.portfolio #portfolio-filter {
  padding: 0;
  margin: 10px auto 10px auto;/* 法律计算器-AI工具的滑动与下方的间距 */
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-filter li {/* 法律计算器-AI工具的滑动 */
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;/* 法律计算器-AI工具的字体大小 */
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase; /* 文本大写 */
  color: #4d4643;
  transition: all 0.3s; /* 过渡动画 */
  border-radius: 50px; /* 法律计算器-AI工具，椭圆形 */
}

.portfolio #portfolio-filter li:hover,/* 法律计算器-AI工具的滑动字体颜色背景 */
.portfolio #portfolio-filter li.filter-active {
  color: #fff; /* 白色文字 */
  background: #3498db; /* 蓝色背景 */
}

.portfolio #portfolio-filter li:last-child {
  margin-right: 0; /* 最后一个无右边距 */
}

.portfolio .portfolio-item {
  margin-bottom: 20px; /* 底部外边距 */
}

.portfolio .portfolio-item p{
  font-size: 12px; /* 较小字体 导航的下一行小字解释*/
  font-weight: 400;
  line-height: 1;
  margin:1px;
  padding: 1px;
  color: #6f6f6f; /* 灰色文字 */
  white-space:nowrap; /* 不换行 */
  text-overflow: ellipsis; /* 文本溢出显示省略号 */
  overflow: hidden; /* 隐藏溢出 */
}

.portfolio .portfolio-item h5{
  font-size: 14px;/* 导航的字体大小*/
  font-weight: 400;
  line-height: 1;
  margin:2px;
  padding: 1px;
  white-space:nowrap; /* 不换行 */
  text-overflow: ellipsis; /* 文本溢出显示省略号 */
  overflow: hidden; /* 隐藏溢出 */
}

/*--------------------------------------------------------------
# 作品集详情
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0px; /* 顶部内边距 */
}

.portfolio-details .portfolio-details-slider img {
  width: 100%; /* 图片宽度100% */
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative; /* 相对定位 */
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff; /* 白色背景 */
  opacity: 1;
  border: 1px solid #3498db; /* 蓝色边框 */
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db; /* 激活状态蓝色 */
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(43, 35, 32, 0.08); /* 阴影效果 */
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee; /* 底部边框 */
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px; /* 列表项间距 */
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# 关于我们
--------------------------------------------------------------*/
.about-us .content {
  padding: 30px 0; /* 内容内边距 */
}

.about-us .content h3 {
  font-weight: 700;
  font-size: 34px; /* 大标题 */
}

.about-us .content p {
  margin-bottom: 0;
}

.about-us .content .icon-box {
  margin-top: 25px; /* 图标盒子上边距 */
}

.about-us .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px; /* 左侧留出图标空间 */
}

.about-us .content .icon-box i {
  font-size: 48px; /* 大图标 */
  float: left; /* 左浮动 */
  color: #3498db; /* 蓝色图标 */
}

.about-us .content .icon-box p {
  font-size: 15px;
  color: #90847f; /* 灰色文字 */
  margin-left: 60px; /* 与图标对齐 */
}


@media (max-width: 991px) {
  .about-us .image {
    text-align: center; /* 移动端居中 */
  }

  .about-us .image img {
    max-width: 80%; /* 移动端最大宽度80% */
  }
}

@media (max-width: 667px) {
  .about-us .image img {
    max-width: 100%; /* 小屏幕100%宽度 */
  }
}

/*--------------------------------------------------------------
# 团队成员
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center; /* 文本居中 */
  border-radius: 5px; /* 圆角 */
  background: #fff; /* 白色背景 */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0; /* 初始透明 */
  transition: ease-in-out 0.3s; /* 过渡动画 */
  background: rgba(255, 255, 255, 0.85); /* 半透明白色背景 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s; /* 颜色过渡 */
  color: #2b2320; /* 社交图标颜色 */
  margin: 0 10px; /* 图标间距 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a:hover {
  color: #3498db; /* 悬停蓝色 */
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px; /* 信息区域内边距 */
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #2b2320; /* 成员姓名颜色 */
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #b4aca8; /* 职位颜色 */
}

.team .member .member-info p {
  font-style: italic; /* 斜体 */
  font-size: 14px;
  line-height: 26px;
  color: #847872; /* 描述文字颜色 */
}

.team .member:hover .social {
  opacity: 1; /* 悬停时显示社交图标 */
}

/*--------------------------------------------------------------
# 技能展示
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none; /* 无背景 */
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase; /* 文本大写 */
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #2b2320; /* 技能名称颜色 */
}

.skills .progress .skill .val {
  float: right; /* 数值右浮动 */
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #ded5d2; /* 进度条背景 */
}

.skills .progress-bar {
  width: 1px; /* 初始宽度 */
  height: 30px;
  transition: 0.9s; /* 过渡动画 */
  background-color: #3498db; /* 蓝色进度条 */
}

/*--------------------------------------------------------------
# 特性功能
--------------------------------------------------------------*/
.features {
  padding-top: 0; /* 顶部无内边距 */
}

.features .nav-tabs {
  border: 0; /* 无边框 */
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  transition: 0.3s; /* 过渡动画 */
  color: #2b2320; /* 标签颜色 */
}

.features .nav-link:hover {
  color: #3498db; /* 悬停蓝色 */
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600; /* 半粗体 */
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link.active {
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.12); /* 激活状态阴影 */
  color: #3498db; /* 激活状态蓝色 */
}

.features .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out; /* 下滑动画 */
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0; /* 初始透明 */
  }

  100% {
    opacity: 1; /* 完全不透明 */
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# 联系表单
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); /* 信息区域阴影 */
  padding: 30px;
}

.contact .info {
  background: #fff; /* 白色背景 */
}

.contact .info i {
  font-size: 20px;
  color: #3498db; /* 蓝色图标 */
  float: left;
  width: 44px;
  height: 44px;
  background: #ffeee8; /* 浅橙色背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px; /* 圆形 */
  transition: all 0.3s ease-in-out; /* 过渡动画 */
}

.contact .info h4 {
  padding: 0 0 0 60px; /* 左侧留出图标空间 */
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2b2320;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #65534c;
}

.contact .info:hover i {
  background: #3498db; /* 悬停蓝色背景 */
  color: #fff; /* 悬停白色图标 */
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12); /* 表单阴影 */
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px; /* 表单组底部内边距 */
}

.contact .php-email-form .error-message {
  display: none; /* 默认隐藏错误信息 */
  color: #fff;
  background: #ed3c0d; /* 红色错误背景 */
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px; /* 错误信息间距 */
}

.contact .php-email-form .sent-message {
  display: none; /* 默认隐藏成功信息 */
  color: #fff;
  background: #18d26e; /* 绿色成功背景 */
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none; /* 默认隐藏加载状态 */
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%; /* 圆形加载动画 */
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite; /* 旋转动画 */
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0; /* 无圆角 */
  box-shadow: none; /* 无阴影 */
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px; /* 输入框高度 */
}

.contact .php-email-form textarea {
  padding: 10px 12px; /* 文本域内边距 */
}

.contact .php-email-form button[type=submit] {
  background: #3498db; /* 蓝色提交按钮 */
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s; /* 过渡动画 */
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fd5c28; /* 悬停橙色 */
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg); /* 旋转动画起始 */
  }

  100% {
    transform: rotate(360deg); /* 旋转一圈 */
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 博客文章
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* 文章阴影 */
}

.blog .entry .entry-img {
  max-height: 440px; /* 图片最大高度 */
  margin: -30px -30px 20px -30px; /* 负边距使图片溢出 */
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold; /* 粗体标题 */
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #2b2320;
  transition: 0.3s; /* 颜色过渡 */
}

.blog .entry .entry-title a:hover {
  color: #3498db; /* 悬停蓝色 */
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #9c847b; /* 元信息颜色 */
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap; /* 允许换行 */
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px; /* 元信息项间距 */
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #847872;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  text-indent: 2em; /* 段落首行缩进2字符 */
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right; /* 最后一行右对齐 */
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #3498db; /* 蓝色阅读更多按钮 */
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #fd490f; /* 悬停橙色 */
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa; /* 引用背景色 */
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic; /* 斜体 */
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #2b2320; /* 引用左侧边框 */
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6; /* 底部边框 */
}

.blog .entry .entry-footer i {
  color: #836a61;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #3a2f2b;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #3498db; /* 悬停蓝色 */
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ","; /* 标签分隔符 */
}

.blog .entry .entry-footer .share {
  font-size: 16px; /* 分享字体稍大 */
}

.blog .entry .entry-footer .share i {
  padding-left: 5px; /* 分享图标左侧间距 */
}

.blog .entry-single {
  margin-bottom: 30px; /* 单篇文章底部外边距 */
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* 作者区域阴影 */
}

.blog .blog-author img {
  width: 120px; /* 作者头像大小 */
  margin-right: 20px; /* 头像右侧间距 */
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #2b2320;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0; /* 社交链接外边距 */
}

.blog .blog-author .social-links a {
  color: rgba(43, 35, 32, 0.5); /* 半透明社交图标 */
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic; /* 斜体描述 */
  color: #bfb9b6;
}

.blog .blog-comments {
  margin-bottom: 30px; /* 评论区域底部外边距 */
}

.blog .blog-comments .comments-count {
  font-weight: bold; /* 评论数量粗体 */
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px; /* 评论头像右侧间距 */
}

.blog .blog-comments .comment .comment-img img {
  width: 60px; /* 评论头像大小 */
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #4d4643;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #3498db; /* 悬停蓝色 */
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #2b2320;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px; /* 回复图标大小 */
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #483b36; /* 时间颜色 */
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px; /* 回复评论左侧缩进 */
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* 回复表单阴影 */
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #fe825a; /* 聚焦时橙色边框 */
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #fe825a; /* 聚焦时橙色边框 */
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px; /* 表单组底部外边距 */
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #2b2320; /* 深色按钮 */
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #3a2f2b; /* 悬停更深色 */
}

.blog .pagination {
  color: #65534c; /* 分页颜色 */
}

.blog .pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .pagination li {
  margin: 0 5px;
  transition: 0.3s; /* 分页项过渡 */
}

.blog .pagination li a {
  color: #2b2320;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .pagination li.active,
.blog .pagination li:hover {
  background: #3498db; /* 激活和悬停蓝色背景 */
}

.blog .pagination li.active a,
.blog .pagination li:hover a {
  color: #fff; /* 激活和悬停白色文字 */
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px; /* 侧边栏外边距 */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* 侧边栏阴影 */
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #2b2320;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px; /* 侧边栏项底部外边距 */
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd; /* 搜索表单边框 */
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px); /* 输入框宽度计算 */
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #3498db; /* 搜索按钮蓝色 */
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0; /* 右侧圆角 */
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #fd4509; /* 悬停橙色 */
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px; /* 分类项间距 */
}

.blog .sidebar .categories ul a {
  color: #2b2320;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #3498db; /* 悬停蓝色 */
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b4aca8; /* 分类计数颜色 */
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px; /* 最新文章项间距 */
}

.blog .sidebar .recent-posts img {
  width: 80px; /* 最新文章图片大小 */
  float: left; /* 左浮动 */
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px; /* 留出图片空间 */
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #2b2320;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #3498db; /* 悬停蓝色 */
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px; /* 与标题对齐 */
  font-style: italic;
  font-size: 14px;
  color: #b4aca8;
}

.blog .sidebar .tags {
  margin-bottom: -10px; /* 标签底部负外边距 */
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block; /* 行内块显示 */
}

.blog .sidebar .tags ul a {
  color: #745f56;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #ded5d2; /* 标签边框 */
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff; /* 悬停白色文字 */
  border: 1px solid #3498db; /* 悬停蓝色边框 */
  background: #3498db; /* 悬停蓝色背景 */
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #c8bab5;
  font-size: 14px;
}

/*--------------------------------------------------------------
# 价格方案
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f3f1f0; /* 价格盒子背景 */
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase; /* 价格标题大写 */
  font-weight: 600;
  color: #2b2320;
}

.pricing h4 {
  font-size: 42px; /* 大价格数字 */
  color: #3498db; /* 蓝色价格 */
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa; /* 周期文字灰色 */
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #2b2320;
  text-align: center;
  line-height: 20px;
  text-overflow: ellipsis; /* 文本溢出显示省略号 */
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
  text-overflow: ellipsis;
  white-space: nowrap; /* 不换行 */
  overflow: hidden;
  margin:5px 10px;
}

.pricing ul .na {
  color: #ccc; /* 不可用项灰色 */
  text-decoration: line-through; /* 删除线 */
}

.pricing .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .btn-buy {
  color: #9c847b;
  border: 2px solid #e9e3e1; /* 购买按钮边框 */
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;

  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Muli", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  color: #3498db; /* 悬停蓝色 */
  border-color: #3498db; /* 悬停蓝色边框 */
}

.pricing .featured {
  background: #fd5c28; /* 特色方案橙色背景 */
  box-shadow: none;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff; /* 特色方案白色文字 */
}

.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .featured .btn-buy {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5); /* 半透明白色边框 */
}

.pricing .featured .btn-buy:hover {
  color: #3498db;
  background: #fff; /* 悬停白色背景 */
  border-color: #fff; /* 悬停白色边框 */
}

/*--------------------------------------------------------------
# 价格行动号召
--------------------------------------------------------------*/
.cta-pricing {
  background: #f3f1f0; /* 浅灰色背景 */
  color: #65534c;
}

.cta-pricing h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta-pricing .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 2px;
  transition: 0.4s;
  margin: 10px;
  border-radius: 4px;
  border: 2px solid #3498db; /* 蓝色边框 */
  color: #3498db; /* 蓝色文字 */
  background: #fff; /* 白色背景 */
}

.cta-pricing .cta-btn:hover {
  background: #3498db; /* 悬停蓝色背景 */
  color: #fff; /* 悬停白色文字 */
}

/* 分页组件样式 */
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #dee2e6;
  --bs-pagination-border-radius: 0.375rem;
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: #e9ecef;
  --bs-pagination-hover-border-color: #dee2e6;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #e9ecef;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: #6c757d;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #dee2e6;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.pagination li {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* 自定义分页样式 */
.pagination {
  color: #65534c;
}

.pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination li a {
  color: #2b2320;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li.active,
.pagination li:hover {
  background: #3498db; /* 激活和悬停蓝色背景 */
}

.pagination li.active a,
.pagination li:hover a {
  color: #fff; /* 激活和悬停白色文字 */
}

/* 博客分页 */
.blog-pagination {
  color: #65534c;
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: #2b2320;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li.active,
.blog-pagination li:hover {
  background: #3498db; /* 激活和悬停蓝色背景 */
}

.blog-pagination li.active a,
.blog-pagination li:hover a {
  color: #fff; /* 激活和悬停白色文字 */
}

/* 警告图标样式 */
.alert-icon {
  position: relative;
  display: flex;
  padding: 0;
}
.alert-icon button.btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1rem; /* 关闭按钮位置 */
}
.alert-icon .alert-icon-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1rem;
  font-size: 1.5rem; /* 图标大小 */
}
.alert-icon .alert-icon-aside svg.feather,
.alert-icon .alert-icon-aside svg,
.alert-icon .alert-icon-aside i {
  height: 1.5rem;
  width: 1.5rem;
}
.alert-icon .alert-icon-content {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* 工具按钮样式 */
#tools button{
  border: 0;
  padding: 10px 24px;
  margin: 5px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

#tools label{
  text-align: right; /* 标签右对齐 */
}

#tools_result{
  padding: 40px 0 20px 0; /* 工具结果区域内边距 */
}

#tools_result .entry-single {
  margin-bottom: 30px;
}

#tools_result .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%); /* 工具结果条目阴影 */
}

/*--------------------------------------------------------------
# 简历样式
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}

.resume .resume-item {
  padding: 0 0 5px 20px;
  margin-top: -2px;
  border-left: 2px solid #3498db; /* 左侧蓝色边框 */
  position: relative;
}

.resume .resume-item h4 {
  line-height: 20px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #3498db; /* 蓝色标题 */
  margin-bottom: 10px;
}

.resume .resume-item p {
  line-height: 22px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9; /* 浅灰色背景 */
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px; /* 列表左侧内边距 */
}

.resume .resume-item ul li {
  padding-bottom: 10px;
  line-height: 22px;
  font-size: 14px;
}

.resume .resume-item:last-child {
  padding-bottom: 0; /* 最后一项无底部内边距 */
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px; /* 圆形标记 */
  left: -9px;
  top: 0;
  background: #fff; /* 白色背景 */
  border: 2px solid #3498db; /* 蓝色边框 */
}

.person_info ul li {
  padding-bottom: 15px;
  font-size: 16px; /* 个人信息较大字体 */
}

/*======================================
    法律服务产品
========================================*/
.services {
/* background-color: #F4F7FA; */ /* 注释掉的背景色 */
}

.services .section-title {
  margin-bottom: 10px; /* 标题底部外边距 */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services .section-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .services .section-title {
    margin-bottom: 10px;
  }
}

.services.style2 .single-service {
  background-color: transparent; /* 透明背景 */
  -webkit-box-shadow: none;
  box-shadow: none; /* 无阴影 */
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #eaeaea; /* 边框 */
  text-align: center;
}

.services.style2 .single-service h3 {
  font-size: 18px;
  text-align: center;
}

.section-title h3 {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  color: #3498db; /* 蓝色文字 */
  border: 1px solid #3498db; /* 蓝色边框 */
  border-radius: 30px; /* 椭圆形 */
  padding: 8px 30px;
  text-transform: capitalize; /* 首字母大写 */
}

.services.style2 .single-service:hover {
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.048);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.048); /* 悬停阴影 */
  background-color: #F4F7FA; /* 悬停浅蓝色背景 */
}

.single-service {
  padding: 35px;
  border-radius: 18px; /* 较大圆角 */
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.048);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.048); /* 服务卡片阴影 */
  background-color: #F4F7FA; /* 浅蓝色背景 */
  margin-top: 30px;
}

.single-service i {
  font-size: 56px; /* 大图标 */
  line-height: 56px;
  color: #3498db; /* 蓝色图标 */
}

.single-service h3 {
  font-size: 18px;
  font-weight: 300; /* 细体 */
  margin-bottom: 20px;
  margin-top: 40px;
}

.single-service p {
  font-size: 16px;
}

.single-service a {
  color: #3080E3; /* 链接蓝色 */
  margin-top: 40px;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
}

.single-service a i {
  font-size: 22px; /* 链接图标大小 */
  margin-left: 12px;
  position: relative;
  top: 3px;
}

.single-service a:hover {
  letter-spacing: 1px; /* 悬停字间距增大 */
}

/*======================================
办事流程时间轴
======================================*/

.horizontal-timeline .items {
  border-top: 3px solid #e9ecef; /* 时间轴顶部线条 */
}

.horizontal-timeline .items .items-list {
  display: block;
  position: relative;
  text-align: center;
  padding-top: 70px; /* 顶部内边距 */
  margin-right: 0;
}

.horizontal-timeline .items .items-list:before {
  content: "";
  position: absolute;
  height: 36px;
  border-right: 2px dashed #dee2e6; /* 虚线连接线 */
  top: 0;
}

.horizontal-timeline .items .items-list .event-date {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: 75px;
  margin: 0 auto;
  font-size: .9rem; /* 日期较小字体 */
  padding-top: 8px;
}

.horizontal-timeline .items .items-list h5{
  font-size: 14px; /* 时间轴标题较小字体 */
}

.horizontal-timeline .items .items-list p{
  font-size: 12px; /* 时间轴描述更小字体 */
}

@media (min-width: 1140px) {
  .horizontal-timeline .items .items-list {
    display: inline-block;
    width: 19%; /* 桌面端宽度19% */
    padding-top: 45px;
  }

  .horizontal-timeline .items .items-list .event-date {
    top: -40px; /* 桌面端日期上移 */
  }
}

.process_item {
  text-align: center;
  font-size: 13px; /* 流程项较小字体 */
  padding: 20px;
  margin: 20px 10px 20px 10px;
  overflow: hidden;
  text-overflow: ellipsis; /* 文本溢出显示省略号 */
  white-space: nowrap; /* 不换行 */
  border: 1px solid #3498db; /* 蓝色边框 */
}

.process_item:hover {
  -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.048);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.048); /* 悬停阴影 */
  background-color: #F4F7FA; /* 悬停浅蓝色背景 */
}

/**************团队介绍*****************/

.team-detail {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 85px; /* 团队成员顶部外边距 */
}

.team-detail .image {
  margin-top: -75px; /* 图片向上偏移 */
}

.team-detail .content .name {
  font-size: 16px;
  font-weight: bold; /* 姓名粗体 */
}

.team-detail .content .area {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500; /* 领域中等字重 */
}

.team-detail .content .mobile,.weichat {
  font-size: 14px; /* 联系方式字体大小 */
}

.team-detail:hover {
  -webkit-transform: translateY(-7px); /* 悬停向上移动 */
  transform: translateY(-7px);
}

.avatar.avatar-medium {
  height: 110px;
  width: 110px; /* 中等头像尺寸 */
}

.para-desc {
  max-width: 700px;
  line-height:30px; /* 描述文字行高 */
}
.text-muted {
  color: #707070 !important; /*  muted文字颜色 */
}

/*********自测**********/

#examination .row {
  margin: 5px;
  padding: 5px; /* 自测区域间距 */
}

#examination .card{
  border: 0; /* 卡片无边框 */
}

#examination .form-group label {
  /* 表单标签样式 */
}

#examination .card-header {
  border: 0;
  background-color: #FFFFFF; /* 白色卡片头部 */
  color: var(--bs-card-cap-color);
  margin-bottom: 0;
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
}

#examination .card-header h4 {
  font-size: 1.2rem;
  font-weight: 700; /* 自测标题粗体 */
}

#examination .company_exam_info{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); /* 公司考试信息阴影 */
  padding: 15px;
}

#examination .company_exam_info .info {
  background: #fff; /* 白色背景 */
}

#examination .company_exam_info .info i {
  font-size: 20px;
  color: #3498db; /* 蓝色图标 */
  float: left;
  width: 60px;
  height: 60px;
  background: #ffeee8; /* 浅橙色背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px; /* 圆形 */
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

#examination .company_exam_info .info h4 {
  padding: 0 0 0 60px; /* 左侧留出图标空间 */
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2b2320;
}

#examination .company_exam_info .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #65534c;
}

#examination .company_exam_info .info:hover i {
  background: #3498db; /* 悬停蓝色背景 */
  color: #fff; /* 悬停白色图标 */
}

.exam_button{
  margin-left: 10px;
  background: #3498db; /* 考试按钮蓝色 */
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.title_defined{
  display: none; /* 定义的标题隐藏 */
}

/* 自定义New标签样式 */
.new-tag {
     display: inline-block;
     background-color: red; /* 红色背景 */
     color: white; /* 白色文字 */
     font-size: 9px; /* 较小字体 */
     padding: 1px 5px; /* 内边距 */
     border-radius: 3px; /* 小圆角 */
     margin-left: 5px; /* 左侧间距 */
     vertical-align: middle; /* 垂直居中 */
}

/***法律咨询****/

/* 注释掉的法律咨询按钮样式 */
/*
#consult_button,#reset_button {
  background: #3498db;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

#consult_button,#reset_button:hover {
  background: #fd5c28;
}
*/

#cssloader {
  padding-top: calc(10vh - 25px); /* CSS加载器顶部内边距计算 */
}

/** 加载动画 **/
.sh1 {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0; /* 三角形1 */
  border-color: #354952 transparent transparent transparent;
  margin: 0 auto;
  animation: shk1 1s ease-in-out infinite normal; /* 旋转动画1 */
}

.sh2 {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px; /* 三角形2 */
  border-color: transparent  transparent #df1a54 transparent ;
  margin: -50px auto 0;
  animation: shk2 1s ease-in-out infinite alternate; /* 旋转动画2 */
}

/** 动画定义 **/
@keyframes shk1 {
  0% {
    transform: rotate(-360deg); /* 起始旋转角度 */
  }

  100% {
  }
}

@keyframes shk2 {
  0% {
    transform: rotate(360deg); /* 起始旋转角度 */
  }
  100% {
  }
}

.lt {
  color: #fd5c28; /* 加载文字橙色 */
  font-family: 'Roboto', sans-serif;
  margin: 30px auto;
  text-align: center;
  font-weight: 100; /* 细体 */
  letter-spacing: 10px; /* 字间距 */
}

/*--------------------------------------------------------------
# 客户评价
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08); /* 评价项阴影 */
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px; /* 圆形头像 */
  border: 6px solid #fff; /* 白色边框 */
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999; /* 职位灰色 */
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fecfc0; /* 引用图标浅橙色 */
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic; /* 斜体评价内容 */
  margin: 15px 0 0 0;
  padding: 0;
}

/* 推广页脚 */
#promote_footer {
  color: #b4aca8;
  font-size: 14px;
  background: #ebe6e4; /* 浅灰色背景 */
}

#promote_footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  position: relative;
  padding-bottom: 12px;
  margin-top:30px;
}

#promote_footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#promote_footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#promote_footer .footer-top .footer-links ul i {
  padding-right: 2px;
  font-size: 18px;
  line-height: 1;
}

#promote_footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#promote_footer .footer-top .footer-links ul li:first-child {
  padding-top: 0; /* 第一项无顶部内边距 */
}

#promote_footer .footer-top .footer-links ul a {
  color: #b4aca8;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#promote_footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
}

.contact-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 2px;
  transition: 0.4s;
  margin: 10px;
  border-radius: 4px;
  border: 2px solid #3498db; /* 蓝色边框 */
  color: #fff; /* 白色文字 */
  background: #3498db; /* 蓝色背景 */
}

.contact-btn:hover {
  background: #fff; /* 悬停白色背景 */
  color: #3498db; /* 悬停蓝色文字 */
}