/* 搜索钻石页面容器 */
        .search-diamond-container {
            margin: 0 auto;
            display: flex;
            gap: 20px;
        }
        
        /* 按钮容器样式 */
        .search-diamond-item-btns {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        /* 按钮样式 */
        .search-diamond-item-btn {
            flex: 1;
            padding: 10px 15px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 0; /* 防止按钮过宽 */
        }
        
        .search-diamond-item-btn:hover {
            background-color: #f5f9ff;
        }
        
        /* 单个按钮居中 */
        .search-diamond-item-btns:only-child {
            justify-content: center;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .search-diamond-item-btns {
                flex-direction: column;
            }
            
            .search-diamond-item-btn {
                width: 100%;
            }
        }
        
        /* 左侧筛选面板样式 */
        .search-left-silder-container {
            width: 360px;
            background-color: #fff;
            border-radius: 0px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
            flex-shrink: 0;
        }
        .search-left-silder-header {
            padding: 20px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .search-left-keyword-btn {
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            background-color: #141543;
            color: #fff;
            border: none;
            border-radius: 0px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-left-keyword-btn:hover {
            background-color: #0d0e33;
        }
        .search-left-silder-title {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            margin: 0 0 15px 0;
        }
        .search-left-silder-search-box {
            position: relative;
            width: calc(100% - 36px);
        }
        .search-left-silder-search-input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 0px;
            font-size: 14px;
            padding-right: 40px;
            outline: none;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }
        .search-left-silder-search-input:focus {
            border-color: #141543;
        }
        .search-left-silder-search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .search-left-silder-tabs {
            display: flex;
            border-bottom: 1px solid #f0f0f0;
        }
        .search-left-silder-tab {
            flex: 1;
            text-align: center;
            padding: 12px;
            cursor: pointer;
            font-size: 14px;
            color: #666;
            transition: all 0.3s ease;
            position: relative;
        }
        .search-left-silder-tab.active {
            color: #141543;
            font-weight: 500;
        }
        .search-left-silder-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #141543;
        }
        .search-left-silder-content {
            padding: 20px;
        }
        .search-left-silder-section {
            margin-bottom: 25px;
        }
        .search-left-silder-section-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin: 0 0 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        .search-left-silder-section-toggle {
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 0px;
            transition: all 0.3s ease;
        }
        .search-left-silder-section-toggle:hover {
            background-color: #f5f5f5;
            color: #666;
        }
        /* 可折叠内容容器 */
        .search-left-silder-section-content {
            max-height: 1000px;
            transition: max-height 0.3s ease;
        }
        /* 收起状态 */
        .search-left-silder-section.collapsed .search-left-silder-section-content {
            display: none;
            margin-bottom: 0;
        }
        /* 展开/收起图标 */
        .search-left-silder-section-expand-icon {
            width: 12px;
            height: 12px;
            fill: none;
            stroke: #999;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
            margin-left: 8px;
        }
        .search-left-silder-section.collapsed .search-left-silder-section-expand-icon {
            transform: rotate(-90deg);
        }
        .search-left-silder-shape-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        .search-left-silder-shape-item {
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0px;
            border: 1px solid transparent;
        }
        .search-left-silder-shape-item:hover {
            background-color: #f5f5f5;
        }
        .search-left-silder-shape-item.selected {
            background-color: #f0f7ff;
            border: 1px solid #141543;
        }
        .search-left-silder-shape-image {
            width: 50px;
            height: 50px;
            margin: 0 auto 5px;
            background-color: #f9f9f9;
            border-radius: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .search-left-silder-shape-item.selected .search-left-silder-shape-image {
            background-color: #e6f0ff;
        }
        .search-left-silder-shape-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .search-left-silder-shape-name {
            font-size: 12px;
            color: #666;
            margin: 0;
        }
        .search-left-silder-slider {
            margin-bottom: 15px;
            padding-left: 10px;
            padding-right: 10px;
        }
        .search-left-silder-slider-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
        }
        .search-left-silder-slider-value {
            font-weight: 500;
            color: #141543;
        }
        .search-left-silder-slider-value i{
            font-size: 12px;
        }
        .search-left-silder-checkbox-group {
            margin-bottom: 10px;
        }
        .search-left-silder-checkbox-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            cursor: pointer;
        }
        .search-left-silder-checkbox-item:last-child {
            margin-bottom: 0;
        }
        .search-left-silder-checkbox-item input[type="checkbox"] {
            margin-right: 8px;
        }
        .search-left-silder-checkbox-item label {
            font-size: 14px;
            color: #666;
            cursor: pointer;
        }
        .search-left-silder-select {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #e0e0e0;
            border-radius: 0px;
            font-size: 14px;
            outline: none;
            background-color: #fff;
            cursor: pointer;
            transition: border-color 0.3s ease;
        }
        .search-left-silder-select:focus {
            border-color: #141543;
        }
        .search-left-silder-divider {
            height: 1px;
            background-color: #f0f0f0;
            margin: 20px 0;
        }
        .search-left-silder-footer {
            padding: 20px;
            border-top: 1px solid #f0f0f0;
            width: 320px;
            background-color: #fff;
            z-index: 99999999;
        }
        .search-left-silder-footer.fixed{
            position: fixed;
            bottom: 0px;
        }
        .search-left-silder-actions {
            display: flex;
            gap: 10px;
        }
        .search-left-silder-reset-btn {
            flex: 1;
            padding: 10px 15px;
            background-color: #fff;
            color: #666;
            border: 1px solid #e0e0e0;
            border-radius: 0px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-left-silder-reset-btn:hover {
            background-color: #f5f5f5;
        }
        .search-left-silder-apply-btn {
            flex: 1;
            padding: 10px 15px;
            background-color: #141543;
            color: #fff;
            border: none;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-left-silder-apply-btn:hover {
            background-color: #0052a3;
        }
        
        /* 右侧钻石搜索结果样式 */
        .search-diamond-item-container {
            flex: 1;
        }
        .search-diamond-item-header {
            background-color: #fff;
            border-radius: 6px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .search-diamond-item-title-container {
            display: flex;
            justify-content: center;
        }
         .search-diamond-item-search a{
            font-size: 10px;
            margin-left: 10px;
            padding-bottom: 3px;
            padding-top: 3px;
            padding-left: 5px;
            border: 1px #ddd solid;
            float: left;
            margin-bottom: 5px;
        }
        .search-diamond-item-search span{
            padding-left: 5px;
            padding-right: 5px;
            color: red;
        }
        .search-diamond-item-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin: 0;
            text-align: center;
        }
        .search-diamond-item-compare-container {
            width: 50%;
            display: flex;
            justify-content: center;
        }
        .search-diamond-item-compare {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-diamond-item-compare:hover {
            color: #141543;
        }
        .search-diamond-item-compare-icon {
            margin-right: 8px;
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .search-diamond-item-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .search-diamond-item {
            background-color: #fff;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }
        .search-diamond-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-diamond-item.selected {
            border: 2px solid #141543;
            box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
        }
        .search-diamond-item-image-container {
            width: 100%;
            padding-top: 100%;
            position: relative;
            background-color: #f5f5f5;
            overflow: hidden;
            display: block;
        }
        .search-diamond-item-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .search-diamond-item:hover .search-diamond-item-image {
            transform: scale(1.05);
        }
        .search-diamond-item-favorite {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .search-diamond-item-favorite:hover {
            background-color: #fff;
            transform: scale(1.1);
        }
        .search-diamond-item-favorite-icon {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: #ccc;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.3s ease;
        }
        .search-diamond-item-favorite.active .search-diamond-item-favorite-icon {
            fill: #ff4d4f;
            stroke: #ff4d4f;
        }
        .search-diamond-item-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background-color: #ff7a45;
            color: #fff;
            padding: 4px 10px;
            border-radius: 0px;
            font-size: 12px;
            font-weight: 500;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .search-diamond-item-tag.best-value {
            background-color: #52c41a;
        }
        .search-diamond-item-tag-icon {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }
        .search-diamond-item-content {
            padding: 16px;
            text-align: center;
        }
        .search-diamond-item-name {
            font-size: 16px;
            font-weight: 400;
            color: #333;
            margin: 0 0 6px 0;
            line-height: 1.4;
        }
        .search-diamond-item-details {
            font-size: 14px;
            color: #666;
            margin: 0 0 10px 0;
        }
        .search-diamond-item-price {
            font-size: 17px;
            font-weight: 500;
            color: #000;
            margin: 0 0 15px 0;
        }
        .search-diamond-item-select-btn {
            width: 100%;
            padding: 10px 15px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .search-diamond-item-select-btn:hover {
            background-color: #f5f9ff;
        }
        .search-diamond-item.selected .search-diamond-item-select-btn {
            background-color: #141543;
            color: #fff;
        }
        .search-diamond-item-select-arrow {
            width: 12px;
            height: 12px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
        }
        .search-diamond-item.selected .search-diamond-item-select-arrow {
            transform: rotate(180deg);
        }
        /* 弹出层背景遮罩 */
        .search-diamond-item-modal-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .search-diamond-item-modal-backdrop.show {
            display: block;
            opacity: 1;
        }
        
        /* 弹出层容器 */
        .search-diamond-item-actions {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            border-radius: 0px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            padding: 24px;
            min-width: 300px;
            max-width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            z-index: 1001;
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.95);
            transition: all 0.3s ease;
        }
        .search-diamond-item-actions.show {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        /* 弹出层标题 */
        .search-diamond-item-modal-title {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            margin: 0 0 20px 0;
            text-align: center;
        }
        
        /* 弹出层关闭按钮 */
        .search-diamond-item-close-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 20px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 10;
        }
        .search-diamond-item-close-btn:hover {
            background-color: #f5f5f5;
            color: #666;
        }
        /* 弹出层按钮容器 */
        .search-diamond-item-actions-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        /* 弹出层按钮样式 */
        .search-diamond-item-action-btn {
            padding: 12px 16px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-diamond-item-action-btn:hover {
            background-color: #f5f9ff;
        }
        .search-diamond-item-action-btn {
            width: 100%;
            padding: 8px 12px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 8px;
        }
        .search-diamond-item-action-btn:last-child {
            margin-bottom: 0;
        }
        .search-diamond-item-action-btn:hover {
            background-color: #f5f9ff;
        }
        /* 添加成功提示样式 */
        .search-diamond-item-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #52c41a;
            color: #fff;
            padding: 12px 20px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 10000;
            display: none;
            align-items: center;
            gap: 10px;
            max-width: 300px;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }
        .search-diamond-item-notification.show {
            opacity: 1;
            display: flex;
            transform: translateY(0);
        }
        .search-diamond-item-notification-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        .search-diamond-item-notification-message {
            font-size: 14px;
            font-weight: 500;
        }
        .search-diamond-item-notification-close {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            font-size: 18px;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            margin-left: auto;
        }
        .search-diamond-item-notification-close:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        /* 分页控件 */
        .search-diamond-item-pagination {
            margin-top: 30px;
            text-align: center;
        }
        
        /* 按钮容器样式 */
        .search-diamond-item-btns {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        /* 按钮样式 */
        .search-diamond-item-btn {
            flex: 1;
            padding: 10px 15px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 0;
        }
        
        .search-diamond-item-btn:hover {
            background-color: #f5f9ff;
        }
        .search-left-silder-tips{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .search-left-silder-tips:last-child{
            margin-bottom: 0;
        }
        .search-left-silder-tips span{
            font-size: 12px;
        }
        /* 响应式调整 - 移动端垂直排列 */
        @media (max-width: 768px) {
            .search-diamond-item-btns {
                flex-direction: column;
            }
        }

         .search-left-silder-content{
            overflow-y:scroll;
        }
        .search-left-silder.fixed{
            position: fixed;
            z-index: 1000;
            top: 80px;
            background-color: #fff;
        }
        .search-diamond-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 68px;
            background-color: #fff;
            width: 100%;
            padding: 15px 20px;
            box-sizing: border-box;
        }
        .search-diamond-header.fixed{
            position: fixed;
            z-index: 1000;
            top: 80px;
        }
        .design-ring-steps.fixed{
            position: fixed;
            z-index: 1009;
            top: 0;
        }
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .search-diamond-item-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .search-diamond-container {
                flex-direction: column;
                padding: 10px;
            }
            .search-diamond-header{
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: auto;
                gap: 20px;
            }
            .search-left-silder-container {
                width: 100%;
                border-radius: 0;
                display: none;
            }
            
            .search-left-silder-shape-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .search-diamond-item-container {
                padding: 0;
            }
            
            .search-diamond-item-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            .search-diamond-item-image {
                padding: 0px;
            }
        }
        