@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, body {
  font-family: 'Microsoft JhengHei', sans-serif;
  line-height: 1.5;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

.container {
  max-width: 940px;
  margin: 0 auto;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
}

.header .hamLogo {
  display: none;
  border: none;
  max-width: 100%;
  background: transparent;
  cursor: pointer;
}

.header .mobLogo {
  display: none;
}

.header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 0px;
  width: 70%;
}

.header .cartIco img {
  padding-left: 19px;
}

.header .menu-link, .header .cartIco {
  display: block;
  padding: 35px 0;
  font-weight: bold;
  text-decoration: none;
  color: #3F5D45;
}

/* -----------------------header響應式----------------------- */
@media (max-width: 768px) {
  .container {
    width: 100%;
  }
  .container .header {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .container .header nav {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .container .header nav .active {
    max-height: 200px;
    z-index: 999;
  }
  .container .header nav .hamLogo {
    display: block;
  }
  .container .header nav .hamLogo:focus {
    outline: 0;
  }
  .container .header nav .mobLogo {
    display: block;
    width: 40%;
  }
  .container .header nav .menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    overflow: hidden;
    background: #ffffff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container .header nav .menu-item {
    width: 100%;
  }
  .container .header nav .menu-item:hover {
    background: #EAF0ED;
  }
  .container .header nav .menu-link {
    padding: 22px 0;
    text-align: center;
  }
  .container .header .logo {
    display: none;
  }
  .container .header .cartIco img {
    padding: 0;
  }
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 60px 0;
}

.col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-right: 20px;
  background-color: #3F5D45;
  height: 513px;
  max-width: 460px;
}

.col-1 .row-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
}

.col-1 .row-1 h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #ffffff;
}

.col-1 .row-1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 170px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  border-top: 1px solid #ffffff;
  padding-right: 20px;
}

.col-1 .row-1 img {
  position: absolute;
  top: -10px;
}

.col-1 .row-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 39px;
  margin-bottom: 14px;
}

.col-1 .row-2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 44px;
}

.col-1 .row-2 li {
  margin: 0px 0px 0px -1px;
  border: 1px solid #EAF0ED;
}

.col-1 .row-2 a {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 55px;
  -webkit-transition: .4s;
  transition: .4s;
  background-color: #3F5D45;
  color: #EAF0ED;
}

.col-1 .row-2 a:hover {
  background-color: #EAF0ED;
  color: #3F5D45;
}

.col-1 .row-2 p {
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 8px;
  color: #ffffff;
}

.col-1 .row-2 form {
  margin-bottom: 16px;
}

.col-1 .forMail {
  width: 100%;
  border: none;
  padding: 17px 20px;
  background-color: #EAF0ED;
}

.col-1 .forWard {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  padding: 19px 0 13px 0;
  color: #3F5D45;
  background-color: #FFE180;
  cursor: pointer;
}

.col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 300px;
}

.col-2 h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 16px 0;
  color: #8DA291;
  background-color: #EAF0ED;
}

.col-2 .row-1 {
  border: 1px solid #EAF0ED;
  margin-bottom: 20px;
}

.col-2 .row-1 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 20px;
  color: #8DA291;
}

.col-2 .row-1 li:nth-child(3) {
  font-size: 1.25rem;
  font-weight: bold;
}

.col-2 .row-2 {
  border: 1px solid #EAF0ED;
}

.col-2 .shoppingList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4px 20px;
}

.col-2 .shoppingList-img li {
  width: 120px;
  height: 80px;
  overflow: hidden;
  margin: 16px 0;
}

.col-2 .shoppingList-img li img {
  margin: -95px 0;
}

.col-2 .shoppingList-img li:nth-child(3) img {
  margin: 0;
}

.col-2 .shoppingList-text {
  color: #8DA291;
}

.col-2 .shoppingList-text li {
  padding: 16px 0 12px 0px;
  margin: 10px 0;
}

.col-2 .shoppingList-text span {
  font-size: 1.25rem;
  font-weight: bold;
}

/* -----------------------響應式----------------------- */
@media (max-width: 375px) {
  .content {
    margin: 0;
  }
  .col-1 {
    margin-right: 0;
    width: 100%;
  }
  .col-1 .row-2 a {
    padding: 14px 33px;
  }
  .col-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .col-1 .row-2 a {
    padding: 14px 33px;
  }
}

.email {
  background: #3F5D45;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 43px 20%;
}

.email ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.email h2 {
  font-size: 24px;
  padding-left: 20px;
  color: #EAF0ED;
}

.email form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.email .mailIcon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px 20px;
  width: 64px;
  height: 58px;
  background: #EAF0ED;
}

.email .forMail {
  padding: 16px 25px 16px;
  border: none;
  background: #EAF0ED;
}

.email .forWard {
  border: none;
  padding: 17px 20px;
  background-color: #FFE180;
}

.footerTotal {
  background: #EAF0ED;
}

.footerTotal .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 940px;
  margin: 0 auto;
  padding: 30px;
}

.footerTotal .row-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footerTotal .service {
  font-size: 16px;
  font-weight: bold;
  color: #3F5D45;
}

.footerTotal .web {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.footerTotal .web li {
  padding-right: 8px;
}

.footerTotal .row-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #3F5D45;
}

.footerTotal .row-2 h2 {
  font-size: 1.25rem;
  text-indent: 10px;
  font-weight: bold;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 6px;
}

.footerTotal .row-2 p {
  margin-top: 46px;
}

/* -----------------------footer響應式----------------------- */
@media (max-width: 768px) {
  .email {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0;
  }
  .email form {
    margin-top: 30px;
  }
  /* -----------------------email響應式----------------------- */
  .footer {
    width: 100%;
    padding: 30px;
  }
  .footer .connect {
    margin-top: 40px;
  }
  /* -----------------------footer響應式----------------------- */
}

@media (max-width: 375px) {
  .footer {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
  }
  .footer .row-1 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer .row-2 h2 {
    display: none;
  }
}
/*# sourceMappingURL=invoice.css.map */