@charset "UTF-8";
/* @import "reset.min.css"; */
/* @import "../font/titillium-web/titillium.css"; */
*, *:after, *:before {
    box-sizing: border-box;
}


/* @font-face {
    font-family: 'Helvetica Neue';
    src: url('../font/helvetica-neue/regular/HelveticaNeueRegular.eot');
    src: url('../font/helvetica-neue/regular/HelveticaNeueRegular.eot?#iefix') format('embedded-opentype'),
    url('../font/helvetica-neue/regular/HelveticaNeueRegular.woff') format('woff'),
    url('../font/helvetica-neue/regular/HelveticaNeueRegular.ttf') format('truetype'),
    url('../font/helvetica-neue/regular/HelveticaNeueRegular.svg#HelveticaNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../font/helvetica-neue/bold/HelveticaNeueBold.eot');
    src: url('../font/helvetica-neue/bold/HelveticaNeueBold.eot?#iefix') format('embedded-opentype'),
    url('../font/helvetica-neue/bold/HelveticaNeueBold.woff') format('woff'),
    url('../font/helvetica-neue/bold/HelveticaNeueBold.ttf') format('truetype'),
    url('../font/helvetica-neue/bold/HelveticaNeueBold.svg#HelveticaNeueBold') format('svg');
    font-weight: 700;
    font-style: normal;
} */


body, html {
    margin: 0px;
    width: 100%;
    height: 100%;
    position: relative;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}


.share_btn_container {
    padding: 15px;
}


.bg-img {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("../images/bg/1.jpg") center center no-repeat;
    /* background-size: cover; */
}



.highlight {
    position: absolute;
    /* top: 50%;
    transform: translate(0, -50%); */
    width: 100%;
    background-color: #f44336;
    border-top: 1px solid #39f436;
    border-bottom: 1px solid #3652f4;
    font-size: 24px;
    overflow: hidden;
}

.highlight-list {
    position: absolute;
    width: 100%;
}

/* date */
.date-selector {
    /*

     */
    perspective: 2000px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 400px;
    height: 300px;
    margin: 30px auto;
}

.date-selector > div {
    flex: 1;
}

.date-selector .select-wrap {
    font-size: 18px;
}

.date-selector .highlight {
    font-size: 20px;
}


.page-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.page-headline {
    font-size: 45px;
    font-weight: 300;
    color: white;
    text-align: center;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

@media (max-width: 768px) {
    .page-headline {
        font-size: 35px;
    }
}

.btn-container {
    text-align: center;
}


.submit-btn {
    border: 0;
    outline: 0;
    padding: 10px 35px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 20px;
    border-radius: 0;
    box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.2);
    transition: .5s all;
    text-transform: uppercase;
    background: rgb(102, 8, 116);
    color: white;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}


.submit-btn:hover {
    cursor: pointer;
    background: #29343e;
}


.result-container {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #000;
}

.result-container.show {
    display: block;
}

.result-close-btn {
    background:rgb(102, 8, 116);
    outline: none;
    border: none;
    color: white;
    padding: 5px 10px 7px 10px;
    text-align: center;
    font-size: 15px;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    cursor: pointer;
}


.result-btn-container {
    text-align: right;
    color: white;
    font-size: 12px;
}

.result-btn-container a {
    color: white;
    text-decoration: none;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

.d-none {
    display: none !important;
}


/* .result-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
} */
.result-image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    background-color: #000;
}

.result-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.image-overlay {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    padding: 15px 20px;
    /* background: rgba(0, 0, 0, 0.7); */
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.result-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.view-full-image,
.more-info {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-full-image:hover,
.more-info:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.result-date {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 16px;
    margin-top: 15px;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

.result-title {
    font-size: 25px;
    font-weight: 700;
    margin: 15px 0;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

.result-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
}

.date-selector > div {
    /*
     border-top: 1px solid rgba(255, 255, 255, 0.25);
     border-bottom: 1px solid rgba(255, 255, 255, 0.25);
     */
}

.select_container {
    max-width: 550px;
    margin: auto;
    display: flex;
    padding: 35px 0;
    align-items: center;
    align-content: space-between;
}

@media (max-width: 600px) {
    .select_container {
        display: block;
    }
}


.custom-select {
    position: relative;
    margin: 10px;
    width: calc(100% - 20px);
}

.chosen-value {
    width: 100%;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 1);
    border: 0;
    transition: .3s ease-in-out;
    text-align: center;
    outline: 0;
    position: relative;
    z-index: 100;
}

.value-list {
    position: absolute;
    top: 63px;
    left: 0;
    width: 100%;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    list-style: none;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
    z-index: 100;
    max-height: 320px;
    overflow: auto;
    display: none;
    background-color: white;
}

.chosen-value::-webkit-input-placeholder {
    color: #333;
}

.chosen-value:hover {
    background-color: #FF908B;
    cursor: pointer;
}

.chosen-value:hover::-webkit-input-placeholder {
    color: #333;
}

.chosen-value:focus,
.chosen-value.open {
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
    outline: 0;
    background-color: #FF908B;
    color: #000;
}

.chosen-value:focus::-webkit-input-placeholder,
.chosen-value.open::-webkit-input-placeholder {
    color: #000;
}

.value-list li {
    position: relative;
    background-color: #FAFCFD;
    padding: 13px 20px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    cursor: pointer;
    transition: background-color .3s;
    opacity: 1;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

.value-list li:hover {
    background-color: #FF908B;
}

.image-modal,  .info-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.9);
}

.image-modal-image, .info-modal-image {
    width:100%;
    display: block;
    max-width: 100%;
    height: auto;
}


.image-modal-close, .info-modal-close {
    background: rgb(102, 8, 116);
    outline: none;
    border: none;
    color: white;
    padding: 5px 10px 7px 10px;
    text-align: center;
    font-size: 15px;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    cursor: pointer;
}

.image-modal-close:hover,
.image-modal-close:focus,
.info-modal-close:hover,
.info-modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Message Modal Styles */
.message-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.message-content {
    background: rgba(85, 84, 84, 0.726);
    padding: 5px;
    border-radius: 12px;
    text-align: center;
    width: 85%;
    max-width: 320px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    animation: messagePopIn 0.3s ease-out;
}

@keyframes messagePopIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.message-text {
    font-size: 18px;
    color: rgba(255, 255, 255);
    margin-bottom: 0px;
    font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

.message-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.message-modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* 自定义滚动条样式 */
.result-container::-webkit-scrollbar {
    width: 8px;
}

.result-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.result-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.result-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}


