html,
body {
  margin: 0;
  font-size: 16px;
  font-family: NotoSansCJKtc-Regular-Alphabetic;
  background-color: #fff9f0;
}

[v-cloak] {
  display: none;
}

#app {
  margin: 0 auto;
  position: relative;
  color: #2b2a22;
  padding: 5px;
  box-sizing: border-box;
}

#app #screen-border-top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background-color: #850606;;
  z-index: 1;
}
#app #screen-border-bottom {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #850606;;
  z-index: 1;
}
#app #screen-border-left {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 5px;
  height: 100vh;
  background-color: #850606;;
  z-index: 1;
}
#app #screen-border-right {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 100vh;
  background-color: #850606;;
  z-index: 1;
}

#app header {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff9f0;
  color: #fff;
  margin-bottom: 60px;
}

#app header .header-container {
  display: flex;
  width: 100%;
  max-width: 1120px;
  padding: 32px 24px 0 24px;
  position: relative;
  /** 解決 flex 與 white-space: nowrap; 的衝突 **/
  min-width: 0;
  align-items: center;
}

#app .btn {
  padding: 5px 8px;
  border-radius: 8px;
  border: 1px solid #850606;
  color: #850606;
  float: left;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#app .shopping-cart span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ec3533;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#app .header-container .categories {
  color: #850606;
  font-family: PingFangTC;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

#app .header-container .categories ul li {
  display: inline;
  margin-right: 20px;
  position: relative;
  font-weight: normal;
}

#app .header-container .categories ul li a {
  color: #850606;
  text-decoration: none;
}

#app .header-container .categories ul li.active {
  font-weight: 600;
}

#app .header-container .categories ul li.active::before {
  content: ' ';
  color: #850606;
  border-bottom: 4px solid #850606;
  border-radius: 2px;
  position: absolute;
  top: 32px;
  width: 100%;
}

#app .header-container .func-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
}

#app .product-list,
#app .product-detail,
#app .cart-detail,
#app .order-detail,
#app .order-query {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-around;
  max-width: 1120px;
  padding: 0 24px;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
}
#app .product-list {
  flex-direction: row;
  margin-top: 24px;
  justify-content: flex-start;
  min-height: calc(100vh - 457px);
}
#app .web-button-area.sold-out {
  justify-content: center;
}
#app .web-button-area.sold-out .buy-btn.at-once-btn.gray {
  background-color: gray;
  border: 1px solid gray;
}
#app .cart-detail {
  flex-direction: row;
  margin-bottom: 100px;
}
#app .order-detail,
#app .order-query {
  max-width: 735px;
}
#app .order-detail h2.spec-title {
  align-self: center;
}
#app .order-detail .order-summary,
#app .order-detail .order-info {
  padding: 24px 32px;
  box-sizing: border-box;
  background-color: #fff;
  align-self: stretch;
  margin-bottom: 32px;
  color: #2b2a22;
  font-size: 18px;
  font-weight: normal;
}
#app .order-detail .order-summary p {
  margin-bottom: 12px;
  margin-top: 0;
}
#app .order-detail h2.order-number {
  font-size: 21px;
  font-weight: 600;
  color: #850606;
  margin-bottom: 12px;
  margin-left: 16px;
}
#app .order-detail .order-info-title {
  font-size: 21px;
  font-weight: 600;
  color: #2b2a22;
  margin-top: 0;
  margin-bottom: 12px;
  margin-left: 16px;
}
#app .order-detail {
  align-items: flex-start;
}
#app span.credit-card-notice {
  /* font-size: 12px; */
  color: #0124c2;
}

#app .cart-detail .web-button-area {
  margin-bottom: 0;
}
#app .cart-detail .web-button-area .buy-btn {
  flex-basis: 100%;
  margin-top: 40px;
}

#app .product-list .product-item {
  display: flex;
  flex-direction: column;
  flex-basis: 33.33%;
  margin-bottom: 40px;
  padding: 0 10px;
  box-sizing: border-box;
}

#app .product-list .product-item h2 {
  color: #2b2a22;
  font-size: 1.5rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  margin: 8px 0;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  box-orient:vertical;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
}

