/* CSS Document */
.overflow-hidden { overflow-x: hidden;}

header {
  position: fixed;
  top: 0;
  z-index: 80;
  width: 100%;
  border-bottom: 1px solid #dedede;
  background-color: white;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  transition: all 0.65s ease;
}

header.fixed {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

header .limit_w {
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
  display: flex;
}

header #inner {
  position: relative;
}

header #inner .logo {
  position: relative;
  float: left;
  margin: 0 133px 0 20px;
  width: 180px;
}

header #inner .logo img {
  display: block;
  margin: 50px auto;
  max-width: 100%;
}

header #inner .menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  height: 130px;
  font-family: "Open Sans", Myriad Pro, Myriad, Microsoft JhengHei, Aria, sans-serif;
}

header #inner .menu .block {
  position: relative;
  margin-right: 45px;
}

header #inner .menu .block .link {
  position: relative;
  display: block;
  margin-top: 50px;
  color: #585858;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header #inner .menu .block .link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #063972;
  content: '';
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header #inner .menu .block .link.active {
  color: #202020;
}

header #inner .menu .block .link.active:after {
  width: 100%;
}

header #inner .menu .block .has_sub {
  position: relative;
}

header #inner .menu .block .has_sub:before {
  position: absolute;
  top: 80px;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-top: 0;
  border-bottom-color: #dbdbdb;
  content: '';
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header #inner .menu .block .has_sub.open:before {
  opacity: 1;
}

header #inner .more_info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 46px;
  height: 130px;
}

header #inner .more_info .link {
  position: relative;
  display: block;
  margin-top: 50px;
  margin-right: 26px;
  color: #585858;
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
  cursor: pointer;
}

header #inner .more_info .link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  content: '';
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.more_info .inquiry:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  content: '';
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.more_info .inquiry:hover:after {
  width: 100%;
}

header #inner .more_info .link.active {
  color: #202020;
}

header #inner .more_info .link.active:after {
  width: 100%;
}

header #inner .more_info .lang-select {
  position: relative;
  margin-top: 44px;
  width: 116px;
  height: 40px;
  border: 2px solid #000;
  cursor: pointer;
}

header #inner .more_info .lang-select .ui-selectmenu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 15px;
  background-position: calc(100% - 15px) center;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

header #inner .more_info .lang-select select {
  position: relative;
  padding-left: 15px;
  width: 100%;
  height: 100%;
  outline: 0;
  border: 0 solid #000;
  background-image: url("../images/s_down.png");
  background-position: calc(100% - 15px) center;
  background-size: 12px;
  background-repeat: no-repeat;
}

header #inner .sub_link {
  position: absolute;
  top: 130px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  /*-webkit-box-align: center;
  -ms-flex-align: center;
  align-items:flex-start;*/
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  padding: 30px 40px;
  min-height: 76px;
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
  background-color: #dbdbdb;
  opacity: 0;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  transition: all 0.65s ease;
}

header #inner .sub_link > div { width: calc(25% - 15px); margin-right: 15px; padding-bottom: 6px; margin-bottom: 5px; font-size: 14px; line-height: 18px;border-bottom: 1px solid rgba(0,0,0,.1);}
header #inner .sub_link > div > a { display: block; color: #787878; padding-bottom: 0;}
header #inner .sub_link > div > a:hover { color: #333;}
.second-menu { display: flex; flex-direction: row; flex-wrap: wrap; padding-top: 8px; }
.second-menu > a { display: block; width: 50%; color: #787878; padding-bottom: 6px; position: relative; padding-left: 12px; padding-right: 0px; font-size: 12px;}
.second-menu > a:before { content: "-"; position: absolute; left: 0; top:0px;}
.second-menu > a:hover { color: #333;}

header #inner .sub_link .link {
  position: relative;
  display: inline-block;
  margin: 0 8px;
  padding: 10px;
  color: #787878;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header #inner .sub_link.active {
  visibility: visible;
  opacity: 1;
}

header #inner .sub_link:before {
  content: '';
}

header #inner .sub_link:after {
  content: '';
}

aside {
  display: none;
}

@media only screen and (max-width: 1500px) {
  header #inner .logo {
    margin-right: 4%;
  }

  header #inner .more_info {
    margin-right: 25px;
  }
}

