TemplateAdd.css 1.2 KB
/* 页面滚动容器 */
.page-contain {
  height: 100vh;
  overflow-y: auto;
  background-color: #f5f5f5;
  box-sizing: border-box;
}

/* 表单容器 */
.templateName {
  padding: 30px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgb(0 0 0 / 5%);
}

/* 动作组卡片 */
.unit-card {
  margin: 20px 0;
  border-radius: 6px;
}

/* 动作组头部 */
.unit-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* 表格容器 */
.sets-table-wrapper {
  margin: 20px 0;
  overflow-x: auto;
}

.table-title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

/* 表格样式 */
.sets-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

.sets-table th {
  padding: 10px 0;
  font-weight: 500;
  background: #fafafa;
}

.sets-table td {
  padding: 8px 0;
}

.set-row:hover {
  background: #f9f9f9;
}

/* 按钮居中容器 */
.btn-center-wrapper {
  display: flex;
  width: 100%;
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid #eee;
  justify-content: center;
  gap: 12px;
}

/* 封面图样式 */
.sub-image {
  border: 1px solid #eee;
  border-radius: 10px;
}