#app .product-list .product-item strong {
  font-size: 21px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #850606;
  margin-bottom: 8px;
}

#app .product-list .product-item .buy-btn {
  margin: 8px 0 0;
  padding: 10px 10px 9px;
  border-radius: 22px;
  background-color: #850606;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
}

#app .product-list .product-item .product-img {
  flex: 1;
}

#app .product-list .product-item .product-img img {
  width: 100%;
  display: block;
}

#app .footer {
  display: flex;
  background-color: #850606;
  padding: 40px;
  justify-content: center;
}

#app .footer .footer-wrapper {
  display: flex;
  flex: 1;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

#app .footer .logo-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

#app .footer .customer-service {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#app .footer .customer-service .social-line {
  margin-bottom: 16px;
}
#app .footer .customer-service .btn {
  padding: 10px;
  border-radius: 22px;
  background-color: #fff9f0;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #850606;
  /* flex: 1; */
  display: flex;
  justify-content: center;
  align-items: center;
}
#app .footer .customer-service .social-icon {
  margin-right: 8px;
}
#app .footer .logo-area .social-area {
  flex: 1;
  margin: 18px 0;
}
#app .footer .logo-area .social-area img {
  margin: 0 4px;
}

#app .footer .footer-wrapper .logo-area {
  flex-direction: column;
}

#app .copyright {
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

#app .product-detail .image-area {
  width: 100%;
}

#app .product-detail .image-area img {
  width: 100%;
  display: block;
}

#app .product-detail .youtube-area {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#app .product-detail .youtube-area iframe,
#app .product-detail .youtube-area object,
#app .product-detail .youtube-area embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#app .product-detail h2.spec-title,
#app .cart-detail h2.spec-title,
#app .order-detail h2.spec-title,
#app .order-query h2.spec-title {
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #850606;
  font-size: 24px;
  margin: 40px auto 25px auto;
  width: fit-content;
  width: -moz-fit-content;
}

#app .product-detail h2.spec-title::after,
#app .cart-detail h2.spec-title::after,
#app .order-detail h2.spec-title::after,
#app .order-query h2.spec-title::after {
  content: ' ';
  display: block;
  height: 12px;
  width: 100%;
  background-image: url('/public/imgs/icon/chingshop_deco_big@3x.png');
  background-repeat: repeat-x;
  background-size: contain;
}
#app .cart-detail h2.spec-title::after,
#app .order-detail h2.spec-title::after,
#app .order-query h2.spec-title::after {
  background-image: url('/public/imgs/icon/chingshop_deco_small@3x.png');
}
#app .cart-detail h2.spec-title {
  margin-bottom: 60px;
}
#app .order-detail h2.spec-title,
#app .order-query h2.spec-title {
  margin-bottom: 40px;
}

#app .product-detail .product-spec {
  width: 100%;  
  padding: 0 24px;
  margin-bottom: 60px;
  box-sizing: border-box;
}

#app .product-detail .product-spec div.text,
#app .product-detail .product-spec div.text p {
  color: #2b2a22;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  margin: 0 auto;
}




#app .product-detail h2.notice-title,
#app .product-detail h2.illustration-title {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.56px;
  color: #8f8f8c;
  width: 100%;
  margin: 0;
}

#app .product-detail div.notice div.notice-text,
#app .product-detail div.notice div.illustration-text {
  margin-bottom: 40px;
}

#app .product-detail div.notice div.notice-text,
#app .product-detail div.notice div.notice-text p,
#app .product-detail div.notice div.illustration-text,
#app .product-detail div.notice div.illustration-text p {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.48px;
  text-align: justify;
  color: #8f8f8c;
}

#app .cart-detail .form-container {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  flex-basis: 100%;
}

#app .cart-detail .form-container .cart-form-left,
#app .cart-detail .form-container .cart-form-right {
  flex: 1;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

