.main_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/* 顶部大图 */
.hero {
  width: 928px;
  height: 480px;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url("../images/custom_1.jpg") center / cover no-repeat;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .hero-content {
  color: #fff;
}
.hero .hero-content h1 {
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 900;
}
.hero .hero-content p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}
/* 定制流程 */
.custom-process {
  padding: 40px 24px;
  color: #fff;
}
.process-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}
/* 整个流程列表 */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* 单条流程 */
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
/* 左侧图标 + 竖线 */
.process-icon {
  flex-direction: column;
  flex-shrink: 0;
  width: 40px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.process-icon .material-symbols-outlined {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}
/* 竖线 */
.process-line {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: calc(100% + 28px);
  background: #674832;
}
/* 右侧文字内容 */
.process-content {
  flex: 1;
}
.process-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.process-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #c9a992;
}
.custom-submit {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0;
  color: #fff;
  font-family: "Microsoft Yahei", sans-serif;
  /* 生成进度条 */
}
.custom-submit .section-title {
  margin-bottom: 30px;
}
.custom-submit .section-title h1 {
  font-size: 26px;
  font-weight: 600;
}
.custom-submit .form-section,
.custom-submit .section {
  background: #2a1a12;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.custom-submit .base-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}
.custom-submit .base-info .form-group {
  display: flex;
  flex-direction: column;
}
.custom-submit .base-info .form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #dcdcdc;
}
.custom-submit .base-info .form-group input,
.custom-submit .base-info .form-group select,
.custom-submit .base-info .form-group textarea {
  background: #1e120c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #eee;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.custom-submit .base-info .form-group input:focus,
.custom-submit .base-info .form-group select:focus,
.custom-submit .base-info .form-group textarea:focus {
  outline: none;
  border-color: #ff8a34 !important;
}
.custom-submit .base-info .form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.custom-submit .base-info .full {
  grid-column: 1 / 3;
}
.custom-submit .section-header {
  margin-bottom: 20px;
}
.custom-submit .section-header h2 {
  font-size: 18px;
  font-weight: 600;
}
.custom-submit .section-header p {
  margin-top: 6px;
  font-size: 14px;
  color: #c8c8c8;
}
.custom-submit .upload-area {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.custom-submit .upload-area .upload-item {
  flex: 1;
  min-height: 120px;
  max-height: 400px;
  background: #1e120c;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  overflow: hidden;
}
.custom-submit .upload-area img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
.custom-submit .btn-generate {
  width: 210px;
  height: 40px;
  background: #ff8a34;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  margin: 10px 0 25px 0;
  cursor: pointer;
  border: none;
}
.custom-submit .btn-generate:hover {
  background: #ff9f55;
}
.custom-submit .ai-result-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-submit .ai-result-list .ai-card {
  background: #1e120c;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.custom-submit .ai-result-list .ai-card img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
}
.custom-submit .ai-result-list .ai-card p {
  margin-top: 10px;
  font-size: 14px;
}
.custom-submit .ai-result-list .ai-card span {
  font-size: 12px;
  color: #aaa;
}
.custom-submit .ai-result-list .ai-card button {
  width: 100%;
  margin-top: 10px;
  height: 36px;
  border-radius: 6px;
  background: #ff8a34;
  border: none;
  color: #fff;
  cursor: pointer;
}
.custom-submit .ai-result-list .ai-card button:hover {
  background: #ffa45c;
}
.custom-submit .ai-result-list .download-card button {
  margin-top: 15px;
}
.custom-submit .ai-result-list .add-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e120c;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.custom-submit .ai-result-list .add-more span {
  color: #e6a470;
}
.custom-submit .ref-upload h2 {
  font-size: 16px;
  margin-bottom: 12px;
}
.custom-submit .ref-upload .upload-box {
  height: 150px;
  background: #1e120c;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b8b8b8;
  font-size: 14px;
  cursor: pointer;
}
.custom-submit .order-submit .btn-submit {
  width: 260px;
  height: 46px;
  background: #ff8a34;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
}
.custom-submit .order-submit .btn-submit:hover {
  background: #ff9d55;
}
.custom-submit .order-submit .order-info {
  margin-top: 20px;
}
.custom-submit .order-submit .order-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.custom-submit .order-submit .order-info p {
  font-size: 13px;
  color: #c8c8c8;
  line-height: 1.7;
}
.custom-submit .generate-progress {
  width: 100%;
  height: 8px;
  background: #3a261a;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}
.custom-submit .generate-progress .bar {
  width: 0%;
  height: 100%;
  background: #ff8a34;
  transition: width 0.2s;
}
