* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: none;
  resize: none;
  letter-spacing: 1px;
}

html {
  overflow-x: hidden;
  height: 100%;
}

body {
  background-color: #fafafa;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #cfcfcf;
}

.header {
  height: 100px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main {
  width: 100%;
  margin: 0;
  padding-top: 90px;
  flex: 1;
}

footer {
  background: #43444a;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
  margin-top: auto;
}

.footer {
  height: 100px;
  background: #43444a;
  display: flex;
  justify-content: center;
  line-height: 100px;
}

.footer a,
.footer p {
  margin: 0 20px;
  font-family: SourceHanSansSC-Light;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #9698a4;
}

ul,
li {
  list-style: none;
}

img {
  display: block;
}

a {
  text-decoration: none;
  display: block;
  color: #333;
}

input,
textarea {
  font-family: microsoft yahei;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  font-family: microsoft yahei;
  font-size: 14px;
}

.img-bg {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  margin-left: 40px;
  width: 338px;
  height: 52px;
}

.navigation {
  height: 90px;
  width: calc(100% - 250px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav {
  margin-right: 34px;
  display: flex;
}

.nav .item {
  padding: 0 15px;
  font-size: 16px;
  line-height: 100px;
  position: relative;
}

.nav .item a {
  color: #333333;
  padding: 0 10px;
  position: relative;
}

.nav .item > a.active {
  color: #d2ae5a;
  font-size: 18px;
}

.nav .item > a.active::after {
  position: absolute;
  border-bottom: 6px #d2ae5a solid;
  font-weight: 700;
  content: "";
  font-size: 16px;
  bottom: 0;
  left: 0;
  width: 100%;
}

.nav .child {
  display: none;
  position: absolute;
  top: 100%;
  width: 120px;
  padding: 10px 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  z-index: 998;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav .child > a {
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

/* 子菜单项选中状态 */
.nav .child > a.active {
  color: #d2ae5a;
  font-weight: bold;
}

/* 桌面端悬停显示子菜单 */
@media (min-width: 769px) {
  .nav .item:hover .child {
    display: block;
  }

  /* 子菜单项悬停效果 */
  .nav .child > a:hover {
    color: #d2ae5a;
    background-color: rgba(245, 245, 245, 0.8);
  }
}

@media (any-hover: hover) {
  .img-bg .bg:hover {
    transform: scale(1.1);
  }
  /* .page a:hover {
    background: #004098;
    color: #fff;
  } */
  .my-select ul li:hover {
    background: #004098;
    color: #fff;
  }
  .pos .info a:hover {
    color: #004098;
  }
  .pos .nav > a:hover {
    background: #004098;
    color: #fff;
  }
  .search .popup .btn:hover {
    background-color: #033273;
  }
  .nav .item > a:hover {
    color: #ffc955;
  }
  .footer .nav .child > a:hover {
    opacity: 1;
    color: #004098;
  }
  .footer .footer-b > a:hover {
    opacity: 1;
    color: #004098;
  }
  .footer .qr .icon:hover {
    background: #004098;
  }
}

/* 分页样式 */
.page {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}

.page-number {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: PingFang-SC-Medium;
  color: #000;
  margin: 0 10px;
  cursor: pointer;
}

.page-item:hover {
  background-color: #b89a4a;
}

.prev {
  width: 28px;
  height: 28px;
  display: block;
  background-image: url("../images/组19.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 6px;
}
a.prev:hover {
  background-color: transparent;
  background-image: url("../images/组18拷贝.png");
}
.next {
  width: 28px;
  height: 28px;
  display: block;
  background-image: url("../images/组19拷贝.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 6px;
}
a.next:hover {
  background-color: transparent;
  background-image: url("../images/组18.png");
}

/* 分页按钮悬停效果 */
.page a.page-number:hover {
  cursor: pointer;
}
/* 当前活动页 */
a.a_cur {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 8px;
  background-color: #e3b95a;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: PingFang-SC-Medium;
  color: #ffffff;
}
.page a.a_cur:hover {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 8px;
  background-color: #d1a337;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: PingFang-SC-Medium;
  color: #ffffff;
}

/* 分页按钮禁用状态 */
.prev.disabled,
.next.disabled {
  filter: grayscale(100%) opacity(0.5);
  cursor: not-allowed;
}

/* 确保禁用状态下不会有hover效果 */
a.prev.disabled:hover {
  background-image: url("../images/组19-disabled.png");
}

a.next.disabled:hover {
  background-image: url("../images/组18拷贝-disabled.png");
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/* 添加职位标题的样式 */
.cell {
  font-weight: 700; /* 设置职位名称始终为粗体 */
}

.bread-crumbs-box {
  position: relative;
}
.bread-crumbs-common {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  position: absolute;
}
.bread-crumbs-common span img {
  display: inline-block;
}
.bread-crumbs-common .bread-crumbs-common-line {
  padding: 0 10px;
}
.bread-crumbs-common .bread-crumbs-common-btn {
  cursor: pointer;
}
.bread-crumbs-common span[onclick] {
  cursor: pointer;
  transition: color 0.3s ease;
}

.bread-crumbs-common span[onclick]:hover {
  color: rgba(255, 255, 255, 0.8);
}

.bra-banner-box .prof-team {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.detail-bread-crumbs {
  top: -36px;
}

.right-container {
  width: 580px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.right-content {
  flex: 1;
  padding-top: 0;
}

.right-controls {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 20px;
  padding: 20px;
}

.control-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.control-btn img {
  width: 24px;
  height: 24px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
  .right-container {
    width: 100%;
    height: auto;
  }

  .right-controls {
    position: relative;
    justify-content: center;
    padding: 15px;
  }
}
/* CSS */
.scroll-to-top {
  position: fixed;
  bottom: 110px;
  right: 40px;
  cursor: pointer;
  display: none; /* 默认隐藏 */
  align-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  width: 76px;
  height: 69px;
  flex-direction: column;
  z-index: 2000;
  color: #333;
  font-size: 12px;
  background-color: #fff;
}

.scroll-to-top .hover-img {
  display: none; /* 默认隐藏 hover 图片 */
}

.scroll-to-top:hover .default-img {
  display: none; /* hover 时隐藏默认图片 */
}

.scroll-to-top:hover .hover-img {
  display: inline; /* hover 时显示 hover 图片 */
}

.scroll-to-top img {
  margin-top: 14px;
  width: 20px;
}
.scroll-to-top span {
  margin-top: 5px;
}
.scroll-to-top:hover span {
  color: #e3b95a;
}
.customer-service {
  position: fixed;
  bottom: 190px;
  right: 40px;
  cursor: pointer;
  align-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  width: 76px;
  height: 84px;
  flex-direction: column;
  z-index: 2000;
  color: #333;
  font-size: 12px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.customer-service .customer-service-img {
  width: 54px;
}
@keyframes customerServiceTextColorFade {
  0% {
    color: #333;
    opacity: 0;
  }
  10% {
    color: #333;
    opacity: 1;
  }
  20% {
    color: #333;
    opacity: 0;
  }
  30% {
    color: #333;
    opacity: 1;
  }
  40% {
    color: #333;
    opacity: 0;
  }
  50% {
    color: #333;
    opacity: 1;
  }
  60% {
    color: #e3b95a;
    opacity: 0;
  }
  70% {
    color: #e3b95a;
    opacity: 1;
  }
  100% {
    color: #e3b95a;
    opacity: 1;
  }
}

.customer-service-text {
  animation: customerServiceTextColorFade 4s infinite ease-in-out;
}

iframe {
  position: absolute;
  right: 0!important;
  bottom: 0!important;
  width: 100%;
  height: 100%;
  border: none;
}

/* 针对移动设备的优化 */
@media (max-width: 768px) {
  #jufulaw123 {
    width: 100%;
    height: 100vh;
    right: 0;
    top: 0;
    left: 0;
    bottom: env(safe-area-inset-bottom);
  }
}
