
    /* 表單容器 */
    .wpcf7 {
        background-color: #f9f9f9;
        padding: 20px;
        max-width: 800px;
        margin: 0 auto !important;
        font-size: 18px;
    }
    /* 表單欄位 */
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 input[type="date"],
    .wpcf7 select,
    .wpcf7 textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    .wpcf7 .wpcf7-list-item {
        display: block;
    }
    /* 提交按鈕 */
    .wpcf7 input[type="submit"] {
        background-color: #0073e6;
        color: white;
        padding: 15px 25px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .wpcf7 input[type="submit"]:hover {
        background-color: #005bb5;
    }
    /* 表單標籤 */
    .wpcf7 label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
    }
    .cancel-options .wpcf7-list-item.first {
        display: none;
    }
    /* 上傳圖片顯示 */
    .file-upload-area {
        margin-bottom: 20px;
    }
    .file-label {
        display: block;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 14px;
        color: #333;
    }
    #preview-container {
        margin-top: 10px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #f9f9f9;
        text-align: center;
    }
    #preview-container img {
        max-width: 100%;
        max-height: 200px;
        margin-top: 10px;
    }