@media only screen and (max-width: 1250px) {
  header #inner .logo {
    width: 140px;
  }
	
  header #inner .logo img{
    margin: 53px auto;
  }

  header #inner .menu .block {
    margin-right: 25px;
  }

  header #inner .more_info .link {
    margin-right: 25px;
  }
}

.mb_btnwarp {
  display: none;
}

.mb_btnwarp.active {
  z-index: 1001;
}

.mb_btn {
  position: relative;
  top: 0;
  right: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #000;
  width: 58px;
  height: 58px;
}

.mb_btn .line {
  position: relative;
  width: 22px;
  height: 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mb_btn .line:after, .mb_btn .line:before {
  position: absolute;
  background-color: #fff;
  content: '';
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  width: 21px;
  height: 2px;
}

.mb_btn .line:after {
  top: 0;
}

.mb_btn .line:before {
  bottom: 0;
}

@media only screen and (min-width: 1025px) {
  aside {
    display: none;
  }

  .mb_btn {
    display: none;
  }

  header #inner .menu .block .link:hover {
    color: #202020;
  }

  header #inner .sub_link .link:hover {
    color: #fff;
  }

  header #inner .menu .block .link:hover:after, header #inner .more_info .link:hover:after {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .mb_btn {
    width: 90px;
    height: 90px;
  }

  header #inner .logo {
    width: 150px;
    height: 90px;
  }

  header #inner .menu {
    height: 90px;
  }

  header #inner .menu .block .link {
    margin-top: 40px;
  }

  header #inner .logo img {
    margin: 34px auto;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
  }

  header #inner .more_info .lang-select {
    width: 70px;
    height: 24px;
  }

  header #inner .more_info .link {
    margin-top: 40px;
  }

  header #inner .more_info {
    display: none;
  }

  header #inner .menu {
    display: none;
  }

  aside {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: block;
    visibility: hidden;
    padding: 20px 20px 35px;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  aside.open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    z-index: 1000;
  }

  aside .menuwrap {
    position: relative;
    padding: 20px 22% 40px 22px;
    width: 100%;
    height: 100%;
  }

  aside .color_border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }

  aside .sub_link_m {
    position: relative;
    display: none;
  }

  aside .sub_link_m .link {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    color: #000;
    /*text-transform: uppercase;*/
    font-weight: 700;
    font-size: 20px;
  }

  aside .sub_link_m .link:last-child {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  aside .sub_link_m .linktitle {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    border-bottom: 1px solid #000;
    text-align: right;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
  }

  aside .sub_link_m .linktitle:after {
    position: absolute;
    top: 25px;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url("../images/arrow.png");
    background-position: center;
    background-size: 12px;
    background-repeat: no-repeat;
    content: '';
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  .m_menulist {
    position: relative;
  }

  .m_menulist .has_sub_m {
    background-image: url("../images/arrow.png");
    background-position: right center;
    background-size: 12px;
    background-repeat: no-repeat;
  }

  .m_menulist .link {
    display: block;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    color: #000;
    font-weight: 700;
    font-size: 20px;
  }

  .m_menulist .link:last-child {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .mb_btnwarp {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    display: block;
  }

  .mb_btnwarp.active .line {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .mb_btnwarp.active .lang_select {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }

  .lang_select {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    border: 2px solid #000;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .lang_select select {
    outline: 0;
    border: 0 solid #000;
    background-color: transparent;
    width: 100%;
    padding-left: 33px;
  }
}

@media only screen and (max-width: 650px) {
  header {
    overflow: hidden;
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  header #inner .logo img {
    width: 106px;
	margin: 23px 0;
  }

  header #inner .logo {
    width: 100%;
    height: 60px;
  }

  aside .sub_link_m .link {
    width: 100%;
  }

  .lang_select {
    height: 60px;
  }

  .mb_btn {
    width: 60px;
    height: 60px;
  }
  .lang_select select {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 500px) {
  aside .sub_link_m .linktitle {
    width: auto;
  }

  .m_menulist .link, aside .sub_link_m .link, aside .sub_link_m .linktitle {
    font-size: 15px;
  }
}



#contact_area, #contact_ok {
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  DISPLAY: FLEX;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact_area .button, #contact_ok .button {
  position: relative;
  overflow: hidden;
  width: 190PX;
  height: 46PX;
  cursor: pointer;
  FONT-SIZE: 14PX;
  MARGIN: 50px AUTO;
}

#contact_area .button .send, #contact_ok .button .send {
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 100%;
  color: #808080;
  text-align: center;
  font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
  line-height: 43px;
  WIDTH: 100%;
  BACKGROUND-COLOR: TRANSPARENT;
  FONT-WEIGHT: BOLD;
  LETTER-SPACING: 2PX;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact_area .button .send:BEFORE, #contact_ok .button .send:BEFORE {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  content: '';
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact_form_ok {
  position: relative;
  display: block;
  padding: 80px 80px 80px;
  color: white;
  font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
}

#contact_form_ok .send {
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 100%;
  text-align: center;
  font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
  line-height: 46PX;
  WIDTH: 100%;
  BACKGROUND-COLOR: TRANSPARENT;
  FONT-WEIGHT: BOLD;
  LETTER-SPACING: 2PX;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact_form_ok .send:BEFORE {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  content: '';
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact_form_ok .name {
  text-align: center;
  font-size: 30px;
  line-height: 1.4em;
}

#contact_form {
  position: relative;
  display: block;
  padding-top: 125px;
  padding-right: 80px;
  padding-left: 80px;
  width: 1003px;
  height: 660px;
  color: white;
  font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
}

#contact_form .boder_line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#contact_form .name {
  position: relative;
  margin-bottom: 85px;
  font-weight: bold;
  font-size: 30px;
  font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
}

#contact_form .tip {
  position: absolute;
  top: 138px;
  right: 80px;
  color: #a8a8a8;
  font-size: 12px;
}

