header {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 105px;
  background-color: #fff;
  border-bottom: solid 1px #dcdcdc;
}
@media screen and (max-width: 1024px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    height: 70px;
  }
}
header::before, header::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 5px;
  width: 20%;
  display: block;
  background-color: #2b3f5d;
}
header::after {
  left: 0;
  background-color: #e55e00;
  width: 80%;
}
header button {
  padding: 0;
}
header .mbBtnNav {
  display: none;
  position: absolute;
  z-index: 6;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  background-color: #2b3f5d;
  height: 68px;
  top: 0;
  width: 4.5em;
  right: 0;
}
header .mbBtnNav b {
  color: #fff;
}
header .mbBtnNav p {
  width: 30px;
  float: right;
  position: relative;
  cursor: pointer;
  height: 20px;
}
header .mbBtnNav span {
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  transition: all ease 0.35s;
}
header .mbBtnNav span:nth-of-type(1) {
  top: 0px;
}
header .mbBtnNav span:nth-of-type(2) {
  top: 8px;
}
header .mbBtnNav span:nth-of-type(3) {
  top: 16px;
}
@media screen and (max-width: 1024px) {
  header .mbBtnNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
  }
}
header .mbBtnNav.btnOpen b {
  color: #fff;
}
header .mbBtnNav.btnOpen span:nth-of-type(1) {
  top: 7px;
  transform: rotate(45deg);
  background: #fff;
}
header .mbBtnNav.btnOpen span:nth-of-type(2) {
  width: 0;
}
header .mbBtnNav.btnOpen span:nth-of-type(3) {
  top: 7px;
  transform: rotate(-45deg);
  background: #fff;
}
header .logo {
  width: 177px;
  margin-left: 1em;
}
@media screen and (max-width: 1024px) {
  header .logo {
    margin-left: 3%;
  }
}
@media screen and (max-width: 550px) {
  header .logo {
    width: 140px;
  }
}

