header {
  width: 100%;
  height: 116px;
  padding: 0 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1360px) {
  header {
    height: 90px;
  }
}

@media screen and (max-width: 1200px) {
  header {
    background: #fff;
    position: fixed;
    height: 70px;
    z-index: 10;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 410px) {
  header {
    height: 40px;
  }
}

header button {
  padding: 0;
}

header .mbBtnNav {
  display: none;
  position: absolute;
  z-index: 6;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  background-color: #90c31f;
  height: 70px;
  top: 0;
  width: 4.5em;
  right: 0;
}

header .mbBtnNav p {
  margin-top: 0.5em;
  width: 30px;
  float: right;
  position: relative;
  cursor: pointer;
  height: 20px;
}

header .mbBtnNav b {
  color: #fff;
  font-size: 14px;
}

header .mbBtnNav span {
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  -webkit-transition: all ease 0.35s;
  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: 1200px) {
  header .mbBtnNav {
    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;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 410px) {
  header .mbBtnNav {
    height: 40px;
    width: 2.5em;
  }
  header .mbBtnNav p {
    margin-top: 0;
    width: 22px;
  }
  header .mbBtnNav b {
    display: none;
  }
}

header .mbBtnNav.btnOpen span:nth-of-type(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .mbBtnNav.btnOpen span:nth-of-type(2) {
  width: 0;
}

header .mbBtnNav.btnOpen span:nth-of-type(3) {
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 410px) {
  header .mbBtnNav.btnOpen p {
    width: 24px;
  }
}

header .logo {
  height: auto;
  width: 319px;
  height: 57px;
  float: left;
  z-index: 1;
  position: relative;
}

header .logo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1200px) {
  header .logo {
    width: 200px;
    height: 36px;
  }
}

@media screen and (max-width: 410px) {
  header .logo {
    width: 160px;
    height: 29px;
  }
}

.menu {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1200px) {
  .menu {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
  }
}

/*headerIconMenu*/
.headerIconMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.headerIconMenu::before {
  margin-right: 0.5em;
  content: "";
  display: inline-block;
  width: 1px;
  height: 23px;
  background-color: #b7b7b7;
}

.headerIconMenu .link {
  white-space: nowrap;
  cursor: pointer;
  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;
  width: 1.8em;
  margin: 0 0.2em;
}

.headerIconMenu .link i {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}

.headerIconMenu .link .btnOpen {
  background: none;
  border: none;
  min-width: 2.6em;
}

.headerIconMenu .link .linkListBox {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 6;
  top: 30px;
  width: 100px;
}

.headerIconMenu .link .linkListBox li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.headerIconMenu .link .linkListBox li a {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #666;
  font-weight: 500;
  width: 100%;
  display: block;
  padding: 4px;
}

.headerIconMenu .link .linkListBox li:hover a {
  background: #90c31f;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .headerIconMenu {
    margin-right: 100px;
    margin-top: 26px;
    border: none;
  }
  .headerIconMenu::before {
    display: none;
  }
  .headerIconMenu .link .linkListBox {
    top: 40px;
  }
}

@media screen and (max-width: 500px) {
  .headerIconMenu {
    margin-right: 90px;
  }
}

@media screen and (max-width: 410px) {
  .headerIconMenu {
    margin-right: 50px;
    margin-top: 3px;
    height: 100%;
  }
  .headerIconMenu .link {
    width: auto;
    margin: 0;
  }
  .headerIconMenu .link .linkListBox {
    top: 36px;
  }
  .headerIconMenu .link .btnOpen {
    padding: 0 0.3em;
    min-width: 2em;
  }
  .headerIconMenu .link i {
    width: 16px;
    height: 16px;
  }
}

.headerIconMenu .link.lang {
  position: relative;
}

.headerIconMenu .link.lang .btnOpen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  min-width: auto;
}

.headerIconMenu .link.lang .btnOpen::after {
  content: "";
  background: url("../images/iArrow03_b.png") 0 0 no-repeat;
  background-size: 100%;
  width: 9px;
  height: 6px;
  display: inline-block;
  position: absolute;
  right: -0.3em;
  top: 0.5em;
}

.headerIconMenu .link.lang i {
  background: url("../images/iEarth_b.png") 0 0 no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 410px) {
  .headerIconMenu .link.lang .btnOpen::after {
    display: none;
  }
}

.headerIconMenu .link.lang.open .linkListBox {
  max-height: 300px;
  overflow-y: auto;
  display: block;
  -webkit-box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.2);
}

.headerIconMenu .link.serch {
  background: none;
}

.headerIconMenu .link.serch .btnOpen {
  cursor: pointer;
  min-width: auto;
}

.headerIconMenu .link.serch i {
  background: url("../images/iSerch_b.png") 0 0 no-repeat;
  background-size: 100%;
}

.headerIconMenu .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;
}

.headerIconMenu .link.serch .srBox input {
  border: none;
  font-size: 16px;
  color: #333;
  width: 500px;
  max-width: calc(100% - 160px);
  border-bottom: 1px solid #999;
}

.headerIconMenu .link.serch .srBox .btnGoSerch {
  width: 24px;
  height: 35px;
}

