.title .title-top{
  font-size: 45px;
  color: #354963;
  text-align: center;
  padding: 100px 0 50px;
}
.title .title-top::before {
  content: "";
  height: 1px;
  width: 80px;
  background: #354963;
  display: inline-block;
  position: relative;
  top: -14px;
  left: -40px;
}
.title .title-top::after {
  content: "";
  height: 1px;
  width: 80px;
  background: #354963;
  display: inline-block;
  position: relative;
  top: -14px;
  right: -40px;
}

.detail .box{
  margin-bottom: 50px;
}

.detail .box .con{
  font-size: 20px;
  line-height: 40px;
}

/* 富文本样式 */
.rich-text {
  color: #333;
  text-align: justify;
}

.rich-text p {
  margin: 16px 0;
  text-indent: 2em;
}

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
  color: #354963;
  margin: 24px 0 16px 0;
  font-weight: 600;
}

.rich-text h1 { font-size: 28px; }
.rich-text h2 { font-size: 24px; }
.rich-text h3 { font-size: 20px; }
.rich-text h4 { font-size: 18px; }
.rich-text h5 { font-size: 16px; }
.rich-text h6 { font-size: 14px; }

.rich-text ul, .rich-text ol {
  margin: 16px 0;
  padding-left: 2em;
}

.rich-text li {
  margin: 8px 0;
  line-height: 1.6;
}

.rich-text a {
  color: #007bff;
  text-decoration: none;
}

.rich-text a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.rich-text img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
  border-radius: 4px;
}

.rich-text blockquote {
  border-left: 4px solid #354963;
  margin: 16px 0;
  padding: 16px 20px;
  background-color: #f8f9fa;
  font-style: italic;
}

.rich-text code {
  background-color: #f1f3f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

.rich-text pre {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
}

.rich-text pre code {
  background: none;
  padding: 0;
}

.rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.rich-text th, .rich-text td {
  border: 1px solid #dee2e6;
  padding: 12px;
  text-align: left;
}

.rich-text th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.rich-text strong, .rich-text b {
  font-weight: 600;
}

.rich-text em, .rich-text i {
  font-style: italic;
}

@media (max-width: 768px) {

  .title .title-top{
    font-size: 25px;
    font-weight: 600;
  }
  .title .title-top::before {
    content: none;
    top: -8px;
    left: -10px;
  }
  .title .title-top::after {
    content: none;
    top: -8px;
    right: -10px;
  }

  /* 移动端富文本样式调整 */
  .detail .box .con {
    font-size: 16px;
    line-height: 1.6;
  }

  .rich-text h1 { font-size: 22px; }
  .rich-text h2 { font-size: 20px; }
  .rich-text h3 { font-size: 18px; }
  .rich-text h4 { font-size: 16px; }
  .rich-text h5 { font-size: 14px; }
  .rich-text h6 { font-size: 12px; }

  .rich-text p {
    text-indent: 1.5em;
    margin: 12px 0;
  }

  .rich-text ul, .rich-text ol {
    padding-left: 1.5em;
  }

  .rich-text blockquote {
    padding: 12px 16px;
    margin: 12px 0;
  }

  .rich-text pre {
    padding: 12px;
    font-size: 12px;
  }

  .rich-text table {
    font-size: 14px;
  }

  .rich-text th, .rich-text td {
    padding: 8px;
  }
}