.select-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    color: #6AB0D3;
}

.select-container span {
    font-size: 1rem;
    min-width: 7.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-select {
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 5px 30px 5px 10px;
    border-radius: 5px;
    border: 1px solid #9cc8e3;
    cursor: pointer;
    appearance: none;
    height: 2.5rem;
    width: 10rem;
}

.custom-select:hover {
    border-color: #6AB0D3;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.custom-select:focus {
    outline: none;
    border-color: #6AB0D3;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.selectBox {
    position: relative;
}

.selectBox:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: calc(5px * 1.414) solid #6ab0d3;
    pointer-events: none;
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6AB0D3;
    font-size: 0.8em;
    display: none;
}

.photo {
    width: 210px;
    aspect-ratio: 1;
    border-radius: 100%;
    margin-left: 1%;
    object-fit: cover;
}

.name-bg {
    background: rgb(168 195 211);
    border-radius: 5px;
    min-width: 9rem;
    text-align: center;
    line-height: 2;
}

.name {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    line-height: 2;
}

.tourism_detail {
    display: flex;
    gap: clamp(8px, 3vw, 20px);
}

.name-area {
    display: flex;
    align-items: center;
    margin: 10px 0px;
    gap: 15px;
}

.language {
    display: flex;
    flex-wrap: wrap;
}

.common {
    display: flex;
    align-items: center;
    margin: 10px 0px;
    flex-wrap: wrap;
    line-height: 1.5;
}

.flag {
    height: 40px;
    margin-left: 1%;
}

.lang-icon {
    width: 5%;
    /* height: 5%; */
    margin-left: 1px;
    min-width: 45px;
    border: 1px solid #eaeaf7;
    border-radius: 5px;
    transition: ease 0.3s all;
}

.lang-icon:hover {
    transform: scale(1.2);
}

.area {
    color: blue;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.specific-price {
    font-size: 16px;
}

.star {
    width: 20px;
    height: 20px;
}

.comment {
    color: rgba(125, 169, 197, 1);
    margin-left: 1%;
}

.guide-title {
    color: rgba(125, 169, 197, 1);
    display: flex;
    align-items: center;
    margin: 10px 0px;
    word-wrap: normal;
    font-size: 16px;
}

@media (max-width: 991px) {
    .tourism_detail {
        flex-direction: column;
    }

    .guide-title {
        justify-content: center;
        text-align: center;
    }

    .common {
        justify-content: center;
    }

    .area {
        justify-content: center;
        display: flex;
    }

    .name-area {
        justify-content: center;
        flex-direction: column;
    }

    .language {
        justify-content: center;
    }

    .specific-price {
        justify-content: center;
        display: flex;
        margin: 10px 0px;
        text-align: center;
    }

    .photo {
        margin: 0 auto 20px auto;
        /* 移除左右 margin 並設定圖片置中 */
        order: -1;
        /* 這裡強制將圖片移到最上方 */
    }
}