﻿/*==========產品資訊==========*/
.Area_Book {/*產品訊息*/
    display: block;
    width:1050px;
}
.Mobile .Area_Book{ 
     width:520px;
}
.Area_Info {
    border: solid 1px #cccccc;
    margin: 10px 0;
    display: block;
}
.Area_Image {/*圖片區*/
    width: 50%;
    text-align: center;
}
.Mobile .Area_Image {
    width:100%;
}
.Area_Detail{
    width:50%;
}
.Mobile .Area_Detail{
    width:100%;
}
.Area_Image_View {/*圖片預覽*/
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Area_Info{
    display:flex;
}
.Mobile .Area_Info{
    display:block;
}
.InCart {/*已加入*/
    background:url('/Images/BT_Select.png') no-repeat center;
    background-position:90% 95%;
}
.StockEmpty {/*已售完*/
    background:url('/Images/BT_SellOut.png') no-repeat center;
    background-position:90% 95%;
}
.Area_Image_View img {
    max-width: 100%;
    height: auto;
    max-height: 90%;
    object-fit: contain;
}
.Area_Image_List {/*圖片列表*/
    width: 100%;
    height: 100px;
    display: flex;
    overflow: hidden;
    margin-bottom: 10px;
}
.Area_Image_List_Detail {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
    overflow: hidden;
}
.Area_Image_List_Detail div {
    padding: 5px;
    background-color: #e2e2e2;
    display: block;
    vertical-align: middle;
}
.Area_Image_List_Detail img {
    max-width: 90px;
    max-height: 90px;
    cursor: pointer;
}
.Area_Detail {/*產品明細*/
    width: 50%;
    padding: 10px;
    line-height: 1.5;
    font-size:1.375rem;    
    color:#333333;
}
.Area_Detail h3{
    font-size:1.5rem;
}
.Area_Detail div{
    font-size:0.875rem;
    color:#7f7f7f;
    margin-left:4.125rem;
}
.Area_Detail input[value='-'] {/*減少數量按鈕*/
    border: solid 1px #cccccc;
    border-radius: 5px 0 0 5px;
    margin:0;
    cursor:pointer;
    font-size:22px;
}
.Area_Detail input[value='+'] {/*增加數量按鈕*/
    border: solid 1px #cccccc;
    border-radius: 0 5px 5px 0;
    margin:0;
    cursor:pointer;
    font-size:22px;
}
.Area_Detail input[type=submit] {
    width: 40%;
    font-size: 22px;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor:pointer;
}
.Area_Detail select {/*數量*/
    width: 70px;
    border-top: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
    border-left: none;
    border-right: none;
    font-size:22px;
}
.Area_Example {/*產品簡介*/
    border: solid 1px #cccccc;
    margin: 10px 0  ;
    display:block; 
    padding: 10px ;
    text-indent:10px;
}
.Area_Relate {/*相關產品*/
    border: solid 1px #cccccc;
    margin: 10px 0;
    padding: 10px;
}
#Span_Example{margin-left:-10px;}
#Span_Example,
#Span_Relate {
    text-decoration-line: underline;
    text-decoration-color: #ffde81;
    text-decoration-style: solid;
    text-decoration-thickness: 5px;
}