<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* place header start */
.place-header{

    .place-header-info{

        display: flex;
        align-items: center;
        padding:20px 0px;
        
        .info{

            order:2;
            padding-left:10px;

            p{
                margin:0px;
                margin-top:5px;
            }

            .name{
                margin:0px;
                margin-bottom: 5px;
            }
        }

        .place-avatar{
            order:1;
            width:50px;
            height:50px;
            border-radius: 100%;
            overflow: hidden;
            border: 1px solid var(--third-text-color);
            background-image: url("/assets/images/imagebackground.png");
            background-size: cover;
            img{
                width:50px;
                height:50px;
            }
        }

    }

    .description{
        display: flex;
        align-items: center;

        span{
            margin-right:3px;
        }

    }

    

}
/* place header end */

/* place images start */
.place-images{

    width: 100%;
    height:250px;
    overflow: scroll hidden;

    .image-list{
        display: flex;
        justify-content: space-between;
        margin:0px;
        padding:0px;
        list-style: none;
        li{
            display: inline-block;
            img{
                height:250px;
            }
        }
    }

}


.place-images::-webkit-scrollbar {
    height: 3px; /* 設置滾動條的高度 */
}

.place-images::-webkit-scrollbar-track {
    background: var(--main-bg-color); /* 設置滾動條軌道的背景色 */
}

.place-images::-webkit-scrollbar-thumb {
    box-shadow:  0px 0px 5px rgba(255, 20, 147, 0.8);;
    background: #ff1493; /* 設置滾動條的顏色 */
    border-radius: 6px; /* 設置滾動條的圓角 */
}

.place-images::-webkit-scrollbar-thumb:hover {
    background: #555; /* 設置滾動條在懸停時的顏色 */
}
/* place images end */

/* place google map start */
.place-google-map {
    width: 100%;
    height: 30vh;
}
/* place google map end */

/* place namecards start */
.place-namecards{

    margin:0px;
    padding:0px;
    list-style: none;

    .list-item{
        width:100%;
    }
}
/* place namecards end*/</pre></body></html>