﻿@charset "utf-8";
/* 容器基本設定 */
.product-detail-content-ul2 {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-family: "Microsoft JhengHei", sans-serif;
    border-top: 2px solid #5185c5; /* 醫檢感的主色調 */
	border: 1px solid #dbe7f4;
  border-radius: 16px;
  background: #ffffff;
  padding: 22px 22px;
  padding-bottom:10px;
  margin: 18px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-wrap:wrap;
}

/* 每一列的排版 */
.product-detail-content-ul2 li {
    display: flex;
	align-items:flex-start;
	width:50%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
/*若總數為基數，且是最後一個，就會是100%*/
.product-detail-content-ul2 li:nth-child(odd):last-child {
	width:100%;
	border-bottom:0;
}

/* 左側標題欄位 */
.lefttitle {
    flex: 0 0 90px; /* 固定寬度 */
    font-weight: bold;
    color: #fff;
    background-color: #5185c5;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 10px;
    text-align: center;
    font-size: 0.95rem;
	font-size: 0.8rem;
	height:36.5px;
	height:auto;
	overflow:hidden;
}

/* 右側資料欄位 */
.data {
    flex: 1;
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
	font-size: 0.8rem;
	display: flex;
	align-items:center;
	padding:0 10px;
	flex-wrap:wrap;
}

/* 價格樣式：原價 */
.productprice.NG {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* 價格樣式：特價 */
.productsaleprice {
    color: #d9534f;
    font-size: 1.4rem;
    font-weight: bold;
	line-height:1;
}

/* 備註區塊內的微調 */
.data p {
    margin: 0 0 10px 0;
}

/* 下載按鈕樣式 */
.ShoppingListBtn {
    padding: 25px 0 !important;
    justify-content: center; /* 按鈕置中 */
	gap:10px;
	display:flex;
}

.ShoppingListBtn .btn {
    display: inline-flex;
    align-items: center;
    background-color: #5185c5;
    color: #fff !important;
    padding: 0 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
	font-size:0.8em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	margin:0;
}

.ShoppingListBtn .btn:hover {
    background-color: #005a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.ShoppingListBtn .btn i {
    margin-right: 8px; /* 圖示間距 */
}

/* 手機版適應 (RWD) */
@media (max-width: 1024px) {
    .product-detail-content-ul2 li { width:100%;}
	.data { padding-right:0;}
}

/* 手機版適應 (RWD) */
@media (max-width: 600px) {
    .product-detail-content-ul2 li {
        flex-direction: column; /* 改為上下排列 */
    }
	.ShoppingListBtn .btn { justify-content:center; width:100%;}
    .lefttitle {
        flex: none;
        width: 100%;
        margin-bottom: 8px;
        text-align: left;
    }
    .data {
        padding-left: 10px;
    }
}