/* 版本: 2508314 - 投稿成功页面样式 */
/************* SUCCESS PAGE STYLES *************/

/* 发布成功页容器样式 */
.success-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 20px;
}

/* 成功卡片样式 */
.success-card {
  text-align: center;
  padding: 40px 30px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 30px auto;
  background: #ffffff;
  border: 1px solid #e9ecef;
}

/* 成功图标样式 */
.success-icon {
  margin-bottom: 25px;
}

.success-checkmark {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 40px;
  color: #28a745;
  background: #d4edda;
  border-radius: 50%;
  border: 3px solid #28a745;
  animation: pulse 1.5s infinite ease-in-out;
}

/* 标题样式 */
.success-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

/* 消息文本样式 */
.success-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* 按钮组容器 */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* 通用按钮样式 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  min-width: 150px;
  border: none;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}

/* 按钮图标样式 */
.btn svg {
  width: 22px;
  height: 22px;
  fill: white;
  margin-right: 8px;
}

/* 不同按钮的颜色方案 */
.btn-primary {
  background: #007bff;
}

.btn-secondary {
  background: #6c757d;
}

.btn-continue {
  background: #3498db;
}

.btn-profile {
  background: #9b59b6;
}

.btn-browse {
  background: #27ae60;
}

/* 按钮悬停效果 */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-secondary:hover {
  background: #545b62;
}

.btn-continue:hover {
  background: #2980b9;
}

.btn-profile:hover {
  background: #8e44ad;
}

.btn-browse:hover {
  background: #219653;
}

/* 动画效果 */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* 响应式调整 */
@media (max-width: 576px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    min-width: auto;
    width: 100%;
  }
}
