/* 关于我们样式 */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.about-text {
  flex: 1;
}

.about-text-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* 处理富文本内容的样式 */
.about-text-content p {
  margin-bottom: 20px;
}

/* 移除段落前后的空行 */
.about-text-content p:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* 加载状态 */
.about-loading {
  margin-top: 50px;
}

.skeleton-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.skeleton-text {
  flex: 1;
}

.skeleton-line {
  height: 20px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  margin-bottom: 15px;
  border-radius: 4px;
}

.skeleton-line:nth-child(1) { width: 100%; }
.skeleton-line:nth-child(2) { width: 95%; }
.skeleton-line:nth-child(3) { width: 90%; }
.skeleton-line:nth-child(4) { width: 85%; }

.skeleton-image {
  flex: 1;
  height: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 10px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 错误状态 */
.about-error {
  margin-top: 50px;
  padding: 20px;
  background-color: #fff3f3;
  border-radius: 8px;
  color: #dc3545;
  text-align: center;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .skeleton-content {
    flex-direction: column;
  }
  
  .skeleton-image {
    height: 200px;
  }
}