/******************************************

demo-page & exhibitEvent-page & product-page 

                內頁共用樣式

********************************************/

.demo-page,
.exhibitEvent-page,
.product-page {
  position: relative;
}

.page-img {
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
  max-width: 400px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.page-img img {
  width: 100%;
  display: block;
}

.page-time {
  list-style-type: none;
  padding: 0 6px;
  color: var(--lightgray);
}

.page-title {
  font-weight: 600;
  color: #001432;
}

.page-title span {
  color: #ff163c;
  font-size: 16px;
  margin-left: 6px;
}

.page-subtitle {
  color: #999999;
  padding-right: 15px;
}

.page-info {
  color: #001432;
}

.page-list {
  margin-top: 15px;
  list-style-type: none;
  padding: 0 6px;

}

.page-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: #999999;
  margin-right: 10px;
}

.page-txt {
  border-top: 1px dashed var(--lightgray);
  border-bottom: 1px dashed var(--lightgray);
  padding: 20px 0;
  margin-top: 20px;
}

.page-txt p {
  font-size: 16px;
  margin: 0;
}

/*====================================================
# product-page
==================================================== */
.inner-kv.product{
  background-image: url(../img/productkv.jpg);
  height: 210px;
  justify-content: center;
}
.main-tag {
  font-size: 18px;
  color: var(--sub-colorC);
}

.main-tag::before {
  font-family: "bootstrap-icons";
  content: "\F40A";
  vertical-align: middle;
  font-size: 22px;
}

.page-tag {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  color: var(--lightgray);
}

.page-tag li {
  display: inline-block;
  padding-right: 12px;
}

.page-tag li::before {
  font-family: "bootstrap-icons";
  content: "\F40A";
  vertical-align: middle;
}


.stick {
  position: -webkit-sticky;
  position: sticky;
  top: 148px;
}

