/* 藏品展示設定: */
/* 藏品展示容器設定 */
.item-container {
    width: 100%;
    display: block;
    float: left;
}

/* 作品名設定 */
.item-title {
    display: block;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid grey;
    font-family: 'cwTeXFangSong', serif;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: #332d2b;
}

/* 作者名設定 */
.item-artist {
    font-weight: 500;
}

/* 作品詳細資訊設定 */
.item-detail {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    text-align: center;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #332d2b;
}

/* VR 展示功能設定(示意用) */
.item-vr {
    margin: auto;
    display: block;
    position: relative;
    text-align: center;
}

/* VR 尺寸及定位(寬固定300px) */
#vr {
    /*width: 300px;*/
    vertical-align: middle;
}

/* VR 箭頭介面設定 */
.arrow {
    display: inline-block;
    opacity: 0.5;
}

.arrow:hover {
    opacity: 1;
}

/* 靜態縮圖展示功能設定 */
.plate-container {
    display: block;
    position: relative;
    z-index: 500;
    float: left;
    overflow: auto;
}