/* 推荐框 */
.tp-recommend-box {
  border: 2px dashed #ff660c; 
  background: #f8fdff;      
  border-radius: 16px;       
  padding: 28px;
  margin: 28px auto;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06); 
  max-width: 850px;
}

.tp-title {
  font-size: 22px;
  font-weight: 600;
  color: #ff660c; 
  margin-bottom: 16px;
}

.tp-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  max-width: 720px;
  margin: 0 auto 26px auto;
}

/* 优缺点容器 */
.tp-container {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  align-items: stretch;
}

.tp-box {
  flex: 1;
  padding: 16px;
  border: 2px solid;
  border-radius: 8px;
  background-color: #f9fafb;
  text-align: left;
}

.tp-box.good {
  border-color: #22c55e; 
  background-color: #f0fdf4; 
}

.tp-box.bad {
  border-color: #3b82f6; 
  background-color: #eff6ff; 
}

.tp-box h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.tp-box ul {
  padding-left: 20px;
  margin: 0;
}

.tp-box li {
  margin-bottom: 8px;
}

/* 按钮容器 */
.tp-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* TunePat 风格按钮 */
.tp-btn {
  display: inline-block;
  padding: 12px 34px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: 0.25s ease;
  letter-spacing: 0.5px;
}

.tp-btn-win {
  background: linear-gradient(90deg, #3db8ff, #1b9bff);
}

.tp-btn-win:hover {
  background: linear-gradient(90deg, #1b9bff, #3db8ff);
  transform: translateY(-2px);
}

.tp-btn-mac {
  background: linear-gradient(90deg, #ffb04a, #ff8a1b);
}

.tp-btn-mac:hover {
  background: linear-gradient(90deg, #ff8a1b, #ffb04a);
  transform: translateY(-2px);
}
