@charset "UTF-8";
/* 將大部分標籤的預設樣式重製成以下的內容 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  color: #000;
}

/* 賦予 HTML5 標籤基本的 Display:block ，用於輔助舊的瀏覽器能正常顯示 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* 將 body 也就是整體的文字行高預設成 1 */
body {
  line-height: 1;
}

/* 取消項目列表預設的輔助符號 */
ol,
ul {
  list-style: none;
}

/* 隱藏引用標籤預設的引號(部分瀏覽器有) */
blockquote,
q {
  quotes: none;
}

/* 重置引用標籤的偽元素 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* 將表格初始化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 將連結初始化 */
a {
  text-decoration: none;
}

* {
  position: relative;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.wrap {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #f9f7f3;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.wrap .book {
  width: 50%;
  height: 100%;
  perspective: 600px;
  perspective-origin: center 20%;
  margin: 0 auto;
  vertical-align: baseline;
}
.wrap .book .items {
  position: absolute;
  top: 10%;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0, 0, 0.2, 1);
  vertical-align: baseline;
}
.wrap .book .items .item {
  opacity: 0.95;
}
.wrap .book .items .item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
  vertical-align: middle;
  position: absolute;
}
.wrap .book .items .item:nth-child(5) img {
  position: absolute;
  width: 70%;
  top: 150px;
  left: 50%;
}
.wrap .book .items .item:nth-child(30) a {
  position: absolute;
  right: 15%;
  bottom: -130px;
  width: 200px;
  height: 60px;
}
.wrap .book .items .item:nth-child(32) img {
  position: absolute;
  width: 70%;
  top: 150px;
  left: 50%;
}
.wrap .book .items .item:nth-child(33) a {
  position: absolute;
  right: 39%;
  bottom: -260px;
  width: 120px;
  height: 30px;
}

.visible {
  visibility: visible;
  opacity: 1;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.navbar {
  width: 100%;
  height: 3.8em;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 90;
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
}
.navbar__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row;
}
.navbar__menu__logo {
  display: block;
  width: 7em;
  height: 3.8em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../navbar/icon/logo.svg");
}
.navbar__menu__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row;
  margin: 0 2em;
}
.navbar__menu__list li {
  height: 3.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
}
.navbar__menu__list li a {
  font-size: 1.1em;
  line-height: 1.5em;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0 1em;
  color: #597476;
  cursor: pointer;
}
.navbar__menu__list li a:hover {
  font-weight: 600;
}
.navbar__menu__list .brandList button {
  background-color: transparent;
  border: none;
}
.navbar__menu__list .brandList .brand {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  position: absolute;
  left: 0;
  top: 100%;
  width: 37em;
  z-index: 5;
  background-color: rgba(249, 247, 243, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
          backdrop-filter: saturate(180%) blur(5px);
  visibility: hidden;
}
.navbar__menu__list .brandList .brand__list {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
.navbar__menu__list .brandList .brand__list li {
  width: 100%;
  height: 3em;
}
.navbar__menu__list .brandList .brand__list li a {
  display: block;
  width: 100%;
  padding: 0 1em;
  font-size: 1.1em;
  line-height: 3em;
  font-weight: 600;
  letter-spacing: 1px;
  color: #777;
  text-align: left;
}
.navbar__menu__list .brandList .brand__list li span {
  width: 100%;
  height: 12em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  visibility: hidden;
  transition: all 0.3s;
  opacity: 0;
  z-index: 30;
}
.navbar__menu__list .brandList .brand__list li .img1 {
  position: absolute;
  left: 100%;
  top: 0%;
  background-image: url("../navbar/brand/brand-1.png");
}
.navbar__menu__list .brandList .brand__list li .img2 {
  position: absolute;
  left: 100%;
  top: -3em;
  background-image: url("../navbar/brand/brand-2.png");
}
.navbar__menu__list .brandList .brand__list li .img3 {
  position: absolute;
  left: 100%;
  top: -6em;
  background-image: url("../navbar/brand/brand-3.png");
}
.navbar__menu__list .brandList .brand__list li .img4 {
  position: absolute;
  left: 100%;
  top: -9em;
  background-image: url("../navbar/brand/brand-4.png");
}
.navbar__menu__list .brandList .brand__list li:hover {
  background-color: #f9f7f3;
}
.navbar__menu__list .brandList .brand__list li:hover a {
  color: #597476;
}
.navbar__menu__list .brandList .brand__list li:hover span {
  visibility: visible;
  opacity: 1;
}
.navbar__menu__list .brandList .brand__imgBox {
  width: 50%;
  border-left: 1px solid #dbe4e3;
}
.navbar__menu__list .brandList .brand__imgBox img {
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar__menu__list .brandList:hover .brand {
  visibility: visible;
}
.navbar__menu__list .search {
  margin-left: 1em;
  width: 12em;
}
.navbar__menu__list .search input {
  width: 100%;
  height: 2em;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 0 2em;
  border-radius: 2.5em;
  background-color: #f9f7f3;
  border: none;
}
.navbar__menu__list .search span {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3em;
  height: 1.3em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../navbar/icon/search.svg");
}
.navbar__icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-flow: row;
}
.navbar__icon li {
  margin-left: 2em;
}
.navbar__icon li a {
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.navbar__icon li a:active {
  transform: scale(0.9);
}
.navbar__icon li:nth-child(1) span {
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  background-image: url("../navbar/icon/heart.svg");
}
.navbar__icon li:nth-child(1) span:active {
  transform: scale(0.9);
}
.navbar__icon li:nth-child(2) a {
  background-image: url("../navbar/icon/shop.svg");
}
.navbar__icon li:nth-child(3) a {
  background-image: url("../navbar/icon/login.svg");
}
.navbar__icon .phone-btn span {
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  background-image: url("../navbar/icon/buger.svg");
}
.navbar__icon .phone-btn span:active {
  transform: scale(0.8);
}

@media all and (max-width: 1280px) {
  html {
    font-size: 14px;
  }
}
@media all and (min-width: 960px) {
  .phone-btn {
    display: none;
  }

  .AsideBrand {
    display: none;
  }
}
@media all and (max-width: 960px) {
  .navbar__menu__list {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */