/* ========== 成品企业网站服务页样式 ========== */
.tmp-header {
  background: linear-gradient(to right, #0f76f1, #165DFF);
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
}
.tmp-header h1 {
  font-size: 42px;
  margin-bottom: 16px;
}
.tmp-header p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 17px;
  opacity: 0.95;
}
.tmp-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 优势卡片 */
.tmp-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tmp-card {
  background: #f8fafc;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}
.tmp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.tmp-card i {
  font-size: 36px;
  color: #165DFF;
  margin-bottom: 18px;
}
.tmp-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.tmp-card p {
  color: #64748b;
  line-height: 1.6;
}

/* 模板展示 */
.tmp-show-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.tmp-item {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}
.tmp-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
/* 1:1 正方形核心 */
.tmp-img {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 比例关键 */
}
.tmp-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tmp-info {
  padding: 22px;
}
.tmp-info h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}
.tmp-info p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 16px;
}

/* 适用行业 */
.ind-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.ind-flex span {
  background: #f1f5f9;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
  transition: 0.3s;
}
.ind-flex span:hover {
  background: #165DFF;
  color: #fff;
}

/* 流程步骤 */
.process-step {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 200px;
}
.step-num {
  width: 60px;
  height: 60px;
  background: #165DFF;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step-item p {
  color: #64748b;
  font-size: 14px;
}

/* 响应式 */
@media (max-width:992px) {
  .tmp-grid3 { grid-template-columns: repeat(2,1fr); }
  .tmp-show-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:576px) {
  .tmp-grid3, .tmp-show-grid { grid-template-columns: 1fr; }
  .tmp-header h1 { font-size: 30px; }
}