#app .cart-form-left .cart-product-item {
  padding: 16px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
}
#app .cart-form-left .cart-product-item  div.product-count {
  margin-bottom: 0;
}
#app .cart-form-left .coupon-code {
  padding: 16px;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  align-items: center;
}
#app .cart-form-left .coupon-code input {
  border-radius: 8px;
  border: solid 1px #f1eadf;
  padding: 12px;
}
#app .cart-form-left .coupon-code input::placeholder {
  color: #959aa5;
}
#app .cart-form-left .coupon-code div.coupon-btn {
  border-radius: 8px;
  border: solid 1px #850606;
  background-color: #ffffff;
  padding: 7px 55px;
  margin-left: auto;
  font-size: 18px;
  font-weight: 600;
  color: #850606;
}
#app .cart-form-left hr {
  color: #850606;
  border: 1px solid #850606;
  margin: 24px 0;
}
#app .product-statistics,
#app .customer-info {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  box-sizing: border-box;
}
#app .product-statistics div,
#app .customer-info div {
  display: flex;
  margin-bottom: 12px;
  color: #2b2a22;
  font-size: 18px;
}
#app .product-statistics div.total {
  color: #850606;
  font-size: 21px;
  font-weight: 600;
  padding-bottom: 30px;
}
#app .product-statistics div label small {
  color: #0124c2;
  font-size: 12px;
  font-weight: normal;
}
#app .product-statistics div span {
  margin-left: auto;
}

#app .cart-detail .form {
  box-sizing: border-box;
  width: 100%;
}

#app .cart-detail .form div label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  display: inline-block;
  width: 100%;
  text-align: left;
  color: #2b2a22;
  margin-bottom: 12px;
}

#app .cart-detail .form div input,
#app .cart-detail .form div select {
  border: solid 1px #d3d3d3;
  height: 38px;
  line-height: 1.5;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  padding: .375rem .75rem;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  border-radius: 4px;
  background-color: #fff;
  color: #929292;
  /* margin-bottom: 24px; */
}
#app .cart-detail .form div input:focus, 
#app .cart-detail .form div select:focus {
  outline: none !important;
  border: 1px solid red;
}
#app .query-form {
  align-self: stretch;
  margin: 20px 0 200px 0;
  
}
#app .query-form div.form-row {
  display: flex;
  align-items: center;
  justify-content: stretch;
  flex-wrap: wrap;
}
#app .query-form div.form-row input {
  border-radius: 8px;
  border: solid 1px #850606;
  height: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: #929292;
  margin: 12px 0;
  flex: 1;
  padding-left: 12px;
}
#app .query-form div.form-row label {
  margin: 0 12px 0 0;
  color: #2b2a22;
  font-size: 16px;
  font-weight: 600;
}
#app .query-form div.form-row span.warning-text {
  flex-grow: 1;
  flex-basis: 100%;
  margin-left: 50px;
  margin-bottom: 32px;
}

#app div.custom-select {
  position: relative;
  width: 100%;
}

#app .cart-detail div.form .form-row:first-child {
  margin-top: 0;
}

#app .cart-detail div.form .form-row {
  margin-top: 8px;
  margin-bottom: 24px;
}

#app .cart-detail div.custom-select div.custom-dropdown {
  pointer-events: none;
  position: absolute;
  height: 38px;
  width: 38px;
  top: 0;
  right: 0;
}

div.cart-product-item div.product-info {
  display: flex;
  position: relative;
}

div.cart-product-item div.product-info .product-img {
  display: flex;
  flex: 1;
  margin-right: 16px;
  flex-basis: 33%;
  max-width: 100px;
  position: relative;
}

div.cart-product-item div.product-info .product-img span {
  position: absolute;
  left: 50%;
  top: 125%;
  transform: translate(-50%, -50%);
  color: #959aa5;
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid #959aa5;
  cursor: pointer;
}
div.cart-product-item div.product-info .product-img img {
  width: 100%;
  align-self: center;
  border-radius: 8px;
}

div.cart-product-item div.product-info div.product-name {
  flex: 1;
  flex-basis: 66%;
  display: flex;
  flex-direction: column;
}
div.cart-product-item div.product-info div.product-name span {
  font-size: 21px;
  font-weight: 600;
  color: #850606;
  align-self: flex-end;
  
}

