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

/* 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;
}

a,
h4,
h2,
p,
span {
  text-decoration: none;
  font-family: "微軟正黑體";
}

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

/* CSS Reset end */
/* pure btn start */
/*!
Pure v0.6.0
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
*/
.btn {
  /* Structure */
  display: inline-block;
  zoom: 1;
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Firefox: Get rid of the inner focus border */
.btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/*csslint outline-none:false*/
.btn {
  font-family: inherit;
  font-size: 100%;
  padding: 0.5em 1em;
  color: #444;
  /* rgba not supported (IE 8) */
  color: rgba(0, 0, 0, 0.8);
  /* rgba supported */
  border: 1px solid #999;
  /*IE 6/7/8*/
  border: none rgba(0, 0, 0, 0);
  /*IE9 + everything else*/
  background-color: #E6E6E6;
  text-decoration: none;
  border-radius: 2px;
}

.btn-hover,
.btn:hover,
.btn:focus {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
}

.btn:focus {
  outline: 0;
}

.btn-active,
.btn:active {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
  border-color: #0009;
}

.btn[disabled],
.btn-disabled,
.btn-disabled:hover,
.btn-disabled:focus,
.btn-disabled:active {
  border: none;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  filter: alpha(opacity=40);
  -khtml-opacity: 0.40;
  -moz-opacity: 0.40;
  opacity: 0.40;
  cursor: not-allowed;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-hidden {
  display: none;
}

/* Firefox: Get rid of the inner focus border */
.btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.btn-primary,
.btn-selected,
a.btn-primary,
a.btn-selected {
  background-color: #0078e7;
  color: #fff;
}

.btn-warning {
  background: darkorange;
  color: #fff;
}

.btn-dark {
  background: gray;
  color: #fff;
}

/*pure btn end*/
/* pure form start */
/*!
Pure v0.6.0
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
*/
/*csslint box-model:false*/
/*
Box-model set to false because we're setting a height on select elements, which
also have border and padding. This is done because some browsers don't render
the padding. We explicitly set the box-model for select elements to border-box,
so we can ignore the csslint warning.
*/
.pure-form input[type="text"],
.pure-form input[type="password"],
.pure-form input[type="email"],
.pure-form input[type="url"],
.pure-form input[type="date"],
.pure-form input[type="month"],
.pure-form input[type="time"],
.pure-form input[type="datetime"],
.pure-form input[type="datetime-local"],
.pure-form input[type="week"],
.pure-form input[type="number"],
.pure-form input[type="search"],
.pure-form input[type="tel"],
.pure-form input[type="color"],
.pure-form select,
.pure-form textarea {
  padding: 0.5em 0.6em;
  display: inline-block;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 3px #ddd;
          box-shadow: inset 0 1px 3px #ddd;
  border-radius: 4px;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]) {
  padding: 0.5em 0.6em;
  display: inline-block;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 3px #ddd;
          box-shadow: inset 0 1px 3px #ddd;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
/* May be able to remove this tweak as color inputs become more standardized across browsers. */
.pure-form input[type="color"] {
  padding: 0.2em 0.5em;
}

.pure-form input[type="text"]:focus,
.pure-form input[type="password"]:focus,
.pure-form input[type="email"]:focus,
.pure-form input[type="url"]:focus,
.pure-form input[type="date"]:focus,
.pure-form input[type="month"]:focus,
.pure-form input[type="time"]:focus,
.pure-form input[type="datetime"]:focus,
.pure-form input[type="datetime-local"]:focus,
.pure-form input[type="week"]:focus,
.pure-form input[type="number"]:focus,
.pure-form input[type="search"]:focus,
.pure-form input[type="tel"]:focus,
.pure-form input[type="color"]:focus,
.pure-form select:focus,
.pure-form textarea:focus {
  outline: 0;
  border-color: #129FEA;
}

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]):focus {
  outline: 0;
  border-color: #129FEA;
}

.pure-form input[type="file"]:focus,
.pure-form input[type="radio"]:focus,
.pure-form input[type="checkbox"]:focus {
  outline: thin solid #129FEA;
  outline: 1px auto #129FEA;
}

