@charset 'utf-8';

.con_cases{padding: 50px 0;}
.con_cases .list{width: 48%;float: left;margin: 0 2% 50px 0;display: flex;justify-content: space-between;box-shadow: 0 0 15px 0 #ddd;padding: 15px;align-items: center;}
.con_cases .list:nth-child(4n){margin-right: 0;}
.con_cases .list .picture{/* border: solid #d6d6d6 1px; */overflow: hidden;width: 50%;}
.con_cases .list .picture img{width: 100%; transition: all 0.5s;}
.con_cases .list .picture:hover img{transform: scale(1.1);}
.con_cases .list .title{padding: 0 15px;text-align: center;line-height: 32px;font-size: 16px;width: 50%;}
.con_cases .list .title a{color: #333;}
.con_cases .list .title a:hover{color: #0f65dc;}
.con_cases .list .title a h2{font-size: 18px;margin: 0 0 15px;text-align: left;font-weight: bold;}
.con_cases .list .title a h3{font-size: 16px;text-align: left;line-height: 1.5;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 6; //设置行数overflow: hidden; //超出隐藏;overflow: hidden;}
.con_cases .swiper-container img{width:100%;}
.con_cases .swiper-container{padding-bottom:80px;}
.con_cases .swiper-container a{display:block;}

.sia_tow{padding:50px 0;}


  /* 标题样式 */
    .page-title {
      text-align: center;
      margin-bottom: 2rem;
      color: #1f2937;
      font-size: 2rem;
      font-weight: 600;
    }
 /* 标题样式 */
    .page-title {
      text-align: center;
      margin-bottom: clamp(1rem, 3vw, 1.5rem);
      color: #1f2937;
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      font-weight: 600;
    }

    /* 筛选条件卡片容器 */
    .filter-container {
      display: flex;
      /* grid-template-columns: repeat(auto-fill, minmax(clamp(240px, 45vw, 320px), 1fr)); */
      gap: clamp(1rem, 3vw, 1.5rem);
      margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
      margin: 30px 0;
      flex-wrap: wrap;
    }

    /* 单个筛选卡片样式 */
    .filter-card {
      background: #fff;
      /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
      border-radius: 0;
      overflow: hidden;
      border-right: 2px solid #777;
    }
    .filter-card-header {
      padding: 0 20px 10px 10px;
      /* background: #f3f4f6; */
      font-weight: 600;
      color: #000;
      /* text-transform: uppercase; */
      font-size: 16px;
      letter-spacing: 0.05em;
      display: flex;
      gap: clamp(1rem, 3vw, 1.5rem);
    }
    .filter-card-body {
      padding: clamp(0.75rem, 2vw, 1rem);
      padding-bottom: 0;
    }
    .filter-option {
      margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    }
    .filter-option:last-child {
      margin-bottom: 0;
    }

    /* 复选框美化 */
    .filter-option label {
      display: flex;
      align-items: center;
      gap: clamp(0.375rem, 1vw, 1rem);
      cursor: pointer;
      user-select: none;
      color: #333;
      margin: 10px 0 0;
      font-size: 15px;
      font-weight: normal;
    }
    .filter-option input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      border: 1px solid #000;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      margin: 0;
    }
    .filter-option input[type="checkbox"]:hover {
      border-color: #6b7280;
    }
    .filter-option input[type="checkbox"]:checked {
      background-color: #3b82f6;
      border-color: #3b82f6;
    }
    .filter-option input[type="checkbox"]:checked::after {
      content: '✓';
      color: white;
      font-size: clamp(0.65rem, 1.5vw, 0.875rem);
      font-weight: bold;
    }
    .filter-count {
      color: #333;
      font-size: 16px;
      margin-left: clamp(0.125rem, 0.5vw, 0.8rem);
    }

   
    /* 商品列表样式 */
    .product-list {
      display: flex;
      /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
      gap: 30px;
      flex-wrap: wrap;
      /* margin: 30px 0; */
    }
    .product-item {
      background: #fff;
      padding: 0;
      border-radius: 0.75rem;
      /* box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.1), 0 4px 2px -2px rgba(0, 0, 0, 0.05); */
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      position: relative;
      justify-content: space-between;
      overflow: hidden;
      /* background: #f6f6f6; */
      width: 14.5%;
      border-radius: 0;
      flex-wrap: wrap;
    }
    .product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    .product-image-container {
      width: 100%;
      /* height: 200px; */
      overflow: hidden;
      border-radius: 0;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #ddd;
    }
    .product-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-item:hover img {
      transform: scale(1.05);
    }
    .product-names {
      /* margin-bottom: 1.25rem; */
      line-height: 1.5;
      color: #1f2937;
      width: 100%;
      font-size: 16px;
      color: #000;
      padding: 10px;
      text-align: center;
    }
	
	 .product-names a{color:#555;}
    .product-names ul{display:flex;flex-wrap: wrap;}
	  .product-names ul li{width:20%;padding: 10px;}
	    .product-names ul li a{font-size:16px;color:#000;font-weight: bold;/* padding: 10px; */}
    .btn-group {
      display: flex;
      width: 15%;
      flex-wrap: wrap;
    }
	
   .btn-group	.btn-quote{width:100%;background: #000;color: #fff;border-radius: 0;margin-bottom: 10px;}
	   .btn-group	.btn-quote:hover{border:1px solid #000;background:#fff;}
	   .btn-group .btn-details{width:100%;border-radius: 0;}
	   .btn-group .btn-details:hover{border:1px solid #ed2939;background:#fff;}
	   
	   .btn-group .btn-details a{font-size:16px;color:#fff;}
	   .btn-group	.btn-quote a{font-size:16px;color:#fff;}
	   
	   .btn-group .btn-details:hover a{color:#ed2939;}
	   .btn-group	.btn-quote:hover a{color:#000;}
    .btn {
      flex: 1;
      padding: 0.75rem 1rem;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      text-align: center;
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 0.2s ease;
      /* text-transform: uppercase; */
      letter-spacing: 0.05em;
    }
    .btn-quote {
      background: url(../images/xuan.png) no-repeat left;
      color: #007eff;
      font-size: 15px;
      padding-left: 20px;
    }
    .btn-quote:hover {
      color: #ed2939;
	   background: url(../images/xuan.png) no-repeat left;
    }
    .btn-details {
      background: #ed2939;
      color: #fff;
      font-size: 15px;
    }
    .btn-details:hover {
      background: #dc2626;
    }

    /* 筛选标签样式 */
    .active-filters-container {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 10px 0;
    }
    .active-filter-tag {
      display: flex;
      align-items: center;
      background: #e0e7ff;
      color: #4f46e5;
      padding: 5px 20px;
      border-radius: 9999px;
      font-size: 14px;
    }
    .remove-filter {
      margin-left: 0.5rem;
      cursor: pointer;
      font-weight: bold;
    }

    /* 隐藏未匹配的商品 */
    .product-item.hidden {
      display: none;
    }

    /* 空状态样式 */
    .empty-state {
      text-align: center;
      padding: 4rem 0;
      color: #6b7280;
      display: none; /* 初始隐藏 */
    }
    .empty-state-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #9ca3af;
    }
    .empty-state-text {
      font-size: 15px;
    }
	
	.result-count {
    text-align: left;
    margin: 30px 0;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    padding-top: 20px;
    border-top: 1px solid #000;
}
	.left_sa{font-size:30px;font-weight: bold;color: #000;}
	
	
	
	.con_cases h3 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    text-align:center;
    margin-bottom: 40px;
}
	
 .button-container {
            padding: 2rem;
            display: flex;
            gap: 1rem;
        }

        /* 提交按钮样式 */
        .btn-submit {
            background-color: #2c6ecb;
            color: white;
            border: none;
            padding: 10px 45px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-submit::before {
            content: "✓";
            margin-right: 8px;
        }

        .btn-submit:hover {
            background-color: #1a56b3;
            box-shadow: 0 4px 8px rgba(44, 110, 203, 0.3);
            transform: translateY(-2px);
        }

        .btn-submit:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(44, 110, 203, 0.3);
        }

        .btn-submit:focus {
            outline: 2px solid rgba(44, 110, 203, 0.5);
            outline-offset: 2px;
        }

        /* 重置按钮样式 */
        .btn-reset {
            background-color: #ed2939;
            color: white;
            border: none;
            padding: 10px 45px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-reset::before {
            content: "↺";
            margin-right: 8px;
        }

        .btn-reset:hover {
            background-color: #5a6268;
            box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
            transform: translateY(-2px);
        }

        .btn-reset:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(108, 117, 125, 0.3);
        }

        .btn-reset:focus {
            outline: 2px solid rgba(108, 117, 125, 0.5);
            outline-offset: 2px;
        }	
	
	
	
	
.con_cases .swiper-container .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2;
}

.con_cases .swiper-container .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ed2939;
}





  /* 分页样式 */
       .xu_er{padding:50px 0;background: #f8f8f8;margin-top: 50px;}
     .xu_er .u_auto{margin-top:30px;}
	 .in_ue{display:flex;gap: clamp(0.375rem, 1vw, 1.5rem);flex-wrap: wrap;}
	 .u_auto h3{font-size:20px;text-align: left;}
	 .in_ue .xiner_ko {
    display: flex
;
    align-items: center;
    gap: clamp(0.375rem, 1vw, 1rem);
    cursor: pointer;
    user-select: none;
    color: #333;
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: normal;
}
.in_ue label {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    user-select: none;
    color: #333;
    margin: 10px 0;
    font-size: 15px;
    font-weight: normal;
}
.in_ue input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin: 0;
}


        /* 浮动层背景 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        /* 显示浮动层 */
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* 浮动层表单容器 */
        .modal-form {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-form {
            transform: translateY(0);
        }

        .modal-header2 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 40px;
            cursor: pointer;
            color: #666;
            transition: color 0.2s ease;
        }

        .close-btn:hover {
            color: #333;
        }

        /* 表单样式 */
        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #444;
        }

        .form-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.2s ease;
            height: 45px;
        }

        .form-input:focus {
            outline: none;
            border-color: #2c6ecb;
            box-shadow: 0 0 0 3px rgba(44, 110, 203, 0.1);
        }

        .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .submit-btn {
            background-color: #2c6ecb;
            color: white;
            border: none;
            padding: 0.6rem 1.25rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .submit-btn:hover {
            background-color: #1a56b3;
        }

        .cancel-btn {
            background-color: #f1f1f1;
            color: #666;
            border: none;
            padding: 0.6rem 1.25rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .cancel-btn:hover {
            background-color: #e0e0e0;
        }
.in_ue input[type="text"] {height: 45px;padding: 10px;}
		.filter-option label.disabled_inpu{color:#999;}
.disabled_inpu .filter-count{color:#999;}
  .filter-option  .disabled_inpu input[type="checkbox"] {border:1px solid #999;}

@media (max-width:980px) {
	.con_cases{padding: 30px 15px;}
	.con_cases .list{width: 48%; margin: 0 4% 20px 0;}
	.con_cases .list:nth-child(2n){margin-right: 0;}
	.con_cases .list .title{padding: 5px 10px; line-height: 20px; font-size: 14px;}
	
	
	
	
	
	
	
	.con_cases h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}


.left_sa {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.filter-table{display: block;
    overflow-x: auto;}
.filter-table th, .filter-table td {
    padding: 5px 10px;
    text-align: left;
}


.filter-table label {

    font-size: 14px;
 
}
.filter-count {
    color: #6b7280;
    font-size: 14px;
    margin-left: 0.25rem;
}
.product-item {
width: 45%;
    flex-wrap: wrap;
}

.product-image-container {
    width: 100%;

}
.product-names {
    margin-bottom: 1.25rem;
    line-height: 1.5;
    color: #1f2937;
    width: 100%;
}
.btn-group {
    display: flex
;
    width: 100%;
    flex-wrap: wrap;
}


.btn-group .btn-quote {

    margin-bottom: 5px;
}
.product-names ul li {
    width: 100%;
    padding: 10px 0;
}

.product-names ul li a {
    font-size: 14px;

}
.btn-group .btn-quote a {
    font-size: 12px;
    color: #fff;
}
.btn-group .btn-details a {
    font-size: 12px;
    color: #fff;
}
.sia_tow {
    padding: 30px 0;
}


}