#contact_form .tip:before {
  margin-right: 9px;
  color: #cabc8f;
  content: '*';
}

#contact_form .form_block {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#contact_form .form_block .box {
  position: relative;
  width: 380px;
}

#contact_form .form_block .box .field {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  width: 100%;
  height: auto;
  border-bottom: 1px solid gray;
  color: #c5c5c5;
  font-size: 14px;
  line-height: 40px;
  -webkit-transition: border-color 0.6s;
  -o-transition: border-color 0.6s;
  transition: border-color 0.6s;
}

#contact_form .form_block .box .field.error {
  border-color: red;
}

#contact_form .form_block .box .field .title {
  position: absolute;
}

#contact_form .form_block .box .field .title:after {
  margin-left: 10px;
  color: #cabc8f;
  content: '*';
}

#contact_form .form_block .box .field .must {
  position: absolute;
}

#contact_form .form_block .box .field .inputbox {
  position: relative;
  float: right;
  width: 62%;
  height: 40px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: white;
}

#contact_form .form_block .box .field .textarea {
  position: relative;
  float: right;
  padding-top: 9px;
  width: 75%;
  height: 101px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: white;
  line-height: 18px;
}

#contact_form .form_block .box .field .select {
  position: relative;
}

#contact_form .form_block .box .field .select select {
  position: relative;
  float: right;
  width: 66%;
  height: 40px;
  outline: none;
  border: 0;
  background-color: transparent;
  color: white;
  -webkit-appearance: none;
  font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
}

#contact_form .form_block .box .field option {
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-appearance: none;
}

#contact_form .form_block .box .code_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact_form .form_block .box .code_field .title {
  position: relative;
  width: 42%;
}

#contact_form .form_block .box .code_field .inputbox {
  position: relative;
  width: 26%;
}

#contact_form .form_block .box .code_field img {
  position: relative;
  top: -7px;
  width: 132px;
  height: 34px;
}

