/*modify by pekey 20190523*/
@charset "utf-8";
/* CSS Document */

/*------------------------------------------CSS Setting Start-------------------------------*/

/*================*/
/*-- loading --*/
/*================*/

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #fff;
  text-align: center;

  /*新增by pekey 20171211*/
  padding-top: 250px;
}

/*Loading畫面CSS開始*/
#circularG {
  position: relative;
  width: 58px;
  height: 58px;
  margin: auto;
}

.circularG {
  position: absolute;
  background-color: rgb(201, 9, 21); /*此為Loding的點點顏色*/
  width: 14px;
  height: 14px;
  border-radius: 9px;
  -o-border-radius: 9px;
  -ms-border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  animation-name: bounce_circularG;
  -o-animation-name: bounce_circularG;
  -ms-animation-name: bounce_circularG;
  -webkit-animation-name: bounce_circularG;
  -moz-animation-name: bounce_circularG;
  animation-duration: 1.1s;
  -o-animation-duration: 1.1s;
  -ms-animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  -moz-animation-duration: 1.1s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
}

#circularG_1 {
  left: 0;
  top: 23px;
  animation-delay: 0.41s;
  -o-animation-delay: 0.41s;
  -ms-animation-delay: 0.41s;
  -webkit-animation-delay: 0.41s;
  -moz-animation-delay: 0.41s;
}

#circularG_2 {
  left: 6px;
  top: 6px;
  animation-delay: 0.55s;
  -o-animation-delay: 0.55s;
  -ms-animation-delay: 0.55s;
  -webkit-animation-delay: 0.55s;
  -moz-animation-delay: 0.55s;
}

#circularG_3 {
  top: 0;
  left: 23px;
  animation-delay: 0.69s;
  -o-animation-delay: 0.69s;
  -ms-animation-delay: 0.69s;
  -webkit-animation-delay: 0.69s;
  -moz-animation-delay: 0.69s;
}

#circularG_4 {
  right: 6px;
  top: 6px;
  animation-delay: 0.83s;
  -o-animation-delay: 0.83s;
  -ms-animation-delay: 0.83s;
  -webkit-animation-delay: 0.83s;
  -moz-animation-delay: 0.83s;
}

#circularG_5 {
  right: 0;
  top: 23px;
  animation-delay: 0.97s;
  -o-animation-delay: 0.97s;
  -ms-animation-delay: 0.97s;
  -webkit-animation-delay: 0.97s;
  -moz-animation-delay: 0.97s;
}

#circularG_6 {
  right: 6px;
  bottom: 6px;
  animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
}

#circularG_7 {
  left: 23px;
  bottom: 0;
  animation-delay: 1.24s;
  -o-animation-delay: 1.24s;
  -ms-animation-delay: 1.24s;
  -webkit-animation-delay: 1.24s;
  -moz-animation-delay: 1.24s;
}

#circularG_8 {
  left: 6px;
  bottom: 6px;
  animation-delay: 1.38s;
  -o-animation-delay: 1.38s;
  -ms-animation-delay: 1.38s;
  -webkit-animation-delay: 1.38s;
  -moz-animation-delay: 1.38s;
}

@keyframes bounce_circularG {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.3);
  }
}

@-o-keyframes bounce_circularG {
  0% {
    -o-transform: scale(1);
  }

  100% {
    -o-transform: scale(0.3);
  }
}

@-ms-keyframes bounce_circularG {
  0% {
    -ms-transform: scale(1);
  }

  100% {
    -ms-transform: scale(0.3);
  }
}

@-webkit-keyframes bounce_circularG {
  0% {
    -webkit-transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.3);
  }
}

@-moz-keyframes bounce_circularG {
  0% {
    -moz-transform: scale(1);
  }

  100% {
    -moz-transform: scale(0.3);
  }
}
/*Loading畫面CSS結束*/

.loading_tit {
  padding: 20px 0px 0px 15px;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  font-family: 微軟正黑體;
  text-align: center;
}