.pure-form .pure-checkbox,
.pure-form .pure-radio {
  margin: 0.5em 0;
  display: block;
}

.pure-form input[type="text"][disabled],
.pure-form input[type="password"][disabled],
.pure-form input[type="email"][disabled],
.pure-form input[type="url"][disabled],
.pure-form input[type="date"][disabled],
.pure-form input[type="month"][disabled],
.pure-form input[type="time"][disabled],
.pure-form input[type="datetime"][disabled],
.pure-form input[type="datetime-local"][disabled],
.pure-form input[type="week"][disabled],
.pure-form input[type="number"][disabled],
.pure-form input[type="search"][disabled],
.pure-form input[type="tel"][disabled],
.pure-form input[type="color"][disabled],
.pure-form select[disabled],
.pure-form textarea[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
  color: #cad2d3;
}

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type])[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
  color: #cad2d3;
}

.pure-form input[readonly],
.pure-form select[readonly],
.pure-form textarea[readonly] {
  background-color: #eee;
  /* menu hover bg color */
  color: #777;
  /* menu text color */
  border-color: #ccc;
}

.pure-form input:focus:invalid,
.pure-form textarea:focus:invalid,
.pure-form select:focus:invalid {
  color: #b94a48;
  border-color: #e9322d;
}

.pure-form input[type="file"]:focus:invalid:focus,
.pure-form input[type="radio"]:focus:invalid:focus,
.pure-form input[type="checkbox"]:focus:invalid:focus {
  outline-color: #e9322d;
}

.pure-form select {
  /* Normalizes the height; padding is not sufficient. */
  height: 2.25em;
  border: 1px solid #ccc;
  background-color: white;
}

.pure-form select[multiple] {
  height: auto;
}

.pure-form label {
  margin: 0.5em 0 0.2em;
}

.pure-form fieldset {
  margin: 0;
  padding: 0.35em 0 0.75em;
  border: 0;
}

.pure-form legend {
  display: block;
  width: 100%;
  padding: 0.3em 0;
  margin-bottom: 0.3em;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}

.pure-form-stacked input[type="text"],
.pure-form-stacked input[type="password"],
.pure-form-stacked input[type="email"],
.pure-form-stacked input[type="url"],
.pure-form-stacked input[type="date"],
.pure-form-stacked input[type="month"],
.pure-form-stacked input[type="time"],
.pure-form-stacked input[type="datetime"],
.pure-form-stacked input[type="datetime-local"],
.pure-form-stacked input[type="week"],
.pure-form-stacked input[type="number"],
.pure-form-stacked input[type="search"],
.pure-form-stacked input[type="tel"],
.pure-form-stacked input[type="color"],
.pure-form-stacked input[type="file"],
.pure-form-stacked select,
.pure-form-stacked label,
.pure-form-stacked textarea {
  display: block;
  margin: 0.25em 0;
}

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form-stacked input:not([type]) {
  display: block;
  margin: 0.25em 0;
}

.pure-form-aligned input,
.pure-form-aligned textarea,
.pure-form-aligned select,
.pure-form-aligned .pure-help-inline,
.pure-form-message-inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

.pure-form-aligned textarea {
  vertical-align: top;
}

/* Aligned Forms */
.pure-form-aligned .pure-control-group {
  margin-bottom: 0.5em;
}

.pure-form-aligned .pure-control-group label {
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  width: 10em;
  margin: 0 1em 0 0;
}

.pure-form-aligned .pure-controls {
  margin: 1.5em 0 0 11em;
}

/* Rounded Inputs */
.pure-form input.pure-input-rounded,
.pure-form .pure-input-rounded {
  border-radius: 2em;
  padding: 0.5em 1em;
}

/* Grouped Inputs */
.pure-form .pure-group fieldset {
  margin-bottom: 10px;
}

.pure-form .pure-group input,
.pure-form .pure-group textarea {
  display: block;
  padding: 10px;
  margin: 0 0 -1px;
  border-radius: 0;
  position: relative;
  top: -1px;
}

.pure-form .pure-group input:focus,
.pure-form .pure-group textarea:focus {
  z-index: 3;
}