.form_close {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 10;
  overflow: hidden;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.form_close:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #808080;
  content: '';
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form_close:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 1px;
  background-color: #808080;
  content: '';
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form_close span {
  position: relative;
}

@media only screen and (min-width: 1025px) {
   #contact_form .form_close:hover:before {
    top: 12px;
    left: -14px;
    background-color: white;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 70% 70%;
    -ms-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
  }

  #contact_form .form_close:hover:after {
    top: 30px;
    right: -8px;
    background-color: white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 70% 70%;
    -ms-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
  }

  #contact_form .button:hover .send:BEFORE {
    border-color: transparent;
    color: white;
  }

  #contact_area .button .send:hover, #contact_ok .button .send:hover {
    color: #fff;
  }
	
  #contact_form .button:hover:after {
    top: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@media only screen and (max-width: 1024px) {
	
  #contact_area {
    padding: 24px;
  }

  #contact_form {
    padding: 80px 30px 40px;
    width: 100%;
    height: 80%;
  }

  #contact_form .name {
    font-size: 24px;
  }

  #contact_form .form_block {
    height: calc(100% - 200px);
  }

  #contact_form .form_block .box {
    width: 100%;
  }

  #contact_form .form_block .box .code_field .title {
    width: 100%;
  }

  #contact_form .form_block .box .code_field {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 650px) {
	
  #contact_form .form_block .box .code_field {
    padding-bottom: 0;
    border-bottom: 0;
    text-align: center;
  }

  #contact_form .form_block .box .code_field .inputbox {
    margin-bottom: 10px;
    padding-bottom: 5px;
    width: 100%;
    border-bottom: 1px solid gray;
  }

  #contact_form .form_block .box .code_field img {
    top: 0;
    margin: 0 auto;
  }

  #contact_form .form_block .box .field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #contact_form .form_block .box .field .textarea {
    width: 100%;
  }

  #contact_form .form_block .box .field .must {
    position: relative;
    margin-right: 15px;
  }

  #contact_form .form_block .box .field .inputbox.cpname {
    width: 100%;
  }

  #contact_form .form_block .box .field .select {
    -webkit-box-flex: 2;
    -ms-flex: 2 1 auto;
    flex: 2 1 auto;
  }

  #contact_form .form_block .box .field .select select {
    width: 100%;
  }
}
.lang-select {
  background-image: url(../images/s_down.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 17px;
}
.lang-select a{
  width: 100%;
  height: 100%;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.lang-select > a{
  padding-left: 15px;
  font-size: 14px;
}
.lang_ul {
  list-style: none;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #c5c5c5;
  padding-bottom: 0;
  display: none;
  transition: all .3s;
  margin-top: 2px;
  width: 116px;
  margin-left: -2px;
}
.lang_ul li a{
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 12px;
    margin-bottom: 12px;
    color: #8d8d8d;
    font-size: 15px;
}
.inquiry_box {margin-left: auto;}

.inquiry {
  margin-top: 49px;
  margin-right: 10px;
  position: relative;
  display: block;
  margin-right: 26px;
  padding-bottom: 1px;
  color: #585858;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
}
.inquiry span{ 
  position: absolute;
  right: -10px;
  top: -4px;
  border-radius: 10px;
  padding: 3px;
  width: 16px;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  background-color: #3f3f3f;
  display: flex;
  justify-content: center;
  align-items: center}
@media only screen and (max-width:1024px){
  .inquiry_box {
    margin-right: 90px;}
  .inquiry { margin-top: 32px;}
}
.mob_inquiry {
    display: none;
  }
@media only screen and (max-width:1024px){
  .active .mob_inquiry {
    display: block;
  }
  .mob_inquiry a{
    display: flex;
    width: 100%;
    height: 90px;
    border: 2px solid #000;
    position: relative;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background-color: #fff;
  }
  .mob_inquiry a span{ 
    position: absolute;
    top: 32px;
    right: 15px;
    color: #77cce9;
    font-size: 12px;
    background-color: #f1f1f1;
  }
}
@media only screen and (max-width:650px){
  .mob_inquiry a span {
    top: 15px;
    right: 4px;}
    .mob_inquiry a{
      height: 60px;}
  .inquiry { margin-top: 16px;margin-right: 0; width: 30px;  /* 20240417 修改手機板文字被擠壓問題*/}
}
.openL {
  display: block;
}
.mb_btnwarp .lang_select {display: none;}
@media only screen and (max-width:1024px){
  .lang-select {display: block;}
  .mb_btnwarp.active .lang_select {display: flex;}
}
.addZ {
  z-index: 101;
}
.app_page_content {
  max-width: 1280px !important;
}
@media only screen and (max-width:1280px){
  .app_page_content {
    max-width: 1230px !important;
  }
  .app_page_content .page_title {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media only screen and (max-width: 1280px) and (min-width:1229px){
  
}