#top {
  position: absolute;
  top: -100%;
}

.headertop {
  border-top: 0px solid #fff0;
}

.headerArea {
  /* position: fixed; */
  width: 100%;
  z-index: 999;
  transition: 0.3s ease all;
  position: relative;
}
/*浮動*/
/* .headerArea.fixed {	
	transition:0.3s ease all;
	box-shadow: 1px 1px 15px #0000000f;
} */

/*/////////////////////////////////////////////////////////*/
/*-------版頭--------*/
/*/////////////////////////////////////////////////////////*/

.header {
  position: relative;
  background-color: #0467b3;
  /* position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	transition: 0.3s ease all;
	background-color: #fff; */
  border-top: 10px #ffd000 solid;
}
.header:before {
  position: absolute;
  content: "";
  background-color: #040404;
  width: 10%;
  height: 100%;
}

/*浮動*/
.header.fixed {
  /* box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.3);
	transition: 0.3s ease all;
	padding: 0px;
	background-color: #fff; */
}

.header > .wrap {
  position: relative;
  /* width: 85%;
  margin: 0 auto;
  padding: 0; */
  /* width: auto; */
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  /* align-items: flex-end; */
  /* background-color: #aaaaaaa8; */
}

/* 版頭ISSN-------------------- */
.header_issn {
  position: absolute;
  top: 0;
  right: 0;
}
/* .header_issn span{
		padding: 0px 25px 10px 45px;
		display: inline-block;
		font-size: 12px;
		line-height: 18px;
		color: #0467b3;
		background-color: #ffd000;
		background: linear-gradient(45deg, transparent 9px, #ffd000 0) top left,
					linear-gradient(-90deg, transparent 0px, #ffd000 0) top right,
					linear-gradient(-90deg, transparent 0px, #ffd000 0) bottom right,
					linear-gradient(45deg, transparent 19px, #ffd000 0) bottom left;
		background-size: 55% 50%;
		background-repeat: no-repeat;
	}*/
.header_issn svg#header_issn {
  width: 185px;
  transform: translateY(-1px);
}
.header_issn .st0 {
  fill: #ffd000;
}
.header_issn .st1 {
  font-size: 14px;
  /* line-height: 18px; */
  color: #0467b3;
  font-weight: bold;
}

/*================*/
/*-- 手機menu按鍵 --*/
/*================*/
.menu_btn {
  position: absolute;
  width: 30px;
  /* top: 13px; */
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  z-index: 99;
}
.menu_btn span {
  display: block;
  background-color: #ffd000;
  height: 3px;
  margin: 6px 0px;
  transition: 0.3s ease all;
  border-radius: 3px;
}
/*點擊*/
.menu_btn.active {
  position: fixed;
  top: 42px;
  right: 5%;
  transform: translateY(0%);
}
.menu_btn.active span {
  background-color: #fff;
}
.menu_btn.active span:nth-of-type(1) {
  transform: rotate(39deg);
  transform-origin: top left;
}
.menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.menu_btn.active span:nth-of-type(3) {
  transform: rotate(-39deg);
  transform-origin: bottom left;
}

@media (max-width: 990px) {
  /*手機menu按鍵*/
  .menu_btn {
    display: block;
    /* left: 15px; */
  }

  /*浮動*/
  .header.fixed .menu_btn {
    /* padding-top: 50px; */
  }
}

@media (max-width: 767px) {
  /*手機menu按鍵*/
  .menu_btn {
    /* left: 15px; */
  }
  /*點擊*/
  .menu_btn.active {
    /* top: 9px; */
    right: 17px;
  }
}

@media (max-width: 640px) {
  /*手機menu按鍵*/
  .menu_btn {
    /* left: 15px; */
  }
  /*點擊*/
  .menu_btn.active {
    top: 25px;
    /* right: 20px; */
  }
}

/*================*/
/*----- logo -----*/
/*================*/
.logo {
  background-color: #040404;
  transition: 0.3s ease all;
  animation-name: bounceIn;
  animation-duration: 1.2s;
  animation-fill-mode: both;
  visibility: visible;
  /* padding: 20px 0px;
  padding-right: 70px; */
  padding: 20px 70px;
   display: flex;
  /*transform: translate(0px , 0px); */
}

/*浮動*/
.header.fixed .logo {
  /* transition: 0.3s ease all;
	width: 170px;
	padding: 10px 0px; */
}

.logo h1 {
  padding: 0;
  margin: 0;
  display: block;
  width: 370px;
  margin: auto 0;
}

.logo a {
  display: block;
  transition: 0.3s ease all;
}
.logo img {
  width: 100%;
  height: auto;
}

/*hover*/
.logo a:hover {
  transform: scale(0.9);
  animation: bounceIn;
}

/*================================================*/
/*----- 版頭右側 -----*/
/*================================================*/

.headerRight {
  /* padding-top: 85px; */
  /* font-weight: 500; */
  /* width: 80%; */
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

/*================================================*/
/*----- 語系 -----*/
/*================================================*/

.language {
  box-sizing: border-box;
  padding-left: 25px;
}
.languageIn {
  overflow: hidden;
  width: 100px;
  height: 30px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: -1px;
  line-height: 1;
  /* line-height: 30px;	 */
}

.language_switch {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 30px;
}

.language_switch .lang {
  position: absolute;
  /* z-index: 1; */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.language_switch .lang.active {
  color: #0467b3;
}
.language_switch .lang.tw {
  left: 14px;
}
.language_switch .lang.en {
  right: 14px;
  /* color: #fff; */
}
/* .language_switch .lang a{
			color: inherit;
			display: block;
			text-decoration: none;
		} */

.language_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.language_switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0467b3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 35px;
  border: 2px #fff solid;
}

.language_switch .slider:before {
  position: absolute;
  content: "";
  height: 29px;
  /* width: 29px; */
  width: 50px;
  left: -1px;
  top: -1px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  /* border-radius: 50%; */
  border-radius: 35px 0 0 35px;
}

.language_switch input:checked + .slider {
  /* background-color: #ffd000; */
  /* background-color: #0467b3; */
}

.language_switch input:checked + .slider:before {
  -webkit-transform: translateX(48px);
  -ms-transform: translateX(48px);
  transform: translateX(48px);
  border-radius: 0 35px 35px 0;
}
.language_switch input:checked ~ .lang.en {
  color: #0467b3;
}
.language_switch input:checked ~ .lang.en + .lang.tw {
  color: #fff;
}

/*================================================*/
/*-------版頭右搜尋--------*/
/*================================================*/

/*版頭右搜尋Icon---------*/
/* ul.headerRightLink li.search_pc{				
} */

/*版頭商品搜尋*/
.header_search_area {
  /* display:inline-block; */
  /* vertical-align:middle; */
  box-sizing: border-box;
  padding-left: 12.5px;
}
#search {
  /*color:#ccc;*/
  color: #fff; /*修改by pekey 20170725*/
}
input#search::placeholder {
  color: #fff;
}

@-moz-document url-prefix() {
  #search {
    color: #ccc;
  }
}
.header_search {
  position: relative;
  font-size: 0px;
  background: #0467b3;
  border: solid 2px #ffffff;
  width: 130px;
  padding-right: 22px;
  border-radius: 35px;
}
.header_search input {
  height: 30px;
  line-height: 30px;
}
.header_search input[type="search"] {
  border: none;
  /*padding:5px;*/ /*在IE顯示會擠壓到*/
  font-size: 15px;
  background: rgba(255, 255, 255, 0);
  padding: 0px 12px;
}
.header_search input[type="submit"] {
  position: absolute;
  float: left;
  padding: 0px 0px 6px;
  display: none;
}

.header_search label {
  position: absolute;
  right: 0px;
  top: 0px;
  background: #ffffff00;
  /* padding:2px 0px 0px 3px; */
  border-radius: 0 15px 15px 0;
  width: 35px;
  height: 30px;
  display: flex;
}

