/* CSS Document */

.agent-plan {
  background: linear-gradient(to bottom, #f9f9f9, #fff);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin: 20px 0;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 2px solid #8B0000;
  font-family: Arial, sans-serif;
}

.plan-table th {
  background: linear-gradient(to right, #8B0000, #B22222);
  color: #fff;
  padding: 18px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #8B0000;
  letter-spacing: 1px;
}

.plan-table td {
  padding: 16px 10px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 16px;
  color: #333;
}

.plan-table tr:nth-child(even) {
  background-color: #fff5f5;
}

.plan-table tr:nth-child(odd) {
  background-color: #fff;
}

.plan-table tr:hover {
  background-color: #ffe6e6;
  transform: scale(1.01);
  transition: all 0.2s;
}

/* 样式 */
.plan-table td:first-child {
  background: linear-gradient(to right, #FFA500, #FF8C00);
  color: #8B0000;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
  border-left: 3px solid #8B0000;
}

/* 样式 */
.plan-table tr.no-share td:first-child {
  background: linear-gradient(to right, #4CAF50, #2E7D32);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* 样式 */
.plan-table td:nth-child(2) {
  color: #B22222;
  font-weight: bold;
  font-size: 17px;
  background-color: #fffaf0;
}

/* 样式 */
.plan-table td:nth-child(3) {
  color: #006400;
  font-weight: bold;
  background-color: #f0fff0;
}

.plan-note {
  background: #fff8dc;
  padding: 20px;
  border-left: 5px solid #FF8C00;
  margin: 25px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.plan-note h4 {
  color: #8B0000;
  margin-bottom: 12px;
  font-size: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 8px;
}

.plan-note p {
  color: #333;
  line-height: 1.6;
  margin: 8px 0;
  padding-left: 10px;
}

.plan-btn {
  display: inline-block;
  background: linear-gradient(to right, #8B0000, #B22222);
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  margin: 20px 10px;
  border: 3px solid #FFD700;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(139,0,0,0.3);
}

.plan-btn:hover {
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: #8B0000;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139,0,0,0.4);
}

.plan-header {
  color: #8B0000;
  text-align: center;
  font-size: 32px;
  margin: 25px 0;
  padding-bottom: 18px;
  border-bottom: 4px solid #FFD700;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.highlight-box {
  background: linear-gradient(135deg, #ffeb3b, #ffc107);
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
  border: 3px solid #8B0000;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255,193,7,0.3);
}

.highlight-box p {
  color: #8B0000;
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(255,255,255,0.5);
}

.contact-info {
  background: #e6f7ff;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 5px solid #1890ff;
}

.contact-info h4 {
  color: #1890ff;
  margin-bottom: 15px;
}

.contact-info p {
  color: #333;
  margin: 8px 0;
  font-size: 16px;
}

.contact-info strong {
  color: #8B0000;
  font-size: 18px;
}

.plan-comparison {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  flex-wrap: nowrap; /* 确保不换行 */
  gap: 15px; /* 添加间距 */
}

.plan-type {
  width: 49%; /* 调小宽度 */
  padding: 15px; /* 减小内边距 */
  border-radius: 10px;
  margin-bottom: 0; /* 移除底部间距 */
  min-height: 280px; /* 设置最小高度保持一致性 */
  display: flex;
  flex-direction: column;
}

.no-share-plan {
  background: linear-gradient(to bottom, #e8f5e9, #c8e6c9);
  border: 3px solid #4CAF50;
}

.share-plan {
  background: linear-gradient(to bottom, #fff3e0, #ffe0b2);
  border: 3px solid #FF9800;
}

.plan-type h3 {
  text-align: center;
  color: #fff;
  padding: 12px; /* 减小内边距 */
  border-radius: 5px;
  margin: -15px -15px 15px -15px; /* 调整外边距 */
  font-size: 20px; /* 调小字体 */
}

.no-share-plan h3 {
  background: linear-gradient(to right, #4CAF50, #2E7D32);
}

.share-plan h3 {
  background: linear-gradient(to right, #FF9800, #F57C00);
}

.plan-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1; /* 让列表填充剩余空间 */
}

.plan-type li {
  padding: 8px 0; /* 减小内边距 */
  border-bottom: 1px dashed #ccc;
  color: #333;
  font-size: 14px; /* 调小字体 */
  line-height: 1.4;
}

.plan-type li:last-child {
  border-bottom: none;
}

.plan-type li strong {
  color: #8B0000;
  font-size: 14px;
}

