/* 关于作者开始 */
.about-section {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
}

.myself {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: center;
}

#myself-1 {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-left: 0;
  width: 100%;
  height: auto;
}

.myself img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* 关于作者结束 */

/* 家乡特色开始 */
.hometown-section {
  margin-bottom: 3rem;
}

.ulas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  height: auto;
  justify-content: stretch;
}

.ulas li {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  float: none;
  width: 100%;
  height: auto;
  margin: 0;
}

.ulas li:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.ulas img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-left: 0;
  float: none;
}

.ulas .jieshao {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  float: none;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-indent: 0;
}

/* 家乡特色结束 */

/* 关于本站开始 */
#benzhan {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  width: 100%;
  height: auto;
  margin-left: 0;
}

/* 关于本站结束 */

/* 乞讨开始 */
.qitao {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#qt-1, #qt-2 {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

#qt-2 img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  margin: 0 1rem;
  box-shadow: var(--shadow-md);
}

/* 乞讨结束 */

@media (max-width: 768px) {
  .myself {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .myself img {
    order: -1;
    height: 250px;
  }

  .ulas {
    grid-template-columns: 1fr;
  }
}