.pure-form .pure-group input:first-child,
.pure-form .pure-group textarea:first-child {
  top: 1px;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

.pure-form .pure-group input:first-child:last-child,
.pure-form .pure-group textarea:first-child:last-child {
  top: 1px;
  border-radius: 4px;
  margin: 0;
}

.pure-form .pure-group input:last-child,
.pure-form .pure-group textarea:last-child {
  top: -2px;
  border-radius: 0 0 4px 4px;
  margin: 0;
}

.pure-form .pure-group button {
  margin: 0.35em 0;
}

.pure-form .pure-input-1 {
  width: 100%;
}

.pure-form .pure-input-2-3 {
  width: 66%;
}

.pure-form .pure-input-1-2 {
  width: 50%;
}

.pure-form .pure-input-1-3 {
  width: 33%;
}

.pure-form .pure-input-1-4 {
  width: 25%;
}

/* Inline help for forms */
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
.pure-form .pure-help-inline,
.pure-form-message-inline {
  display: inline-block;
  padding-left: 0.3em;
  color: #666;
  vertical-align: middle;
  font-size: 0.875em;
}

/* Block help for forms */
.pure-form-message {
  display: block;
  color: #666;
  font-size: 0.875em;
}

@media only screen and (max-width: 480px) {
  .pure-form button[type="submit"] {
    margin: 0.7em 0 0;
  }
  .pure-form input:not([type]),
  .pure-form input[type="text"],
  .pure-form input[type="password"],
  .pure-form input[type="email"],
  .pure-form input[type="url"],
  .pure-form input[type="date"],
  .pure-form input[type="month"],
  .pure-form input[type="time"],
  .pure-form input[type="datetime"],
  .pure-form input[type="datetime-local"],
  .pure-form input[type="week"],
  .pure-form input[type="number"],
  .pure-form input[type="search"],
  .pure-form input[type="tel"],
  .pure-form input[type="color"],
  .pure-form label {
    margin-bottom: 0.3em;
    display: block;
  }
  .pure-group input:not([type]),
  .pure-group input[type="text"],
  .pure-group input[type="password"],
  .pure-group input[type="email"],
  .pure-group input[type="url"],
  .pure-group input[type="date"],
  .pure-group input[type="month"],
  .pure-group input[type="time"],
  .pure-group input[type="datetime"],
  .pure-group input[type="datetime-local"],
  .pure-group input[type="week"],
  .pure-group input[type="number"],
  .pure-group input[type="search"],
  .pure-group input[type="tel"],
  .pure-group input[type="color"] {
    margin-bottom: 0;
  }
  .pure-form-aligned .pure-control-group label {
    margin-bottom: 0.3em;
    text-align: left;
    display: block;
    width: 100%;
  }
  .pure-form-aligned .pure-controls {
    margin: 1.5em 0 0 0;
  }
  /* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
  .pure-form .pure-help-inline,
  .pure-form-message-inline,
  .pure-form-message {
    display: block;
    font-size: 0.75em;
    /* Increased bottom padding to make it group with its related input element. */
    padding: 0.2em 0 0.8em;
  }
}

/* pure form end */
.feature {
  background-color: #efe9e7;
  padding-bottom: 40px;
}

.feature h2 {
  font-size: 1.8em;
  color: #3d1101;
  padding: 50px 0;
  text-align: center;
}

.feature li {
  width: 30.333333%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  text-align: center;
  float: left;
}

.feature img {
  border-radius: 50%;
}

.feature h4 {
  font-size: 1.5em;
  padding-top: 10px;
  font-weight: bold;
}

.feature p {
  font-size: 1em;
  text-align: justify;
  padding: 15px 0;
  line-height: 24px;
}

@media (max-width: 768px) {
  .feature li {
    width: 80%;
    float: none;
    margin: 0 auto;
  }
}

.main {
  background-color: #3d1101;
}

.main .img {
  float: left;
  width: 50%;
}

.main .text {
  float: right;
  color: #efe9e7;
  padding-top: 5em;
  width: 50%;
}

.main .text h4 {
  font-size: 1.2em;
  padding-top: 10px;
}

.main .text p {
  font-size: 1em;
  text-align: justify;
  line-height: 24px;
  padding-top: 20px;
}

