.explanation11 {
    padding: 0 20px;  /* 加入左右 20px 的內距 */
    max-width: 1200px; /* 限制最大寬度 */
    margin: 0 auto;    /* 居中 */
}


* {
    box-sizing: border-box;
}






/* 重置瀏覽器預設的樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局樣式 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}


/* 預設樣式 (桌面版) */
.element {
  width: 50px;
}

/* 手機版樣式 */
@media screen and (max-width: 768px) {
  .element {
    width: 20px;
  }
}






/* 容器 */
.container {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
}

/* 標題 */
h1 {
    text-align: center;
    color: #128C7E;
    margin-bottom: 20px;
    font-size: 24px;
}

/* 語言選擇器 */
.language-label {
    font-size: 16px;
    margin-top: 10px;
}

#languageSelect {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* 表單元素 */
label {
    font-size: 16px;
    margin-top: 10px;
    display: block;
}

input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 15px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* 按鈕 */
.button-group {
    text-align: center;
    margin-top: 20px;
}

.button-group button {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 12px 20px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.button-group button:hover {
    background-color: #128C7E;
}

/* 按鈕說明 */
.explanation {
    margin-top: 30px;
}

.explanation h3 {
    font-size: 18px;
    color: #128C7E;
    margin-bottom: 10px;
}

.explanation ul {
    list-style-type: disc;
    margin-left: 20px;
}

.explanation ul li {
    margin-bottom: 5px;
    font-size: 16px;
}

/* 廣告區域 */
.ad {
    width: 100%;
    max-width: 728px;
    margin: 10px auto;
    text-align: center;
}

/* 頁腳 */
footer {
    background-color: #128C7E;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* 響應式設計 */
@media (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    label, input, textarea, .button-group button {
        font-size: 14px;
    }

    .explanation h3 {
        font-size: 16px;
    }

    .explanation ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

    .container {
        padding: 15px 20px;
    }

    label, input, textarea, .button-group button {
        font-size: 12px;
    }

    .explanation h3 {
        font-size: 14px;
    }

    .explanation ul li {
        font-size: 12px;
    }
}

.copy-message {
    margin-top: 15px;
    font-size: 16px;
    color: green;
    text-align: center;
}

