        /* 容器样式 */
           #add .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;

            
            padding: 40px 0;


    margin: 20px 0;}
        
        /* 标签切换样式 */
          #add  .tabs {
            display: flex;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 20px;}
        
          #add  .tab {
            padding: 10px 40px;
            font-size: 20px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
                font-weight: bold;}
        
          #add  .tab.active {
color: #ffff;
    background: #b50000;}
        
         #add   .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e53935;}
        
         #add   .more-link {
            margin-left: auto;
            align-self: center;
            color: #b80101;
            text-decoration: none;
            font-size: 14px;}
        
        /* 内容区域样式 */
          #add  .content {
            overflow: hidden;}
        
          #add  .tab-content {
            display: none;}
        
           #add .tab-content.active {
            display: block;}
        
        /* 图片列表样式 */
          #add  .image-slider {
            position: relative;
            overflow: hidden;}
        
        #add    .image-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;}
        
          #add  .image-item {
            flex: 0 0 calc(33.333% - 14px);
            box-sizing: border-box;}
        
          #add  .image-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;}
        
          #add  .image-caption {
            margin-top: 10px;
            font-size: 14px;
            color: #333;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;}
        
        /* 切换按钮样式 */
          #add  .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.8);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            z-index: 10;
            transition: all 0.3s ease;
            /* 确保按钮始终可见 */
            left: 10px;}
        
           #add .slider-btn:hover:not(:disabled) {
            background-color: #fff;}
        
          #add  .slider-btn:disabled {
            cursor: not-allowed;}
        
           #add .prev-btn {
            left: 10px;}
        
         #add   .next-btn {
            right: 10px;
            left: auto;}
        
        /* 响应式设计 */
        @media (max-width: 768px) {
        #add   .image-item {
                flex: 0 0 calc(50% - 10px);}
            
                  #add  .tab {
                padding: 8px 12px;
                font-size: 16px;}
        }
        
        @media (max-width: 480px) {
        #add   .image-item {
                flex: 0 0 100%;}
            
                 #add   .tabs {
                flex-wrap: wrap;}
            
                  #add  .more-link {
                width: 100%;
                text-align: right;
                margin-top: 10px;}
        }