@media screen and (max-width: 1360px) {
  .headerIconMenu .link.serch i {
    right: 18px;
    top: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .headerIconMenu .link.serch .btnOpen {
    -webkit-clip-path: none;
            clip-path: none;
    position: initial;
    background: none;
    width: auto;
  }
  .headerIconMenu .link.serch i {
    background: url("../images/iSerch_b.png") 0 0 no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    position: initial;
  }
}

@media screen and (max-width: 410px) {
  .headerIconMenu .link.serch i {
    width: 16px;
    height: 16px;
  }
}

.headerIconMenu .link.serch.open .btnOpen {
  -webkit-clip-path: none;
          clip-path: none;
  position: absolute;
  z-index: 10;
  padding: 0;
  right: 10%;
  top: 40px;
  background-color: #ebebeb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.headerIconMenu .link.serch.open i {
  background: url("../images/iCancel_gy.png") 0 0 no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  position: initial;
}

.headerIconMenu .link.serch.open .srBox {
  position: absolute;
  border: none;
  z-index: 7;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  -webkit-transition: all ease 0.35s;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  top: 0;
  width: 100%;
  left: 0;
  height: 130px;
}

@media screen and (max-width: 800px) {
  .headerIconMenu .link.serch.open .btnOpen {
    right: 3%;
  }
}

@media screen and (max-width: 500px) {
  .headerIconMenu .link.serch.open .srBox {
    height: 80px;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    padding: 0.3em 3%;
  }
  .headerIconMenu .link.serch.open .srBox input {
    max-width: calc(100% - 90px);
  }
  .headerIconMenu .link.serch.open .btnOpen {
    top: 18px;
  }
}

/*headerMenuList*/
.headerMenuList {
  width: calc(100% - 90px);
}

.headerMenuList ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.headerMenuList li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.headerMenuList li .mainTitle {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .01em;
  color: #3a3535;
  padding: 0 1em 2em;
  width: 100%;
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
}

.headerMenuList li .mainTitle::after {
  content: "";
  height: 2px;
  width: 0;
  background-color: #90c31f;
  position: absolute;
  left: 55%;
  z-index: -1;
  top: 1.5em;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.headerMenuList li .mainTitle.current {
  color: #90c31f;
  font-weight: 500;
}

.headerMenuList li .mainTitle.current::after {
  width: 80%;
  left: 10%;
}

.headerMenuList li .navMore {
  display: none;
  width: 40px;
  height: 50px;
  background: url(../images/iArrow_gy.png) center center no-repeat;
  right: 0;
  top: -5px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.headerMenuList li .navMore.btnOpen {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.headerMenuList li:hover .mainTitle {
  color: #000;
}

.headerMenuList li:hover .mainTitle::after {
  width: 80%;
  left: 10%;
}

.headerMenuList li:hover .mainTitle.current {
  color: #90c31f;
  font-weight: 500;
}

.headerMenuList li .submenu {
  display: none;
  position: absolute;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% + 0.5em);
  z-index: 5;
  width: 170px;
  -webkit-box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.2);
}

.headerMenuList li .submenu li a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #333;
  display: block;
  background-color: #fff;
  padding: 0.5em 3%;
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
}

.headerMenuList li .submenu li > .submenu {
  display: none;
  left: calc(50% + 150px);
  top: 0;
}

.headerMenuList li .submenu li:hover a {
  background-color: #90c31f;
  color: #fff;
}

.headerMenuList li:hover .submenu {
  display: block;
}

@media screen and (max-width: 1200px) {
  .headerMenuList {
    display: none;
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 69px;
    padding-top: 0;
  }
  .headerMenuList ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    border-top: solid 1px #90c31f;
  }
  .headerMenuList li, .headerMenuList li:hover {
    border: none;
    border-bottom: solid 1px #dbdbdb;
    position: relative;
  }
  .headerMenuList li .submenu, .headerMenuList li:hover .submenu {
    position: relative;
    display: none;
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    top: 0;
    left: 0;
    text-align: left;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .headerMenuList li .submenu.open, .headerMenuList li:hover .submenu.open {
    display: block;
    height: auto;
  }
  .headerMenuList li .mainTitle, .headerMenuList li:hover .mainTitle {
    color: #3a3535;
    font-weight: 500;
    font-size: 18px;
    min-height: 40px;
    display: inline-block;
    padding: 0.5em 50px 0 3%;
  }
  .headerMenuList li .mainTitle::after, .headerMenuList li:hover .mainTitle::after {
    display: none;
  }
  .headerMenuList li .mainTitle.current::after, .headerMenuList li:hover .mainTitle.current::after {
    width: 2.5%;
    height: 4px;
    left: 0;
    top: calc(50% - 1px);
    display: none;
  }
  .headerMenuList li .navMore, .headerMenuList li:hover .navMore {
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .headerMenuList li .submenu li a {
    font-weight: normal;
    padding-left: calc(3% + 0.5em);
    background-color: #f3f3f3;
  }
}

@media screen and (max-width: 410px) {
  .headerMenuList {
    top: 40px;
  }
}

.headerMenuList.open {
  display: block;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  z-index: 50;
}
