@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  font-family: "arial", "微軟正黑體";
  box-sizing: border-box;
}

body,
html {
  background: #fafafa;
}

@media screen and (min-width: 990px) {
  body,
  html {
    height: 100%;
  }
}

@media screen and (max-width: 990px) {
  body {
    padding-top: 60px;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 990px) {
  .container {
    padding: 0 15px;
  }
}

.header_block {
  position: relative;
  left: 0;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 2px 2px 5px #d1d1d1;
          box-shadow: 2px 2px 5px #d1d1d1;
  z-index: 100;
  width: 100%;
}

.header_block .logo_bar {
  width: 100%;
  position: relative;
}

.header_block .logo_bar .container {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_block .logo_bar .container .logo {
  max-height: 100%;
}

.header_block .logo_bar .container .logo img {
  max-height: 100%;
}

.header_block .menu_bar {
  background: #c30d23;
}

.header_block .menu_bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header_block .menu_bar .menu_btn {
  color: #fff;
  text-decoration: none;
  padding: 15px 10px;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 18px;
  -webkit-transition: .5s;
  transition: .5s;
}

.header_block .menu_bar .menu_btn:hover, .header_block .menu_bar .menu_btn.act {
  background: #fff;
  color: #c30d23;
  border: 1px solid #93c8cf;
  border-radius: 5px;
}

@media screen and (max-width: 990px) {
  .header_block {
    position: fixed;
  }
  .header_block .logo_bar .container {
    height: 60px;
  }
  .header_block .menu_bar {
    position: fixed;
    z-index: 100;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    top: 60px;
  }
  .header_block .menu_bar .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .header_block .menu_bar .container .menu_btn {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #FFF;
  }
  .header_block .menu_bar.show {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 990px) {
  .header_block.fixed_menu .menu_bar {
    -webkit-transition: .4s;
    transition: .4s;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
}

.menuBtn_m {
  display: none;
  position: absolute;
  background: none;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.5);
          transform: translateY(-50%) scale(0.5);
  border: none;
  background: none;
  width: 60px;
  height: 45px;
  outline: none;
}

.menuBtn_m span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #aaa;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.menuBtn_m span:nth-child(1) {
  top: 0px;
}

.menuBtn_m span:nth-child(2),
.menuBtn_m span:nth-child(3) {
  top: 18px;
}

.menuBtn_m span:nth-child(4) {
  top: 36px;
}

.menuBtn_m.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menuBtn_m.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menuBtn_m.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menuBtn_m.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media screen and (max-width: 990px) {
  .menuBtn_m {
    display: block;
  }
}

.footer_block {
  width: 100%;
  background: #eee;
  padding: 20px 0 0 0;
}

.footer_block .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_block .container .logo_box {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.footer_block .container .menu_block .menu_btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #555;
  padding: 2px 10px;
  border-right: 1px solid #aaa;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer_block .container .menu_block .menu_btn:hover {
  color: #c30d23;
}

.footer_block .container .menu_block .menu_btn:last-child {
  border: none;
}

.footer_block .copyright {
  text-align: center;
  background: #c30d23;
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  padding: 10px;
}

.commodity_card {
  background: #fff;
  text-decoration: none;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 5px #e3e3e3;
          box-shadow: 2px 2px 5px #e3e3e3;
}

.commodity_card .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.commodity_card .pic img {
  width: 100%;
  position: absolute;
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.commodity_card .pic:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.commodity_card .inf_box {
  padding: 10px;
}

.commodity_card .inf_box .name {
  font-size: 18px;
  line-height: 20px;
  height: 20px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.commodity_card .inf_box .brief {
  color: #aaa;
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.commodity_card .inf_box .price_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.commodity_card .inf_box .price_box span {
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
}

.commodity_card .inf_box .price_box p {
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #db0e0e;
}

.commodity_card .inf_box .more_btn {
  text-align: center;
  background: #c30d23;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  border-radius: 3px;
  padding: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.commodity_card .inf_box .more_btn:hover {
  background: #c30d23;
}

.block_title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: 26px;
  color: #c30d23;
  font-weight: bold;
  padding: 2px 15px;
  text-align: center;
}

.block_title:after, .block_title:before {
  content: '';
  height: 1px;
  width: 60px;
  background: #c30d23;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .block_title {
    font-size: 20px;
  }
}

.block_title_2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
  color: #c30d23;
  font-weight: bold;
  padding: 2px 15px;
  border-bottom: 2px solid #c30d23;
  border-top: 1px solid #c30d23;
}

.table_sty {
  width: 100%;
}

.table_sty th {
  background: #8a8a8a;
  color: #fff;
  padding: 5px;
  font-weight: normal;
}

.table_sty td {
  padding: 5px;
}

.table_sty tr:nth-child(even) td {
  background: #e9f0f1;
}

.page_number_list {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.page_number_list .page_number {
  display: inline-block;
  margin: 2px;
  text-decoration: none;
  width: 30px;
  line-height: 30px;
  border: 1px solid #aaa;
  color: #555;
  border-radius: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.page_number_list .page_number i {
  display: inline-block;
  line-height: 30px;
}

.page_number_list .page_number:hover {
  background: #eee;
}

.page_number_list .page_number.clk {
  background: #c30d23;
  color: #fff;
}

.botton_sty {
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1.5px;
  padding: 10px 15px;
  background: #c30d23;
  -webkit-transition: .3s;
  transition: .3s;
  line-height: 1.5;
  border: none;
  text-align: center;
}

.botton_sty i {
  font-size: 16px;
}

.botton_sty.line {
  background: #02C755;
}

.botton_sty.phone {
  background: #999;
}

.botton_sty:hover {
  -webkit-box-shadow: 1px 1px 5px 1px #adadad;
          box-shadow: 1px 1px 5px 1px #adadad;
}

.side_menu {
  width: 100%;
  padding-right: 20px;
}

.side_menu .side_menu_btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #aaa;
  color: #555;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  padding-right: 20px;
}

.side_menu .side_menu_btn:after {
  content: "\f105";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  font-size: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}

.side_menu .side_menu_btn.act {
  background: #555;
  color: #fff;
}

.side_menu .side_menu_btn:hover {
  background: #eee;
}

@media screen and (max-width: 990px) {
  .side_menu {
    margin-bottom: 20px;
  }
  .side_menu .side_menu_btn {
    display: inline-block;
    width: auto;
    padding: 2px 5px;
    border: 1px solid #aaa;
    border-radius: 3px;
    line-height: 20px;
    margin: 2px;
  }
  .side_menu .side_menu_btn:after {
    display: none;
  }
}

.text_editor_block img, .text_editor_block table {
  max-width: 100%;
}

.breadcrumbs {
  font-size: 16px;
  margin-bottom: 20px;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/*.breadcrumbs a {
  color: #c30d23;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.breadcrumbs a:hover {
  color: #2d9fde;
}*/


.connection_fix {
    position: fixed;
    z-index: 90;
    bottom: 50px;
    right: 0;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    padding: 5px 5px;
    border-radius: 30px 0 0 30px;
    color: #555;
    box-shadow: 1px 1px 5px #aaa;
    -webkit-box-shadow: 1px 1px 5px #aaa;
    -moz-box-shadow: 1px 1px 5px #aaa;
    -o-box-shadow: 1px 1px 5px #aaa;
}

.connection_fix i {
    font-size: 34px;
    margin-right: 10px;
    padding: 10px;
    border-radius: 50px;
    border: 3px solid #E74107;
    color: #E74107;
}

.connection_fix .inf p {
    font-size: 20px;
    font-weight: bold;
    color: #E74107;
    white-space: nowrap;
}

.connection_fix .inf span {
    font-size: 16px;
    color: #333;
}

@media screen and (max-width: 990px) {
    .connection_fix {
        width: auto;
        border-radius: 30px;
        bottom: 30px;
        right: 40px;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
        padding-right: 10px;
    }

    .connection_fix i {
        font-size: 24px;
    }
}
/*# sourceMappingURL=layout.css.map */