.elementor-10247 .elementor-element.elementor-element-8e2bb59{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for text-editor, class: .elementor-element-03a4087 *//* 基本設定與字體 */
body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth; /* 平滑滾動 */
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* 文章標題 */
.article-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-header h1 {
    color: #0056b3; /* 品牌主色 */
    font-size: 2.5em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-header h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 500;
}

.article-header .meta {
    font-size: 0.9em;
    color: #777;
}

/* 文章內容 */
.article-content {
    font-size: 1.1em;
    color: #555;
}

.article-content h3 {
    color: #0056b3; /* 品牌主色 */
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #007bff;
    padding-left: 10px;
}

.article-content h4 {
    color: #007bff; /* 品牌輔色 */
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p,
.article-content ul {
    margin-bottom: 20px;
}

.article-content ul {
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content strong {
    color: #007bff; /* 品牌輔色 */
}

/* 圖片樣式 */
.image-container {
    text-align: center;
    margin: 30px 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-container figcaption {
    font-size: 0.85em;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}

/* 選購標準區塊 */
.selection-criteria {
    background-color: #eef7ff; /* 淡藍色背景 */
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #cfe2ff;
}

.criterion-item {
    margin-bottom: 30px;
}

.criterion-item:last-child {
    margin-bottom: 0;
}

/* 品牌比較 */
.brand-comparison {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fdfdfd;
    padding: 0; /* Reset padding */
}

.brand-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.brand-item:last-child {
    border-bottom: none;
}

.brand-item h4 {
    color: #0056b3; /* 品牌主色 */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.expert-tip {
    background-color: #fff3cd; /* 溫馨提示背景色 */
    border-left: 5px solid #ffc107; /* 警告色邊框 */
    padding: 10px 15px;
    margin-top: 15px;
    font-size: 0.95em;
    color: #664d03;
    border-radius: 0 4px 4px 0;
}

.expert-tip strong {
    color: #664d03;
}

/* 為什麼選擇我們 */
.why-choose-us {
    background-color: #e9ecef; /* 淺灰色背景 */
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.why-choose-us h4 {
    color: #0056b3;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 20px;
}

.why-choose-us li {
    font-size: 1.05em;
    margin-bottom: 15px;
}

.why-choose-us li strong {
    color: #333;
}

/* 行動呼籲按鈕 */
.call-to-action {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #007bff; /* 品牌主色 */
    color: #fff;
    border-radius: 8px;
}

.call-to-action p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ffc107; /* 點擊的重點顏色 */
    color: #0056b3; /* 文字顏色 */
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #e0a800; /* 滑鼠移上時的顏色 */
    transform: translateY(-2px); /* 輕微上移效果 */
}

/* 文章底部 */
.article-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.85em;
    color: #999;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    .article-header h1 {
        font-size: 2em;
    }

    .article-header h2 {
        font-size: 1.5em;
    }

    .article-content h3 {
        font-size: 1.6em;
    }

    .article-content h4 {
        font-size: 1.2em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .expert-tip {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8em;
    }

    .article-header h2 {
        font-size: 1.3em;
    }

    .article-content {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}/* End custom CSS */