/* .header_search  i{
								font-size:20px;
								color:#fff;
								margin: 2px;
							} */

.header_search label svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 1px;
  transition: 0.4s ease all;
  margin: auto;
  padding-right: 5px;
}
.header_search label:hover svg {
  transition: 0.4s ease all;
  fill: #ffd000;
  stroke: #ffd000;
}
/* ul.headerRightLink li.search_pc a:before{
								display: none;
							} */

/* 手機版頭商品搜尋 */
/* .header_search_area.mobile{
		display: none;
	} */

/*================================================*/
/*----- 主按鍵 -----*/
/*================================================*/

/* .header_rightArea{
    float: right;
} */

.navbar {
  box-sizing: border-box;
  line-height: 1.5;
  /* padding-top: 85px;		
		width: 80%; */
  /* font-weight: 500;
		min-width: 800px; */
  /* margin-right: -50px;
		padding: 15px 0px 0px; */
}

/*浮動*/
.header.fixed .navbar {
  /* padding: 0px 0px; */
}

.nav {
  float: left;
  box-sizing: border-box;
  /* width: 25%; */
  position: relative;
  font-size: 23px;
}
/* mobile展開效果多加nav_titArea */
/* .nav_titArea{
				position: relative;
			} */
.nav a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  /* font-size: 16px; */
  transition: 0.3s ease all;
  position: relative;
  /* padding: 10px 50px; */
  padding: 57px 12.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .nav span.nav_icon{
					display: block;
					width: 50px;
					margin: auto;
					padding-bottom: 10px;
				}	
					.nav span.nav_icon img{
					width: 100%;
					height: auto;
					} */
.nav span.nav_tit {
  display: block;
}
.nav span.nav_tit2 {
  display: block;
  font-size: 14px;
}

/*手機才出現*/
.nav.mob {
  display: none;
}

.header.fixed .nav > a {
  /* transition: 0.3s ease all; */
  /* font-size: 16px;
				padding: 20px 30px; */
}

/*hover*/
.nav:hover > a {
  opacity: 0.5;
  transition: 0.3s ease all;
}
/* .nav_span{
					color: #000;
					position: absolute;
					top: 16px;
					right: 3px;
					font-size: 12px;
				} */

/*主按鍵展開*/
.navOpen {
}
.navOpen.pc {
  position: absolute;
  top: 170px;
  left: 50%;
  z-index: 2;
  width: 190px;
  -webkit-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
  display: none;
}

.nav:hover .navOpen.pc {
  display: block;
}

/* .navOpen.pc.geneinfo {
				width: 100%;
				position:absolute;
				left: 0;
				top: 80px;
				display: none;
				z-index: 2;
				background-color: rgba(255,255,255,0.9);
				box-shadow: 9px 6px 19px -8px rgba(0,0,0,0.5);
				border-top: 1px solid rgba(0,0,0,0.1);
				
				transition: 0.3s ease all;
			} */

/*mobile版*/
.navOpen.mobile {
  display: none;
  opacity: 0;
  z-index: -999999;
  position: absolute;
}
/* mobile下拉Arrow */
.navArrow {
  position: absolute;
  transform: translate(0px, -50%);
  top: 50%;
  right: 1px;
  width: 30px;
  height: 35px;
  z-index: 3;
  cursor: pointer;
  /* background-color: #000; */

  display: none; /*手機出現*/
}
.navArrow:before {
  position: absolute;
  transition: 0.3s ease all;
  font-family: "Bootstrap-icons";
  content: "\F282";
  top: 7px;
  right: 6px;
  color: #ffffff;
  font-size: 15px;
  transform-origin: center;
}
.navArrow.active:before {
  transform: rotate(180deg);
}

/*hover*/
.nav:hover .navOpen.pc {
  display: block;

  transition: 0.3s ease all;
}

.navOpenBg {
  position: relative;
}

