/* 產品詳情頁面樣式 */
#productDetailMain {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* 產品展示區域 */
.product-showcase-section {
    padding: 120px 0 0 0;
    position: relative;
}

.product-showcase-section .container {
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pro-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    /* padding: 30px; */
    background-color: #ffffff;
    border-radius: 20px;
}

.left-flex {
    width: 60%;
    padding: 30px 0 30px 30px;
}

.right-flex {
    width: 40%;
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.left-flex img {
    max-width: 100%;
    height: auto;
}

.caseSwiper {
    margin-top: 10px;
}

.caseSwiper .swiper-slide {
    cursor: pointer;
}

.right-flex>.r-title h3 {
    font-weight: bold;
    font-size: 30px;
    color: #333333;
    line-height: 30px;
}

.right-flex>.r-title p {
    font-size: 16px;
    color: #333333;
    line-height: 19px;
    margin: 10px 0;
}

.right-flex>h5 {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    line-height: 21px;
}

.select-form {
    margin-top: 10px;
}

.select-form .layui-col-md3 {
    max-width: 48px;
}

.select-form .layui-col-md3>p {
    font-size: 16px;
    color: #333333;
    line-height: 19px;
}

.select-form .layui-form-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.select-form .layui-form-select .layui-input {
    border-radius: 30px;
    padding: 0 20px;
}

.select-form .layui-form-select .layui-edge {
    right: 20px;
}

.select-form .layui-form-select dl dd.layui-this {
    background-color: var(--main-color);
    border-radius: 5px;
}

.select-form .layui-form-selected dl {
    border-radius: 10px;
}

.select-form .submit-btn {
    background-color: var(--main-color);
    width: 100%;
    border-radius: 30px;
    height: 43px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
}

.select-form .submit-btn a {
    color: #ffffff;
}

.caseSwiper .swiper-slide {
    border: 1px solid #f6f6f6;
}

.caseSwiper .swiper-slide .img-wrapper {
    width: 100%;
    height: 150px;
}

.caseSwiper2 .swiper-slide .img-wrapper {
    width: 100%;
    height: 432px;
    cursor: pointer;
}

.caseSwiper .swiper-slide .img-wrapper img,
.caseSwiper2 .swiper-slide .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.caseSwiper2 .swiper-slide,
.caseSwiper .swiper-slide {
    overflow: hidden;
    border-radius: 10px;
}

.caseSwiper2 .swiper-slide img,
.caseSwiper .swiper-slide img {
    transition: all 0.3s ease;
}

.caseSwiper2 .swiper-slide:hover img,
.caseSwiper .swiper-slide:hover img {
    transform: scale(1.1);
}

.caseSwiper2-prev, .caseSwiper2-next{
    display: none;
}
/* 隐藏默认的箭头 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}
.caseSwiper2-prev {
    background: url(/image/d-arrow-left.png) no-repeat;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    position: absolute;
    cursor: pointer;
  
  }
  
  .caseSwiper2-next {
    background: url(/image/d-arrow-right.png) no-repeat;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    position: absolute;
    cursor: pointer;
  }

/* 產品信息區域 */
.product-info-section {
    padding-left: 40px;
}

.product-header {
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9a3c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
    top: -22px;

}

.product-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.product-tag {
    background: rgba(255, 123, 20, 0.1);
    color: #ff7b14;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 123, 20, 0.2);
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.product-specs {
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.spec-icon {
    width: 20px;
    height: 20px;
    color: #ff7b14;
}

.spec-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.product-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff7b14 0%, #ff9a3c 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 123, 20, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 123, 20, 0.4);
}

.cta-button.secondary {
    background: #ffffff;
    color: #333;
    border: 2px solid #e0e0e0;
}

.cta-button.secondary:hover {
    border-color: #ff7b14;
    color: #ff7b14;
    transform: translateY(-2px);
}

.button-icon {
    width: 20px;
    height: 20px;
}

/* 產品詳細介紹區域 */
.product-details-section {
    padding: 120px 0;
    position: relative;
}

.product-details-section .container {
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9a3c 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.details-content {
    margin: 0 auto;
}

.details-text {
    margin-bottom: 80px;
}

.text-block {
    margin-bottom: 60px;
}

.text-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.comparison-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.comparison-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.comparison-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.comparison-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.comparison-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.detail-image:hover {
    transform: scale(1.05);
}

/* 配件區域 */
.accessories-section {
    border-radius: 20px;
    padding: 40px;
}

.accessories-header {
    text-align: center;
    margin-bottom: 40px;
}

.accessories-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.accessories-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9a3c 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.accessory-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 123, 20, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.accessory-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 123, 20, 0.2);
}

.accessory-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9a3c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.accessory-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.accessory-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 其他相關產品-start  */
#other-product {
    padding-bottom: 60px;
}

.other-container {
    width: 1400px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.other-container h3 {
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    line-height: 33px;
}

.slide-img {
    overflow: hidden;
    width: 100%;
    border-radius: 5px;
}

.slide-img img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.other-swiper .swiper-slide:hover img {
    transform: scale(1.1);
}

.other-swiper {
    margin: 20px 0;
}

.other-swiper p {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    line-height: 20px;
    text-align: center;
    margin-top: 10px;
}

.other-swiper .swiper-slide:hover p {
    color: var(--main-color);
}
.swiper-pagination-bullet-active{
    background: var(--main-color);
}

.other-swiper .slide-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.other-swiper .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-container .swiper-pagination {
    top: auto;
    bottom: 12px;
}

/* 其他相關產品-end */