div.cart-product-item div.product-info div.product-name h2 {
  font-size: 16px;
  font-weight: 600;
  color: #2b2a22;
  margin-top: 0;
}

.warning-text {
  color: #e80909;
  font-weight: normal;
}
#app .form-row span {
  margin-left: 12px;
  color: #e80909;
}
#app .cart-detail .inner-return-back,
#app .order-detail .inner-return-back,
#app .order-query .inner-return-back {
  display: none;
}
#app div.order-info div.cart-product-item {
  margin-bottom: 24px;
}
#app div.order-info div.cart-product-item div.product-info div.product-name {
  flex-direction: row;
  align-items: center;
}
#app div.order-info div.cart-product-item div.product-info div.product-name h2 {
  margin-bottom: 0;
  align-self: flex-start;
}
#app div.order-info div.cart-product-item div.product-info div.product-name span {
  align-self: flex-start;
  margin-left: auto;
  color: #2b2a22;
  font-size: 18px;
  font-weight: normal;
}

#app div.order-info hr {
  margin: 0 0 12px 0;
}

#app .customer-link {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#app .customer-link div {
  text-decoration: none;
  font-size: 21px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: normal;
  color: #850606;
  cursor: pointer;
  border-bottom: 1px solid #850606;
}

#app .web-button-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  justify-content: center;
  width: 100%;
  margin-bottom: 45px;
}

#app .web-button-area .buy-btn {
  padding: 4px 10px;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  color: #850606;
  flex-basis: 45%;
  border-radius: 22px;
  border: solid 1px #850606;
  cursor: pointer;
}

#app .web-button-area .buy-btn.cart-btn {
  background-color: #fff;
}
#app .web-button-area .buy-btn.at-once-btn {
  color: #fff;
  background-color: #850606;
}

#app .mobile-button-area {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #8f8f8c;
  display: none;
}

#app .mobile-button-area .buy-btn {
  flex: 1;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.84px;
  color: #850606;
}

#app .mobile-button-area .buy-btn.cart-btn {
  background-color: #fff9f0;
}

#app .mobile-button-area .buy-btn.at-once-btn {
  background-color: #D40000;
  color: #fff;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  background-color: #141413;
  z-index: 10;
  overflow: hidden;
}

div.modal-main {
  position: absolute;
  z-index: 11;
  width: 60%;
  min-height: 200px;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  border: solid 1px #2b2a22;
  background-color: #fff9f0;
}

div.modal-container.mobile div.modal-main {
  position: fixed;
  bottom: 0;
  min-height: auto;
  top: auto;
  transform: translate(-50%, 0%);
  border-radius: 0;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}

div.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
/* div.modal-container.mobile {
  display: none;
} */

div.modal-main .modal-title {
  margin: 2rem 0;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  color: #2b2a22;
}

div.modal-main .modal-body {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #850606;
  padding: 0 1rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

div.modal-main .modal-footer {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  padding: 0 1rem;
  box-sizing: border-box;
  position: relative;
  justify-content: center;
}

div.modal-main .modal-footer .modal-btn {
  padding: 11px;
  box-sizing: border-box;
  border-radius: 8px;
  border: solid 1px #850606;
  font-size: 16px;
  letter-spacing: 0.04px;
  text-align: center;
  color: #850606;
  flex-basis: 33%;
  cursor: pointer;
}

div.modal-main .modal-footer .modal-btn.success-btn {
  background-color: #850606;
  color: #fff;
}

div.modal-main div.product-info {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

div.modal-main div.product-info img.close-img {
  position: absolute;
  top: -60px;
  right: -10px;
}

div.modal-main div.product-info .product-img {
  display: flex;
  flex: 1;
  margin-right: 16px;
  flex-basis: 33%;
  border-radius: 8px;
  overflow: hidden;
}
div.modal-main div.product-info .product-img img {
  width: 100%;
  align-self: center;
}

div.modal-main div.product-info div.product-name {
  flex: 1;
  flex-basis: 66%;
}
div.modal-main div.product-info div.product-name span {
  font-size: 21px;
  font-weight: 600;
  color: #850606;
}

div.modal-main div.product-info div.product-name h2 {
  font-size: 16px;
  font-weight: 600;
  color: #2b2a22;
  margin-top: 0;
}
div.product-count {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
div.product-count span.shipping {
  text-align: right;
  flex-grow: 1;
  font-size: 12px;
  flex-basis: 100%;
}
div.product-count div.product-count-operation button,
div.product-count div.product-count-operation input {
  background-color: #fff;
  border-radius: 8px;
  border: solid 1px #f1eadf;
  padding: 8px 14px;
  box-sizing: border-box;
  min-height: 55px;
  font-size: 25px;
}

div.product-count div.product-count-operation span {
  font-size: 25px;
  color: #2b2a22;
}

div.product-count div.product-count-operation input {
  width: 60px;
  text-align: center;
}

#app .web-modal .modal-body {
  position: relative;
  width: 100%;
  background-color: #fff9f0;
  z-index: 1;
  height: 200px;
}

.modal-container .modal-main .modal-cart-btn {
  border-radius: 22px;
  background-color: #850606;
  padding: 10px;
  color: #fff9f0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

#app .cart-empty {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  margin-bottom: 70px;
}
#app .cart-empty p {
  margin-bottom: 70px;
  font-size: 18px;
  font-weight: 600;
  color: #850606;
  align-self: center;
}
#app .cart-empty img {
  align-self: center;
}

