﻿/* 外層容器 */
.modal-dialog.popstyle.pop_big .databox-custom {
    border-top: 0px dashed #ccc;
    padding-left: 0px;
    margin: 30px 0px 15px 0px;
}

/* 標題樣式 */
.modal-dialog.popstyle.pop_big .modal-title-custom {
    font-size: 17px;
    font-weight: 600;
    padding-bottom: 7px;
    margin-bottom: 5px;
    border-bottom: 1px solid; /* 原始代碼中未指定顏色，建議補上顏色，例如 #ccc */
}

/* 主表格樣式 */
.modal-dialog.popstyle.pop_big .price-table {
    font-size: 16px;
    width: 100%;
    text-align: center;
    margin: 15px 0px;
    border-color: #d4d4d4;
    background-color: #ffffff;
}

/* 表格欄位通用樣式 */
.modal-dialog.popstyle.pop_big .price-cell {
    width: 50%;
    padding: 4px 8px;
}

    .modal-dialog.popstyle.pop_big .price-cell.center {
        text-align: center;
    }

/* 內部巢狀表格樣式 */
.modal-dialog.popstyle.pop_big .inner-price-table {
    width: 100%;
    text-align: center;
}

.modal-dialog.popstyle.pop_big .inner-price-row {
    text-align: center;
}

/* 價格標籤 (靠右) */
.modal-dialog.popstyle.pop_big .price-label {
    text-align: right;
    padding-right: .5rem;
}

/* 價格數值 (靠左) */
.modal-dialog.popstyle.pop_big .price-value {
    text-align: left;
}

/* 底部備註文字 */
.modal-dialog.popstyle.pop_big .footer-note {
    display: block;
    font-size: 15px;
    line-height: 16px;
    color: #000000;
}

@media screen and (max-width:768px) and (min-width:300px) {
    .modal-dialog.popstyle.pop_big .price-table tr {
        display: flex
    }

    .modal-dialog.popstyle.pop_big .price-cell {
        text-align: center !important;
        display: block;
    }

    .modal-dialog.popstyle.pop_big .price-cell:before {
        display: none;
    }
}