/*quickLinkBox*/
.quickLinkBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 80px;
  width: calc(25% - 177px);
  height: 35px;
  float: right;
}
.quickLinkBox .link {
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quickLinkBox .link i {
  width: 20px;
  height: 20px;
  display: block;
  display: block;
}
.quickLinkBox .link .btnOpen {
  background: none;
  border: none;
}
.quickLinkBox .link > a {
  padding: 0.8em;
}
.quickLinkBox .link .linkListBox {
  display: none;
  position: absolute;
  background-color: #e55e00;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 6;
  top: 80px;
  width: 100px;
}
.quickLinkBox .link .linkListBox li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.quickLinkBox .link .linkListBox li a {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  width: 100%;
  display: block;
  padding: 4px;
}
.quickLinkBox .link .linkListBox li:hover a {
  background: #c1560c;
}
@media screen and (max-width: 1024px) {
  .quickLinkBox {
    margin-right: 80px;
  }
  .quickLinkBox .link .linkListBox {
    top: 60px;
  }
}
@media screen and (max-width: 900px) {
  .quickLinkBox .link .linkListBox {
    top: 55px;
  }
}
.quickLinkBox .link.lang .btnOpen {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.quickLinkBox .link.lang i {
  background: url("../images/iEarth.png") 0 0 no-repeat;
  background-size: 100%;
}
.quickLinkBox .link.lang.open .linkListBox {
  max-height: 300px;
  overflow-y: auto;
  display: block;
}
.quickLinkBox .link.inquiryList i {
  background: url("../images/iInquiry.png") 0 0 no-repeat;
  background-size: 100%;
}
.quickLinkBox .link.inquiryList a {
  position: relative;
  padding-right: 1.1em;
}
.quickLinkBox .link.inquiryList span {
  position: absolute;
  top: -5px;
  right: 0.2em;
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-color: #eb6100;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 26px;
  transition: all 0.25s ease 0s;
}
.quickLinkBox .link.serch {
  background: none;
}
.quickLinkBox .link.serch .btnOpen {
  cursor: pointer;
  padding: 1em 0.5em;
}
.quickLinkBox .link.serch i {
  background: url("../images/iSerch_gy.png") 0 0 no-repeat;
  background-size: 100%;
}
.quickLinkBox .link.serch .srBox {
  position: absolute;
  top: 0;
  z-index: 7;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 0.3em 0.5em;
  border-radius: 3px;
  display: none;
  right: 40px;
  height: 30px;
}
.quickLinkBox .link.serch .srBox input {
  border: none;
  font-size: 16px;
  color: #333;
  width: 500px;
  max-width: calc(100% - 160px);
  border-bottom: 1px solid #999;
}
.quickLinkBox .link.serch .srBox .btnGoSerch {
  width: 24px;
  height: 35px;
}
@media screen and (max-width: 500px) {
  .quickLinkBox .link.serch .btnOpen {
    padding: 1em 0.5em;
  }
  .quickLinkBox .link.serch i {
    width: 24px;
    height: 24px;
  }
}
.quickLinkBox .link.serch.open .btnOpen {
  position: absolute;
  z-index: 10;
  padding: 0;
  right: 10%;
  top: 40px;
  background-color: #ebebeb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.quickLinkBox .link.serch.open i {
  background: url("../images/iCancel_gy.png") 0 0 no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
.quickLinkBox .link.serch.open .srBox {
  position: absolute;
  z-index: 7;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: all ease 0.35s;
  padding: 0.3em 0.5em;
  border-radius: 3px;
  display: none;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease 0s;
  top: 0;
  width: 100%;
  left: 0;
  height: 130px;
}
@media screen and (max-width: 800px) {
  .quickLinkBox .link.serch.open .btnOpen {
    right: 3%;
  }
}
@media screen and (max-width: 500px) {
  .quickLinkBox .link.serch.open .srBox {
    height: 80px;
  }
  .quickLinkBox .link.serch.open .srBox input {
    max-width: calc(100% - 130px);
  }
  .quickLinkBox .link.serch.open .btnOpen {
    top: 18px;
  }
}

/*headerMenuList*/
.headerMenuList {
  width: 70%;
}
.headerMenuList ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.headerMenuList li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.headerMenuList li .link {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #333;
  padding-bottom: 2em;
  width: 100%;
}
.headerMenuList li .link.current {
  color: #eb6100;
  font-weight: 500;
}
.headerMenuList li .navMore {
  display: none;
  width: 40px;
  height: 50px;
  background: url(../images/iArrow_w.png) center center no-repeat;
  right: 0;
  top: -5px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  transform: rotate(-90deg);
}
.headerMenuList li .navMore.btnOpen {
  transform: rotate(0);
}
.headerMenuList li .submenu {
  display: none;
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 1em);
  z-index: 5;
  width: 150px;
}
.headerMenuList li .submenu li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  display: block;
  background-color: #2b3f5d;
  padding: 0.5em 0.2em;
}
.headerMenuList li .submenu li > .submenu {
  display: none;
  left: calc(50% + 150px);
  top: 0;
}
.headerMenuList li:hover .link {
  font-weight: 500;
}
.headerMenuList li:hover .link.current {
  color: #eb6100;
  font-weight: 500;
}
.headerMenuList li:hover .submenu {
  display: block;
}
.headerMenuList li:hover .submenu li:hover a {
  background-color: #eb6100;
}
@media screen and (max-width: 1024px) {
  .headerMenuList {
    display: none;
    background-color: #2b3f5d;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 69px;
    padding-top: 0;
  }
  .headerMenuList ul {
    flex-direction: column;
    transform: translateY(0);
    transition: all 1s ease 0s;
  }
  .headerMenuList li, .headerMenuList li:hover {
    border-bottom: solid 1px #3b5780;
  }
  .headerMenuList li .link.current, .headerMenuList li:hover .link.current {
    color: #e35e00;
  }
  .headerMenuList li .link, .headerMenuList li:hover .link {
    padding: 0.5em 1em;
    width: 100%;
    font-size: 18px;
    display: inline-block;
    color: #fff;
    font-weight: 500;
  }
  .headerMenuList li .navMore, .headerMenuList li:hover .navMore {
    display: inline-block;
  }
  .headerMenuList li .submenu, .headerMenuList li:hover .submenu {
    overflow: hidden;
    height: 0;
    display: none;
    position: inherit;
    left: 0;
    width: 100%;
    transform: translateX(0);
    text-align: left;
    box-shadow: none;
    background-color: #0f1722;
  }
  .headerMenuList li .submenu li, .headerMenuList li .submenu li:hover, .headerMenuList li:hover .submenu li, .headerMenuList li:hover .submenu li:hover {
    border: none;
    background: none;
    border-bottom: 1px solid #233650;
  }
  .headerMenuList li .submenu li a, .headerMenuList li .submenu li:hover a, .headerMenuList li:hover .submenu li a, .headerMenuList li:hover .submenu li:hover a {
    padding: 0.5em 0 0.5em 1.5em;
    display: block;
    font-size: 16px;
    background: none;
    font-weight: 300;
    color: #b6c7e1;
  }
  .headerMenuList li .submenu li > .submenu, .headerMenuList li .submenu li:hover > .submenu, .headerMenuList li:hover .submenu li > .submenu, .headerMenuList li:hover .submenu li:hover > .submenu {
    position: inherit;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    left: 0;
    height: auto;
    background: none;
    padding-left: 2em;
  }
  .headerMenuList li .submenu li > .submenu li, .headerMenuList li .submenu li:hover > .submenu li, .headerMenuList li:hover .submenu li > .submenu li, .headerMenuList li:hover .submenu li:hover > .submenu li {
    border: none;
  }
  .headerMenuList li .submenu.open, .headerMenuList li:hover .submenu.open {
    display: block;
    height: auto;
  }
}

header.s .logo {
  width: 260px;
  transition: all 0.25s ease 0s;
}
header.s .headerMenuList li .link {
  font-size: 17px;
  transition: all 0.25s ease 0s;
}

.headerMenuList.open {
  display: block;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  z-index: 50;
}

.quick-search span{
  color: #fff;
  background: #eb6100;
  width: 180px;
  height: 40px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  top: -3px;
  text-align: left;
  line-height: 40px;
  padding: 0 30px 0 11px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  font-family: 'Noto Sans TC', Arial, Helvetica, sans-serif;
}
.quick-search span:hover {
    color: #fff;
    background: #d55801;
}
.quick-search span i{
  display: inline-block;
  vertical-align: top;
  font-size: 22px;
  position: absolute;
  right: 35px;
  top: 10px;
}
.fa-chevron-down:before{
  content: "";
  position: absolute;
  background-image: url("../images/arrow_down.png");
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  background-size: cover;
}
.quick-search-open{
	position: absolute;
    z-index: 100000;
    right: 0;
    width: 100%;
    top: 37px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #424242;
    text-align: left;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px px 0px rgba(0,0,0,0.35);
	font-weight: 400;
}
.quick-search-open select {
    border: 1px solid #ddd;
    margin: 0px 0 0 0;
    min-width: 80px;
    width: 100%;
    background-image: url(/themes/accuplus/images/product-select.png);
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 1px 27px 1px 5px;
    font-size: 14px;
    color: #424242;
    height: 32px;
    margin-bottom: 5px;
    background-color: #fff;
    margin-right: 4px;
}
.quick-search-btn{
	border-radius: 5px;
    display: inline-block;
    min-width: 55px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background: #eb6100;
    padding: 0 6px;
    font-size: 14px;
}
.quick-search-btn:hover{
	color: #fff;
    background: #d55801;
}
.quick-search-rwd{display: none;}
.quick-search-rwd span{color: #fff;font-weight: 500;padding: 0.5em 1em;font-family: 'Noto Sans TC', Arial, Helvetica, sans-serif;display: inline-block;}
@media screen and (max-width: 1400px) {
	header .logo{width: 140px;}
	.quickLinkBox{width: calc(24% - 140px);}
	.quick-search span{width: 150px;}
}
@media screen and (max-width: 1400px) {
	header .logo{width: 140px;}
	.quickLinkBox{width: calc(24% - 140px);}
	.quick-search span{width: 150px;}
}
@media screen and (max-width: 1024px) {
	header .logo{width: 177px;}
	.quick-search{display: none;}
	.quick-search-open{display: none;}
	.quick-search-rwd{display: block;}
	.quick-search-open{display: inline-block !important;position: inherit;vertical-align: top;padding:10px;margin: 0;top: inherit;-webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0);-moz-box-shadow: 0px 0px px 0px rgba(0,0,0,0);box-shadow: 0px 0px px 0px rgba(0,0,0,0);height: 222.67px;}
	.quick-search-rwd .fa-chevron-down{display: inline-block;vertical-align: top;font-size: 22px;position: absolute;left: 96px;top: 20px;}
	.fa-chevron-down:before{width: 15px;height: 15px;}
}
@media screen and (max-width: 768px) {
	header .logo{width: 140px;}
}