/* 主容器 */
.income-calculator[data-v-8d1b12e6] {
  max-width: 1400px;
  margin: 100px auto;
  border-radius: 8px;
}
/* 标签页样式 */
.tabs[data-v-8d1b12e6] {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab-item[data-v-8d1b12e6] {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #666;
  position: relative;
  text-align: center;
  /* 新增：确保文字居中 */
  width: 240px;
  /* 建议加上，让两个标签各占一半宽度，视觉更平衡 */
}
.tab-item.active[data-v-8d1b12e6] {
  color: #007bff;
  font-weight: bold;
}
.tab-item.active[data-v-8d1b12e6]::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #007bff;
}
/* 内容区域 */
.content[data-v-8d1b12e6] {
  padding: 20px 0;
}
/* 平台标题 */
.platform-header[data-v-8d1b12e6] {
  text-align: center;
  margin-bottom: 20px;
}
.platform-label[data-v-8d1b12e6] {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
/* 月份网格布局 */
.month-grid[data-v-8d1b12e6] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
.month-item[data-v-8d1b12e6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
/* 操作按钮区域 */
.actions[data-v-8d1b12e6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
.actions .left-group[data-v-8d1b12e6] {
  position: absolute;
  left: 0;
  top: 0;
}
.btn[data-v-8d1b12e6] {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.btn-group[data-v-8d1b12e6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
/* 底部链接 */
.footer-link[data-v-8d1b12e6] {
  text-align: center;
  margin-top: 15px;
  color: #1772f6;
  font-size: 13px;
}
.link-text[data-v-8d1b12e6] {
  text-decoration: none;
}
.link-text[data-v-8d1b12e6]:hover {
  text-decoration: underline;
}
.modal-overlay-subtitle[data-v-8d1b12e6] {
  font-size: 13px;
  color: #85888e;
  text-align: center;
}
.formula-explanation[data-v-8d1b12e6] {
  text-align: left;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0px;
  color: #333;
}
.formula-explanations[data-v-8d1b12e6] {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 5px;
  font-size: 13px;
}
.formula-explanation h3[data-v-8d1b12e6] {
  margin-top: 0;
  color: #333;
}
.formula-explanation p[data-v-8d1b12e6] {
  margin-bottom: 8px;
  line-height: 1.5;
  word-break: break-word;
}
.formula-explanations-title[data-v-8d1b12e6] {
  position: relative;
}
.formula-explanations-title[data-v-8d1b12e6]::before {
  width: 47px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(89.62deg, #1772f6 -2.24%, rgba(36, 141, 255, 0.57) 92.05%);
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
}
.formula-explanation-none-title[data-v-8d1b12e6] {
  position: relative;
  margin-top: 15px;
}
.formula-explanation-none-title[data-v-8d1b12e6]::before {
  width: 47px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(89.62deg, #1772f6 -2.24%, rgba(36, 141, 255, 0.57) 92.05%);
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
}
.formula-explanation-none-title span[data-v-8d1b12e6] {
  position: relative;
  z-index: 1;
}
#formula-explanation-yes .formula-explanation-none-link[data-v-8d1b12e6] {
  color: #666666;
}
#formula-explanation-none .formula-explanation-none-link a[data-v-8d1b12e6] {
  color: #1772f6;
}
/* 响应式调整 */
@media (max-width: 768px) {
.income-calculator[data-v-8d1b12e6] {
    margin: 10px;
    padding: 10px;
}
.month-grid[data-v-8d1b12e6] {
    grid-template-columns: repeat(2, 1fr);
}
.month-item[data-v-8d1b12e6] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.month-item label[data-v-8d1b12e6] {
    width: 100%;
    text-align: left;
}
.actions[data-v-8d1b12e6] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}
.btn-group[data-v-8d1b12e6] {
    width: 100%;
}
.btn[data-v-8d1b12e6] {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
}

