/* main.css */

.header-top-massege p {
  color: #000;
}

.header-logo {
  float: left;
  line-height: 60px;
}

.header-logo img {
  height: 40px;
}

.main-menu {
  float: right;
  line-height: 60px;
}

.breadcrumb-area-about {
  background-image: url("../image/bg05.jpg");
}

.breadcrumb-area-contact {
  background-image: url("../image/bg05.jpg");
}

.breadcrumb-area-privacy-policy {
  background-image: url("../image/bg05.jpg");
}

.breadcrumb-area-disclaimer {
  background-image: url("../image/bg05.jpg");
}

.breadcrumb-area-user-agreement {
  background-image: url("../image/bg05.jpg");
}

.breadcrumb-item a {
  color: #ffffff;
}

.breadcrumb-title {
  color: #ffffff;
}

.copy-text {
  text-align: center;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 8px 30px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  width: 200px;
}

.search-box .search-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

.search-box .search-btn:hover {
  color: #333;
}

.text-left {
  text-align: left!important;
}

/* 产品详情 */
/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #333;
}

.breadcrumb span {
  margin: 0 10px;
}

/* Product Image */
.product-image {
  position: relative;
}

.image-container {
  position: relative;
  background-color: #f5f5f5;
  padding: 50px;
  text-align: center;
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
}

/* Product Info */
.product-info {
  padding-left: 50px;
}

.design-logo h3 {
  font-size: 18px;
  font-weight: normal;
  color: #999;
}

.design-logo .text-bold {
  font-weight: bold;
  color: #333;
}

.product-code {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-name {
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
}

hr {
  border: 1px solid #eee;
}

.product-details {
  margin-top: 30px;
}

.environmental-standard {
  font-size: 16px;
  margin-bottom: 10px;
}

.applicable-size {
  font-size: 18px;
}


.color-slider {
    display: flex;
    align-items: center;
    margin-top: 40px;
}


.more-colors h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

.color-slider {
  display: flex;
  align-items: center;
}

.slider-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.color-options {
  display: flex;
}

.color-item {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.color-item:hover {
  transform: scale(1.05);
  border-color: #333;
}

.color-item.active {
  border-color: #333;
}

.color-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-case {
  margin-top: 40px;
}

.product-case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Zoomable Images */
.zoomable {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.zoomable:hover {
  transform: scale(1.02);
}

/* Modal Styles */
.modal-fullscreen .modal-body {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-fullscreen .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#zoomImage {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

.swiper-slide-thumb-active {
  border: 1px solid red;
}
/* .swiper-slide-visible img {
  width: 100px;
  height: 100px;
  object-fit: cover;
} */


        /* 产品类型样式 */
        .product-type-container {
            display: flex;
            align-items: center;
        }
        
        .product-tab-nav {
            display: flex;
            gap: 5px!important;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        
        .product-type-item {
            border-radius: 20px;
            padding: 5px 10px;
            transition: all 0.3s ease;
        }
        
        .product-type-item a {
            text-decoration: none;
            color: #666;
            /* font-size: 14px; */
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .product-type-item.active {
            background-color: #000;
            color: #fff;
        }
        
        .product-type-item.active a {
            color: #fff;
        }
        
        .product-type-item:hover:not(.active) {
            background-color: #f5f5f5;
        }