.main .text span {
  font-size: 1em;
  margin-right: 30px;
  line-height: 1.5;
  margin-left: 3px;
}

@media (max-width: 768px) {
  .main {
    padding-bottom: 20px;
  }
  .main .img, .main .text {
    width: 100%;
    float: none;
    text-align: center;
    margin: 0 auto;
  }
  .main .text {
    padding-top: 1em;
  }
  .main span {
    text-align: center;
    margin-left: 0;
    margin: 0 auto;
  }
}

.avatar {
  background-color: #efe9e7;
  padding-bottom: 40px;
}

.avatar h2 {
  font-size: 2em;
  color: #3d1101;
  padding: 50px 0;
  text-align: center;
}

.avatar li {
  width: 30.333333%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  text-align: center;
  float: left;
}

.avatar img {
  float: left;
  border-radius: 50%;
}

.avatar h4 {
  font-size: 1.2em;
  float: left;
  padding-top: 20px;
  margin-left: 20px;
}

.avatar p {
  font-size: 1em;
  text-align: justify;
  line-height: 24px;
  margin-left: 80px;
  float: left;
}

.avatar span {
  font-size: 1em;
  padding-top: 10px;
  float: right;
  color: #3d1101;
  padding-top: 5%;
}

@media (max-width: 768px) {
  .avatar li {
    width: 90%;
    margin-left: 30px;
  }
  .avatar li span {
    padding-bottom: 5%;
    padding-top: 2%;
  }
}

@media (max-width: 376px) {
  .avatar li {
    margin-left: 20px;
  }
  .avatar li span {
    padding-top: 5%;
  }
}

.contact {
  background-color: #f6f4f3;
  padding-bottom: 40px;
}

.contact h2 {
  font-size: 2em;
  color: #3d1101;
  padding: 50px 0;
  text-align: center;
}

.contact-img {
  float: left;
  width: 50%;
}

.form-wrap {
  float: right;
  width: 50%;
}

