@charset "UTF-8";
@-webkit-keyframes fadeIn {
  opacity: 0;
  opacity: 1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  opacity: 1;
  opacity: 0;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideInDown {
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate(-50%, -10%);
            transform: translate(-50%, -10%);
  }
  to {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@-webkit-keyframes zoomIn {
  -webkit-transform: translateX(-50%) scale(1.2);
          transform: translateX(-50%) scale(1.2);
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}
@keyframes zoomIn {
  from {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
@-webkit-keyframes slideOutDown {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  visibility: hidden;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes slideInUp {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/*///////////header///////////////////////*/
header {
  /*  0408修改 */
  height: 100px;
  background: #000;
  color: #FFF;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}
@media (max-width: 1200px) {
  header {
    /*  0408修改 */
    height: 70px;
  }
}
@media (max-width: 600px) {
  header {
    /*  0408修改 */
    height: 40px;
  }
}
header.is-logged .open-login-icon {
  display: none;
}
header.is-logged .member-service-box {
  display: block;
}

.header-box {
  /*  0408修改 */
  height: 100%;
  padding: 0 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 600px) {
  .header-box {
    /*  0408修改 */
    padding: 0px 10px;
  }
}

.logo {
  width: 230px;
  margin-right: 50px;
}
@media (max-width: 1600px) {
  .logo {
    margin-right: 20px;
    /*  0408修改 */
    width: 200px;
  }
}
@media (max-width: 1200px) {
  .logo {
    margin-right: 0px;
    width: 150px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .logo {
    width: 100px;
  }
}

.header-right,
.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-left .text-link {
  font-size: 1.125rem;
  line-height: 26px;
  margin: 0 50px;
}
@media (max-width: 1600px) {
  .header-left .text-link {
    margin: 0 20px;
  }
}
@media (max-width: 1200px) {
  .header-left .list-box {
    display: none;
  }
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-right .btn-icon {
  font-size: 1.125rem;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.header-right .btn-icon:first-child {
  margin-right: 30px;
}
@media (max-width: 600px) {
  .header-right .btn-icon:first-child {
    margin-right: 15px;
  }
}
.header-right .btn-icon img {
  width: 30px;
  margin-right: 8px;
}
@media (max-width: 1200px) {
  .header-right .btn-icon img {
    margin: 0;
  }
}
@media (max-width: 600px) {
  .header-right .btn-icon img {
    width: 22px;
  }
}
@media (max-width: 1200px) {
  .header-right .btn-icon p {
    display: none;
  }
}
.header-right .btn-icon div {
  position: relative;
  height: 30px;
}
@media (max-width: 600px) {
  .header-right .btn-icon div {
    height: 22px;
  }
}

@keyframes fade {
  from { opacity: 1.0; }
  50% { opacity: 0.1; }
  to { opacity: 1.0; }
}
@-webkit-keyframes fade {
  from { opacity: 1.0; }
  50% { opacity: 0.1; }
  to { opacity: 1.0; }
}
.header-right .btn-icon .has-pick {
  width: 5px;
  height: 5px;
  position: absolute;
  top: 2px;
  right: 5px;
  border-radius: 50px;
  background: #ff0000;
  display: none;
  animation:fade 500ms infinite;
  -webkit-animation:fade 500ms infinite;

}

.header-right .header-shopping-cart.show .has-pick {
  display: inline-block;
}
 .btn-icon .has-pick {
  width: 5px;
  height: 5px;
  position: absolute;
  right: 10px;
  border-radius: 50px;
  background: #ff0000;
  display: none;
  animation:fade 500ms infinite;
  -webkit-animation:fade 500ms infinite;

}

 .header-shopping-cart.show .has-pick {
  display: inline-block;
}

 .has-pick-login {
  width: 5px;
  height: 5px;
  position: absolute;
  right: 5px;
  border-radius: 50px;
  background: #ff0000;
  display: none;
  animation:fade 500ms infinite;
  -webkit-animation:fade 500ms infinite;

}

 .has-pick-login {
  display: inline-block;
}

.mob-menu-icon {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .mob-menu-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.mob-menu-icon span {
  width: 22px;
  height: 3px;
  border-radius: 5px;
  background: #FFF;
  display: inline-block;
}
.mob-menu-icon span:not(:last-child) {
  margin-bottom: 4px;
}

body.open-menu .header-left {
  z-index: 101;
  background: rgba(0, 0, 0, 0);
}
body.open-menu .mob-logo {
  position: fixed;
  z-index: 101;
}

.member-service-box {
  position: relative;
  display: none;
}
.member-service-box.show .service-list, .member-service-box.show::after {
  display: block;
}
.member-service-box .service-list {
  padding: 7px 0;
  min-width: 130px;
  font-size: 0.875rem;
  line-height: 22px;
  text-align: center;
  position: absolute;
  top: calc(100% + 10px);
  right: 20px;
  background: #fff;
  color: #333;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: none;
}
@media (max-width: 600px) {
  .member-service-box .service-list {
    right: 0px;
  }
}
.member-service-box .service-list a {
  padding: 7px;
  display: block;
}
.member-service-box::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 10px 5px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: calc(100% + 0px);
  right: 30px;
  display: none;
}
@media (max-width: 600px) {
  .member-service-box::after {
    right: 5px;
  }
}
.member-service-box .is-cart {
  position: relative;
}
.member-service-box .is-cart.red::after {
  display: block;
}
.member-service-box .is-cart::after {
  content: attr(data-length);
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  line-height: 20px;
  position: absolute;
  top: -2px;
  right: 23px;
  border-radius: 50px;
  background: #ff0000;
  display: none;
  color: #FFF;
}
.member-service-box .btn-icon {
  margin-right: 0px !important;
}

/*///////////燈箱///////////////////////*/
.mob-menu-lightbox,
.common-model {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: -999;
  opacity: 0;
  display: none;
}
@media (max-width: 1200px) {
  .mob-menu-lightbox,
.common-model {
    top: 70px;
  }
}
@media (max-width: 600px) {
  .mob-menu-lightbox,
.common-model {
    top: 32px;
  }
}
.mob-menu-lightbox.show,
.common-model.show {
  display: block;
  -webkit-animation: 0.5s fadeIn forwards;
          animation: 0.5s fadeIn forwards;
}
.mob-menu-lightbox.leave,
.common-model.leave {
  -webkit-animation: 0.5s fadeOut forwards;
          animation: 0.5s fadeOut forwards;
}

.mob-menu-lightbox.show,
.common-model.show {
  z-index: 999;
}

/*///////////手機板選單///////////////////////*/
.mob-menu-lightbox .close-btn,
.common-model .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 36px;
  cursor: pointer;
}
@media (max-width: 500px) {
  .mob-menu-lightbox .close-btn,
.common-model .close-btn {
    top: 10px;
    right: 10px;
    width: 25px;
  }
}

.model-content {
  position: relative;
}

.menu-inner {
  text-align: center;
  position: relative;
  min-height: calc(100vh - 100px);
}
@media (max-width: 1200px) {
  .menu-inner {
    min-height: calc(100vh - 70px);
  }
}
@media (max-width: 600px) {
  .menu-inner {
    min-height: calc(100vh - 32px);
  }
}

.menu-content {
  padding-top: 30%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
}
.menu-content .text-link {
  font-size: 1rem;
  line-height: 24px;
  color: #FFF;
  margin-bottom: 30px;
}

.menu-community {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 20px;
  width: calc(100% - 40px);
  position: absolute;
  bottom: 0;
  left: 0;
}
.menu-community img {
  width: 28px;
}

.login-model-inner {
  /*  0408修改 */
  background: #FFF;
  padding: 60px 5% 70px;
  width: calc( 600px - 5% );
  min-height: auto;
  margin: 8% auto 0;
  position: relative;
  text-align: center;
  color: #333333;
}
@media (max-width: 700px) {
  .login-model-inner {
    width: calc( 90% - 20px );
    padding: 60px 10px 70px;
  }
}
.login-model-inner .close-btn {
  width: 15px;
  top: 15px;
  right: 15px;
}
.login-model-inner .community-icon {
  margin: 0 15px;
}
.login-model-inner .community-icon img {
  width: 50px;
}
.login-model-inner .community-box {
  margin-bottom: 40px;
}
.login-model-inner .title {
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 30px;
  font-weight: bold;
}
.login-model-inner .note {
  font-size: 0.75rem;
  line-height: 20px;
  margin-bottom: 30px;
  line-height: 25px;
}
.login-model-inner .cancel-button {
  font-size: 0.875rem;
  line-height: 22px;
  padding: 5px 70px;
  border-radius: 25px;
  background: #cccccc;
  color: #FFF;
  cursor: pointer;
}

/*///////////footer///////////////////////*/
footer {
  background: #333333;
  color: #FFF;
  padding: 75px 80px 35px;
  font-size: 0.875rem;
  line-height: 22px;
  line-height: 25px;
}
@media (max-width: 1300px) {
  footer {
    padding: 75px 5% 35px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 14px 20px 15px;
    font-size: 0.75rem;
    line-height: 20px;
  }
}
footer .footer-block {
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
}
@media (max-width: 1300px) {
  footer .footer-block {
    display: block;
    width: 100%;
  }
}
@media (max-width: 600px) {
  footer .footer-block {
    margin-bottom: 40px;
  }
}
footer .community-block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 45%;
}
@media (max-width: 1300px) {
  footer .community-block {
    margin-bottom: 50px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  footer .community-block {
    margin-bottom: 15px;
  }
}
footer .community-block div {
  min-width: 40px;
}
@media (max-width: 600px) {
  footer .community-block div {
    min-width: 30px;
  }
}
footer .community-block img {
  margin-right: 7px;
  width: 40px;
}
@media (max-width: 900px) {
  footer .community-block img {
    margin-right: 0px;
  }
}
@media (max-width: 600px) {
  footer .community-block img {
    width: 30px;
  }
}
footer .community-block a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  footer .community-block a {
    display: inline-block;
  }
  footer .community-block a p {
    display: none;
  }
}
footer .company-info {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1300px) {
  footer .company-info {
    width: 100%;
  }
}
@media (max-width: 900px) {
  footer .company-info {
    display: block;
  }
}
footer .company-info p {
  width: 45%;
}
@media (max-width: 900px) {
  footer .company-info p {
    width: 100%;
  }
}
@media (max-width: 900px) {
  footer .company-info p:not(:last-child) {
    margin-bottom: 30px;
  }
}
footer .go-top-icon {
  position: fixed;
  z-index: 10;
  right: 15px;
  bottom: 90px;
  opacity: 0;
}
@media (max-width: 600px) {
  footer .go-top-icon {
    right: 8px;
  }
}
footer .go-top-icon.show {
  opacity: 1;
}
footer .go-top-icon.stop {
  position: relative;
  right: auto;
  bottom: auto;
}
footer .go-top-icon img {
  width: 40px;
}
@media (max-width: 600px) {
  footer .go-top-icon img {
    width: 30px;
  }
}
footer .bottom-text {
  text-align: center;
}

.right-fixed {
  /*  0413修改 */
  position: fixed;
  right: 15px;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 99;
}
@media (max-width: 600px) {
  .right-fixed {
    right: 8px;
    top: 50%;
  }
}
.right-fixed a {
  border-radius: 50%;
  display: inline-block;
  width: 45px;
  height: 45px;
  margin: 5px auto;
}
@media (max-width: 600px) {
  .right-fixed a {
    width: 30px;
    height: 30px;
  }
}
.right-fixed img {
  width: 80%;
  margin-top: 5px;
}

/*///////////共用///////////////////////*/
img {
  width: 100%;
  display: inline-block;
}

.section-block {
  width: 100%;
  padding-top: 97px;
}
@media (max-width: 1200px) {
  .section-block {
    padding-top: 70px;
  }
}
@media (max-width: 700px) {
  .section-block {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .section-block {
    padding-top: 32px;
  }
}

@media (max-width: 600px) {
  .only-pc {
    display: none !important;
  }
}

.only-mob {
  display: none !important;
}
@media (max-width: 600px) {
  .only-mob {
    display: inline-block !important;
  }
}