#app .solid-btn {
  padding: 8px;
  border-radius: 22px;
  background-color: #850606;
  text-align: center;
  color: #fff9f0;
  font-size: 21px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 200px;
  text-decoration: none;
}

#app p.unpayed {
  color: #ec3533;
}
#app p.unpayed small {
  font-size: 12px;
}

#app .cart-empty h2 {
  color: #850606;
  text-align: center;
  font-size: 21px;
  font-weight: 600;
}
#app .cart-empty p.small {
  font-size: 16px;
  font-weight: normal;
  color: #850606;
  align-self: center;
}

.margin-right-9 {
  margin-right: 9px;
}

.margin-right-24 {
  margin-right: 24px;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.hidden {
  display: none !important;
}

.width-80-percent {
  width: 80%;
}

.flex-basis-66 {
  flex-basis: 66% !important;
}

.justify-content-center {
  justify-content: center !important;
}

.text-deco-none {
  text-decoration: none;
}
.form-row.margin-bottom-0 {
  margin-bottom: 0 !important;
}
.form-row.margin-top-0 {
  margin-top: 0 !important;
}
#app .order-detail h2.order-success {
  font-size: 30px;
  font-weight: 600;
  color: #4B7906;
  margin: 0 auto;
}

.order-item {
  border: 1px #ccc solid;
  width: 100%;
  background: #FFF;
  margin-bottom: 40px;
}
#search-list .order-info-title {
  color: #850606 !important;
}
.order-header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.order-header span{
  color:blue;
  font-size: 12px;
  padding: 15px;
}
.order-header-right{
  display:flex;
  align-items: center;
  padding-right: 16px;
}

