html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%; /* 防止 iOS 自動放大 */
    text-size-adjust: 100%;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* AdBlock Modal 樣式 */
.uxg-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.uxg-modal[aria-hidden="false"] {
    display: block;
}

.uxg-modal__content {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.uxg-modal__title {
    font-size: 24px;
    font-weight: bold;
    color: #d80000;
    margin: 0 0 20px 0;
}

.uxg-modal__text {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 15px 0;
    text-align: left;
}

.uxg-modal__text:last-of-type {
    margin-bottom: 25px;
}

/* 說明區塊 */
.uxg-help {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.uxg-help h4 {
    font-size: 16px;
    font-weight: bold;
    color: #495057;
    margin: 0 0 15px 0;
    text-align: center;
}

.uxg-list {
    margin: 0;
    padding-left: 20px;
}

.uxg-list li {
    font-size: 15px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 8px;
}

/* 按鈕樣式 */
.uxg-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.uxg-btn:hover {
    background-color: #0056b3;
}

.uxg-btn--primary {
    background-color: #007bff;
}

/* 響應式設計 */
@media (max-width: 576px) {
    .uxg-modal__content {
        width: 95%;
        padding: 25px 20px;
    }
    
    .uxg-modal__title {
        font-size: 20px;
    }
    
    .uxg-modal__text {
        font-size: 15px;
    }
    
    .uxg-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* 遮罩層 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* 彈窗內容 */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.modal-content p{
    color: red;
    font-weight: bold;
}

/* 勾選框 */
.checkbox-container {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 按鈕樣式 */
#closeModal {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

#closeModal:disabled {
    background-color: gray;
    cursor: not-allowed;
}

.header {
    background-color: #1F262D;
    padding: 10px;
    color: white;
    text-align: center;
    width: 100%;
}
.footer {
    background-color: #1F262D;
    padding: 5px;
    text-align: center;
    color: white;
    bottom: 0;
    width: 100%;
    
}

.footer-content {
    margin: 0 auto;
    max-width: 800px;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    text-decoration: none;
    color: white;
}

.footer img {
    margin-top: 5px;
}


.navbar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(90deg, rgb(1, 80, 167), rgb(2, 108, 223), rgb(1, 80, 167));
    height: 80px;
    align-items: center;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}
.navbar .nav-links {
    display: flex;
    gap: 20px;
}
.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    display: flex;
    gap: 20px;
}
.banner {
    background-size: cover;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: #daf3ff; */
    background: linear-gradient(135deg, #5fb4ff 0%, #60f7ff 100%);
    color: white;
    font-size: 24px;
    max-width: 1000px;
    width: 100%;
}
.banner button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745; /* 綠色 */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.version-info {
    margin-top: 10px;
    font-size: 18px; /* 根據需求調整字體大小 */
    font-weight: bold;
    color: #4073ff; /* 可根據需求更改顏色 */
    text-align: center;
    opacity: 0.95;
}

.countdown-input {
    margin-top: 20px;
    padding: 5px 10px;
    width: 150px; /* 可以根據需要調整 */
    font-size: 16px;
    text-align: center; /* 讓文字置中 */
    border: 1px solid #ccc;
    border-radius: 10px; /* 設置圓角 */
    outline: none;
}

.countdown-input:focus {
    border-color: #0073b6; /* 聚焦時的邊框顏色 */
    box-shadow: 0 0 5px rgba(0, 115, 182, 0.5); /* 聚焦時的陰影 */
}
.content {
    background-color: white;
    margin: 20px auto;
    max-width: 1000px;
    width: 100%;
    border-radius: 8px;
}
.content_ads {
    display: block;
    width: 100%;
    max-width: 1000px;
    min-width: 320px;
    margin: 0 auto;        /* 容器本身置中 */
    text-align: center;    /* 廣告內容置中 */
}
.buttons {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.buttons button {
    padding: 15px 30px;
    font-size: 16px;
    border: 1px solid #ccc;
    cursor: pointer;
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.buttons button:hover {
    background-color: #e0e0e0;
}
.buttons .active {
    background-color: #0073b6;
    color: white;
    border: none;
}

.concert-switcher {
    margin-top: 20px;
    text-align: center;
}

.concert-switcher p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.concert-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.concert-btn {
    padding: 8px 15px;
    font-size: 14px;
    text-decoration: none;
    color: #0073b6;
    border: 2px solid #0073b6;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: white;
}

.concert-btn:hover {
    background-color: #0073b6;
    color: white;
}

.concert-btn.active {
    background-color: #0073b6;
    color: white;
    cursor: default;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    /* .concert-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        max-width: 250px;
        margin: 0 auto;
    } */
    
    .concert-btn {
        font-size: 20px;
    }
    
    .concert-switcher p {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .concert-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .concert-btn {
        padding: 10px 15px;
        font-size: 15px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    .concert-switcher p {
        font-size: 15px;
        margin-top: 0px;
    }
}

.alert {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: start;
    background-image: linear-gradient(to right, #0174b7, #026cdf, #0174b7);
    padding: 2px;
}
.tab {
    margin-right: 20px;
    padding: 10px;
    cursor: pointer;
    color: white;
    font-weight: bold;
}
.tab.active {
    border-bottom: 2px solid white;
}
.purchase-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1s ease, opacity 1s ease;
    margin: 20px 0;
}
.purchase-section.open {
    max-height: 100%;
    opacity: 1;
}
.purchase-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.purchase-section table, .purchase-section th, .purchase-section td {
    border: 1px solid #ccc;
    padding: 4px;
}
.purchase-section th {
    background-color: #f0f0f0;
    text-align: center;
}
.purchase-section td {
    text-align: center;
}
.purchase-button {
    background-color: #0073b6;
    color: white;
    border: none;
    padding: 6px 25px;
    cursor: pointer;
    border-radius: 1px;
}
.program-info {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.program-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    
}

.program-info h4 {
    font-size: 18px;
    color: #0073b6;
    margin-bottom: 15px;
}

.program-info h5 {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.program-info ol {
    padding-left: 20px;
    margin: 0;
}

.program-info ol li {
    margin-bottom: 8px;
}

.program-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-info .links {
    display: flex;
    gap: 20px;
}

.program-info a {
    color: #0073b6;
    text-decoration: none;
    transition: color 0.3s;
}

.program-info a:hover {
    color: #005a9e;
}

.info-alert {
    margin-top: 20px;
    padding: 10px 0; /* 調整上下內距 */
    text-align: center; /* 文字置中 */
    font-size: 16px; /* 文字大小 */
    font-weight: bold;
    color: #333; /* 字體顏色 */
    border: none; /* 移除邊框 */
}

.info-alert p {
    margin: 0 0 10px 0; /* 調整內文與連結的間距 */
    font-size: 16px; /* 根據需求調整文字大小 */
}

.info-alert .links {
    display: flex;
    justify-content: center; /* 水平置中 */
    gap: 15px; /* 分流連結之間的距離 */
}

.info-alert .links a {
    padding: 5px 10px;
    border: 1px solid #007bff; /* 加上簡單的邊框 */
    color: #007bff; /* 字體顏色 */
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px; /* 連結文字大小 */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.info-alert .links a:hover {
    background-color: #007bff; /* 滑鼠懸停時的背景色 */
    color: white; /* 滑鼠懸停時的文字顏色 */
}



.update-log h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.update-log ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.update-log ul li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
    font-size: 15px;
}

.update-log ul li strong {
    font-weight: bold;
    color: #0073b6;
}

.update-log ul li em {
    font-size: 14px;
    color: #999;
}



.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px; /* 和 navbar 一樣的寬度 */
    margin: 20px auto;
    position: relative;
}

.progress-line {
    position: absolute;
    top: 25%; /* 確保進度線與圓圈垂直居中 */
    left: 15px; /* 與圓圈對齊 */
    right: 15px; /* 與圓圈對齊 */
    height: 4px;
    background-color: #ccc;
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2; /* 確保圓圈在進度線上層 */
}

.progress-step .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.progress-step.completed .circle,
.progress-step.active .circle {
    background: linear-gradient(to right, #4b6cb7, #182848);
}

.progress-step.completed .label,
.progress-step.active .label {
    font-weight: bold;
    color: #000;
}

/* 新增處理藍色進度線的樣式 */
.progress-step.completed + .progress-step::before {
    content: "";
    position: absolute;
    top: 25%; /* 調整為圓圈中間 */
    left: -385%;
    width: 400%;
    height: 4px;
    background: linear-gradient(to right, #4b6cb7, #182848);
    z-index: -1; /* 確保進度線在圓圈下方 */
    transform: translateX(15px); /* 將進度線對齊圓圈 */
}
.progress-step.completed{
    z-index: 0;
}

.progress-step .label {
    margin-top: 10px; /* 與圓圈有些距離 */
    font-size: 14px;
    color: #555;
}

.main-container {
    max-width: 1000px;
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
}

.event-info {
    display: flex;
    align-items: center;
    gap: 20px; /* 圖片與右側內容的間距 */
    padding: 20px;
    background-color: #fff;
    max-width: 1100px;
    width: 100%;
}

.event-image {
    width: 150px; /* 圖片寬度 */
    height: auto;
}

.event-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1; /* 讓右側內容填滿剩餘空間 */
}

.event-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
    text-align: left; /* 確保文字靠左對齊 */
    align-self: flex-start; /* 確保標題在容器中靠左 */
}
.event-title2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
    text-align: left; /* 確保文字靠左對齊 */
    align-self: flex-start; /* 確保標題在容器中靠左 */
}
.event-title3 {
    font-size: 13px;
    margin: 0 0 10px 0;
    color: #333;
    text-align: left; /* 確保文字靠左對齊 */
    align-self: flex-start; /* 確保標題在容器中靠左 */
}

.event-time-place {
    display: flex;
    align-items: center; /* 確保垂直對齊 */
    gap: 10px; /* 時間與地點之間的間距 */
    font-size: 14px;
}

.event-time, .event-place {
    display: flex;
    align-items: center;
    gap: 5px; /* 圖標與文字的間距 */
}

.event-icon {
    width: 16px; /* 小圖標的寬度 */
    height: 16px; /* 小圖標的高度 */
    display: block;
}

.event-select p {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
}

.event-select select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.event-select select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}


.form-container {
    padding: 18px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    max-width: 1100px;
    width: 100%;
}

.form-container h2 {
    font-size: 18px;
    color: #007bff;
    margin-bottom: 10px;
}

.form-container h3 {
    font-size: 15px;
    font-weight: initial;
    color: #333;
    margin-bottom: 15px;
}

.form-container p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.member-input {
    width: 25%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}

.member-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.submit-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}

.divider-horizontal {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 10px 0;
}
.divider-vertical {
    width: 1px;
    background-color: #ccc;
    height: auto;
    margin: 0 10px;
}

.seat-selection-container {
    width: 100%;
    max-width: 1100px; /* 和 navbar 一樣的寬度 */
    margin: 20px auto;
    position: relative;
    display: flex;
    /* gap: 20px; */
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.venue-map {
    flex: 1;
    max-width: 50%; /* 限制最大寬度為容器的一半 */
    position: sticky; /* 使用 sticky 來保持位置 */
    top: 10px; /* 這裡設定距離上方的距離，根據需要調整 */
    height: calc(100vh - 20px); /* 保持和視窗高度一致 */
    overflow: hidden;
}

.venue-map img {
    width: 100%;
    height: auto;
    display: block;
    padding: 10px;
}

.seat-options {
    flex: 1;
    border-radius: 5px;
    padding: 20px;
    max-width: 50%; /* 限制最大寬度為容器的一半 */
}

.seat-selection-method {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 1px;
    overflow: hidden; /* 確保邊角圓滑 */
}

.selection-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px; /* 與按鈕區域之間的間距 */
    color: #333;
}

.seat-selection-method button {
    flex: 1;
    padding: 15px 20px;
    border: none; /* 移除邊框 */
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.seat-selection-method button:hover {
    background-color: #e0e0e0;
}

.seat-selection-method .active {
    background-color: #0073b6;
    color: white;
    font-weight: bold;
}

.seat-categories {
    margin-top: 5px;
}

.seat-categories h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.category {
    border-radius: 5px;
}

.category h4 {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 2px;
    color: #333; /* 改為黑色 */
    background-color: #e6e6e6;
    padding: 5px;
}

.category h4::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 3px;
    background-color: var(--color, #000); /* 使用變數來動態設置顏色 */
}

.seat-item {
    display: flex;
    align-items: center;
    padding: 2px 10px;
    padding-left: 25px; /* 讓 seat-item 向右移 */
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #ffffff; /* 設置背景為白色 */
    font-size: 14px; /* 與 h4 字體大小一致 */
}

.seat-item:hover {
    background-color: #e9ecef;
}

.seat-item::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 3px;
    background-color: var(--color, #000); /* 方塊的顏色 */
}

/* 各區塊的顏色 */
.category:nth-child(2) h4::before,
.category:nth-child(2) .seat-item::before {
    background-color: #05134b; 
}

.category:nth-child(3) h4::before,
.category:nth-child(3) .seat-item::before {
    background-color: #0943aa; 
}

.category:nth-child(4) h4::before,
.category:nth-child(4) .seat-item::before {
    background-color: #00a0da;
}

.category:nth-child(5) h4::before,
.category:nth-child(5) .seat-item::before {
    background-color: #4178af;
}

.category:nth-child(6) h4::before,
.category:nth-child(6) .seat-item::before {
    background-color: #a2c0e0;
}

.category:nth-child(7) h4::before,
.category:nth-child(7) .seat-item::before {
    background-color: #9a86bd;
}

.category:nth-child(8) h4::before,
.category:nth-child(8) .seat-item::before {
    background-color: #dda7ca;
}

.category:nth-child(9) h4::before,
.category:nth-child(9) .seat-item::before {
    background-color: #b776af;
}

.category:nth-child(10) h4::before,
.category:nth-child(10) .seat-item::before {
    background-color: #e664a2;
}

.category:nth-child(11) h4::before,
.category:nth-child(11) .seat-item::before {
    background-color: #b776af;
}

.category:nth-child(12) h4::before,
.category:nth-child(12) .seat-item::before {
    background-color: #e664a2;
}

.category:nth-child(13) h4::before,
.category:nth-child(13) .seat-item::before {
    background-color: #74c298;
}

.category:nth-child(14) h4::before,
.category:nth-child(14) .seat-item::before {
    background-color: #c3bb97;
}

.category:nth-child(15) h4::before,
.category:nth-child(15) .seat-item::before {
    background-color: #cadc54;
}

.status {
    color: red; /* 設置 "熱賣中" 為紅色 */
    font-weight: bold;
    margin-left: 5px; /* 與前面的文字有些距離 */
}


.loading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-ring {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 20px;
}

.segment {
    width: 12px;
    height: 20px;
    background-color: #0073b6;
    position: absolute;
    animation: loading-animation 1.2s linear infinite;
    opacity: 0.3;
}

/* 每個 segment 的位置設置 */
.segment:nth-child(1) { transform: rotate(0deg) translate(30px); animation-delay: 0s; }
.segment:nth-child(2) { transform: rotate(45deg) translate(30px); animation-delay: 0.15s; }
.segment:nth-child(3) { transform: rotate(90deg) translate(30px); animation-delay: 0.3s; }
.segment:nth-child(4) { transform: rotate(135deg) translate(30px); animation-delay: 0.45s; }
.segment:nth-child(5) { transform: rotate(180deg) translate(30px); animation-delay: 0.6s; }
.segment:nth-child(6) { transform: rotate(225deg) translate(30px); animation-delay: 0.75s; }
.segment:nth-child(7) { transform: rotate(270deg) translate(30px); animation-delay: 0.9s; }
.segment:nth-child(8) { transform: rotate(315deg) translate(30px); animation-delay: 1.05s; }

@keyframes loading-animation {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.loading-container p {
    font-size: 14px;
    text-align: center;
    color: #333;
}

.ticket-selection {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.selected-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* 設定項目之間的間距 */
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}
.selected-info2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* 設定項目之間的間距 */
}

.selected-seat-container {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 3px;
}

.color-box {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.separator {
    width: 1px;
    height: 20px;
    background-color: #666;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 15px;
}

.ticket-table th, .ticket-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.ticket-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}

/* 讓票價顯示藍色 */
.ticket-price {
    color: #0073b6;
    font-weight: bold;
}

/* 調整 select 寬度 */
.quantity-select {
    width: 80%; /* 調整寬度以適應表格 */
    padding: 5px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.captcha-section {
    display: flex;
    align-items: center;
    justify-content: center; /* 整個區域水平居中 */
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

.captcha-image {
    width: 120px;
    height: 100px;
    border: 1px solid #ddd;
    margin-right: 5px; /* 確保圖片和輸入框有間距 */
}

.captcha-input-container {
    display: flex;
    flex-direction: column;
    height: 100px;
}

.captcha-input {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 250px; /* 固定寬度 */
    margin-bottom: 5px;
    height : 30%;
}

.captcha-instruction {
    color: red;
    line-height: 1.5;
    margin: 0;
    height : 40%;
}




.terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
    font-size: 14px;
}

.terms label {
    font-size: 15px;
    line-height: 1.5;
}

.terms a {
    color: #0073b6;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.button-container {
    display: flex;
    justify-content: center; /* 將按鈕容器置中 */
    gap: 15px; /* 按鈕之間的間距 */
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 2px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.cancel-btn {
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    transition: background-color 0.3s, color 0.3s;
}

.cancel-btn:hover {
    background-color: #f0f0f0;
}

.confirm-btn {
    background-color: green;
    color: white;
    border: 1px solid green;
    transition: background-color 0.3s, color 0.3s;
}

.confirm-btn:hover {
    background-color: #005700;
}

.success-message {
    text-align: center;
    margin-top: 50px;
    min-height: 500px;
}

/* .success-message div {
    color :#ca0606;
} */

.success-message h2 {
    font-size: 24px;
    color: green;
    margin-bottom: 20px;
}

.retry-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0073b6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 50px;
}

.retry-button:hover {
    background-color: #005a9e;
}

/* 標準最佳紀錄顯示 */
.best-record {
    
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

/* 破紀錄時變成金色 */
.best-record.gold {
    color: #ffd209; /* 金色 */
}

/* 未破紀錄時變成灰色 */
.best-record.gray {
    color: #808080; /* 灰色 */
}

/* 平板 (螢幕寬度在768px到1024px之間) */
@media (max-width: 1024px) {
body{
    overflow-x: hidden; /* 確保頁面不會水平滾動 */
    font-size: clamp(12px, 3vw, 16px);
    input,
    textarea,
    select {
        font-size: 16px; /* 避免 iOS 自動放大輸入框 */
    }
}
.navbar-container {
    height: 200px;
    padding: 10px;
}
.navbar {
    align-items: center;
    max-width: 100%;
    font-size: 25px;
    margin-left: 20px;
    margin-right: 20px;
}

.content, .banner, .seat-selection-container, .progress-container {
    max-width: 90%; /* 調整為較小的最大寬度 */
    padding: 10px;
}
.content_ads {
        width: 90%;
        min-width: 728px;
        max-width: 900px;
    }

.footer-content {
    max-width: 70%;
}

.button-container {
    flex-direction: column; /* 按鈕垂直排列 */
    align-items: center;
}

.banner {
    font-size: 50px;
    height: 600px;
    max-width: 100%;
}
.banner a{
    font-size: 30px;
}
.version-info {
    font-size: 25px;
}

.countdown-input {
    margin: 30px;
    padding: 5px 10px;
    width: 300px;
    font-size: 30px;
}
.banner button {
    font-size: 30px;
}
.navbar .nav-links {
    gap: 10px; /* 減少項目之間的間距 */
}

.progress-step .circle {
    width: 25px;
    height: 25px;
    font-size: 12px;
}

.ticket-table th, .ticket-table td {
    font-size: 14px;
}

.button-container .btn {
    width: 100%; /* 按鈕填滿容器 */
}

.buttons {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 每行顯示兩個按鈕 */
    gap: 10px; /* 設置按鈕之間的間距 */
    margin: 10px 0;
}

.buttons button {
    width: 100%; /* 確保按鈕佔滿單元格 */
    font-size: 30px;
    height: 150px;
}

.alert {
    font-size: 20px;
}
.tabs {
    font-size: 20px;
}
.program-info {
    font-size: 20px;
}

.purchase-section {
    display: flex;
    flex-direction: column;
    padding: 10px;
    font-size: 30px;
}

.purchase-section table {
    display: block; /* 將table變成block來適應行動裝置 */
    width: 100%;
    justify-content: center;
    border: none;
}

.purchase-section table thead {
    display: none; /* 隱藏表頭 */
}

.purchase-section table tbody {
    display: flex;
    flex-direction: column;
    
    border: none;
}

.purchase-section table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 0px;
    border-radius: 5px;
    max-width: 100%;
    border: 1px solid #ccc;
}

.purchase-section table tbody tr td {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    border: none;
}

.purchase-section table tbody tr td:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

.purchase-button {
    width: 20%;
    padding: 10px;
    margin: 10px 0;
    background-color: #0073b6;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 25px;
}

.purchase-button:hover {
    background-color: #005a9e;
}

.seat-selection-container {
    display: flex;
    flex-direction: column; /* 改為垂直排列 */
    max-width: 100%;
    margin: 10px auto;
}
.form-container{
    max-width: 95%;
}
.form-container h2 {
    font-size: 30px;
}

.form-container h3 {
    font-size: 25px;
}

.form-container p {
    font-size: 25px;
}
.progress-container {
    margin-bottom: 20px; /* 加一些底部間距 */
    width: 90%; /* 確保佔滿整個寬度 */
    max-width: 100%;
}
.progress-line {
    height: 5px;
    top: 35%;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2; /* 確保圓圈在進度線上層 */
}

.progress-step .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.progress-step.completed .circle,
.progress-step.active .circle {
    background: linear-gradient(to right, #4b6cb7, #182848);
}

.progress-step.completed .label,
.progress-step.active .label {
    font-size: 30px;
}

.progress-step.completed + .progress-step::before {
    display: none;
}

.progress-step .label {
    font-size: 30px;
}

.event-image {
    display: none;
}
.event-info{
    margin: 10px auto;
    max-width: 95%;
    overflow-x: hidden;
}
.event-title, .event-title2{
    font-size: 35px;
}
.event-title3, .event-select select{
    font-size: 30px;
}
.event-time-place{
    display: block;
    font-size: 30px;
}
.event-place, .event-time{
    margin-bottom: 10px;
}
.event-icon{
    width: 25px;
    height: 25px;
}
.venue-map {
    position: relative; /* 不再使用 sticky，讓它隨頁面正常滾動 */
    top: 0;
    max-width: 100%; /* 占滿整個寬度 */
    margin-bottom: 20px; /* 增加底部間距 */
    height: auto; /* 高度自適應內容 */
}
.venue-map img {
    width: 95%;
}

.seat-options {
    max-width: 100%; /* 占滿整個寬度 */
    margin-bottom: 20px; /* 增加底部間距 */
    font-size: 25px;
}
.seat-selection-method button {
    font-size: 30px;
    height: 100px;
}
.selection-title {
    font-size: 30px;
}
.seat-categories h3 {
    font-size: 30px;
}
.category h4 {
    font-size: 30px;
}
.seat-item {
    font-size: 30px;
}

.ticket-selection {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
margin-top: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center; /* 中心對齊所有元素 */
max-height: 100%;
}

.selected-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* 設定項目之間的間距 */
    font-size: 40px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.separator {
    display: none; /* 隱藏分隔線 */
}

.selected-seat-container {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
}

.color-box {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.separator {
    width: 1px;
    height: 20px;
    background-color: #666;
    margin: 10px 0; /* 增加間距 */
}
.pre-form{
    max-width: 100%;
}
form{
    max-width: 80%;
}
.ticket-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 40px;
}

.ticket-table thead {
    display: none; /* 隱藏表頭 */
}

.ticket-table tbody {
    display: flex;
    flex-direction: column; /* 垂直排列元素 */
    gap: 10px; /* 設置每個票價區塊之間的間距 */
    border : 1px solid #ccc;
    height: 200px;
}

.ticket-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: none;
    border-radius: 5px;
    
}

.ticket-table th, .ticket-table td {
    border: none;
    padding: 8px;
    text-align: center;
    font-size: 40px;
}

.ticket-price {
    color: #0073b6;
    font-weight: bold;
}

.quantity-select {
   
    padding: 8px;
    font-size: 40px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-top: 10px;
}

.captcha-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* 整個區域水平居中 */
    gap: 10px;
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 40px;
}

.captcha-image {
    width: 300px;
    height: 180px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.captcha-input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.captcha-input {
    padding: 8px;
    font-size: 40px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 300px; /* 固定寬度 */
    margin-bottom: 5px;
    text-align: center; /* 文字置中 */
}
.captcha-instruction {
    font-size: 30px;
    margin: 10px;
}

.terms {
    display: flex;
    align-items: center; /* 垂直置中 */
    gap: 10px;
    margin-top: 100px; /* 增加頂部間距 */
    margin-bottom: 20px; /* 增加底部間距 */
    text-align: left;
    width: 100%; /* 確保佔滿寬度 */
}

.terms label {
    font-size: 30px;
    line-height: 1.5;
    flex: 1; /* 讓標籤佔滿剩餘空間 */
}

.terms input[type="checkbox"] {
    transform: scale(3); /* 調整勾選框的大小 */
    margin-right: 10px; /* 確保和標籤有間距 */
}


.button-container {
    display: flex;
    flex-direction: row; /* 確保按鈕水平排列 */
    justify-content: space-between;
    gap: 15px;
    margin-top: 50px;
    width: 100%; /* 讓按鈕容器佔滿整個寬度 */
}

.btn {
    flex: 0 0 calc(50% - 15px); /* 每個按鈕佔一半的寬度並扣除 gap 的部分 */
    padding: 10px 10px;
    font-size: 30px;
    border-radius: 2px;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: center; /* 確保文字置中 */
}
.success-message {
    font-size: 40px;
}
.success-message h2 {
    font-size: 50px;
}
.retry-button {
    padding: 10px 20px;
    font-size: 30px;
    
}

.loading-container p {
    font-size: 30px;
}

.loading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-ring {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 20px;
}

.segment {
    width: 15px;
    height: 20px;
    background-color: #0073b6;
    position: absolute;
    animation: loading-animation 1.2s linear infinite;
    opacity: 0.3;
}
.program-info p{
    font-size: 18px;
}
}

@media (max-width: 768px) {
body{
    overflow-x: hidden; /* 確保頁面不會水平滾動 */
    font-size: clamp(12px, 3vw, 16px);
    input,
    textarea,
    select {
        font-size: 16px; /* 避免 iOS 自動放大輸入框 */
    }
}
.navbar-container {
    height: 100px;
    padding: 10px;
}
.navbar {
    align-items: center;
    max-width: 100%;
    font-size: 15px;
    margin-left: 20px;
    margin-right: 20px;
}

.content, .banner, .seat-selection-container, .progress-container {
    max-width: 90%; /* 調整為較小的最大寬度 */
    padding: 10px;
}
.content_ads {
        width: 100%;
        min-width: 320px;
        max-width: 100%;
        padding: 5px;
    }

.footer-content {
    max-width: 70%;
}

.button-container {
    flex-direction: column; /* 按鈕垂直排列 */
    align-items: center;
}

.banner {
    font-size: 25px;
    height: 450px;
    max-width: 100%;
}
.banner a{
    font-size: 20px;
}
.version-info {
    font-size: 20px;
}

.countdown-input {
    margin: 30px;
    padding: 5px 10px;
    width: 150px;
    font-size: 20px;
}
.banner button {
    font-size: 20px;
}
.navbar .nav-links {
    gap: 10px; /* 減少項目之間的間距 */
}

.progress-step .circle {
    width: 25px;
    height: 25px;
    font-size: 12px;
}

.ticket-table th, .ticket-table td {
    font-size: 14px;
}

.button-container .btn {
    width: 100%; /* 按鈕填滿容器 */
}

.buttons {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 每行顯示兩個按鈕 */
    gap: 10px; /* 設置按鈕之間的間距 */
    margin: 10px 0;
}

.buttons button {
    width: 100%; /* 確保按鈕佔滿單元格 */
    font-size: 20px;
    height: 90px;
}

.alert {
    font-size: 15px;
}
.tabs {
    display: block;
    font-size: 15px;
}
.program-info {
    font-size: 20px;
}

.purchase-section {
    display: flex;
    flex-direction: column;
    padding: 10px;
    font-size: 20px;
}

.purchase-section table {
    display: block; /* 將table變成block來適應行動裝置 */
    width: 100%;
    justify-content: center;
    border: none;
}

.purchase-section table thead {
    display: none; /* 隱藏表頭 */
}

.purchase-section table tbody {
    display: flex;
    flex-direction: column;
    
    border: none;
}

.purchase-section table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 0px;
    border-radius: 5px;
    max-width: 100%;
    border: 1px solid #ccc;
}

.purchase-section table tbody tr td {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    border: none;
}

.purchase-section table tbody tr td:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

.purchase-button {
    width: 50%;
    padding: 10px;
    margin: 10px 0;
    background-color: #0073b6;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

.purchase-button:hover {
    background-color: #005a9e;
}

.seat-selection-container {
    display: flex;
    flex-direction: column; /* 改為垂直排列 */
    max-width: 100%;
    margin: 10px auto;
}
.form-container{
    max-width: 95%;
}
.form-container h2 {
    font-size: 20px;
}

.form-container h3 {
    font-size: 20px;
}

.form-container p {
    font-size: 20px;
}
.member-input {
    width: 50%;
}
.progress-container {
    margin-bottom: 20px; /* 加一些底部間距 */
    width: 90%; /* 確保佔滿整個寬度 */
    max-width: 100%;
}
.progress-line {
    height: 2px;
    top: 25%;

}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2; /* 確保圓圈在進度線上層 */
}

.progress-step .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.progress-step.completed .circle,
.progress-step.active .circle {
    background: linear-gradient(to right, #4b6cb7, #182848);
}

.progress-step.completed .label,
.progress-step.active .label {
    font-size: 15px;
}

.progress-step.completed + .progress-step::before {
    display: none;
}

.progress-step .label {
    font-size: 15px;
}

.event-image {
    display: none;
}
.event-info{
    max-width: 95%;
    overflow-x: hidden;
}

.event-title, .event-title2{
    font-size: 20px;
}
.event-title3, .event-select select{
    font-size: 18px;
}
.event-time-place{
    display: block;
    font-size: 20px;
}
.event-place, .event-time{
    margin-bottom: 10px;
}
.event-icon{
    width: 25px;
    height: 25px;
}
.venue-map {
    position: relative; /* 不再使用 sticky，讓它隨頁面正常滾動 */
    top: 0;
    max-width: 100%; /* 占滿整個寬度 */
    margin-bottom: 20px; /* 增加底部間距 */
    height: auto; /* 高度自適應內容 */
}
.venue-map img {
    width: 95%;
}

.seat-options {
    max-width: 100%; /* 占滿整個寬度 */
    margin-bottom: 20px; /* 增加底部間距 */
    font-size: 20px;
}
.seat-selection-method button {
    font-size: 20px;
    height: 60px;
}
.selection-title {
    font-size: 20px;
}
.seat-categories h3 {
    font-size: 20px;
}
.category h4 {
    font-size: 20px;
}
.seat-item {
    font-size: 18px;
}

.ticket-selection {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center; /* 中心對齊所有元素 */
    max-height: 100%;
}

.selected-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* 設定項目之間的間距 */
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.separator {
    display: none; /* 隱藏分隔線 */
}

.selected-seat-container {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
}

.color-box {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.separator {
    width: 1px;
    height: 20px;
    background-color: #666;
    margin: 10px 0; /* 增加間距 */
}
.pre-form{
    max-width: 100%;
}
form{
    max-width: 80%;
}
.ticket-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 20px;
}

.ticket-table thead {
    display: none; /* 隱藏表頭 */
}

.ticket-table tbody {
    display: flex;
    flex-direction: column; /* 垂直排列元素 */
    gap: 10px; /* 設置每個票價區塊之間的間距 */
    border : 1px solid #ccc;
    height: 150px;
}

.ticket-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: none;
    border-radius: 5px;
    
}

.ticket-table th, .ticket-table td {
    border: none;
    padding: 8px;
    text-align: center;
    font-size: 20px;
}

.ticket-price {
    color: #0073b6;
    font-weight: bold;
}

.quantity-select {
   
    padding: 8px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-top: 10px;
}

.captcha-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* 整個區域水平居中 */
    gap: 10px;
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 20px;
}

.captcha-image {
    width: 150px;
    height: 100px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.captcha-input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.captcha-input {
    padding: 8px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 300px; /* 固定寬度 */
    margin-bottom: 5px;
    text-align: center; /* 文字置中 */
}
.captcha-instruction {
    font-size: 18px;
    margin: 10px;
}

.terms {
    display: flex;
    align-items: center; /* 垂直置中 */
    gap: 10px;
    margin-top: 100px; /* 增加頂部間距 */
    margin-bottom: 20px; /* 增加底部間距 */
    text-align: left;
    width: 100%; /* 確保佔滿寬度 */
}

.terms label {
    font-size: 18px;
    line-height: 1.5;
    flex: 1; /* 讓標籤佔滿剩餘空間 */
}

.terms input[type="checkbox"] {
    transform: scale(1); /* 調整勾選框的大小 */
    margin-right: 10px; /* 確保和標籤有間距 */
}


.button-container {
    display: flex;
    flex-direction: row; /* 確保按鈕水平排列 */
    justify-content: space-between;
    gap: 15px;
    margin-top: 50px;
    width: 100%; /* 讓按鈕容器佔滿整個寬度 */
}

.btn {
    flex: 0 0 calc(50% - 15px); /* 每個按鈕佔一半的寬度並扣除 gap 的部分 */
    padding: 10px 10px;
    font-size: 15px;
    border-radius: 2px;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: center; /* 確保文字置中 */
}
.success-message {
    font-size: 40px;
}
.success-message h2 {
    font-size: 50px;
}
.retry-button {
    padding: 10px 20px;
    font-size: 30px;
    
}

.loading-container p {
    font-size: 30px;
}

.loading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-ring {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 20px;
}

.segment {
    width: 15px;
    height: 20px;
    background-color: #0073b6;
    position: absolute;
    animation: loading-animation 1.2s linear infinite;
    opacity: 0.3;
}
.program-info p{
    font-size: 18px;
}
}