@charset "UTF-8";
/* 重置默认样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f6f6f6;
  --media-width: 1200px;
  height: auto !important;
  min-height: 100vh;
  overflow: scroll;
  /* 或者 overflow: auto */
}

/* 如果需要隐藏滚动条但保留滚动功能，可使用以下兼容方案 */
body::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* 确保页面内容正确显示 */
[data-autofit-wrapper] {
  min-height: 100vh;
  height: auto !important;
}

/* 清除浮动 */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* 常用文本样式 */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

/* 链接样式 */
a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

/* 容器样式 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 标题样式 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

/* 段落样式 */
p {
  margin-bottom: 16px;
}

/* 列表样式 */
ul,
ol {
  margin-bottom: 16px;
  padding-left: 32px;
}

li {
  margin-bottom: 8px;
}

/* 图片样式 */
img {
  max-width: 100%;
  height: auto;
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.btn-large {
  padding: 15px 30px;
  font-size: 18px;
}

.btn-small {
  padding: 5px 15px;
  font-size: 14px;
}

/* 表单样式 */
input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* 隐藏 */
.hidden {
  display: none;
}

/* 显示 */
.show {
  display: block;
}

/* 溢出省略号 flex 需要加min-width: 0; */
.ellipsis-row-1 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}

.ellipsis-1 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}

.ellipsis-2 {
  word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-all;
}

.h-60 {
  height: 60px;
}

.header .banner {
  position: relative;
}

.header .banner img {
  width: 100%;
  height: 240px;
}

.header .banner .basic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--media-width);
  height: 120px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.header .banner .basic .logo-name {
  flex: 1;
  display: flex;
  align-items: centere;
}

.header .banner .basic .logo-name img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
}

.header .banner .basic .logo-name .name {
  margin-left: 20px;
  color: #ffffff;
}

.header .banner .basic .logo-name .name .title {
  font-size: 36px;
  font-weight: 700;
}

.header .banner .basic .logo-name .name .sub-title {
  font-size: 14px;
}

.header .banner .basic .search-input {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border: 1rpx solid #e2e2e2;
  background: #ffffff;
}

.header .banner .basic .search-input input {
  padding-left: 10px !important;
  width: 240px;
  height: 40px;
  border: 0;
}

.header .banner .basic .search-input .search-icon {
  width: 40px;
  height: 40px;
  background: #d34108;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .banner .basic .search-input .search-icon i {
  color: #ffffff;
}

.header .nav-menu {
  height: 60px;
  background: #ffffff;
}

.header .nav-menu .nav-menu__list {
  width: var(--media-width);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  transition: all 0.1s ease;
  /* 添加过渡效果 */
}

.header .nav-menu .nav-menu__list .nav-menu__item {
  color: #000000;
  min-width: 110px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  font-size: 16px !important;
  cursor: pointer;
}

.header .nav-menu .nav-menu__list .nav-menu__item:hover {
  background: #f5f5f5;
}

.header .nav-menu .nav-menu__list .nav-menu__item.active {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #d34108;
}

.header .nav-menu .nav-menu__list .nav-menu__item.active:hover {
  background: #d34108;
}

.footer-container {
  height: 210px;
  background: #f6f6f6;
}

.footer-container .footer {
  width: var(--media-width);
  margin: 0 auto;
  height: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
}

.footer-container .footer .footer-item {
  flex: 1;
  height: 100%;
  border-right: 1px solid #b8b1b1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
}