.form-wrap .pure-form {
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-wrap .pure-form .form-login-text {
  width: 100%;
}

.form-wrap .pure-form .form-label {
  padding: 5px 0px;
}

.btn-dark, .btn-warning {
  float: right;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .contact .contact-img {
    float: none;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
  }
  .contact .form-wrap {
    float: none;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 376px) {
  .form-login-text {
    width: 100%;
  }
}

.main-cart {
  background-color: #efe9e7;
  padding-top: 40px;
}

.siderbar {
  float: left;
  width: 28.5%;
  text-align: left;
  margin: 0 auto;
  margin-right: 1.5%;
}

.siderbar h4 {
  font-size: 1.5em;
  color: #3d1101;
  padding-bottom: 20px;
}

.siderbar a {
  font-size: 1em;
  border-bottom: solid 1px #3d1101;
  padding: 10px 0;
  color: #3d1101;
  display: block;
}

.siderbar a:hover {
  background-color: #3d1101;
  color: #fff;
}

.cart {
  float: right;
  width: 68.5%;
  margin-left: 1.5%;
}

.cart li {
  width: 30.333333%;
  margin: 3% 1.5%;
  text-align: center;
  float: left;
  padding-bottom: 20px;
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.16);
  position: relative;
}

.cart li h4 {
  font-size: 1.5em;
  padding-top: 20px;
  color: #3d1101;
}

.cart li p {
  line-height: 1.5;
  color: #3d1101;
}

.cart li .line {
  width: 100px;
  border-width: 1.2px;
  border-color: #3d1101;
}

.cart li .money {
  font-size: 1.2em;
  font-weight: bold;
  font-style: italic;
  padding: 10px 0 18px 0;
}

.cart li .cart-line {
  border: solid 1px darkorange;
  color: darkorange;
  border-radius: 3px;
  border-width: 2px;
  padding: 0 20px;
}

.cart li .cart-line:hover {
  background-color: #3d1101;
  color: #fff;
}

.cart li .heart {
  position: absolute;
  left: 5%;
  top: 3%;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  z-index: 999;
}

.search-line {
  border: solid 3px #3d1101;
  width: 70%;
  background-color: #efe9e7;
  float: left;
  margin-left: 1.5%;
}

.search-icon {
  background-color: #3d1101;
  float: left;
  width: 24px;
  height: 24px;
}

.search-icon a {
  text-decoration: none;
  color: #fff;
  display: block;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

.cart-text {
  float: right;
  line-height: 25px;
  margin-right: 1.5%;
  color: #3d1101;
}

.fa-cart-plus {
  color: darkorange;
}

@media (max-width: 768px) {
  .siderbar {
    float: none;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .cart-text {
    float: none;
    text-align: right;
    padding: 0 15px 0 0;
  }
  .cart {
    float: none;
    width: 90%;
    margin: 0 auto;
  }
  .cart li {
    width: 100%;
    margin: 20px 0;
  }
  .cart li .cart-line {
    padding: 0 60px;
  }
  .cart li .heart {
    left: 28%;
  }
}

@media (max-width: 376px) {
  .cart-line {
    padding: 0 20px;
  }
  .search-line {
    width: 40%;
  }
  .cart-text {
    padding: 0 10px 0 0;
  }
  .cart li .heart {
    left: 5%;
  }
}

.main-login {
  background-color: #efe9e7;
  text-align: center;
  padding-bottom: 10px;
}

.main-login h2 {
  padding-top: 40px;
}

.main-login p {
  font-size: 1.5em;
  color: #3d1101;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 40px;
}

.pure-form {
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.16);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.16);
  border-top: solid 3px darkorange;
}

.pure-form h4 {
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
}

.pure-form .em {
  color: darkorange;
}

.login-wrap {
  background: #EFE9E7;
  width: 30%;
  margin: 0 auto;
  padding-bottom: 20px;
  color: #3d1101;
}

.login-wrap .pure-group input, .login-wrap .pure-group textarea {
  width: 100%;
  margin: 0 auto;
}

.login-wrap fieldset {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.login-btn {
  padding: 1em 0;
  border: none;
  text-decoration: none;
  float: none;
  border-radius: 2px;
  margin: 5px 0;
  margin-bottom: 10px;
  width: 100%;
}

.login-btn a {
  color: #fff;
}

@media (max-width: 768px) {
  .login-wrap {
    width: 60%;
  }
}

@media (max-width: 376px) {
  .login-wrap {
    width: 90%;
  }
  .login-wrap > .pure-form > .login-btn {
    margin-bottom: 20px;
  }
}

.login-form-wrap {
  background: #EFE9E7;
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.16);
  border-top: solid 3px darkorange;
  width: 80%;
  margin: 0 auto;
  color: #3d1101;
}

.login-form-wrap h4 {
  font-size: 1.5em;
  font-weight: bold;
  padding: 15px 0;
}

.login-form-text {
  float: left;
  width: 50%;
  text-align: left;
  text-align: justify;
}

.text-wrap {
  width: 90%;
  margin: 0 auto;
}

.login-form {
  float: right;
  width: 50%;
  padding-bottom: 20px;
}

.login-form .pure-form {
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.login-form fieldset {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.login-form fieldset .em {
  color: darkorange;
}

.login-wrap a {
  color: #fff;
}

.login-form-btn {
  padding: 1em 0;
  border: none;
  float: none;
  text-decoration: none;
  border-radius: 2px;
  margin-left: 5px;
  margin-right: 5px;
  width: 90%;
}

.login-form-wrap .login-form-text h4 {
  font-size: 1em;
}

.login-form-wrap .login-form-text p {
  font-size: 0.8em;
}

.login-form-wrap .pure-group input, .login-wrap .pure-group textarea {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}

@media (max-width: 376px) {
  .login-form-wrap {
    width: 100%;
  }
  .login-form-text {
    float: none;
    width: 100%;
  }
  .login-form-text p {
    padding-bottom: 20px;
  }
  .login-form {
    float: none;
    width: 100%;
  }
}

.container {
  max-width: 1110px;
  margin: 0 auto;
  width: 90%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.header {
  background-image: url("../images/header_desktop.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}

.logo {
  float: left;
  margin: 20px 40px;
}

.logo a {
  background: url("../images/logo_w@svg.svg");
  width: 120px;
  display: block;
  height: 24px;
  text-indent: -99999px;
}

.menu {
  float: right;
  margin: 20px 40px;
}

.menu li {
  float: left;
}

.menu a {
  font-size: 1em;
  color: #fff;
  margin-left: 20px;
}

.menu a:hover {
  color: #dc7f00;
  display: block;
}

.block {
  width: 90%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 40%;
  background: rgba(0, 0, 0, 0.35);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 30px 15px;
  background: rgba(0, 0, 0, 0.35);
}

.block h1 {
  color: #fff;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  padding: 50px 0;
}

.block p {
  color: #fff;
  font-size: 1.3em;
  text-align: center;
  line-height: 1.2;
}

.showmenu {
  display: none;
}

@media (max-width: 768px) {
  .header {
    background-image: url("../images/header_mobile.png");
    height: 420px;
  }
  .block {
    top: 50%;
    height: auto;
    left: 50%;
    padding: 15px 30px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
  }
  .block h1 {
    font-size: 1.8em;
    padding: 20px 0;
  }
  .block p {
    font-size: 1em;
  }
  .logo a {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .menu {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: max-height 1.5s;
    transition: max-height 1.5s;
    z-index: 100;
    margin: 60px 20px;
    float: none;
    width: 100%;
    margin: auto;
    padding-top: 10px;
  }
  .menu li {
    float: none;
    background-color: black;
    padding-bottom: 10px;
    padding-top: 15px;
    width: 100%;
  }
  .menu a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: block;
    text-align: left;
    font-size: 1.5em;
    margin-left: 0;
    text-align: center;
  }
  .showmenu {
    display: block;
    position: absolute;
    right: 3%;
    top: 4%;
    background-color: rgba(0, 0, 0, 0.35);
    width: 30px;
    height: 30px;
    color: #fff;
  }
  .fa-bars {
    font-size: 28px;
    display: block;
    margin: auto;
  }
  .menu-show .menu {
    max-height: 400px;
  }
}

@media (max-width: 376px) {
  .logo a {
    left: 33%;
  }
  .menu li {
    width: 340px;
    background-color: black;
  }
  .menu li a {
    text-align: center;
  }
  .block h1 {
    font-size: 1.5em;
    padding: 20px 0;
  }
  .block p {
    font-size: 1em;
  }
}

@media (max-width: 320px) {
  .logo a {
    left: 31%;
  }
  .menu li {
    width: 280px;
  }
}

.footer {
  background-color: #efe9e7;
  padding-bottom: 40px;
}

.footer .about {
  float: left;
  width: 40%;
}

.footer .about h4 {
  font-size: 1.5em;
  color: #3d1101;
  padding: 40px 0 20px 0;
}

.footer .about p {
  font-size: 1em;
  color: #3d1101;
  line-height: 20px;
  font-family: "arial";
}

.footer .contacts {
  float: left;
  padding-left: 40px;
  width: 20%;
}

.footer .contacts h4 {
  font-size: 1.5em;
  color: 1em;
  padding: 40px 0 20px 0;
}

.footer .contacts ul {
  list-style: disc;
}

.footer .contacts li {
  font-size: 1em;
  color: #3d1101;
  padding-top: 5px;
  font-family: "微軟正黑體";
}

.footer .logo-icon {
  float: right;
  padding-top: 40px;
}

.footer .logo-icon img {
  display: block;
}

.footer .fa-facebook-square, .footer .fa-twitter-square, .footer .fa-line {
  font-size: 30px;
  color: black;
  float: left;
  margin: 20px 20px 0 0;
}

.footer .up {
  position: fixed;
  bottom: 4%;
  right: 3%;
  width: 30px;
  height: 30px;
  background-color: darkorange;
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    padding: 0 20px;
  }
  .footer .about {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
  .footer .contacts {
    width: 100%;
    padding-left: 0;
    float: none;
  }
  .footer .contacts li {
    float: left;
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
  }
  .footer .logo-icon {
    float: none;
    width: 100%;
    padding-top: 80px;
  }
  .footer .container {
    max-width: 90%;
  }
}

@media (max-width: 376px) {
  .up {
    width: 20px;
    height: 20px;
    bottom: 2%;
  }
  .logo-icon {
    padding-top: 100px;
  }
}
/*# sourceMappingURL=style.css.map */