/* 全局初始化 极简无冗余 杜绝样式冲突 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
}
html {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.root-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* ========== 右侧主内容区 ========== */
.right-content {
  flex: 1;
  margin-left: 170px;
  padding: 40px;
  position: relative;
}
.top-btn-group {
  position: absolute;
  top: 20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-subscribe {
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 4px 6px;
  display: flex;
  align-items: center;
}

.vip-icon {
  width: 14px;
  margin-right: 4px;
  transform: translateY(1px);
}
.user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 12px;
  color: #999;
  overflow: hidden;
}
.user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.center-wrap {
  width: 1024px;
  margin: 0 auto;
  padding-top: 60px;
}

/* ========== 咨询输入模块 ========== */
.consult-box {
  text-align: center;
  margin-bottom: 80px;
}
.consult-title {
  font-size: 32px;
  font-weight: bold;
  color: #1c3a60;
  margin-bottom: 16px;
  display: block;
}
.consult-desc {
  font-size: 16px;
  color: #999;
  margin-bottom: 30px;
  display: block;
}
.textarea-box {
  width: 100%;
  height: 160px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 24px;
  text-align: left;
}
.textarea-box textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 20px;
  line-height: 24px;
  resize: none;
  background: transparent;
  font-weight: bold;
}
.btn-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.left-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.remain-count {
  font-size: 14px;
  color: #666;
}
.btn-upgrade {
  width: 90px;
  height: 25px;
  line-height: 25px;
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
.btn-submit {
  width: 150px;
  height: 40px;
  line-height: 40px;
  background: #1a3a5f;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
}

/* ========== 通用模块样式 ========== */
.module {
  margin-bottom: 60px;
}
.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.module-name {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.more-text {
  font-size: 16px;
  color: #1c3a60;
  cursor: pointer;
}

/* ========== 法律护航模块 ========== */
.law-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.law-card {
  flex: 1;
  background: #eef2f5;
  border-radius: 8px;
  padding: 10px 24px;
}
.law-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 24px;
  display: block;
}
.law-tag {
  font-size: 14px;
  color: #999;
  display: block;
  margin-top: 12px;
  text-align: left;
}
.law-tag.tag-left {
  text-align: left;
  margin-top: 8px;
  color: #666;
}

/* ========== 文化社群模块【精准匹配要求】 ========== */
.culture-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #f8fafb; /* ☑️ 严格要求的底色 */
  border-radius: 18px;
  padding: 20px;
}
.culture-card {
  display: flex;
  align-items: center;
  border-radius: 8px;
      padding: 12px 12px 12px 0;
  gap: 12px;
}
.text-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.culture-title {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  font-weight: bold;
}
.culture-desc {
  font-size: 14px;
  color: #666;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.img-area {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  background: #f0f0f0;
  text-align: center;
  line-height: 80px;
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}

.img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== 互助创业模块 ========== */
.business-banner {
  display: flex;
  gap: 24px;
}
.banner-card {
  flex: 1;
  border-radius: 8px;
  text-align: center;
  color: #999;
}

.banner-card > img {
}

/* ========== 底部模块【1:1 完全匹配设计图 核心重点】 ========== */
.footer-box {
  width: 100%;
  margin-top: 100px;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
.footer-link-group {
  text-align: left;
  margin-left: 160px;
  float: left;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-link-1 {
  font-size: 16px;
  font-weight: bold;
}
.footer-link {
  font-size: 14px;
  color: #666666;
  cursor: pointer;
}
.copyright-box {
  font-size: 14px;
  color: #999999;
  line-height: 26px;
  float: left;
  text-align: left;
}
.copyright-box span {
  display: block;
}

.footer-link-img {
  float: right;
}

/* ========== 修复按钮默认边框 ========== */
button {
  border: none;
  outline: none;
}
button::after {
  border: none !important;
}

.more-box {
  display: flex;
  align-items: center;
}

.more-box i {
  font-size: 20px;
  color: #1c3a60;
  margin-left: 4px;
}
