.category-de-bottom-desc
{
 background-color: #fff;
    padding: 15px 20px;
    border-radius: 3px;
    color: #000;
}
.category-de-bottom-desc h1
{
text-transform: capitalize;
    text-align: center;
    font-size: 2.2em;
}
.category-de-bottom-desc p
{
    font-size: 1.2em;

}
@media screen and (max-width: 500px) {
 .category-de-bottom-desc h1
{
text-transform: capitalize;
    text-align: center;
    font-size: 1.8em;
}
}

/* 链接 */
.category-de-bottom-desc a {
  color: #5a7fa3; /* 柔和的青蓝色，低饱和度 */
  text-decoration: none;
  border-bottom: 1px dashed #5a7fa3;
  transition: color 0.3s ease;
}

.category-de-bottom-desc a:hover {
  color: #4071b5; /* 悬停稍微深一点的蓝色 */
  border-bottom: 1px solid #4071b5;
  cursor: pointer;
}

/* h2 小标题 */
.category-de-bottom-desc h2 {
  font-size: 1.75em;
  color: #222;
  margin: 20px 0 10px 0;
  font-weight: 600;
  border-left: 3px solid #d1d9e6; /* 更淡雅的蓝灰色边框 */
  padding-left: 10px;
}

.category-de-bottom-desc ul{
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 0px;
}

.category-de-bottom-desc li{
  position: relative;
  padding-left: 22px;
  font-size: 1.2em;
  line-height: 1.7;
  margin: 0 0 6px 0;
}

.category-de-bottom-desc li::before
{
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05em;
}

@media screen and (max-width: 500px) {
  .category-de-bottom-desc h2 {
    font-size: 1.4em;
  }
}

/* h3 子标题 */
.category-de-bottom-desc h3 {
  font-size: 1.35em;
  color: #444;
  margin: 15px 0 8px 0;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #ddd;
  text-underline-offset: 4px;
}

@media screen and (max-width: 500px) {
  .category-de-bottom-desc h3 {
    font-size: 1.2em;
  }
}

/* PC端：全部显示，无需按钮 */
@media screen and (min-width: 769px) {
.category-desc-full {
  display: block !important;
}
.category-desc-toggle {
  display: none;
}
}

/* 手机端：隐藏长内容，显示按钮 */
@media screen and (max-width: 768px) {
.category-desc-full {
  display: none;
}

.category-desc-toggle {
  text-align: center;
  margin-top: 10px;
}

.category-desc-toggle a {
  color: #4071b5;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px dashed #4071b5;
}
}