/* exhibition 共用 */
._template{
  display: none!important;
}

.exhibition-block{
  padding: 60px 0 0;
}


/* 主頁 */

.exhibition{
  padding: 20px 20px 0 20px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.exhibition__header{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  margin-bottom:25px;
}

/* .exhibition__header-logo{
  margin-bottom:30px;
  width:100px;
} */

.exhibition__header-title{
  text-align: center;
  color: #a5304b;
  font-size: 25px;
}

.exhibition__header-title > span{
  color: #a5304b;
  font-size: 25px;
}

.exhibition__header-title > span:nth-child(1){
  margin-right: 5px;
}

.exhibition__header-title > span:nth-child(2){
  margin-left: 5px;
}

.exhibition__video{
  position:relative;
  margin-bottom:40px;
}

.exhibition__video-player{
  width: 100%;
  position: relative;
}

.exhibition__video-player-image{
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index:1;
}

.exhibition__video-player-button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  -webkit-transform:translate(-50%,-50%);
  width: 50px;
  height: 50px;
  z-index: 1;
}

.hide-video-image{
  display: none;
}

.exhibition__product-list-single{
  margin-bottom:40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.exhibition__product-list-single-image{
  height: 200px;
  width: auto;
  margin-bottom: 30px;
}

.exhibition__product-list-single-title{
  font-size:24px;
  color: #9e203f;
  margin-bottom: 10px;
}

.exhibition__product-list-single-title p{
  font-size:24px;
  color: #9e203f;
  text-align: center;
}

.exhibition__product-list-single-button a img{
  width: 100%;
}

.exhibition__product-list-single-button a{
  color: #9e203f;
  font-size: 12px;
  font-weight: bold;
}

.exhibition__footer-button{
  width: 210px;
  padding-bottom: 15px;
  margin: 0 auto;
}

.exhibition__footer-button a p{
  text-align: center;
  color: #000;
  border-bottom: 1px solid #000;
}

/* .exhibition__copyright{
  font-size: 12px;
  color: #000;
  text-align: center;
} */

/* 主頁 end */

/* 商品詳細頁 */
.exhibition-detail{
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 7px 0;
}

/* .exhibition-detail__single{
  display: none;
}

.exhibition-detail__single._show{
  display: block;
} */

.exhibition-detail__image-block{
  height: 315px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.exhibition-detail__image-block-player-btn{
  position: absolute;
  bottom: 0px;
  right: 50px;
  width: 50px;
  height: 50px;
}

.exhibition-detail__image-block-player-btn img{
  width:100%;
}

.exhibition-detail__image{
  position: absolute;
  top: 0;
  left: 50%;
  transform:translate(-50%,-10%);
  -webkit-transform:translate(-50%,-10%);
  width: 160%;
}

.exhibition-detail__image-cover{
  position: absolute;
  bottom: 0;
  width: 100%;
}

.exhibition-detail__slider-arrow{
  padding: 0 20px;
  margin-bottom: 15px;
  width: 100%;
  position: absolute;
  top: 395px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.exhibition-detail__slider-arrow.hide{
  display: none
}

.exhibition-detail__logo{
  display: block;
  width: 100px;
  margin-bottom: 25px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.exhibition-detail__content{
  padding: 0 20px;
  margin-bottom: 20px;
}

.exhibition-detail__title{
  font-size: 24px;
  font-weight: bold;
  color: #9e203f;
  margin-bottom: 25px;
}

.exhibition-detail__subtitle{
  font-size: 20px;
  color: #0ca19f;
  margin-bottom: 15px;
}

ul.exhibition-detail__description li{
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.exhibition-detail__description-text-block{
  display: none;
}

.exhibition-detail__description-text-block._show{
  display: flex;
}

.exhibition-detail__description-image-block{
  display: none;
}

.exhibition-detail__description-image-block > img{
  width: 100%;
}

.exhibition-detail__description-image-block._show{
  display: block;
}

.exhibition-detail__description-left{
  width: 25px;
  font-size: 15px;
  color: #000;
}

.exhibition-detail__description-right{
  width: calc(100% - 25px);
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}

.exhibition-detail__more-button{
  margin-bottom: 30px;
}

.exhibition-detail__more-button a img{
  width: 100%;
}

.exhibition-detail__footer{
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exhibition-detail__footer-button{
  width: 49%;
}

.exhibition-detail__footer-button a {
  border-bottom: 1px solid #000;
  width: 100%;
  display: block;
}

.exhibition-detail__footer-button a p {
  color: #000;
  text-align: center;
}

/* 燈箱 */
.exhibition__lightbox{
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
}

.exhibition__lightbox._show{
  pointer-events: visible;
  opacity: 1;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out
}

.exhibition__lightbox-inbox{
  width: 80%;
}

.exhibition__lightbox-inbox-close{
  position: absolute;
  top: 50px;
  right: 10px;
  width: 40px;
}

.exhibition__lightbox-inbox-close > img{
  width:100%;
}



.exhibition__lightbox-inbox-image{
  width: 90%;
  display: block;
  margin: 0 auto;
}

.exhibition__lightbox-video{
  width: 100%;
}
