.manual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.manual-list > li {
  padding: 0.24rem 0;
  border-bottom: 1px solid #eee;
}
.manual-list > li:last-child {
  border-bottom: none;
}
.manual-list > li .flex {
  display: flex;
  gap: 0.24rem;
  align-items: center;
}
.manual-list > li .pic {
  width: 1.6rem;
  min-width: 1.6rem;
  border-radius: 0.04rem;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.manual-list > li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.manual-list > li .flex_item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.manual-list > li .flex_item h3 {
  font-size: 0.21rem;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.manual-list > li .flex_item .intro {
  font-size: 0.16rem;
  color: #666;
  line-height: 1.85;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.manual-list > li .flex_item .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.06rem;
  gap: 0.12rem;
  flex-wrap: wrap;
}
.manual-list .dl-count {
  font-size: 0.12rem;
  color: #999;
  white-space: nowrap;
}
.manual-list .dl-count i {
  font-style: normal;
  color: #ff7800;
  font-weight: 600;
}
.manual-dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.34rem;
  padding: 0 0.24rem;
  background: #ff7800;
  color: #fff;
  border: none;
  border-radius: 0.03rem;
  font-size: 0.13rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.manual-dl-btn:hover {
  background: #e66b00;
}
.manual-dl-btn:active {
  transform: scale(0.97);
}

/* ======= 方案页面兼容 ======== */

.as-download-wrap .manual-list > li .flex_item h3 {
  color: #ffffff;
}

.as-download-wrap .manual-list > li .flex_item .intro {
  color: rgba(255, 255, 255, 0.8);
}

.as-download-wrap .manual-list .dl-count, .as-download-wrap .manual-list .dl-count i {
  color: #ffffff;
}

.as-download-wrap .manual-dl-btn {
  background: #fff;
  color: #ff7800;
}

/* ====================== 下载信息登记弹窗 ====================== */
.manual-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  align-items: center;
  justify-content: center;
}
.manual-modal-overlay.active {
  display: flex;
}
.manual-modal {
  background: #fff;
  border-radius: 0.06rem;
  width: 4rem;          /* 1680~1920 默认 400px */
  max-width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0.3rem 0.28rem 0.24rem;
  position: relative;
  box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
  animation: modalIn 0.2s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-0.2rem); }
  to { opacity: 1; transform: translateY(0); }
}
@media screen and (max-width: 1680px) {
  .manual-modal { width: 4.6rem; }
}
@media screen and (max-width: 1440px) {
  .manual-modal { width: 5rem; }
}
@media screen and (max-width: 1360px) {
  .manual-modal { width: 5.4rem; }
}

.manual-modal .modal-close {
  position: absolute;
  right: 0.14rem;
  top: 0.08rem;
  font-size: 0.28rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
  transition: color 0.2s;
}
.manual-modal .modal-close:hover {
  color: #333;
}
.manual-modal h3 {
  font-size: 0.18rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: #222;
  padding-right: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.manual-modal .form-group {
  margin-bottom: 0.14rem;
}
.manual-modal .form-group label {
  display: block;
  font-size: 0.13rem;
  color: #555;
  margin-bottom: 0.04rem;
}
.manual-modal .form-group label .required {
  color: #e4393c;
}
.manual-modal .form-group input {
  display: block;
  width: 100%;
  height: 0.38rem;
  border: 1px solid #ddd;
  border-radius: 0.03rem;
  padding: 0 0.1rem;
  font-size: 0.13rem;
  box-sizing: border-box;
  outline: none;
  transition: border 0.2s;
}
.manual-modal .form-group input:focus {
  border-color: #ff7800;
}
.manual-modal .form-group .error-msg {
  color: #e4393c;
  font-size: 0.11rem;
  margin-top: 0.02rem;
  display: none;
}
.manual-modal .form-group.has-error input {
  border-color: #e4393c;
}
.manual-modal .form-group.has-error .error-msg {
  display: block;
}
.manual-modal .submit-btn {
  display: block;
  width: 100%;
  height: 0.42rem;
  background: #ff7800;
  color: #fff;
  border: none;
  border-radius: 0.03rem;
  font-size: 0.15rem;
  cursor: pointer;
  margin-top: 0.06rem;
  transition: background 0.2s;
}
.manual-modal .submit-btn:hover {
  background: #e66b00;
}
.manual-modal .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.manual-modal .global-error {
  background: #fff2f2;
  color: #e4393c;
  padding: 0.08rem 0.1rem;
  border-radius: 0.03rem;
  font-size: 0.12rem;
  margin-bottom: 0.1rem;
  display: none;
}
.manual-modal .global-error.show {
  display: block;
}

/* 响应式：移动端弹窗 */
@media screen and (max-width: 768px) {
  .manual-modal {
    width: 92%;
    padding: 0.2rem 0.16rem;
  }
  .manual-modal h3 {
    font-size: 0.16rem;
  }
  .manual-list > li .pic {
    width: 1.2rem;
    min-width: 1.2rem;
    height: 1.6rem;
  }
  .manual-list > li .flex_item h3 {
    font-size: 0.15rem;
  }
}