/*.navOpenBg:before {
						position: absolute;
						content:'';
						border-bottom: solid 8px rgba(0,0,0,0.6);
						border-left: solid 12px rgba(255,255,255,0);
						border-right: solid 12px rgba(255,255,255,0);
						top:-8px;
						left:50%;
						margin:0px 0px 0px -12px;
					}*/

.navOpenList a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  color: #fff !important;
  line-height: 1.5;
  padding: 10px 5px;
  background: rgba(0 0 0 / 70%);
  transition: 0.3s ease all;
  letter-spacing: 0px;
}
.navOpenList > a:hover {
  background-color: #0467b3;
}

.navOpen.pc .navOpenList a {
}
/*hover*/
.navOpen.pc .navOpenList a:hover {
}


@media (max-width: 2560px) {
  .logo {
    /* transform: translateX(-188px); */
  }
}
@media (max-width: 2000px) {
  .logo {
    /* transform: translateX(-107px); */
  }
}

@media (max-width: 1800px) {
  .header:before {
    width: 6%;
  }

  /*----- logo -----*/
  .logo {
    padding-left: 20px;
    padding-right: 20px;
    /* transform: translateX(-140px); */
  }
  .logo h1 {
    width: 240px;
  }

  /*----- 版頭右側 -----*/
  .headerRight {
    padding-top: 30px;
  }

  /*版頭商品搜尋--------*/
  .header_search_area {
    padding-left: 10px;
  }
  .header_search {
    width: 100px;
  }
  .header_search input[type="search"] {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }

  .header_search label {
    width: 40px;
    height: 30px;
  }

  /*----- 語系 -----*/
  .language {
    padding-left: 10px;
  }

  /*-------主按鍵--------*/
  .navbar {
  }
  .nav {
    font-size: 18px;
  }
  .nav a {
    padding: 24px 10px; /*20221130 Patty 修改*/
  }
  .nav span.nav_tit2 {
    font-size: 13px;
  }
  /*主按鍵展開*/
  .navOpen.pc {
    top: 94px; /*20221130 Patty 修改*/
  }
}

/*@media (max-width: 1630px) {
  .logo {
    transform: translateX(-140px);
  }
}
 @media (max-width: 1580px) {
  .logo {
    transform: translateX(-133px);
  }
}*/
@media (max-width: 1500px) {
  .logo {
    /* transform: translateX(-124px); */
  }
    .logo h1{
      width: 235px;
    }
}
/*@media (max-width: 1440px) {
  .logo {
    transform: translateX(-45px);
  }
} */
@media (max-width:1300px){

  .logo {
    padding: 15px 15px;
  }
    .logo h1 {
        width: 130px;
    }

  /*主按鍵展開*/
  .navOpen.pc {
    top: 60px;
  }

}

/* @media (max-width:1020px){
  .logo {
    padding-right: 40px;
    transform: translateX(-16px);
  }
  .logo h1{
    width: 130px;

  }
} */

@media (max-width: 990px) {
  /* 版頭ISSN----------------------- */
  
  .header_issn svg#header_issn {
    width: 130px;
  }

  .header:before {
    /* display: none; */
  }

  .header > .wrap {
    display: block;
    justify-content: unset;
    background-color: #fff0;
  }

  .logo {
    /* padding-right: 0px;
		transform: translateX(0px); */
    width: 180px;
    padding: 10px 10px;
    /* transform: translateX(0px) !important; */
  }
  .logo h1 {
    width: 100%;
  }

  /*----- 版頭右側 -----*/
  .headerRight {
    position: fixed;
    width: 200px;
    top: 0px;
    right: -200px;
    height: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    transition: 0.3s ease all;
    padding: 93px 0px 0;
    /* overflow-y: auto; */
    z-index: 4;

    display: block;
    flex-direction: unset;
    align-items: unset;
  }
  .headerRight.active {
    right: 0px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  }
  /*浮動*/
  /* .header.fixed .headerRight{
		padding-top: 50px;
	} */

  /*主按鍵*/
  .navbar {
  }
  .headerRight.active .navbar {
    overflow-y: auto;
    height: 100%;
  }

  .nav {
    float: none;
    width: 100%;
    padding: 0px;
    position: relative;
  }
  /*手機才出現*/
  .nav.mob {
    display: block;
  }
  /* mobile展開效果多加nav_titArea */
  .nav_titArea {
    position: relative;
  }
  .nav a {
    border: none;
    border-radius: 0px;
    text-align: left;
    padding: 10px 10px;
    color: #cecece;
    border-bottom: 1px solid #5b5b5b;
    font-size: 14px;
    display: block;
    flex-direction: row;
    justify-content: unset;
  }

  /* .nav span.nav_icon {
					margin: auto 0;
					padding: 0 10px 0 0;

					display: none;
				} */

  /*當前模式*/
  .nav.active > a {
    background: transparent;
  }

  /*展開選單*/
  .navOpen {
    position: relative;
    top: 0px;
    left: 0px;
    margin: 0px;
    width: auto;
    border-radius: 0px;
    background: #444;
  }
  .navOpen:before,
  .navOpen:after {
    border-bottom: solid 8px #444;
    left: 23px;
  }
  .nO_list a {
    text-align: left;
    padding: 15px 15px;
  }

  /*hover*/
  .nav:hover .navOpen.pc {
    display: none;
  }
  .fixed_nav:hover .navOpen.pc {
    display: none;
  }

  .navOpen.mobile {
    display: none;
    opacity: 1;
    z-index: 1;
    position: relative;
  }
  /* mobile下拉Arrow */
  .navArrow {
    display: block; /*手機出現*/
  }
  .navOpenBg {
    box-shadow: none;
  }
  .navOpen.mobile .navOpenList {
  }
  .navOpen.mobile .navOpenList > a {
    text-align: left;
    font-size: 13px;
    color: #cecece !important;
    line-height: 22px;
    /*padding: 12px 15px;*/
    padding: 12px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.3s ease all;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #5b5b5b;
  }
  .navOpenList > a:hover {
    opacity: 0.7;
  }

  /*----- 語系-------------------------------- */
  .language {
    padding: 0px;
  }
  .languageIn {
    width: 100%;
    border-radius: 0px;
  }
  .language_switch {
    width: 100%;
  }
  .language_switch .slider {
    /* background-color: #0467b3; */
    border-radius: 0px;
    border: none;
  }
  .language_switch .slider:before {
    width: 50%;
    height: 30px;
    border-radius: 0;
    top: 0px;
  }
  .language_switch input:checked + .slider:before {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    border-radius: 0 0;
  }
  .language_switch .lang.en {
    right: 34px;
  }
  .language_switch .lang.tw {
    left: 34px;
  }

  /* 手機版搜尋-------------------------------- */
  .header_search_area {
    padding: 0;
    /* display: block; */
  }
  .header_search_area .header_search {
    width: auto;
    border-radius: 0;
    border: none;
    background: #999999;
  }
  .header_search_area .header_search label {
    width: 35px;
    height: 30px;
    border-radius: 0;
  }
  .header_search_area .header_search label svg {
    margin: auto;
    fill: #fff;
  }
}

@media (max-width: 640px) {
  .header {
    border-top: 5px #ffd000 solid;
  }
  /* 版頭ISSN----------------------- */
  .header_issn svg#header_issn {
    width: 110px;
  }
  .header_issn .st1 {
    font-size: 16px;
    transform: matrix(1, 0, 0, 1, 35, 18);
  }

  .logo {
    width: 140px;
    /* padding: 10px 0;
    padding-right: 10px;
    transform: translateX(-10px); */
  }
  .logo h1 {
    /* width: 100px; */
  }

  /*----- 版頭右側 -----*/
  .headerRight {
    padding: 74.3px 0px 0;
  }
}

/* 搜尋的廣告區塊如果要隱藏，只要針對此 class 下隱藏樣式即可 */
.gsc-adBlock {
  display: none;
}
