.bg_def {
  background-repeat: no-repeat;
  background-position: 0 0;
}

.top {
  width: 60px;
  height: 60px;
  background-color: #ddd;
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 9999;
  color: #333;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: none;
  font-size: .5em;
}
.top .arrow {
  position: relative;
  width: 0;
  height: 0;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  border-bottom: 1em solid #333;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.top .arrow:after {
  content: '';
  position: absolute;
  top: 1.3em;
  left: -1em;
  width: 0;
  height: 0;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  border-bottom: 1em solid #ddd;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.shine {
  position: absolute;
  width: 200px;
  bottom: 3%;
  left: 50%;
  height: 60px;
  margin-left: -100px;
  text-align: center;
  color: #333333;
  -webkit-animation: shine 1.6s infinite, hover 1s alternate infinite ease-in-out;
  -moz-animation: shine 1.6s infinite, hover 1s alternate infinite ease-in-out;
  -ms-animation: shine 1.6s infinite, hover 1s alternate infinite ease-in-out;
  animation: shine 1.6s infinite, hover 1s alternate infinite ease-in-out;
}

.shine:after {
  content: '';
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  border: 2px solid #333333;
  border-top: none;
  border-left: none;
  left: 43%;
  margin-left: -5px;
  -webkit-transform: translateY(30%) rotate(45deg);
  -moz-transform: translateY(30%) rotate(45deg);
  -ms-transform: translateY(30%) rotate(45deg);
  transform: translateY(30%) rotate(45deg);
  -webkit-animation: shine 1.6s 1s alternate infinite ease-in-out;
  -moz-animation: shine 1.6s 1s alternate infinite ease-in-out;
  -ms-animation: shine 1.6s 1s alternate infinite ease-in-out;
  animation: shine 1.6s 1s alternate infinite ease-in-out;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}

@-moz-keyframes shine {
  from {
    -moz-mask-position: 150%;
  }

  to {
    -moz-mask-position: -50%;
  }
}

@keyframes shine {
  from {
    mask-position: 150%;
  }

  to {
    mask-position: -50%;
  }
}

@-webkit-keyframes hover {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(-75%);
  }
}

@-moz-keyframes hover {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(-75%);
  }
}