.footer-container .footer .footer-item .name {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.footer-container .footer .footer-item .info-list .info-item {
  margin-bottom: 6px;
}

.footer-container .footer .footer-item .info-list .info-item:last-child {
  margin-bottom: 0;
}

.footer-container .footer .footer-item .wechat {
  display: flex;
  align-items: center;
}

.footer-container .footer .footer-item .wechat img {
  width: 80px;
  height: 80px;
}

.footer-container .footer .footer-item .wechat .wechat-title {
  margin-left: 20px;
  font-size: 12px;
  color: #333333;
}

.footer-container .footer .footer-item:nth-child(3) {
  border-right: 0;
}

.lr-group {
  width: var(--media-width);
  margin: 20px auto 0;
}

.lr-group .lr-group__title {
  height: 56px;
  background: #f3f3f3;
  margin: 20px 0 20px;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.lr-group .lr-group__title i {
  font-size: 20px;
  margin-right: 10px;
}

.lr-group .lr-group__title a {
  margin-right: 8px;
  font-size: 20px;
  color: #3d3d3d;
  cursor: pointer;
}

.lr-group .lr-group__title a:hover {
  color: #d34108;
}

.lr-group .lr-group__title span {
  margin-right: 8px;
}

.lr-group .lr-group__content {
  display: flex;
}

.lr-group .lr-group__content .left-nav {
  margin-right: 20px;
  width: 300px;
  min-height: 500px;
  flex-shrink: 0;
  background: #ffffff;
}

.lr-group .lr-group__content .left-nav .title {
  position: relative;
  height: 124px;
  background: #005ea5;
  padding: 25px 0 0 25px;
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
}

.lr-group .lr-group__content .left-nav .title:after {
  position: absolute;
  width: 50px;
  height: 2px;
  background: #fff;
  content: '';
  top: 80px;
  left: 25px;
}

.lr-group .lr-group__content .left-nav .nav-list {
  display: flex;
  flex-direction: column;
}

.lr-group .lr-group__content .left-nav .nav-list .nav-item {
  margin: 0 30px;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #3d3d3d;
  border-bottom: 1px solid #dddddd;
  cursor: pointer;
}

.lr-group .lr-group__content .left-nav .nav-list .nav-item:last-child {
  border-bottom: 0;
}

.lr-group .lr-group__content .left-nav .nav-list .nav-item.active {
  color: #005ea5;
  font-weight: 700;
}

.lr-group .lr-group__content .right-content {
  padding-bottom: 60px;
  flex: 1;
  min-height: 500px;
  background: #ffffff;
  position: relative;
}

.lr-group .lr-group__content .right-content .right-content-item__title {
  position: relative;
  padding: 20px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  color: #005ea5;
  border-bottom: 1px solid #d8d8d8;
}

.lr-group .lr-group__content .right-content .right-content-item__title:after {
  position: absolute;
  width: 130px;
  height: 3px;
  bottom: 0;
  left: 10px;
  background: #005ea5;
  content: '';
}

.lr-group .lr-group__content .right-content .right-content-item__content {
  padding: 0 20px;
}

.lr-group .lr-group__content .right-content .right-content-item__content .right-content-item__pages {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.lt-group {
  width: var(--media-width);
  margin: 20px auto 0;
}

.lt-group .lt-group__title {
  height: 56px;
  background: #f3f3f3;
  margin: 20px 0 20px;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.lt-group .lt-group__title i {
  font-size: 20px;
  margin-right: 10px;
}

.lt-group .lt-group__title a {
  margin-right: 8px;
  font-size: 20px;
  color: #3d3d3d;
  cursor: pointer;
}

.lt-group .lt-group__title a:hover {
  color: #d34108;
}

.lt-group .lt-group__title span {
  margin-right: 8px;
}

.lt-group .lt-group__content {
  margin-top: 20rpx;
  background: #ffffff;
  min-height: 600px;
  padding: 0 20px;
}

.lt-group .lt-group__content .header .title {
  padding: 30px;
  font-size: 24px;
  border-bottom: 2px solid #333;
  text-align: center;
  color: #d87c59;
  font-weight: bold;
}

.lt-group .lt-group__content .header .other {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.lt-group .lt-group__content .header .other .other-item {
  width: 200px;
  margin-right: 20px;
  font-size: 14px;
  color: #666666;
}

.lt-group .lt-group__content .content {
  padding: 20px 0;
}
