 .form-container {
     background-color: rgba(255, 255, 255, 0.08);
     /* 半透明白色，融合深色背景 */
     border-radius: 16px;
     padding: 40px 30px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
     border: 1px solid rgba(255, 255, 255, 0.1);
     /* 轻微边框，增强容器感不突兀 */
 }

 /* 深色背景下的表单标签 */
 .form-label {
     display: block;
     font-size: 15px;
     font-weight: 600;
     color: #f8f9fa;
     /* 浅白色标签，适配深色背景 */
     margin-bottom: 10px;
     padding-left: 5px;
 }

 /* 表单输入框：深色背景适配样式 */
 .form-input,
 .form-textarea,
 .form-select {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     /* 浅白色边框，适配深色背景 */
     border-radius: 8px;
     font-size: 14px;
     color: #f8f9fa;
     /* 输入文字浅白色，清晰可见 */
     outline: none;
     transition: all 0.3s ease;
     background-color: rgba(255, 255, 255, 0.05);
     /* 输入框背景半透明，融入整体 */
 }

 /* 输入框聚焦样式：红色边框+微光，突出激活状态 */
 .form-input:focus,
 .form-textarea:focus,
 .form-select:focus {
     border-color: #e63946;
     box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
     background-color: rgba(255, 255, 255, 0.1);
     /* 聚焦时轻微提亮背景，提升体验 */
 }

 /* 占位文字样式：浅灰色，适配深色输入框 */
 .form-input::placeholder,
 .form-textarea::placeholder {
     color: rgba(255, 255, 255, 0.5);
 }

 .form-textarea {
     min-height: 120px;
     resize: vertical;
     line-height: 1.6;
 }

 /* 表单分栏布局 */
 .form-row {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
 }

 .form-item {
     margin-bottom: 20px;
 }

 /* 提交按钮：红色主色调，与深色背景形成对比，突出操作 */
 .form-submit-btn {
     width: 100%;
     padding: 14px 0;
     background-color: #e63946;
     color: #ffffff;
     border: none;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-top: 10px;
 }

 .form-submit-btn:hover {
     background-color: #c1121f;
     transform: translateY(-3px);
     box-shadow: 0 8px 16px rgba(230, 57, 70, 0.3);
     /* 阴影加深，增强交互反馈 */
 }




 /* 1. 潮流博览会纵向列表板块 */
 .expo-list-section {
     padding: 20px 0 60px;
     background-color: #ffffff;
 }

 .section-title {
     font-size: 28px;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 40px;
     position: relative;
     padding-bottom: 15px;
     border-bottom: 2px solid #e63946;
     display: inline-block;
 }

 /* 展会列表容器（纵向单列，一行一个） */
 .expo-list {
     width: 100%;
     overflow: hidden;
     margin-bottom: 30px;
 }

 /* 单个展会项（一行一个，无图片） */
 .expo-item {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 20px 25px;
     background-color: #f8f9fa;
     border-bottom: 1px solid #e9ecef;
     transition: all 0.3s ease;
 }

 /* 最后一个展会项移除下边框 */
 .expo-item:last-child {
     border-bottom: none;
 }

 /* 展会项悬浮效果 */
 .expo-item:hover {
     background-color: #f0f2f5;
     transform: translateX(5px);
 }

 /* 展会基础信息（左侧） */
 .expo-base-info {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     flex: 1;
 }

 .expo-title {
     font-size: 18px;
     font-weight: 600;
     color: #2c3e50;
     margin-bottom: 8px;
     line-height: 1.3;
 }

 /* 展会详情信息（多字段横向排列） */
 .expo-detail-info {
     display: flex;
     align-items: center;
     gap: 25px;
     flex-wrap: wrap;
 }

 .expo-info-unit {
     display: flex;
     align-items: center;
     font-size: 14px;
     color: #7f8c8d;
 }

 .expo-info-unit i {
     color: #e63946;
     margin-right: 6px;
     font-size: 16px;
     width: 20px;
     text-align: center;
 }

 /* 展会操作按钮（右侧） */
 .expo-operation {
     display: flex;
     align-items: center;
     gap: 15px;
     flex-shrink: 0;
 }

 .expo-btn {
     padding: 8px 16px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 500;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     text-align: center;
 }

 .expo-detail-btn {
     background-color: #e63946;
     color: #ffffff;
 }

 .expo-detail-btn:hover {
     background-color: #c1121f;
 }

 .expo-share-btn {
     background-color: transparent;
     color: #7f8c8d;
     border: 1px solid #e9ecef;
 }

 .expo-share-btn:hover {
     background-color: #f8f9fa;
     color: #2c3e50;
 }

 /* 分页组件样式 */
 .pagination {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     flex-wrap: wrap;
     margin-top: 20px;
 }

 .page-item {
     width: 40px;
     height: 40px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 500;
     color: #7f8c8d;
     background-color: #f8f9fa;
     border: 1px solid #e9ecef;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 /* 分页激活状态 */
 .page-item.active {
     background-color: #e63946;
     color: #ffffff;
     border-color: #e63946;
 }

 /* 上一页/下一页按钮（宽高不同） */
 .page-item.prev,
 .page-item.next {
     width: 90px;
 }

 .page-item:hover:not(.active) {
     background-color: #f0f2f5;
     color: #2c3e50;
     border-color: #d0d7e0;
 }