.enquiry {
  position: fixed;
  display: block;
  left: 0;
  top: 70%;
  z-index: 100;
  background: none;
  border: 1px solid rgba(153, 102, 51, 0.6);
  border-left: none;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
  color: #996633;
  cursor: pointer;
  font-size: .9em;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.enquiry:hover {
  border: 1px solid rgba(153, 102, 51, 0.9);
  border-left: none;
}
.enquiry > i:before {
  margin-left: 10px;
  color: rgba(153, 102, 51, 0.8);
  font-size: 20px;
  line-height: 50px;
}
.enquiry:hover > i {
  opacity: 0;
  visibility: visible;
}
.enquiry.icon-enquiry {
  padding-right: 20px;
}
.enquiry.icon-enquiry:hover {
  padding-right: 5px;
  padding-left: 20px;
}
.enquiry.icon-enquiry:hover > i {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.trans-contact, .trans-nav {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.fade-in {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  -ms-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -ms-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  text-decoration: none;
  background: transparent;
}
a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

select {
  text-transform: none;
}

button, html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

.trans-contact, .trans-nav {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.fade-in {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  -ms-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -ms-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  height: 100%;
  padding: 0;
  margin: 0;
  font-weight: 300;
  color: #757575;
  overflow: hidden;
}

body.overflow-hidden {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.clean {
  clear: both;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .mt20 {
    margin-top: 10px;
  }
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb20 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .mb20 {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .mb20 {
    margin-bottom: 0;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .mb40 {
    margin-bottom: 0;
  }
}

.viewport {
  position: relative;
  overflow: hidden;
}

.container {
  position: relative;
  height: 100%;
  min-height: 300px;
  margin: 0 auto;
}

.container_main {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding-top: 3.75em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100vh;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .container_main {
    width: 960px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .container_main {
    width: 800px;
  }
}

#footer {
  width: 100%;
  height: 35px;
  background-color: #d0121b;
  position: absolute;
  bottom: 0;
  color: #FFFFFF;
  line-height: 35px;
  font-size: 0.813em;
}

.prod_main {
  margin-top: 80px;
  display: block;
  min-height: 100px;
  float: left;
  text-align: left;
  text-align: justify;
  margin-bottom: 60px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .prod_main {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .prod_main {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
.prod_main .prod_title {
  margin-bottom: 40px;
  margin-top: 40px;
  font-weight: 300;
  font-size: 36px;
  text-transform: capitalize;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .prod_main .prod_title {
    font-size: 34px;
    padding-top: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .prod_main .prod_title {
    font-size: 2.5em;
    padding-top: 15px;
    margin-bottom: 20px;
  }
}
.prod_main .prod_title-sub {
  word-spacing: 0.1em;
  font-size: 1.2em;
}
.prod_main .prod_article {
  padding: 15px 0;
}
.prod_main .prod_cont {
  font-size: 0.813em;
  color: #333333;
  font-size: 16px;
  line-height: 1.45;
}
.prod_main .qtp200-sty {
  color: #333;
}
#prod070 .container_main h2{
  color: #a17a40;
}
.prod_main .qtp200-sty_sub {
  color: #666;
  margin-bottom: 15px;
}
.prod_main .qtp100-sty {
  color: #ffffff;
}
#team .container_main h2{
  color: #fff;
}
.prod_main .about-sty {
  color: #d0121b;
  margin-bottom: 15px;
}
.prod_main .about-sty2 {
  color: #666;
}
.prod_main .prod_system {
  width: 50%;
  float: left;
}
.prod_main .prod_system ul {
  padding: 30px 0;
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .prod_main .prod_system ul {
    padding: 10px 0;
  }
}
.prod_main .prod_system ul li {
  margin: 25px 0;
  height: 39px;
  padding-left: 50px;
  line-height: 39px;
  font-weight: bold;
  text-transform: capitalize;
}
.prod_main .prod_system ul#stand li {
  color: #c91019;
  background: transparent url("../img/p070/sys-2.png") left top no-repeat;
}
.prod_main .prod_system ul#option li {
  color: #666666;
  background: transparent url("../img/p070/sys-1.png") left top no-repeat;
}

.contact_title {
  margin-top: 80px;
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 4em;
  color: #996633;
  text-align: left;
  padding-left: 50px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .contact_title {
    font-size: 3.5em;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .contact_title {
    font-size: 2.5em;
    margin: 0;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
  }
}

#contact_main2 {
  width: 550px;
  position: relative;
  display: block;
  padding: 80px 50px 0 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #contact_main2 {
    padding: 80px 40px 0 40px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #contact_main2 {
    padding: 80px 30px 0 30px;
  }
}
#contact_main2 .contact_title {
  margin-top: 20px;
  font-weight: 300;
  font-size: 5em;
  color: #a17a40;
  text-align: left;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #contact_main2 .contact_title {
    font-size: 3.5em;
    margin: 0;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #contact_main2 .contact_title {
    font-size: 2.5em;
    margin: 0;
  }
}

.contact_wrap {
  padding: 20px 50px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .contact_wrap {
    padding: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .contact_wrap {
    padding: 0;
    width: 100%;
  }
}
.contact_wrap .contact_info {
  text-align: left;
  width: 47%;
  color: #999999;
  font-size: 15px;
  float: left;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .contact_wrap .contact_info {
    width: 40%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .contact_wrap .contact_info {
    width: 40%;
  }
}
.contact_wrap .contact_info h3 {
  width: 450px;
  font-size: 18px;
}
.contact_wrap .contact_info span {
  display: inline-block;
  width: 50px;
}
.contact_wrap .contact_info li {
  line-height: 27px;
}
.contact_wrap .contact_info li:first-child {
  display: inline-block;
  margin: 20px 0;
}
.contact_wrap .contact_info a {
  color: #999999;
}
.contact_wrap .contact_table {
  width: 43%;
  margin-right: 3%;
  float: left;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .contact_wrap .contact_table {
    width: 450px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .contact_wrap .contact_table {
    width: 450px;
  }
}

.main-nav-inner {
  width: 100%;
  height: 60px;
  z-index: 100;
  display: block;
  position: fixed;
  text-emphasis: accent;
  text-transform: uppercase;
  text-align: right;
  background-color: white;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
}
.main-nav-inner .logo-btn {
  width: 227px;
  height: 40px;
  position: absolute;
  left: 10px;
  top: 15px;
  z-index: 5;
}

.nav-menu {
  height: 60px;
  margin: 0 0 30px;
  position: relative;
  text-align: right;
  z-index: 2;
  width: 600px;
  float: right;
  padding-right: 30px;
}
.nav-menu li {
  display: inline-block;
  padding: 0;
  position: relative;
  margin-top: 10px;
  top: 0;
  -webkit-transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  vertical-align: top;
}
.nav-menu li:hover .sub-menu {
  opacity: 1;
  top: 100%;
  -webkit-transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  visibility: visible;
}
.nav-menu li:hover .sub-menu li {
  height: 51px;
}
.nav-menu li.active a {
  color: #996633;
}
.nav-menu > li + li {
  margin-left: 10px;
}
.nav-menu a {
  color: #666666;
  display: inline-block;
  font-size: 15px;
  padding: 15px 15px 14px;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.nav-menu a:hover {
  color: #996633;
  -webkit-transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.sub-menu {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.3);
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: -10px;
  -webkit-transition: all 0.25s ease;
  -webkit-transition-delay: 0s;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  visibility: hidden;
  z-index: 1;
  text-align: center;
}
.sub-menu li {
  margin-top: 0;
  height: 0;
  -webkit-transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.sub-menu a {
  width: 90px;
}

.section {
  text-align: center;
}

.container_main .qtp200 {
  width: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .container_main .qtp200 {
    width: 100%;
  }
}
.container_main .qtp200-2 {
  width: 50%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .container_main .qtp200-2 {
    width: 50%;
  }
}
.container_main .qtp200-item {
  position: absolute;
  width: 100%;
  bottom: 16vh;
}
.container_main .qtp200-3 {
  width: 60%;
}
.container_main .qtp100 {
  width: 100%;
}
.container_main .about {
  width: 40%;
  padding: 20px;
  margin-top: 150px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .container_main .about {
    width: 48%;
    margin-top: 70px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .container_main .about {
    width: 60%;
    margin-top: 30px;
  }
}
.container_main .about-item {
  width: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .container_main .about-item {
    width: 100%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .container_main .about-item {
    width: 100%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .container_main #qtp200_slide2 {
    width: 55%;
  }
}

.cont_sty-4 {
  text-align: justify;
  width: 70%;
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .cont_sty-4 {
    width: 90%;
  }
}

.slide_home {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide-btn {
  position: absolute;
  top: 50%;
  width: 100%;
}
.slide-btn #prev {
  background: url("../img/arrow.png") no-repeat scroll 0 0 transparent;
  width: 52px;
  height: 52px;
  display: block;
  cursor: pointer;
  position: absolute;
  text-indent: -9999px;
  left: 20px;
  margin-top: -17px;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: .7;
}
.slide-btn #prev:hover {
  opacity: 1;
  background: url("../img/arrow.png") no-repeat scroll 0 -118px transparent;
}
.slide-btn #next {
  background: url("../img/arrow.png") no-repeat scroll 0 -59px transparent;
  width: 52px;
  height: 52px;
  display: block;
  cursor: pointer;
  position: absolute;
  text-indent: -9999px;
  right: 20px;
  margin-top: -17px;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: .7;
}
.slide-btn #next:hover {
  opacity: 1;
  background: url("../img/arrow.png") no-repeat scroll 0 -177px transparent;
}

.prod_item-show {
  display: block;
  width: 100%;
}
.prod_item-show #cup_list {
  text-align: left;
}
.prod_item-show #cup_list li {
  position: relative;
  text-indent: -9999px;
  cursor: pointer;
  display: inline-block;
  margin-right: 5px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .prod_item-show #cup_list li {
    background-size: 80% !important;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .prod_item-show #cup_list li {
    background-size: 70% !important;
  }
}
.prod_item-show #cup_list li:first-child {
  width: 82px;
  height: 110px;
  background: transparent url("../img/p070/cup1.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:first-child:hover {
  background: transparent url("../img/p070/cup1h.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:nth-child(2) {
  width: 115px;
  height: 182px;
  background: transparent url("../img/p070/cup2.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:nth-child(2):hover {
  background: transparent url("../img/p070/cup2h.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:nth-child(3) {
  width: 97px;
  height: 126px;
  background: transparent url("../img/p070/cup3.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:nth-child(3):hover {
  background: transparent url("../img/p070/cup3h.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:nth-child(4) {
  width: 120px;
  height: 168px;
  background: transparent url("../img/p070/cup4.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:nth-child(4):hover {
  background: transparent url("../img/p070/cup4h.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:nth-child(5) {
  width: 122px;
  height: 121px;
  background: transparent url("../img/p070/cup5.png") left bottom no-repeat;
}
.prod_item-show #cup_list li:nth-child(5):hover {
  background: transparent url("../img/p070/cup5h.png") left bottom no-repeat;
}

#sideList {
  width: 100%;
  text-align: left;
}
#sideList li {
  margin-bottom: 2em;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  float: left;
}
#sideList li:first-child {
  width: 90px;
}

.prod_item-list .part-img-s{
  display: none;
}

@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:first-child {
    width: 72px;
    margin-right: 2px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:first-child {
    width: 250px;
    margin-right: 2px;
  }
}
#sideList li:nth-child(2) {
  width: 140px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:nth-child(2) {
    width: 112px;
    margin-right: 2px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:nth-child(2) {
    width: 90px;
    margin-right: 2px;
  }
}
#sideList li:nth-child(3) {
  width: 690px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:nth-child(3) {
    width: 552px;
    margin-right: 2px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:nth-child(3) {
    width: 159px;
    margin-right: 2px;
  }
}
#sideList li:last-child {
  width: 280px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:last-child {
    width: 210px;
    margin-left: 10px;
    margin-right: 0;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:last-child {
    width: 210px;
    margin-right: 2px;
  }
}
#sideList li .part-title {
  width: 150px;
  height: 100px;
  margin: auto;
  text-align: center;
}
#sideList li .part-title h4 {
  display: block;
  float: left;
  /*width: 150px;*/
  height: 100px;
  color: #333;
  font-size: 20px;
  /*font-weight: bold;*/
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li .part-title h4 {
    font-size: 16px;
  }
}
#sideList li .part-img {
  display: table-cell;
  vertical-align: bottom;
}
#sideList li .part-img img {
  width: 80%;
}
#sideList li:first-child .part-img {
  width: 90px;
  height: 250px;
  background: transparent url("../img/p080/machine_1_1.png") left bottom no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:first-child .part-img {
    width: 72px;
    height: 202px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:first-child .part-img {
    width: 250px;
    height: 202px;
  }
}
/*mobile*/
@media only screen and (max-width: 64em){
.container_main {
  width: 100%;
}  
.prod_main{
    padding: 0 30px; 
    margin: 0 0 20px;
}
#sideList, #sideList_2{
  display: none;
}
.prod_item-list .part-img-s{
  display: block;
}
.prod_item-list .part-img-s .item{
  width: 25%;
  float: left;
  background-color: #a17a40;
  color: #fff;
  border: #fff 1px solid;
  padding: 20px 5px;
  font-size: 16px;
}
}

#sideList li:first-child:hover .part-img {
  width: 90px;
  height: 250px;
  background: transparent url("../img/p080/machine_1_2.png") left bottom no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:first-child:hover .part-img {
    width: 72px;
    height: 202px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:first-child:hover .part-img {
    width: 250px;
    height: 202px;
  }
}
#sideList li:nth-child(2) .part-img {
  width: 140px;
  height: 250px;
  background: transparent url("../img/p080/machine_2_1.png") left bottom no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:nth-child(2) .part-img {
    width: 112px;
    height: 202px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:nth-child(2) .part-img {
    width: 90px;
    height: 202px;
  }
}
#sideList li:nth-child(2):hover .part-img {
  width: 140px;
  height: 250px;
  background: transparent url("../img/p080/machine_2_2.png") left bottom no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:nth-child(2):hover .part-img {
    width: 112px;
    height: 202px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:nth-child(2):hover .part-img {
    width: 90px;
    height: 202px;
  }
}
#sideList li:nth-child(3) {
  margin-right: 0;
}
#sideList li:nth-child(3) .part-img {
  width: 690px;
  height: 250px;
  background: transparent url("../img/p080/machine_3_1.png") left bottom no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:nth-child(3) .part-img {
    width: 552px;
    height: 202px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:nth-child(3) .part-img {
    width: 159px;
    height: 202px;
  }
}
#sideList li:nth-child(3):hover .part-img {
  width: 690px;
  height: 250px;
  background: transparent url("../img/p080/machine_3_2.png") left bottom no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:nth-child(3):hover .part-img {
    width: 552px;
    height: 202px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:nth-child(3):hover .part-img {
    width: 159px;
    height: 202px;
  }
}
#sideList li:last-child .part-img {
  width: 280px;
  height: 250px;
  background: transparent url("../img/p080/machine_4_1.png") left bottom no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:last-child .part-img {
    width: 210px;
    height: 202px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:last-child .part-img {
    width: 210px;
    height: 202px;
  }
}
#sideList li:last-child:hover .part-img {
  width: 280px;
  height: 250px;
  background: transparent url("../img/p080/machine_4_2.png") left bottom no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  #sideList li:last-child:hover .part-img {
    width: 210px;
    height: 202px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  #sideList li:last-child:hover .part-img {
    width: 210px;
    height: 202px;
  }
}
#sideList li .prod-item {
  display: inline-block;
}

