/* Here is your custom css styles. */

/* 答案卡片样式 */
.answer-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
  background-color: #f9f9f9;
}

.answer-card-title {
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.answer-card-content {
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
}

/* 抖音卡片布局 */
.douyin-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

/* 抖音卡片链接样式 */
.douyin-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
}

/* 抖音卡片样式 */
.douyin-card {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.douyin-card-link:hover .douyin-card {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.douyin-card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1a237e;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.douyin-card p {
  margin-bottom: 15px;
  color: #34495e;
  line-height: 1.4;
  font-size: 14px;
}

.douyin-link {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: #2c3e50;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.douyin-card-link:hover .douyin-link {
  background-color: rgba(255, 255, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .douyin-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .douyin-card {
    padding: 15px;
  }
  
  .douyin-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .douyin-card p {
    font-size: 13px;
  }
}
