﻿html,
body {
  height: 100%;
  /* 文字风格 Sans-serif 各笔画粗细相同，Serif 笔画粗细不同，monospace 等宽体，cursive草书，fantasy梦幻 */
  font-family: "Microsoft YaHei", sans-serif, "Helvetica Neue", Helvetica, Arial, "黑体", "宋体", Arial;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*  清除列表前面的点 */
ol,
li,
ul {
  list-style: none;
}

/*  清除IE下图片的边框 */
img {
  border-style: none;
  font-size: 0;
}

/*  解决chrome浏览器默认黄色背景问题 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}


/*  设置默认滚动条样式 */
::-webkit-input-placeholder {
  color: #afbdcc;
}

:-moz-placeholder {
  color: #afbdcc;
}

::-moz-placeholder {
  color: #afbdcc;
}

:-ms-input-placeholder {
  color: #afbdcc;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

::-webkit-scrollbar-track-piece {
  background-color: #f5f5f5;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 6px;
}

::-webkit-scrollbar-corner {
  background-color: #828282;
}

::-webkit-resizer {
  background-repeat: no-repeat;
  background-position: bottom right;
}


.btn:active,
.btn.active {
  background-color: transparent !important;
  /* 或者设置为你的默认背景色 */
  border-color: transparent !important;
  /* 或者设置为你的默认边框色 */
  box-shadow: none !important;
  /* 移除阴影 */
  color: inherit;
  /* 确保文字颜色不变 */
}



:root {
  /* 主题色 */
  --themeColor: #c8101e;
  /* 卡片阴影 */
  /* --boxShadow: 0px 0px 13px 4px rgba(0, 0, 0, 0.1); */
  --boxShadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  /* 卡片圆角 */
  --borderRadius: 10px;
}
ol, ul{
  padding-left: 0px;
}

@media (min-width: 1439px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* LOGO */
.logo {
  width: 165px;
}

.header .menu {
  background: #fff;
  box-shadow: -2px 9px 22px -10px rgba(190, 213, 187, 1);
  -webkit-box-shadow: -2px 9px 22px -10px rgba(190, 213, 187, 1);
  -moz-box-shadow: -2px 9px 22px -10px rgba(190, 213, 187, 1);
}

.header .navbar .nav-item {
  padding: 0 10px;
}

/* 头部电话图标*/
.header-phone {
  display: flex;
  align-items: center;
}

.header-phone img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.header-phone .phone-number {
  color: var(--themeColor);
  font-weight: 700;
  font-size: 24px;
}

.navbar-light .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  color: #1c1c1c;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 4px transparent solid;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  border-bottom: 4px var(--themeColor) solid;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: var(--themeColor);
}

/* 头部 全国 地区选择抽屉样式*/
.region-drawer {
  position: fixed;
  top: 76px;
  /* 与header底部对齐 */
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1030;
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.region-drawer.show {
  display: block;
  max-height: 80vh;
  overflow-y: auto;
}

/* 选择地区 - 添加滑动动画 */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 选择地区 - 添加滑动动画 */
@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.drawer-title {
  font-weight: bold;
  color: #198754;
  margin: 0;
  font-size: 1.1rem;
}

.drawer-body {
  padding: 1.5rem;
}

/* 备考工具通用样式 */
.tools .title {
  height: 55px;
  display: flex;
  align-items: center;
  color: #060606;
  font-weight: 700;
  font-size: 20px;
}

.tools .tool-name {
  font-size: 0.875rem;
  color: #333;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  transition: color 0.2s ease;
}

.tools a:hover .tool-name {
  color: var(--themeColor);
}

.tools img {
  transition: transform 0.3s ease;
}

.tools a:hover img {
  transform: translateY(-3px);
}

/* 成公相关信息通用样式 */
.footer .footer-info .info-item .footer-icon {
  width: 50px;
  height: 50px;
}

.footer .footer-info .info-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.footer .footer-info .info-text {
  color: #fff;
  font-size: 18px;
}

/* 脚步通用样式 */
.footer .shortcut-menu .prominent {
  padding-bottom: 4px;
  color: #262626;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 3px var(--themeColor) solid;
}

.footer .prominent-ul>li>a,
.footer .prominent-ul>li>span {
  color: #828282;
  font-size: 15px;
  line-height: 25px;
  cursor: pointer;
}

/* 脚步二维码*/
.footer-code img {
  width: 150px;
  height: 150px;
  border: 1px solid #c8101e;
}

/* 关注微信公众号弹窗样式*/
#myModal .title {
  font-size: 18px;
  font-weight: 700;
}

/* 分页自定义样式 */
.page-link {
  color: var(--themeColor);
  border-radius: 4px;
  margin: 0 4px;
  transition: all 0.2s ease;
}

.page-item.active .page-link {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-link:hover,
.page-item:hover .page-link {
  background-color: rgba(0, 86, 179, 0.1);
  border-color: var(--themeColor);
  transform: translateY(-1px);
}

.page-link:focus {
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* 地区显示标签 */
.region-display {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #495057;
  margin-right: 0.5rem;
}

.btn-active {
  background-color: var(--themeColor);
  color: #fff !important;
}

/* 考试类型筛选区域 */
.exam-type-checkbox {
  color: #333;
  font-size: 15px;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.exam-type-checkbox a {
  color: var(--themeColor);
  transition: color 0.2s ease;
}

/* 栏目页（内容列表页面自定义样式） */
/* 复选框样式 */
.form-check {
  margin-bottom: 0.5rem;
}

.form-check-input {
  border: 1px solid rgba(0, 0, 0, 0.25) !important;
}

.form-check-input:checked {
  background-color: var(--themeColor) !important;
  border-color: var(--themeColor) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* 筛选状态显示 */
.filter-status {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

/* 水平分割线 */
.hr {
  height: 1px;
  background-color: #eee;
  margin: 1.5rem 0;
}

/* 内容详情页面样式*/
.detail-content-title {
  color: #333;
  font-size: 30px;
  font-weight: 700;
}

/* 发布信息 */
.release-info {
  color: #c2c2c2;
  font-size: 14px;
}

/* 温馨提示 */
.tip {
  background: #f9f9f9;
  color: #666;
  font-size: 14px;
  line-height: 30px;
  border-radius: 4px;
  box-sizing: border-box;
}

.tip span {
  color: #ff0000;
}

/* 相关公告 和 热点考试 通用样式 */
.recommend .recommend-list {
  display: flex;
  flex-direction: column;
}

.recommend .recommend-list .recommend-item {
  position: relative;
  line-height: 35px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  &::before {
    content: "•";
    position: absolute;
    left: 0;
    /* 关键：让圆点在 li 的垂直中心 */
    top: 47%;
    transform: translateY(-50%);
    color: var(--themeColor);
    font-size: 2em;
  }
}

.recommend .recommend-list .recommend-item:hover {
  color: var(--themeColor);
}

/* 分校内容 */
.fenxiao-info-p {
  margin-top: -405px;
}

.fenxiao-info-p .fenxiao-info p {
  color: var(--themeColor);
  font-size: 32px;
  font-weight: 700;
}

.content-wrap p img {
  max-width: 100%;
  height: auto !important;
  /* 覆盖 height 属性 */
  display: block;
}

.content_list {
  padding-bottom: 55px;
}

/* 分校内容部分样式 */
.fenxiao .content-p {
  height: 365px;
  background: url("../images/fenxiao_card_bg.jpg") no-repeat center center;
  background-size: 100% 100%;
}

.fenxiao .code {
  width: 180px;
  height: 180px;
  border: 10px #fff solid;
}

.fenxiao .code img {
  width: 100%;
  height: 100%;
}

.fenxiao .school-name {
  color: var(--themeColor);
  font-size: 27px;
  font-weight: 700;
}

.fenxiao .school-phone,
.fenxiao .school-area {
  color: #868686;
  font-size: 18px;
}

/* 成公师资列表样式*/
/* 师资页面样式 */
.teacher-card {
  display: flex;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: var(--boxShadow);
  border-radius: var(--borderRadius);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
}

.teacher-info {
  /* width: 35%; */
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, var(--themeColor), #c8101e);
  color: white;
}

.teacher-info-text {
  min-height: 200px;
}

.teacher-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.teacher-photo img {
  width: 100%;
  height: auto;
}

.teacher-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.teacher-title {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 300;
}

.teacher-brief {
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  padding: 0 10px;
  margin-bottom: 15px;
}

.teacher-detail {
  /* width: 65%; */
  padding: 30px;
}

.detail-section {
  margin-bottom: 20px;
}

/* 详情内容 */
.detail-text-title {
  color: var(--themeColor);
  font-size: 18px;
}

.detail-section .section-title {
  color: var(--themeColor);
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 8px;
}

.detail-section p {
  margin-bottom: 10px;
  text-align: justify;
  color: #555;
  line-height: 1.7;
}

/* PC端配置 */
@media (min-width: 577px) {

  /* 所有卡片模块样式 */
  .card-module {
    height: 100%;
    border-radius: var(--borderRadius);
  }

  .card-module-height {
    height: 514px;
  }

  .card-module-header {
    height: 55px;
    border-bottom: 2px #e3e3e3 solid;
  }

  .card-module-header .title {
    display: flex;
    align-items: center;
    height: 100%;
    margin-bottom: -4px;
    color: #060606;
    font-weight: 700;
    font-size: 20px;
    border-bottom: 4px var(--themeColor) solid;
  }

  .cg-tabs .tabs-item {
    display: flex;
    background: #e6e6e6;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
  }

  .cg-tabs .tabs-item:hover {
    background: var(--themeColor);
    color: #fff;
  }

  .cg-tabs .active {
    background: var(--themeColor);
    color: #fff;
  }

  /* 备考指南 tabs 样式 */
  .bkzn-module {
    height: 835px;
  }

  .cg-tabs-2 .tabs-item {
    display: flex;
    background: #e6e6e6;
    padding: 2px 20px;
    border-radius: 4px;
    margin-right: 10px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
  }

  .cg-tabs-2 .tabs-item:hover {
    background: var(--themeColor);
    color: #fff;
  }

  .cg-tabs-2 .active {
    background: var(--themeColor);
    color: #fff;
  }

  .bkzn-module .content-list {
    overflow: hidden;
    min-height: 300px;
  }

  .bkzn-module .content-list .content-item {
    display: block;
    margin-bottom: 1rem;
    line-height: 27px;
  }

  .bkzn-module .content-list .content-item .content-title {
    color: #646464;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .bkzn-module .content-list .content-item strong {
    color: #666;
    font-size: 15px;
    font-weight: 700;
  }

  .bkzn-module .content-list .content-item .date {
    color: #646464;
    font-size: 14px;
  }

  .bkzn-module .content-list .content-item .content-title>strong {
    color: #333;
    font-size: 14px;
    padding-right: 5px;
  }

  .bkzn-module .content-list .content-item:hover .date,
  .bkzn-module .content-list .content-item:hover strong {
    color: var(--themeColor);
  }

  /* 置顶内容 */
  .top-up {
    background: #e7fbed;
    padding: 5px 0 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-up a {
    color: var(--themeColor);
    font-size: 17px;
  }

  /* 内容列表 */
  .content-list .content-item {
    display: block;
    margin: 1rem 0;
    line-height: 30px;
  }

  .content-list .content-item .content-title {
    color: #646464;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .content-list .content-item .date {
    color: #646464;
    font-size: 16px;
  }

  .content-list .content-item .content-title>strong {
    color: #666;
    padding-right: 5px;
    font-weight: 700;
    font-size: 15px;
  }

  .content-list .content-item:hover .content-title,
  .content-list .content-item:hover .date,
  .content-list .content-item:hover .content-title>strong {
    color: var(--themeColor);
  }

  /* 品牌宣传图片样式*/
  .pinpai-img {
    border-radius: 10px !important;
  }

  /* 当前位置 */
  .position .position-info {
    display: inline-block;
    line-height: 35px;
    background: #efefef;
    border-radius: 35px;
    font-size: 16px;
    color: #848484;
    cursor: pointer;
  }

  .position .position-info a {
    color: inherit;
  }

  .position .position-info a:hover {
    color: var(--themeColor);
  }

  .position .right-tools span {
    cursor: pointer;
    color: #c2c2c2;
    font-size: 14px;
  }

  .position .right-tools span:hover {
    color: var(--themeColor);
  }

  .position .right-tools span .tools-icon {
    width: 20px;
    height: 20px;
  }

  /* 脚步 */
  .footer {
    position: relative;
    overflow: hidden;
    background: url("../images/footer-img.png") center center no-repeat;
    background-size: 100% 100%;
    margin-top: -10px;
  }

  /* 成公相关信息 */
  .footer .footer-info {
    height: 144px;
    border-radius: 72px;
    border: 5px #c8101e solid;
    background: #c8101e;
    margin-top: 45px;
  }

  .footer .footer-info .info-item {
    position: relative;
  }

  /* 优化后的边框效果 */
  .footer .footer-info .info-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background: url("../images/borderImg.png") repeat-y right top;
    background-size: 2px 100%;
  }

  .footer .footer-info .info-item:last-child::after {
    display: none;
  }

  .footer .footer-info .info-item .info-content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  /* 快捷入口 */
  .footer .shortcut-menu {
    display: flex;
    justify-content: space-around;
  }

  .footer .prominent-ul li a:hover {
    color: var(--themeColor);
  }

  /* 友情链接 */
  .friendship-p {
    display: flex;
    justify-content: center;
  }

  .friendship {
    display: inline;
    background: #fff;
    height: 30px;
    border-radius: 30px;
    padding: 0 40px;
  }

  .friendship a {
    line-height: 30px;
    color: #959595;
    cursor: pointer;
    padding: 0 5px;
  }

  .friendship a:hover {
    color: var(--themeColor);
  }

  /* 关于我们页面样式*/
  .about_banner {
    position: relative;
    z-index: -1;
    height: 502px;
  }

  .content-wrap {
    min-height: 600px;
    margin-top: -135px;
    background: #fff;
  }

  /* 详情内容默认样式 */
  .datail-text {
    color: #666;
    line-height: 45px;
    font-size: 16px;
  }

  .datail-text p {
    font-size: inherit !important;
  }

  .datail-text p img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* 版权信息 */
.copyright {
  color: #959595;
  font-size: 0.8125rem;
}

.copyright a {
  color: inherit;
}

/* 修改Bootstrap5 Tabs 默认样式 */
#bkzn .tab-content>.active {
  display: flex !important;
}



.region-item {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  margin-bottom: 10px;
  transition: all 0.3s;
}




/* 移动端优化样式 */
@media (max-width: 576px) {

  body,
  html {
  /*  padding-top: 35px !important;*/
  }

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }

  /* 滚动优化 */
  .cg-tabs,
  .cg-tabs-2 {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .cg-tabs::-webkit-scrollbar,
  .cg-tabs-2::-webkit-scrollbar {
    display: none;
  }

  /* 卡片模块移动端优化 */
  /* 所有卡片模块样式 */
  .card-module {
    box-shadow: var(--boxShadow);
    -webkit-box-shadow: var(--boxShadow);
    -moz-box-shadow: var(--boxShadow);
  }

  .card-module-height {
    min-height: 300px;
  }

  .card-module .card-module-header {
    height: 55px;
    border-bottom: 2px #e3e3e3 solid;
  }

  .card-module .card-module-header .title {
    display: flex;
    align-items: center;
    height: 100%;
    margin-bottom: -4px;
    color: #060606;
    font-weight: 700;
    font-size: 20px;
    border-bottom: 4px var(--themeColor) solid;
  }

  .cg-tabs .tabs-item {
    display: flex;
    background: #e6e6e6;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
  }

  .cg-tabs .tabs-item:hover {
    background: var(--themeColor);
    color: #fff;
  }

  .cg-tabs .active {
    background: var(--themeColor);
    color: #fff;
  }

  /* 栏目页 - 内容列表移动端优化 */
  .content-list {
    overflow: hidden;
    min-height: 300px;
  }

  .content-list .content-item {
    display: block;
    margin-bottom: 1rem;
    line-height: 27px;
  }

  .content-list .content-item .content-title {
    color: #646464;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .content-list .content-item strong {
    color: #666;
    font-size: 15px;
    font-weight: 700;
  }

  .content-list .content-item .date {
    color: #646464;
    font-size: 14px;
  }

  .content-list .content-item .content-title>strong {
    color: #333;
    font-size: 14px;
    padding-right: 5px;
  }

  /* 当前位置 */
  .position .position-info {
    display: inline-block;
    line-height: 35px;
    font-size: 14px;
    color: #848484;
  }

  .position .position-info a {
    color: inherit;
  }

  .position .right-tools span {
    cursor: pointer;
    color: #c2c2c2;
    font-size: 14px;
  }

  .position .right-tools span .tools-icon {
    width: 20px;
    height: 20px;
  }

  .top-up {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
  }

  .top-up a {
    color: var(--themeColor);
    font-weight: 600;
  }

  /* 备考指南 tabs 样式 */
  .bkzn-module {
    min-height: 500px;
  }

  .cg-tabs-2 .tabs-item {
    display: flex;
    background: #e6e6e6;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
  }

  .cg-tabs-2 .active {
    background: var(--themeColor);
    color: #fff;
  }

  /* 工具模块移动端优化 */
  .tools .tool-name {
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    padding: 0 5px;
  }

  /* 头条模块移动端优化 */
  .headlines .title {
    margin-bottom: 8px;
    transition: all 0.2s ease;
  }

  /* 内容页样式*/
  .detail-content-height {
    min-height: 300px;
  }

  /* 品牌宣传图片样式*/
  .pinpai-img {
    height: 145px !important;
  }

  /* 成公相关信息 */
  .footer .footer-info {
    background: #c8101e;
    padding: 20px 0;
  }

  .footer .footer-info .info-item {
    padding: 15px 0;
    position: relative;
  }

  .footer .footer-info .info-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }

  .footer .footer-info .info-item:last-child::after {
    display: none;
  }

  .footer .footer-info .info-item .info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 快捷入口 */
  .footer .shortcut-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .shortcut-menu>li {
    text-align: center;
    margin-bottom: 15px;
  }

  /* 友情链接 */
  .friendship-p {
    display: flex;
    justify-content: center;
  }

  .friendship {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ebe9e9;
    border-radius: 8px;
    padding: 20px 0;
  }

  .friendship a {
    line-height: 40px;
    color: #7c7b7b;
  }

  /* 关于我们页面样式*/
  .about_banner {
    position: relative;
    z-index: -1;
    overflow: hidden;
  }

  /* 分校内容 */
  .fenxiao-info-p {
    margin-top: -465px;
    margin-left: 30px;
  }

  /* 成公师资列表样式*/
  .teacher-info-text {
    min-height: 170px;
  }

  /* 详情内容默认样式 */
  .datail-text {
    color: #666;
    line-height: 45px;
    font-size: 16px;
  }

  .datail-text p {
    font-size: inherit !important;
  }

  .datail-text p img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* 暂无内容样式*/
.empty-tip {
  color: #999;
  text-align: center;
  padding: 20px 0;
}

/* 关注 和 分享按钮样式 */
.share-btn {
  position: relative;
}

.share-qrcode-popup {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  margin-top: 10px;
}

.qrcode-content {
  padding: 15px;
}

.qrcode-header {
  margin-bottom: 15px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.qrcode-body {
  text-align: center;
}

.qrcode-img {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.qrcode-tip {
  margin: 0;
  color: #666;
  font-size: 14px;
}