.prod_combine {
  width: 100%;
  margin: 20px 0;
}
.prod_combine .plus:after {
  content: '+';
  font-size: 30px;
  color: #ffffff;
  float: left;
  line-height: 130px;
  margin: 0 30px 0 20px;
}
.prod_combine .equal:after {
  content: '=';
  font-size: 30px;
  color: #ffffff;
  float: left;
  line-height: 130px;
  margin: 0 20px;
}
.prod_combine .part-set {
  float: left;
}
.prod_combine .part-set .part-title {
  width: 150px;
  margin-bottom: 15px;
}
.prod_combine .part-set .part-title h6 {
  display: block;
  float: left;
  width: 150px;
  color: #996633;
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 10px;
}
.prod_combine .part-set .part-img {
  display: table-cell;
  vertical-align: bottom;
  width: 150px;
  height: 100px;
}
.prod_combine .part-works {
  float: left;
}
.prod_combine .part-works .works-item {
  text-align: left;
}
.prod_combine .part-works .works-item li {
  display: table-cell;
  vertical-align: bottom;
  height: 80px;
}
.prod_combine .part-works .works-item li img {
  margin-right: 5px;
}

.container_form {
  width: 450px;
  padding-top: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.container_form2 {
  padding-top: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}

.w100 {
  width: 100px;
}

.w140 {
  width: 140px;
}

.w202 {
  width: 202px;
}

.w223 {
  width: 223px;
}

.mr4 {
  margin-right: 4px;
}

input {
  display: none;
  font-size: 15px;
}

.style2 label {
  width: 18px;
  height: 18px;
  background: gainsboro;
  line-height: 39px;
  cursor: pointer;
  position: relative;
  color: #515151;
  display: inline-block;
  -webkit-transition: 300ms all;
  -moz-transition: 300ms all;
  -ms-transition: 300ms all;
  transition: 300ms all;
}
.style2 input:checked + label {
  background: #cc9966;
}
.style2 input:checked + label::after {
  opacity: 1;
}
.style2 input[type=radio] + label {
  width: 223px;
  height: 36px;
  display: inline-block;
  float: left;
  text-align: center;
}

input[type=text],
input[type=email] {
  display: inline-block;
  border: none;
  background: gainsboro;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px;
  color: #515151;
  width: 100%;
}
input[type=text]:focus,
input[type=email]:focus {
  outline: none;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder {
  color: #999;
}
input[type=text]:-moz-input-placeholder,
input[type=email]:-moz-input-placeholder {
  color: #999;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder {
  color: #999;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder {
  color: #999;
}

textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  resize: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px;
  background: gainsboro;
  border: none;
  color: #515151;
  font-size: 15px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  textarea {
    min-height: 80px;
  }
}
textarea:focus {
  outline: none;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
textarea:-moz-input-placeholder {
  color: #999;
}
textarea::-moz-placeholder {
  color: #999;
}
textarea:-ms-input-placeholder {
  color: #999;
}

select.selectbox {
  display: none;
}

select.selectbox2 {
  display: none;
}

dl.selectbox, dl.selectbox2 {
  width: 100%;
  cursor: pointer;
  position: relative;
}
dl.selectbox dt, dl.selectbox2 dt {
  width: 100%;
  background: gainsboro;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  color: #515151;
  padding: 8px;
  position: relative;
}
dl.selectbox dt::after, dl.selectbox2 dt::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: solid 1px #292929;
  border-bottom: solid 1px #292929;
  right: 10px;
  top: 6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
dl.selectbox dt.open::after, dl.selectbox2 dt.open::after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  top: 12px;
}
dl.selectbox dd, dl.selectbox2 dd {
  position: absolute;
  width: 100%;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 300ms all;
  -moz-transition: 300ms all;
  -ms-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
}
dl.selectbox dd.open, dl.selectbox2 dd.open {
  visibility: visible;
  opacity: 1;
}
dl.selectbox dd ul li, dl.selectbox2 dd ul li {
  width: 100%;
  background: #767676;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  color: #cccccc;
  padding: 8px;
}

input[type=submit],
input[type=reset] {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  -webkit-appearance: none;
  color: #cc9966;
  padding: 8px;
  border: 2px solid #cc9966;
  background: transparent;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}
input[type=submit]:active, input[type=submit]:focus,
input[type=reset]:active,
input[type=reset]:focus {
  outline: none;
}
input[type=submit]:hover,
input[type=reset]:hover {
  background: #cc9966;
  color: #4d3319;
}

.form-tip {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: relative;
}

.form-tip.centerted label {
  transform: translate(-50%, 0%);
  left: 50%;
}

.form-tip label {
  font-size: 12px;
  position: absolute;
  right: 3px;
  bottom: 3px;
  color: #996633;
  opacity: 1;
  transition: opacity 200ms, top 200ms, color 200ms;
}

.form-tip input:required, .form-tip input:invalid {
  border: none;
  outline: none;
  box-shadow: none;
}

:-moz-submit-invalid {
  box-shadow: none;
}

:-moz-ui-invalid {
  box-shadow: none;
}

.form-tip input:invalid ~ label {
  opacity: 0;
}

.form-tip input:focus ~ label, .form-tip select:focus ~ label {
  color: #996633;
}

.member-bio {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  z-index: 1;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  transition-duration: 1s;
  -moz-transition-timing-function: ease;
  /* Firefox 4 */
  -webkit-transition-timing-function: ease;
  /* Safari 和 Chrome */
  -ms-transition-timing-function: ease;
  /* Opera */
  -o-transition-timing-function: ease;
  /* Opera */
  transition-timing-function: ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.member-bio .bio-content {
  position: relative;
  float: right;
  text-align: left;
  text-align: justify;
  width: 50%;
  margin-top: 80px;
  color: #FFF;
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.member-bio .bio-content .side_title {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 70px;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .member-bio .bio-content .side_title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .member-bio .bio-content .side_title {
    font-size: 35px;
  }
}
.member-bio .bio-content p {
  font-size: 18px;
  line-height: 32px;
  margin: 2em 0;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .member-bio .bio-content p {
    font-size: 13px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .member-bio .bio-content p {
    font-size: 13px;
    line-height: 26px;
  }
}
.member-bio .member-bio-pict {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  height: 100%;
  float: left;
  text-align: center;
  background-color: #9A6634;
  overflow: hidden;
  padding-top: 3.750em;
}
.member-bio .member-bio-pict img {
  max-width: 110%;
  max-height: 110%;
  margin: auto;
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0;
}
.member-bio .member-bio-pict img#bio1 {
  max-width: 80%;
}
.member-bio .member-bio-pict img#bio2 {
  max-width: 80%;
}
.member-bio .member-bio-pict img#bio3 {
  max-width: 80%;
}
.member-bio .member-bio-pict img#bio4 {
  max-width: 65%;
}
/*mobile*/
@media only screen and (max-width: 64em){
.member-bio .member-bio-pict {
    width: 100%;
    height: 25%;
}
.member-bio .bio-content {
    width: 100%;
    margin-top: 0px;
}    
.member-bio .bio-content .side_title {
    font-size: 24px;
}
.cont_sty-4 {
    width: 100%;
}
   
}
.contact_info-side {
  text-align: left;
  width: 100%;
  color: #999999;
  font-size: 13px;
}
.contact_info-side h3 {
  margin-top: 20px;
  font-size: 18px;
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .contact_info-side h3 {
    margin-top: 10px;
  }
}
.contact_info-side span {
  display: inline-block;
  width: 50px;
}
.contact_info-side li {
  line-height: 1.4;
}
.contact_info-side a {
  color: #999999;
}

.member-bio-close {
  width: 68px;
  height: 70px;
  overflow: hidden;
  position: fixed;
  top: 140px;
  right: 80px;
  background: url("../img/side/close.png") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 10;
  display: none;
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .member-bio-close {
    width: 50px;
    height: 50px;
    top: 100px;
    right: 40px;
  }
}
@media only screen and (max-width: 64em){
  .member-bio-close {
    width: 40px;
    height: 40px;
    top: 30px;
    right: 30px;
  }
}
