@charset "utf-8";

/* CSS Document */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
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,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  word-wrap: break-word;
  word-break: break-all;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}

body {
  line-height: 30px;
  width: 100%;
  max-width: 1920px;
  margin: 0px auto;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after {
  content: "";
  content: none;
}

q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  font-family: "微軟正黑體";
  box-sizing: border-box;
  line-height: 30px;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: unset;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.section {
  margin: 60px 0;
}

/* header start */

header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  max-width: 1920px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 20px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

header > .logo {
  width: 180px;
}

header > .logo > a {
  display: block;
  width: 100%;
}

nav {
  display: block;
  width: calc(100% - 180px);
}

nav > ul {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

nav > ul > li {
  position: relative;
  font-size: 16px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

nav > ul > li::before {
  content: "/";
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0px 20px;
}

nav > ul > li:first-child::before {
  content: none;
}

nav > ul > li > a {
  display: block;
  width: 100%;
  color: #000;
  font-weight: 600;
  padding: 15px 0px;
}

nav > ul > li.has_sub > .triangle {
  position: absolute;
  top: 15px;
  right: 5px;
  display: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 7.5px 0 7.5px;
  border-color: #007bff transparent transparent transparent;
  cursor: pointer;
  transition: 0.5s;
}

nav > ul > li.has_sub > .triangle.triangle_click {
  transform: rotate(180deg);
}

nav > ul > li > ul {
  position: absolute;
  display: none;
  width: 100%;
  top: 60px;
  left: 23px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

nav > ul > li:hover > ul {
  display: block;
}

nav > ul > li:hover > ul > li {
  transition: 0.5s;
  background: #fff;
}

nav > ul > li:hover > ul > li:hover {
  background: #c0a55c;
  color: #fff;
}

nav > ul > li > ul > li > a {
  display: block;
  width: 100%;
  padding: 2px 0px;
}

.fbbox {
  width: 20px;
  line-height: 0;
  margin: 0px 5px;
}

.linebox {
  width: 20px;
  line-height: 0;
  margin: 0px 5px;
}

.hamburger {
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 0;
  width: 50px;
  cursor: pointer;
  display: none;
}

@media screen and (min-width: 1921px) {
  header {
    left: calc(50% - 960px);
  }
}

@media screen and (max-width: 1200px) {
  header {
    background: #fff;
  }
  nav {
    display: none;
    width: 100%;
  }
  nav > ul > li {
    width: 100%;
    flex-wrap: wrap;
  }
  nav > ul > li::before {
    content: none;
  }
  nav > ul > li > a {
    padding: 5px 0px;
    text-align: center;
    width: 80%;
  }
  nav > ul > li.has_sub > .triangle {
    display: block;
  }
  nav > ul > li:hover > ul {
    display: none;
  }
  nav > ul > li > ul {
    position: relative;
    top: 0px;
    left: 0px;
    box-shadow: none;
  }
  .hamburger {
    display: block;
  }
  .carousel {
    margin-top: 64px;
  }
}

@media screen and (max-width: 500px) {
  header {
    padding: 5px 10px;
  }
  .hamburger {
    right: 15px;
  }
}

/* header end */

/* 主畫面 start */
.main-wrapper {
  margin: auto;
  max-width: 1400px;
}

@media (min-width: 768px) {
  .main-wrapper {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .main-wrapper {
    width: 970px;
  }
}

@media (min-width: 1121px) {
  .main-wrapper {
    width: 1024px;
  }
}

@media (min-width: 1441px) {
  .main-wrapper {
    width: 1400px;
  }
}

@media (min-width: 1680px) {
  .main-wrapper {
    width: 1600px;
  }
}

/* 主畫面 emd */

/* footer 上方圖片 start */

.ft_img {
  display: block;
  width: 100%;
  line-height: 0;
}

/* footer 上方圖片 end */

/* footer start */

footer {
  position: relative;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 100px 10vw 0px;
  padding: 50px 20px;
  border-top: 1px #dddfe4 solid;
}

footer > .ft_item {
  display: block;
}

footer > .ft_item > .ft_title {
  font-weight: 600;
  color: #cab881;
}

footer > .ft_item > ul > li > span {
  font-size: 14px;
  color: #5b6263;
}

@media screen and (max-width: 1024px) {
  footer {
    margin: 50px 5vw 0px;
    padding: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  footer {
    margin: 30px 20px 0px;
    padding: 20px 10px;
  }
}

@media screen and (max-width: 500px) {
  footer {
    padding: 0px 10px;
  }
  footer > .ft_item {
    width: 100%;
    margin: 20px 0px;
  }
}

/* footer end */

/* address start */

address {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0px 10px;
}

address > a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

address > a::after {
  content: "|";
  display: block;
  margin: 0px 10px;
  color: #000;
}

address > p {
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  address > a:nth-child(2)::after {
    content: none;
  }
  address > p {
    width: 100%;
    text-align: center;
  }
}

/* address end */

.top-section {
  margin-top: 30px;
}

/* 寢具組合 start */

.bg.home {
  padding: 0 0 50px 0;
}

.bg01.home {
  padding: 0 0 50px 0;
}

.bg.add-on-home {
  padding: 30px 0 0 0;
}

.bg01.add-on-home {
  padding: 30px 0 0 0;
}

@media screen and (max-width: 768px) {
  .bg.home {
    padding: 25px 0;
  }

  .bg01.home {
    padding: 25px 0;
  }

  .top-section {
    margin-top: 20px;
    margin-bottom: -25px;
  }
}

.bed > ul {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.bed > ul > li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  margin: 0 0 30px 0;
}

.bed > ul > li:first-child {
  margin: 0 0 30px 0;
}

.bed > ul > li:last-child {
  margin: 0;
}

.bed > ul > li > a {
  display: block;
  width: 100%;
}

.bed > ul > li > a > .name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 10px;
}

.bed > ul > li > a > .img {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.bed > ul > li > a > .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bed > ul > li > a > .img > .price {
  position: absolute;
  bottom: 10px;
  right: 0px;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  justify-content: flex-start;
  padding: 5px 0px;
  width: 140px;
  background: rgba(255, 255, 255, 0.75);
}

.bed > ul > li > a > .img > .price > span {
  position: relative;
  color: #e60012;
  line-height: 24px;
  margin-right: 5px;
}

.bed > ul > li > a > .img > .price > p {
  position: relative;
  color: #e60012;
  font-size: 26px;
  letter-spacing: 1px;
}

.bed > ul > li > a > .img > .price::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -40px;
  display: block;
  width: 0px;
  height: 0px;
  border-width: 20px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.75) rgba(255, 255, 255, 0.75)
    rgba(255, 255, 255, 0.75) transparent;
}

.bed > ul > li > .content {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 10px;
}

.bed > ul > li > .content > .sub_pic {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.bed > ul > li > .content > .sub_pic > img {
  width: 18.4%;
  margin: 10px 1%;
  cursor: pointer;
}

.bed > ul > li > .content > .sub_pic > img:nth-child(5n) {
  margin: 10px 0px;
  margin-left: 1%;
}

.bed > ul > li > .content > .sub_pic > img:nth-child(5n + 1) {
  margin: 10px 0px;
  margin-right: 1%;
}

.bed > ul > li > .namebox {
  width: 100%;
  margin: 10px 0px;
}

.bed > ul > li > .namebox > .name {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #6a6969;
}

.bed > ul > li > .namebox > .price {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #c0a55c;
}

.bed > .add-on {
  padding: 0;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .bed > .add-on {
    padding: 0 20px 0 20px;
    /* margin-bottom: -50px; */
    justify-content: space-between;
  }
}

.add-on.quick-buy {
  flex-flow: column;
}
.bed > .add-on.quick-buy > li {
  width: 100%;
  margin: 0;
}


.bed > .add-on-title {
  /* margin-top: 60px; */
  margin-top: 0;
  margin-bottom: 30px;
}

.bed > .add-on > li {
  width: 30%;
  margin: 0;
}

.bed > .add-on .namebox {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
}

.bed > .add-on .namebox > .name {
  line-height: 1.25;
}

.bed > .add-on .namebox > .price {
  color: #c1a463;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .bed > ul > li {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .bed > ul {
    width: 90%;
    margin: 0px auto;
  }
  .bed > ul > li {
    width: 100%;
  }
  .bed > .add-on > li {
    width: 45%;
  }

  .bed > .add-on-title {
    margin-top: 0px;
  }
}

@media screen and (max-width: 500px) {
  .bed > ul {
    width: 100%;
    padding: 0px;
  }
  .bed > ul > li > a > .name {
    font-size: 20px;
  }
  .bed > ul > li > a > .img > .price {
    width: 100px;
  }
  .bed > ul > li > a > .img > .price > span {
    font-size: 12px;
  }
  .bed > ul > li > a > .img > .price > p {
    font-size: 20px;
  }
}

/* 寢具組合 end */

/* 品牌說明 start */

.brand {
  margin: 0 0 25px 0;
}
@media screen and (max-width: 768px) {
  .brand {
    margin: 0 0 30px 0;
  }
}

/* 品牌說明 end */

/* Video start */
.video {
  position: relative;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 56.25%;
}

.video > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video end */


/* 會員登入&註冊頁 start */

.member_login {
  width: 100%;
  max-width: 768px;
  margin: 0px auto;
  border: 1px #dddddd solid;
}

.member_login > .img {
  line-height: 0;
}

.member_login > .contentbox {
  padding: 30px 5vw 30px;
}

.member_login > .contentbox > .content_title {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  color: #323333;
  font-size: 18px;
  font-weight: 600;
}

.member_login > .contentbox > .content_title > .sign_up {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 100;
}

.member_login > .contentbox > .content_title > .sign_up > span {
  color: #999999;
  font-weight: 600;
}

.member_login > .contentbox > .content_title > .sign_up > a {
  color: #406b9d;
  font-weight: 600;
}

.member_login > .contentbox > .login > .tel {
  position: relative;
  margin: 20px 0px;
}

.member_login > .contentbox > .login > .sms {
  position: relative;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
  margin: 20px 0px;
}

.member_login > .contentbox > .login > .captcha {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  margin: 20px 0px;
}

.member_login > .contentbox > .login input {
  height: 50px;
}

.member_login > .contentbox > .login button {
  height: 50px;
}

.member_login > .contentbox > .login > .submit_btn > input {
  width: 100%;
  border: none;
  background: #dc5d58;
  border-radius: 5px;
  padding: 10px 0px;
  color: #fff;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;
}

.member_login > .contentbox > .with_pwd {
  margin-top: 10px;
  text-align: right;
}

.member_login > .contentbox > .with_pwd > a {
  font-size: 16px;
  color: #628dbf;
}

.member_login > .contentbox > .line {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  margin: 20px 0px;
}

.member_login > .contentbox > .line::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #dddddd;
}

.member_login > .contentbox > .line > span {
  position: relative;
  display: inline-block;
  color: #999999;
  background: #fff;
  padding: 0px 20px;
  z-index: 2;
}

.member_login > .contentbox > .loginbox {
  position: relative;
  display: block;
  width: 100%;
  margin: 20px 0px;
}

.member_login > .contentbox > .loginbox > .line_btn > a {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0px;
  background: #3aae36;
  border-radius: 5px;
  margin: 20px 0px;
}

.member_login > .contentbox > .loginbox > .line_btn > a > .img {
  width: 30px;
  line-height: 0;
  margin-right: 10px;
}

.member_login > .contentbox > .loginbox > .line_btn > a > .name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.member_login > .contentbox > .loginbox > .fb_btn > a {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0px;
  background: #305095;
  border-radius: 5px;
  margin: 20px 0px;
}

.member_login > .contentbox > .loginbox > .fb_btn > a > .img {
  width: 30px;
  line-height: 0;
  margin-right: 10px;
}

.member_login > .contentbox > .loginbox > .fb_btn > a > .name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.member_login > .contentbox > .statement > p {
  text-align: center;
}

.member_login > .contentbox > .statement > p > a {
  color: #628dbf;
}

@media screen and (max-width: 500px) {
  .member_login > .contentbox {
    padding: 20px 10px 10px;
  }
  .member_login > .contentbox > .content_title {
    flex-wrap: wrap;
  }
  .member_login > .contentbox > .content_title > p {
    width: 100%;
  }
}

/* 會員登入&註冊頁 end */

/* 會員中心 start */

.member {
  position: relative;
  width: 90%;
  margin: 0px auto;
}

.member > .infobox {
  padding: 30px 50px;
}

.member > .infobox > .info_title {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  color: #231815;
  padding-bottom: 10px;
  border-bottom: 1px #231815 solid;
}

.member > .infobox > .info > ul {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.member > .infobox > .info > ul > li {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 30%;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #999999;
}

.member > .infobox > .info > ul > li:nth-child(2) {
  margin-left: 5%;
  margin-right: 5%;
}

.member > .infobox > .info > ul:not(:first-child) > li:nth-child(2) {
  width: 65%;
  margin-right: 0px;
}

.member > .infobox > .info > ul > li > p {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 120px;
}

.member > .infobox > .info > ul > li > span {
  display: block;
  width: calc(100% - 120px);
  padding-left: 20px;
}

.member > .infobox > .info_table {
  overflow: auto;
}

.member > .infobox > .info_table > ul {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
  border-bottom: 1px #999999 solid;
  min-width: 1024px;
}

.member > .infobox > .info_table > ul > li {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #999999;
  width: 100%;
  border-left-color: #999999;
  border-left-width: 1px;
  border-left-style: solid;
}

.member > .infobox > .info_table > ul > li:nth-child(1) {
  width: 15%;
  border-left-style: none;
}

.member > .infobox > .info_table > ul > li:nth-child(2) {
  width: 7%;
}

.member > .infobox > .info_table > ul > li:nth-child(3) {
  padding: 0px 0px 0px 10px;
  width: 40%;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.member > .infobox > .info_table > ul > li:nth-child(4) {
  width: 10%;
}

.member > .infobox > .info_table > ul > li:nth-child(5) {
  width: 15%;
}

.member > .infobox > .info_table > ul > li:nth-child(6) {
  width: 15%;
}
/*.member>.infobox>.info_table>ul>li:nth-child(7) {
    width: 8%;
}*/

/*
.member>.infobox>.info_table>ul>li:first-child {
    border-left: none;
}
*/

@media screen and (max-width: 1024px) {
  .member > .infobox {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  .member > .infobox {
    padding: 30px 0px;
  }
  .member > .infobox > .info > ul > li {
    width: 100%;
  }
  .member > .infobox > .info > ul > li:nth-child(2) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

@media screen and (max-width: 500px) {
  .member > .infobox > .info > ul > li > p {
    width: 100%;
  }
  .member > .infobox > .info > ul > li > span {
    width: 100%;
    margin-left: 0px;
  }
}

/* 會員中心 end */

/* 購物車 title start */

.cart_title {
  width: 100%;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: center;
}

.cart_title > .step {
  text-align: center;
}

.cart_title > .step > span {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #d5d8dd;
  margin-bottom: 5px;
  z-index: 2;
}

.cart_title > .step.active > span {
  background: #adbbc8;
}

.cart_title > .step > p {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}

.cart_title > .step_line {
  position: relative;
  width: 20%;
}

.cart_title > .step_line::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -15px;
  display: block;
  width: calc(100% + 30px);
  height: 3px;
  background: #d5d8dd;
}

.cart_title > .step_line.active::before {
  background: #adbbc8;
}

/* 購物車 title end */

/* 購物清單 start */

.cart_list {
  width: 80%;
  margin: 30px auto 0px;
}

.cart_list > ul {
  width: 100%;
}

.cart_list > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
  padding: 10px;
}

.cart_list > ul > li > .bag_left {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  width: 150px;
}

.cart_list > ul > li > .bag_right {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  width: calc(100% - 150px);
}

.cart_list > ul > li .img {
  width: 100%;
  line-height: 0;
}

.cart_list > ul > li .name {
  width: 25%;
  font-size: 18px;
  font-weight: 600;
  color: #323333;
  margin: 0px 20px;
}

.cart_list > ul > li .color {
  width: 10%;
  font-size: 18px;
  font-weight: 600;
  color: #323333;
  margin: 0px 20px;
  text-align: center;
}

.cart_list > ul > li .number {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 0px 20px;
  width: 170px;
}

.cart_list > ul > li .number > i {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  padding: 0px 10px;
  border: 1px #9fa0a0 solid;
  border-radius: 5px;
  color: #323333;
  cursor: pointer;
}

.cart_list > ul > li .number > span {
  font-size: 17px;
  font-weight: 600;
  font-style: normal;
  width: 100px;
  padding: 0px 20px;
  text-align: center;
  border: 1px #9fa0a0 solid;
  border-radius: 5px;
  color: #323333;
}

.cart_list > ul > li .total {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  font-size: 26px;
  font-weight: 600;
  color: #bba25b;
  width: 17%;
}

/* .cart_list > ul > li #del_item { */
.cart_list > ul > li .del-btn {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin-left: 20px;
}

/* .cart_list > ul > li #del_item::before { */
.cart_list > ul > li .del-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background: #cccccc;
  transform: rotate(45deg);
}

/* .cart_list > ul > li #del_item::after { */
.cart_list > ul > li .del-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background: #cccccc;
  transform: rotate(-45deg);
}

.cart_list_infobox {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 80%;
  margin: 5px auto;
}

.cart_list_infobox > .full_gift {
  width: 68%;
  background: #f4f4f5;
  margin-right: 2%;
}

.cart_list_infobox > .full_gift > .info_title {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  background: #f8f9fb;
  color: #484f4f;
  padding: 5px 10px;
}

.cart_list_infobox > .full_gift > ul {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 92%;
}

.cart_list_infobox > .full_gift > ul > li {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 29%;
  margin: 10px 2%;
}

.cart_list_infobox > .full_gift > ul > li > .img {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
  line-height: 0;
}

.cart_list_infobox > .full_gift > ul > li > .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart_list_infobox > .full_gift > ul > li > .name {
  font-size: 16px;
  font-weight: 600;
  color: #a4353c;
}

.cart_list_infobox > .list_info {
  width: 30%;
  border: 1px #f1f2f4 solid;
}

.cart_list_infobox > .list_info > .info_title {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  background: #f8f9fb;
  color: #484f4f;
  padding: 5px 10px;
}

.cart_list_infobox > .list_info > .list_total {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
}

.cart_list_infobox > .list_info > .list_total > .total {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
}

.cart_list_infobox > .list_info > .code {
  width: 100%;
  padding: 20px 10px;
  border-bottom: 1px #f1f2f4 solid;
}

.cart_list_infobox > .list_info > .code > a {
  display: block;
  width: 100%;
  color: #3a8cc8;
}

.cart_list_infobox > .list_info > .cart_total {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  font-weight: 600;
}

.cart_list_infobox > .list_info > .cart_total > .total {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
}

@media screen and (max-width: 1200px) {
  .cart_list {
    width: 100%;
  }
  .cart_list_infobox {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .cart_list_infobox {
    justify-content: flex-end;
  }
  .cart_list_infobox > .full_gift {
    width: 80%;
    margin: 20px auto 20px;
  }
  .cart_list_infobox > .list_info {
    width: 300px;
    margin-right: 10%;
  }
}

@media screen and (max-width: 900px) {
  .cart_list > ul > li > .bag_left {
    width: 220px;
  }
  .cart_list > ul > li {
    justify-content: center;
  }
  .cart_list > ul > li > .bag_right {
    width: calc(98% - 300px);
    margin-left: 2%;
    flex-wrap: wrap;
  }
  .cart_list > ul > li .name {
    width: 100%;
    margin: 5px 10px;
    order: 1;
  }
  .cart_list > ul > li .color {
    width: 100%;
    text-align: left;
    margin: 5px 10px;
    order: 2;
  }
  .cart_list > ul > li .number {
    width: 100%;
    justify-content: flex-start;
    margin: 5px 10px;
    order: 4;
  }
  .cart_list > ul > li .total {
    width: 100%;
    margin: 5px 10px;
    order: 3;
  }
  /*.cart_list > ul > li #del_item {*/
  .cart_list > ul > li .del-btn {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .cart_list_infobox > .full_gift {
    width: 100%;
  }
  .cart_list_infobox > .list_info {
    margin-right: 0px;
  }
}

@media screen and (max-width: 500px) {
  .cart_list > ul > li {
    padding: 15px;
  }
  .cart_list > ul > li > .bag_left {
    width: 120px;
  }
  .cart_list > ul > li > .bag_right {
    width: calc(100% - 130px);
    margin-left: 10px;
  }
  .cart_list > ul > li .name {
    font-size: 16px;
    margin: 0px;
    line-height: 20px;
  }
  .cart_list > ul > li .name > span {
    line-height: 20px;
  }
  .cart_list > ul > li .color {
    font-size: 14px;
    margin: 0px;
    line-height: 20px;
  }
  .cart_list > ul > li .color > span {
    line-height: 20px;
  }
  .cart_list > ul > li .total {
    margin: 0px;
    font-size: 18px;
    line-height: 25px;
  }
  .cart_list > ul > li .total > span {
    line-height: 25px;
  }
  .cart_list > ul > li .total > p {
    line-height: 25px;
  }
  .cart_list > ul > li .number {
    margin: 0px;
  }
  .cart_list > ul > li .number > i {
    font-size: 16px;
    line-height: 25px;
    padding: 0px 9px;
  }
  .cart_list > ul > li .number > span {
    line-height: 25px;
    font-size: 16px;
  }
  /* .cart_list > ul > li #del_item { */
  .cart_list > ul > li .del-btn {
    width: 15px;
    height: 15px;
    top: 0px;
    right: 0px;
  }
  /* .cart_list > ul > li #del_item::before {*/
  .cart_list > ul > li .del-btn::before {
    width: 15px;
  }
  /* .cart_list > ul > li #del_item::after { */
  .cart_list > ul > li .del-btn::after {
    width: 15px;
  }
  .cart_list_infobox > .full_gift > ul {
    overflow: auto;
  }
  .cart_list_infobox > .full_gift > ul > li {
    min-width: 200px;
  }
}

/* 購物清單 end */

/* 相關產品 start */

.related_products {
  width: 90%;
  margin: 0px auto;
}

.related_products > .lists {
  margin: 30px 0px;
}

.related_products > .lists > ul {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
  width: 100%;
  overflow: auto;
}

.related_products > .lists > ul > li {
  width: 18%;
  min-width: 200px;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(170, 170, 170, 0.5);
  margin: 10px 1%;
}

.related_products > .lists > ul > li > .img {
  width: 100%;
  margin-bottom: 10px;
  line-height: 0;
  overflow: hidden;
}

.related_products > .lists > ul > li > .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related_products > .lists > ul > li > .name {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #666666;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.related_products > .lists > ul > li > .price {
  color: #dc5d58;
  font-size: 18px;
  font-weight: 600;
}

.related_products > .lists > ul > li > .price.del {
  color: #abaaaa;
  font-size: 16px;
  line-height: 0;
  text-decoration: line-through;
}

.related_products > .lists > ul > li > .add_cart_btn {
  display: block;
  width: 100%;
  padding: 5px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  border: 1px #dc5d58 solid;
  color: #dc5d58;
}

@media screen and (max-width: 1200px) {
  .related_products {
    width: 100%;
  }
}

/* 相關產品 end */

/* 購物車填寫資料 start */

.information {
  width: 80%;
  margin: 20px auto;
}

.information > ul {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}

.information > ul > li {
  width: 49%;
  border: 1px #f1f2f4 solid;
  margin: 10px 0px;
}

.information > ul > li:nth-child(odd) {
  margin-right: 2%;
}

.information > ul > li > .info_title {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  padding: 5px 10px;
  color: #484f4f;
  font-size: 18px;
  font-weight: 600;
  background: #f8f9fb;
}

.information > ul > li .item {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px 0px;
  padding: 0px 10px;
}

.information > ul > li .item > span {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #6b7274;
}

.information > ul > li .item > input[type="text"] {
  display: flex;
  width: 100%;
  border: 1px #d5d8dd solid;
  border-radius: 5px;
  padding: 5px 10px;
}

.information > ul > li .item > input[type="tel"] {
  display: flex;
  width: 100%;
  border: 1px #d5d8dd solid;
  border-radius: 5px;
  padding: 5px 10px;
}

.information > ul > li .item > input[type="email"] {
  display: flex;
  width: 100%;
  border: 1px #d5d8dd solid;
  border-radius: 5px;
  padding: 5px 10px;
}

.information > ul > li .item > p {
  color: #7c8285;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  width: 100%;
}

.information > ul > li .item > .radiostyle {
  color: #231815;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
}

.information > ul > li .item > .radiostyle > input {
  cursor: pointer;
  margin-right: 5px;
}

.information > ul > li .item > .radiostyle > label {
  cursor: pointer;
}

.information > ul > li .item > .checkbox {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}

.information > ul > li .item > .checkbox > input[type="checkbox"] {
  margin: 0px;
  cursor: pointer;
}

.information > ul > li .item > .checkbox > label {
  color: #757b7e;
  font-size: 14px;
  font-weight: 600;
}

.information > ul > li .item > select {
  width: 100%;
  border: 1px #d5d8dd solid;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.information > ul > li .item > select[name="city"] {
  width: 49%;
  margin-right: 2%;
}

.information > ul > li .item > select[name="town"] {
  width: 49%;
}

.information > .submit_btn {
  width: 100%;
  margin: 40px 0px 20px;
}

.information > .submit_btn > .checkbox {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.information > .submit_btn > .checkbox > input {
  position: relative;
  margin: 0px;
  margin-right: 10px;
}

.information > .submit_btn > .checkbox > span > a {
  color: #3a8cc8;
}

.information-btn {
  display: block;
  width: 300px;
  margin: 10px auto;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .information {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .information > ul > li {
    width: 80%;
    margin: 10px auto;
  }
  .information > ul > li:nth-child(4) {
    order: 4;
    /* margin-right: auto; */
  }
  .information > ul > li:nth-child(1) {
    order: 1;
    /* margin-right: 2%; */
  }
  .information > ul > li:nth-child(2) {
    order: 3;
    /* margin-right: 2%; */
  }
  .information > ul > li:nth-child(3) {
    order: 2;
    /* margin-right: 2%; */
  }
}

@media screen and (max-width: 500px) {
  .information > ul > li {
    width: 100%;
  }
}

/* 購物車填寫資料 end */

/* 購物車完成頁面 start */

.complete {
  width: 80%;
  margin: 40px auto 20px;
}

.complete > .complete_img {
  line-height: 0;
  text-align: center;
  margin: 0px auto;
}

.complete > .complete_img > img {
  width: 80px;
}

.complete > .complete_text {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0px;
  text-align: center;
}

.complete > .lists {
  width: 80%;
  margin: 20px auto;
}

.complete > .lists > ul {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

.complete > .lists > ul > li {
  width: 49%;
  margin: 20px 0px;
}

.complete > .lists > ul > li:nth-child(even) {
  margin-left: 2%;
}

.complete > .lists > ul > li > .lists_title {
  font-size: 24px;
  font-weight: 600;
  color: #231815;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.complete > .lists > ul > li > .item {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 600;
  color: #999999;
  letter-spacing: 2px;
}

.complete > .lists > ul > li > .item > span {
  display: block;
}

.complete > .lists > ul > li > .item > span:nth-child(1) {
  width: 100px;
}

.complete > .lists > ul > li > .item > span:nth-child(2) {
  width: calc(100% - 100px);
}

.complete > .qr_info {
  width: 100%;
  margin: 30px 0px;
}

.complete > .qr_info > .img {
  line-height: 0;
  text-align: center;
}

.complete > .qr_info > .img > img {
  padding: 10px;
  line-height: 0;
  border: 1px #f5f6f8 solid;
  box-shadow: 0px 0px 10px #e1e2e3;
}

.complete > .qr_info > .info {
  margin: 20px 0px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #040000;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .complete {
    width: 100%;
  }
  .complete > .lists > ul {
    justify-content: center;
  }
  .complete > .lists > ul > li {
    width: 100%;
    max-width: 300px;
    margin: 20px 10px;
  }
  .complete > .lists > ul > li:nth-child(even) {
    margin-left: 0px;
  }
}

/* 購物車完成頁面 end */

/* 產品內頁 start */

.store {
  width: 100%;
  max-width: 1024px;
  margin: 0px auto;
}

.store > .contentbox {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.store > .contentbox > .content_left {
  width: 48%;
  margin-right: 4%;
}

.store > .contentbox > .content_left > .sub_img > ul {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.store > .contentbox > .content_left > .sub_img > ul > li {
  width: 18%;
  margin: 10px 1%;
}

.store > .contentbox > .content_left > .sub_img > ul > li {
  width: 18.4%;
  margin: 10px 1% 0px;
  cursor: pointer;
}

.store > .contentbox > .content_left > .sub_img > ul > li > a {
  display: block;
  width: 100%;
  line-height: 0;
}

.store > .contentbox > .content_left > .sub_img > ul > li:nth-child(5n) {
  margin: 10px 0px 0px;
  margin-left: 1%;
}

.store > .contentbox > .content_left > .sub_img > ul > li:nth-child(5n + 1) {
  margin: 10px 0px 0px;
  margin-right: 1%;
}

.store > .contentbox > .content_right {
  width: 48%;
}

.store > .contentbox > .content_right > .name {
  width: 100%;
  font-size: 22px;
  font-weight: 600;
}

.store > .contentbox > .content_right > .info {
  width: 100%;
  font-size: 14px;
  padding-left: 10px;
}

.store > .contentbox > .content_right > .color {
  margin: 20px 0px;
}

.store > .contentbox > .content_right > .color > span {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #3e3a39;
}

.store > .contentbox > .content_right > .number {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  margin: 20px 0px;
}

.store > .contentbox > .content_right > .number > .name {
  margin-right: 20px;
  font-size: 18px;
  font-weight: 600;
}

.store > .contentbox > .content_right > .price {
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  justify-content: flex-start;
  margin: 30px 0px 20px;
}

.store > .contentbox > .content_right > .price > span {
  font-size: 14px;
  font-weight: 600;
  color: #231815;
  line-height: 10px;
  margin-right: 5px;
}

.store > .contentbox > .content_right > .price > p {
  font-size: 30px;
  font-weight: 600;
  color: #e60012;
}

.store > .contentbox > .content_right > .markup {
  margin: 30px 0px 20px;
}

.store > .contentbox > .content_right > .markup > .markup_title {
  position: relative;
  font-size: 18px;
  color: #fff;
  background: #9fa0a0;
  padding: 0px 10px;
  cursor: pointer;
}

.store > .contentbox > .content_right > .markup > .markup_title::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 10px;
  display: block;
  width: 15px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
}

.store > .contentbox > .content_right > .markup > .markup_title::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 10px;
  display: block;
  width: 15px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  transform: rotate(0deg);
  transition: 0.5s;
}

.store > .contentbox > .content_right > .markup > .markup_title.c::after {
  transform: rotate(90deg);
}

/* .store > .contentbox > .content_right > .markup > ul {
  display: none;
} */

.store > .contentbox > .content_right > .markup > ul > li {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  padding: 10px 0px;
}

.store > .contentbox > .content_right > .markup > ul > li > .check {
  padding: 0px 5px;
}

.store > .contentbox > .content_right > .markup > ul > li > .img {
  width: 25%;
  line-height: 0;
  margin: 0px 20px;
}

.store > .contentbox > .content_right > .markup > ul > li > .markupbox {
  width: calc(75% - 50px);
  padding-right: 10px;
}

.store > .contentbox > .content_right > .markup > ul > li > .markupbox > .name {
  font-size: 18px;
  /* font-weight: 600; */
  color: #231815;
}

.markupbox .original-price {
  font-size: 12px;
}


.store
  > .contentbox
  > .content_right
  > .markup
  > ul
  > li
  > .markupbox
  > .number {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  margin: 5px 0px;
}

.store
  > .contentbox
  > .content_right
  > .markup
  > ul
  > li
  > .markupbox
  > .number
  > i {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  padding: 0px 10px;
  border: 1px #9fa0a0 solid;
  border-radius: 5px;
  color: #9fa0a0;
  cursor: pointer;
}

.store
  > .contentbox
  > .content_right
  > .markup
  > ul
  > li
  > .markupbox
  > .number
  > span {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  width: 100px;
  padding: 0px 20px;
  text-align: center;
  border: 1px #9fa0a0 solid;
  border-radius: 5px;
  color: #9fa0a0;
}

.store
  > .contentbox
  > .content_right
  > .markup
  > ul
  > li
  > .markupbox
  > .s_price {
  color: #e89412;
  font-size: 16px;
  font-weight: 500;
}

.store > .infobox {
  position: relative;
  margin-top: 50px;
}

.store > .infobox > .info {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .store > .contentbox > .content_left {
    width: 80%;
    margin: 10px auto;
  }
  .store > .contentbox > .content_right {
    width: 80%;
    margin: 10px auto;
  }
  .store > .contentbox > .content_right > .markup > ul {
    display: block;
  }
  .store > .contentbox > .content_right > .markup > .markup_title::before {
    content: none;
  }
  .store > .contentbox > .content_right > .markup > .markup_title::after {
    content: none;
  }
}

@media screen and (max-width: 500px) {
  .store > .contentbox > .content_left {
    width: 100%;
  }
  .store > .contentbox > .content_right {
    width: 100%;
  }
  .store > .contentbox > .content_right > .markup > ul > li {
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
  }
  .store > .contentbox > .content_right > .markup > ul > li > .img {
    width: 50%;
  }
  .store > .contentbox > .content_right > .markup > ul > li > .markupbox {
    width: 100%;
    margin: 10px 0px;
    padding-left: 40px;
    padding-right: 20px;
  }
}

/* 產品內頁 end */

/* 合作單位 start */

.co {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.co > img {
  width: 16%;
  margin: 30px 2% 10px;
}

@media screen and (max-width: 768px) {
  .co > img {
    width: 29%;
  }
}

@media screen and (max-width: 500px) {
  .co > img {
    width: 46%;
  }
}

/* 合作單位 end */

/* 常見問題 start */

.qa {
  width: 80%;
  border-top: 1px #231815 solid;
  margin: 0px auto;
}

.qa > ul {
  width: 60%;
  margin: 30px auto;
}

.qa > ul > li {
  margin: 20px 0px;
}

.qa > ul > li > .list_title {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  font-size: 24px;
  font-weight: 600;
  color: #231815;
  cursor: pointer;
}

.qa > ul > li > .list_title::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 7.5px 0 7.5px;
  border-color: #231815 transparent transparent transparent;
  margin-right: 20px;
  transition: 0.5s;
}

.qa > ul > li > .list_title.list_title_c::before {
  transform: rotate(-90deg);
}

.qa > ul > li > ul {
  padding: 10px 20px;
}

.qa > ul > li > ul > li > .qa_title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #231815;
  padding-right: 25px;
  margin: 10px 0px;
  cursor: pointer;
}

.qa > ul > li > ul > li > .qa_title::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10.4px 6px 0 6px;
  border-color: #231815 transparent transparent transparent;
  transform: rotate(90deg);
  transition: 0.5s;
}

.qa > ul > li > ul > li > .qa_title.qa_title_c::after {
  transform: rotate(0deg);
}

.qa > ul > li > ul > li > .qa_answer {
  display: none;
  margin: 10px 0px;
  padding: 10px 20px;
  background: #f5f6f6;
}

@media screen and (max-width: 1024px) {
  .qa {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .qa > ul {
    width: 80%;
  }
}

@media screen and (max-width: 500px) {
  .qa > ul > li > .list_title {
    font-size: 22px;
  }
  .qa > ul > li > ul > li > .qa_title {
    font-size: 16px;
  }
  .qa > ul {
    width: 100%;
    padding: 0px 5px;
  }
}

/* 常見問題 end */


/* 滑動效果 start */

.slip {
  position: relative;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
}

.slip > .prev {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 30px;
  cursor: pointer;
}

.slip > .prev::before {
  content: "";
  position: absolute;
  display: block;
  margin-top: 4px;
  width: 20px;
  height: 5px;
  background: #e2dfda;
  transform-origin: left;
  transform: rotate(-50deg);
}

.slip > .prev::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 5px;
  background: #e2dfda;
  transform-origin: left;
  transform: rotate(50deg);
}

.slip > .next {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 30px;
  cursor: pointer;
}

.slip > .next::before {
  content: "";
  position: absolute;
  display: block;
  margin-top: 4px;
  width: 20px;
  height: 5px;
  background: #e2dfda;
  transform-origin: right;
  transform: rotate(50deg);
}

.slip > .next::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 5px;
  background: #e2dfda;
  transform-origin: right;
  transform: rotate(-50deg);
}

.slip > .picbox {
  width: calc(100% - 60px);
  overflow: hidden;
}

.slip > .picbox > .pic {
  position: relative;
  left: 0%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  margin: 15px 0 0 0;
  transition: 0.5s;
}

.slip > .picbox > .pic > .img {
  width: calc(20% - 10px);
  margin: 0px 5px;
  line-height: 0;
  cursor: pointer;
}

/* 滑動效果 end */

/* 共用部分 start */

.bg {
  padding: 50px 20px;
}

.bg01 {
  padding: 50px 120px;
}

.bg_top {
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .bg {
    padding: 30px 20px;
  }

  .bg01 {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 500px) {
  .bg {
    padding: 20px 10px;
  }

  .bg01 {
    padding: 20px 10px;
  }
}

.title {
  display: block;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  color: #1a1f1e;
  letter-spacing: 1px;
}

.title > p {
  font-size: 14px;
}

.title01 {
  display: block;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  text-align: center;
  margin: 50px 0px;
}

.title02 {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
}

.title02::after {
  content: "";
  position: absolute;
  bottom: 0px;
  display: block;
  width: 50px;
  height: 5px;
  background: #bba25b;
}

@media screen and (max-width: 500px) {
  .title {
    font-size: 26px;
  }
  .title > p {
    font-size: 12px;
  }
  .title01 {
    font-size: 26px;
    margin: 20px 0px;
  }
}

.contentbox {
  position: relative;
  margin-top: 20px;
}

/* 共用部分 end */

/* 快速購買 start */
.quick-buy {
  padding-top: 56px;
}
.quick-buy * {
  line-height: 1.25;
  vertical-align: middle;
}
.quick-buy button {
  border: none;
}
.quick-buy .scene {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .quick-buy .scene {
    padding: 0 20px;
  }

  .quick-buy .banner {
    padding: 20px 0;
  }
}

.quick-buy .scene .title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.quick-buy .banner {
  width: 100%;
}

.quick-buy .shopping-cart {
  padding: 0px 6px;
  border: 3px #6e6e6e solid;
  border-radius: 6px;
}

.quick-buy .shopping-cart-head {
  padding: 6px 0;
  border-bottom: 3px #6e6e6e solid;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .quick-buy .shopping-cart-head {
    flex-direction: column;
  }
  .shopping-cart-head__block {
    justify-content: space-between;
  }
}


.shopping-cart-head__info {
  padding-left: 6px;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 768px) {
  .shopping-cart-head__info {
    padding-left: 0;
  }
}

.shopping-cart-head__info span {
  color: #c1a463;
  margin: 0 3px;
  font-size: 18px;
  font-weight: 500;
}

.shopping-cart-head__block {
  display: flex;
  gap: 6px;
  align-items: center;
}


.shopping-cart-head__block span {
  margin: 0 3px;
  color: #c1a463;
  font-size: 18px;
  font-weight: 500;
}


.shopping-cart-head__checkout {
  padding: 4px 20px;
  color: white;
  background-color: #c1a463;
  border-radius: 6px;
}

.shopping-cart-body {
  padding: 20px 0;
  gap: 20px;
  min-height: 200px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .shopping-cart-body {
    overflow-x: auto;
    justify-content: flex-start;
  }
  .shopping-cart {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.shopping-cart-body__item {
  position: relative;
}

.shopping-cart-body__item-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.shopping-cart-body__item-image {
  width: 160px;
  height: 120px;
  background-color: wheat;
}

.shopping-cart-body__item-info {
  margin-top: 6px;
  text-align: center;
}

.shopping-cart-body__item-info .price {
  color: #c1a463;
}

.category-list {
  display: flex;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .category-list {
    gap: 15px;
  }
}

.category-item {
  position: relative;
  width: 155px;
  /* height: 185px; */
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.category-item_image {
  position: absolute;
}

.category-item.active .category-item_image {
  visibility: hidden;
}

.category-product-inner {
  max-height: 360px;
}

@media screen and (min-width: 1440px) {
  .category-product-inner {
    max-height: 360px;
  }
}

.category-product .slick-next {
  right: 0;
  z-index: 1;
}

.category-product .slick-prev {
  left: 0;
  z-index: 1;
}

.category-product .slick-prev:before,
.category-product .slick-next:before {
  color: #6e6e6e;
}

.category-product-slick > .slick-list {
  overflow-y: hidden;
  overflow-x: hidden;
}

.slick-slider.category-product-slick {
  padding: 0 25px;
  visibility: hidden;
}

.slick-slider.category-product-slick.active {
  visibility: visible;
}

.category-product .product-item {
  margin-right: 20px;
  width: 160px;
  /* height: 160px; */
}

.category-product .product-item > img {
  /* width: 160px; */
}

.product-item__info {
  margin-top: 8px;
  text-align: center;
}

.product-item__name {
  margin-bottom: 8px;
  color: #6e6e6e;
}

.product-item__color {
  margin-bottom: 8px;
  color: #6e6e6e;
}

.product-item__price {
  margin-bottom: 8px;
  color: #c1a463;
}

.product-item__price s {
  margin-bottom: 8px;
  /* color: #c1a463; */
  color: #6e6e6e;
}

.product-item__price span {
  margin-bottom: 8px;
  /* margin-left: 20px; */
  margin-left: 6px;
  font-weight: 600;
  /* color: #ff0000; */
}

.product-item__view {
  padding: 6px 16px;
  color: #fff;
  background-color: #49a49d;
  border-radius: 6px;
  box-sizing: content-box;
}

.product-item__view:hover, .product-item__view:focus {
  color: white;
  outline: none;
}

.product-item__cart {
  padding: 6px 16px;
  color: white;
  background-color: #c1a463;
  border-radius: 6px;
}

.product-item__button-group {
  gap: 6px;
  display: flex;
  justify-content: center;
}

.product-item__cart-none {
  padding: 6px 16px;
  color: white;
  background-color: #6e6e6e;
  border-radius: 6px;
}

.product-item__cart-owned {
  padding: 6px 16px;
  color: #fff;
  background-color: #49a49d;
  border-radius: 6px;
}



#category-product-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.shopping-category-title__item {
  color: #c1a463;
  font-size: 24px;
  font-weight: 600;
}

.quick-buy .shopping-category > .title {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .quick-buy .shopping-category > .title {
    flex-flow: column;
    align-items: flex-start;
  }

}


@media screen and (max-width: 1200px) {
  .quick-buy {
    padding-top: 61px;
  }
}

.modal-header {
  border-bottom: 0;
}

.modal-title {
  color: #6e6e6e;
  font-size: 18px;
}

.modal-body {
  padding: 0 15px 15px 15px;
}

.product-view__sub {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.product-view__sub > li {
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
}

.product-view__sub > li:hover {
  border-color: #c1a463;
  transition: border .2s ease;
}


@media (min-width: 768px) {
  .modal-dialog {
    width: 475px;
  }
}

/* 快速購買 end */

@media screen and (max-width: 380px) {
  .sweet-alert {
    padding: 20px 0 !important;
  }
}

@media screen and (max-width: 500px) {
  div.sweet-alert  {
   width: 80% !important;
   margin-left: 38px !important;
  }
}

.notice-alert-close {
  border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
}
.notice-alert-close::after{
  display: inline-block;
  content: "\00d7";
}


.swal-modal .swal2-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.2em;
  height: 1.2em;
  transition: color 0.1s ease-out;
  border: none;
  background: transparent;
  color: #cccccc;
  font-family: serif;
  font-size: 40px;
  cursor: pointer;
}
