﻿@charset "utf-8";
/*基本框架CSS*/

#news-slider9 .owl-prev::after, #news-slider9 .owl-next::after {
    color: white;
}

.traFix {
    position: fixed;
    right: 30px;
    bottom: 250px;
    z-index: 995;
    width: 30px;
    height: 30px;
}

.static {
    width: 100%;
    min-height: 50vh;
    background-size: cover;
    position: relative;
    padding: 120px 0 60px;
}

/*個人卡片*/
.card2 {
    width: 320px; /* 設定固定寬度 */
    height: 170px; /* 設定固定高度 */
    background-color: #ffffff;
    border-radius: 15px;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative; /* 使用相對定位 */
    justify-content: center; /* 垂直置中 */
    align-items: center; /* 水平置中 */
    text-align: center; /* 文字置中 */
    margin: 10px !important;
}

    .card2 .top-left {
        position: absolute;
        top: 15px;
        left: 15px;
        text-align: left;
    }

    .card2 .greeting {
        font-size: 1.5em;
        color: #333333;
        margin: 0;
        display: inline-block;
        font-weight: bold;
    }

    .card2 .linked-status {
        font-size: 1.2em;
        color: #666666;
        margin-top: 5px;
    }

    .card2 .edit-link {
        position: absolute;
        bottom: 15px;
        right: 15px;
        font-size: 14px;
        color: #007bff;
        text-decoration: none;
    }

        .card2 .edit-link:hover {
            text-decoration: underline;
        }

.linked-status2 {
    background-color: #66b44d; /* 按鈕背景綠色 */
    color: white; /* 文字顏色 */
    font-size: 16px; /* 字體大小 */
    font-weight: bold; /* 文字加粗 */
    padding: 5px 15px; /* 內距 */
    border-radius: 15px; /* 圓角設計 */
    display: inline-block; /* 讓按鈕根據內容自適應大小 */
    text-align: center; /* 文字置中 */
    border: none; /* 移除邊框 */
    line-height: 1.5; /* 行高調整 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 增加些許陰影效果 */
    margin-top: 5px;
}

/*中獎名單*/
#winnerSection {
    background-color: #f9f9f9; /* 背景顏色 */
    padding: 20px;
    border-radius: 8px; /* 圓角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 陰影效果 */
}

    #winnerSection .table-container {
        background-color: #fff; /* 表格容器背景色 */
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 輕微陰影 */
    }

    #winnerSection table {
        width: 100%;
        border-collapse: collapse; /* 去除間隙 */
        font-family: Arial, sans-serif;
    }

    #winnerSection th, #winnerSection td {
        text-align: left; /* 左對齊 */
        padding: 12px; /* 內間距 */
        font-size: 15px; /* 字體大小 */
        border-bottom: 1px solid #ddd; /* 底部邊框 */
    }

    #winnerSection th {
        background-color: #f2f2f2; /* 表頭背景色 */
        font-weight: bold; /* 加粗字體 */
        font-size: 16px; /* 表頭字體大小 */
    }

    #winnerSection tr:hover {
        background-color: #f9f9f9; /* 滑鼠懸停效果 */
    }

    #winnerSection .notice {
        margin-top: 10px;
        font-size: 12px;
        color: #888; /* 字體顏色 */
        line-height: 1.5; /* 行高 */
        text-align: left; /* 左對齊 */
    }

/*對話框*/
.member_news {
    background-color: #004a87;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 15px; /* 輕微圓角 */
    padding: 10px 20px;
    width: fit-content;
    margin: 20px auto;
    position: relative; /* 為小三角形定位提供參考 */
    text-align: center; /* 讓文字置中 */
}

    .member_news::before {
        content: ""; /* 外層三角形 */
        position: absolute;
        top: 100%; /* 定位在底部 */
        left: 85%; /* 水平居中 */
        transform: translateX(-50%);
        border-width: 15px; /* 外框線寬度 */
        border-style: solid;
        border-color: white transparent transparent transparent; /* 外框顏色為白色 */
        width: 0;
        height: 0;
    }

/*跑馬燈*/
.microsoft {
    max-height: 200px; /* 設定容器的最大高度 */
    overflow-y: auto; /* 超出內容顯示垂直滾動條 */
    overflow-x: hidden; /* 隱藏水平滾動條 */
    position: relative; /* 確保滾動條位置正確 */
}

    /* 設置滾動條本身，初始時隱藏 */
    .microsoft::-webkit-scrollbar {
        width: 4px; /* 設置垂直滾動條的寬度 */
        height: 4px; /* 設置水平滾動條的高度 */
    }

    /* 滾動條軌道的樣式 */
    .microsoft::-webkit-scrollbar-track {
        background: #18639b; /* 滾動條軌道的背景顏色 */
        border-radius: 10px; /* 軌道圓角 */
    }

    /* 滾動條滑塊的樣式 */
    .microsoft::-webkit-scrollbar-thumb {
        background: #888; /* 滾動條滑塊的顏色 */
        border-radius: 10px; /* 滑塊圓角 */
    }

.alertA {
    width: 100%;
    padding: 2px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    opacity: 1; /* 保持顯示 */
    animation: slideUp 5s linear infinite;
    margin-bottom: 2px; /* 設置底部間距 */
}

.alert-icon {
    font-size: 20px;
    margin-right: 10px;
    color: yellow;
}

.alert-text {
    line-height: 1.5;
}

.highlight {
    font-weight: bold;
    color: orange;
}

.renew-box {
    border: 2px solid #fff; /* 白色邊框 */
    color: #fff; /* 白色字體 */
    padding: 5px 5px; /* 內邊距 */
    margin-right: 10px; /* 與後方文字的間距 */
    font-size: 16px; /* 字體大小 */
    font-weight: bold; /* 字體加粗 */
    border-radius: 5px; /* 圓角 */
    display: inline-block; /* 讓它適應內容大小 */
    text-align: center; /* 文字居中 */
}

/*理賠專區*/
.pricingTable {
    color: #444;
    background-color: #fff;
    text-align: center;
    padding-bottom: 25px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

    .pricingTable .pricingTable-header {
        padding-top: 17px;
        margin: 0 0 20px;
    }

    .pricingTable .title {
        font-size: 33px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin: 0 0 15px;
    }

    .pricingTable .pricing-icon {
        color: #fff;
        background: linear-gradient(#44B52F, #9BD023);
        font-size: 2.5em;
        padding: 20px 15px 22px;
        margin: 0 0 15px;
        position: relative;
    }

        .pricingTable .pricing-icon:before {
            content: '';
            height: 90%;
            width: 100%;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
            border-radius: 0 0 50% 50%/0 0 100% 100%;
            position: absolute;
            left: 0;
            top: 0;
        }

    .pricingTable .price-value {
        color: #44B52F;
    }

        .pricingTable .price-value .amount {
            font-size: 40px;
            font-weight: 700;
            line-height: 40px;
        }

        .pricingTable .price-value .duration {
            color: #444;
            font-size: 16px;
        }

    .pricingTable .pricing-content {
        text-align: left;
        padding: 0;
        margin: 0 0 25px;
        list-style: none;
        display: inline-block;
    }

        .pricingTable .pricing-content li {
            font-size: 17px;
            line-height: 25px;
            text-transform: capitalize;
            line-height: 33px;
            padding: 5px 20px 5px 60px;
            position: relative;
        }

            .pricingTable .pricing-content li:nth-child(even) {
                background-color: #eee;
            }

            .pricingTable .pricing-content li:before {
                content: "\f005";
                color: #59af23;
                font-family: "Font Awesome 5 free";
                font-size: 14px;
                font-weight: 900;
                position: absolute;
                top: 5px;
                left: 20px;
            }

            .pricingTable .pricing-content li.disable:before {
                color: #DD434E !important;
            }

    .pricingTable .pricingTable-signup a {
        color: #fff;
        background: linear-gradient(#44B52F, #9BD023);
        font-size: 25px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 9px 35px 8px;
        border-radius: 5px;
        display: inline-block;
        position: relative;
        transition: all 0.3s ease 0s;
    }

        .pricingTable .pricingTable-signup a:hover {
            text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
            text-decoration: none;
        }

        .pricingTable .pricingTable-signup a:before {
            content: '';
            height: 90%;
            width: 100%;
            border-radius: 0 0 50% 50%/ 0 0 100% 100%;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            position: absolute;
            left: 0;
            top: 0;
            transition: all 0.3s ease 0s;
        }

        .pricingTable .pricingTable-signup a:hover:before {
            border-radius: 0;
        }

    .pricingTable.blue .pricing-icon, .pricingTable.blue .pricingTable-signup a {
        background: linear-gradient(#285EC7, #08b5d3);
    }

    .pricingTable.blue .price-value {
        color: #285EC7;
    }

    .pricingTable.purple .pricing-icon, .pricingTable.purple .pricingTable-signup a {
        background: linear-gradient(#6E24F3, #8D4ED1);
    }

    .pricingTable.purple .price-value {
        color: #6E24F3;
    }

@media only screen and (max-width: 990px) {
    .pricingTable {
        margin: 0 0 40px;
    }
}

.close {
    border: none; /* 移除邊框 */
    background: none; /* 移除背景 */
    color: azure; /* 文字顏色 */
    font-size: 1.5em; /* 調整字體大小 */
    line-height: 1; /* 調整行高，與文字保持一致 */
    cursor: pointer; /* 滑鼠變為手指形狀 */
    padding: 0; /* 移除內邊距 */
    outline: none; /* 移除焦點時的外框 */
}

    .close:hover {
        color: red; /* 滑鼠懸停時變紅色 */
    }