@media screen and (max-width: 787px) {
  #app header .header-container {
    padding: 24px 24px 0 24px;
    flex-wrap: wrap;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  }
  #app header .header-container .categories {
    order: 3;
    flex-basis: 100%;
    text-align: left;
    overflow: auto;
    /** 需要再上層設定 min-width: 0; 解決與 flex 的衝突 **/
    white-space: nowrap;
  }
  #app header .header-logo {
    width: 80px;
  }
  #app .header-container .categories ul {
    margin-bottom: 11px;
  }
  #app .header-container .categories ul {
    padding: 0;
  }
  #app header {
    margin-bottom: 40px;
  }
  #app .product-list {
    min-height: calc(100vh - 590px);
  }
  #app .product-list .product-item {
    flex-basis: 100%;
  }
  #app .footer .footer-wrapper {
    flex-direction: column;
  }
  #app .footer .logo-area {
    margin-top: 40px;
    order: 2; 
  }
  #app .footer .customer-service {
    width: 86%;
  }
  #app .product-detail {
    padding: 0;
  }
  #app .product-detail div.notice {
    padding: 0 24px;
    box-sizing: border-box; 
  }
  /* #app .product-detail .web-button-area {
    display: none;
  } */
  /* #app .mobile-button-area {
    display: flex;
  } */
  /* #app .footer.product-detail-footer {
    margin-bottom: 54px;
  } */
  #app .web-button-area .buy-btn {
    flex-basis: 60%;
  }
  #app header {
    margin-bottom: 0;
  }
  div.modal-container.mobile {
    display: block;
  }
  div.modal-main .modal-footer {
    margin-bottom: 16px;
  }
  div.modal-main {
    width: 90%;
  }
  div.modal-main .modal-footer .modal-btn {
    flex-basis: 45%;
  }
  #app .cart-detail,
  #app .order-detail,
  #app .order-query {
    margin-bottom: 0;
    padding: 12px;
  }
  #app .cart-detail .form-container .cart-form-left,
  #app .cart-detail .form-container .cart-form-right {
    padding: 0;
    flex-grow: 1;
    flex-basis: 100%;
  }
  #app .cart-form-left .coupon-code div.coupon-btn {
    padding: 7px 21px;
  }
  #app .cart-detail h2.spec-title,
  #app .order-detail h2.spec-title,
  #app .order-query h2.spec-title {
    font-size: 18px;
    margin-top: 24px
  }
  #app .cart-detail .inner-return-back,
  #app .order-detail .inner-return-back,
  #app .order-query .inner-return-back {
    position: absolute;
    top: 34px;
    left: 24px;
    color: #850606;
    font-size: 16px;
    display: flex;
  }
  #app .cart-detail .inner-return-back img.arrow,
  #app .order-detail .inner-return-back img.arrow,
  #app .order-query .inner-return-back img.arrow {
    width: 24px;
    height: 24px;
  }
  #app .order-detail,
  #app .order-query {
    padding: 0 12px;
  }
  #app .order-detail .order-summary, #app .order-detail .order-info {
    padding: 12px;
  }
  #app .cart-form-left .cart-product-item {
    padding: 12px;
    margin-bottom: 12px;
  }
  #app .cart-detail .form div label {
    margin-left: 12px;
    font-size: 16px;
    margin-bottom: 9px;
  }
  #app .order-detail .order-info-title {
    font-size: 16px;
    font-weight: 600;
  }
  #app .customer-info div label:nth-child(1) {
    min-width: 90px;
  }
  #app .mobile-button-area .buy-btn.gray {
    background-color: gray;
  }
  #app .product-detail .product-spec {
    padding: 0;
  }
  #app .product-detail .product-spec div.text p {
    padding: 0 24px;
  }
}

/**
 * 處理 IPhone SE 尺寸問題
 */
@media screen and (max-width: 320px) {
  #app .header-container .header-logo {
    margin-bottom: 12px;
    max-width: 100px;
    flex-basis: 100%;
  }
  #app .cart-form-left .coupon-code div.coupon-btn {
    padding: 7px;
  }

  #app .order-detail .order-summary, #app .order-detail .order-info,
  #app div.order-info div.cart-product-item div.product-info div.product-name h2,
  #app div.order-info div.cart-product-item div.product-info div.product-name span {
    font-size: 14px;
  }
  #app .product-statistics div, 
  #app .customer-info div {
    font-size: 16px;
  }
  #app .product-statistics div.total {
    font-size: 18px;
  }
  #app .product-statistics div label small {
    font-size: 12px;
  }
  #app .customer-info div label:nth-child(1) {
    min-width: 80px;
  }
}

@media screen and (min-width: 788px) {
  #app .product-detail .product-spec p {
    max-width: 50%;
  }

  div.modal-container.mobile div.modal-main {
    transform: translate(-50%, -65%);
    border-radius: 8px;
    width: 40%;
  }

  .modal-container .modal-main .modal-cart-btn {
    width: 50%;
    margin: 0 auto;
  }
  div.modal-main {
    width: 40%;
  }

  div.cart-product-item div.product-info div.product-name h2 {
    font-size: 20px;
  }
  #app div.order-info div.cart-product-item div.product-info div.product-name span{
    font-size: 21px;
  }
}