
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
/*body.lock {
  overflow: hidden;
}*/

.join_overlay {
  width: 100%;
  max-width: 960px;
  background: #fff;
  border: 4px solid #7ebd22;
  border-radius: 32px;
  padding: 45px;
	font-family: Roboto,'Noto Sans TC', sans-serif;
  font-size: 1rem;
  font-weight: 300;
	letter-spacing: 1px;
}
.join_overlay * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.join_overlay .head {
  margin-bottom: 30px;
}
.join_overlay .head h3 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2em;
  color: #393d86;
}
.join_overlay .head p {
  font-size: 22px;
}

.join_overlay .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.join_overlay .btn_wrap a {
  display: inline-block;
  width: 48%;
  padding: 20px;
  margin-right: 4%;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 24px;
}
.join_overlay .btn_wrap a:last-child {
  margin-right: 0;
}
.join_overlay .btn_wrap a.send_btn {
  background: #0f9cd7;
}
.join_overlay .btn_wrap a.reset_btn {
  background: #636364;
}
.join_overlay .btn_wrap a svg {
  margin-right: 10px;
}
.join_overlay .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.join_overlay .close_window_btn {
  display: inline-block;
  margin: 1.5rem auto 0;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
	font-weight: 500;
  background: #97b90d;
  border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
}
@media screen and (max-width:1200px) {
.join_overlay {
	width: 85%;}	
}
@media screen and (max-width: 750px) {
  
}
@media screen and (max-width: 600px) {
  
}
@media screen and (max-width: 450px) {
  
  .join_overlay .btn_wrap {
    padding-top: 20px;
  }
  .join_overlay .btn_wrap a {
    padding: 15px 0;
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  
  .join_overlay .btn_wrap {
    padding-top: 20px;
  }
  .join_overlay .btn_wrap a {
    width: 100%;
    margin: 0;
  }
  .join_overlay .btn_wrap a.send_btn {
    margin-bottom: 15px;
  }
}
/* overlay.css ==============================================*/
.overlay_item {
  cursor: pointer;
}

.overlay_wrap {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(170, 90, 42, .85);
  cursor: url(../img/mouse_icon_w.png), auto;
}
.overlay_wrap.trans {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.overlay_wrap.trans .overlay_content {
  opacity: 1;
}
.overlay_wrap.full > .overlay_close_btn {
  display: block;
  width: 50px;
  height: 50px;
}
.overlay_wrap.full > .overlay_close_btn:before, .overlay_wrap.full > .overlay_close_btn:after {
  background: #fff;
}
.overlay_wrap.in_close > .overlay_close_btn {
  display: none;
}

.overlay_content {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  pointer-events: none;
  cursor: default;
}

.overlay_flex {
  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: 100%;
  min-height: 100vh;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.overlay_box {
  display: none;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.overlay_box.trans {
  display: block;
}

.overlay_close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 30;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/close_btn.png") no-repeat center center;
  background-size: contain;
}
.overlay_close_btn:hover {
  -webkit-transform: rotateZ(180deg) scale(1.2);
          transform: rotateZ(180deg) scale(1.2);
}


/*2023team*/
.teams{display: block; overflow: hidden; width: 100%;}
.teams h3{
	display: block; 
	overflow: hidden;
	width: 150px; 
	height: 36px; 
	line-height: 36px;
	font-size: 1.25rem;
	background: #f18c25;
	text-align: center;
	font-weight: 500;
	color: #fff;
	border-radius: 1.5rem;
    margin: 1rem auto;
}
.teams h4{
	display: block; 
	overflow: hidden;
	line-height: 2;
	font-size: 1.25rem;
	text-align: center;
	font-weight: 700;
	color: #aed026;
    margin: 1rem auto;
	border-bottom: 3px dotted rgba(240,140,40,.4); 
	padding-bottom: .5rem;
}
.teams h4 span{
	font-weight: 500;
	color: #7a673d;
	margin-right: .5rem;
}
.lead{display: block;overflow: hidden; width: 100%; margin-top: 2rem;border-bottom: 3px dotted rgba(240,140,40,.4); 
	padding-bottom: .5rem;}
.lead-pic{display: block; float: left; width: 320px; margin-right: 25px; }
.lead-pic img,.lead li img ,.rep li img{max-width: 100%;border-radius: 10px; }
.lead-pic p,.lead li p,.lead li p a,.rep li h6{display: block;  padding-top: .5rem; font-size: 1rem; color: #f18c25;font-weight: 500; text-align: center; text-decoration: none;}
.lead li p a:hover{text-decoration: underline;}
.lead-pic p span ,.lead li p span,.rep li h6 span{ color: #7a673d; margin-right: .5rem;}
.lead-txt{
	display: block;
	float: left;
	overflow: hidden;
	width: calc(99.999% - 345px);	
}
.lead-txt p,.rep li p{
	display: block;
	color: #7a673d; 
	font-size: 1rem;
	text-align: justify;
	font-weight: 400;
	padding-bottom: 1rem;
	line-height: 1.8;
}
.lead ul{
	padding-bottom: 1rem;
overflow: hidden;}
.lead li{display: block;float: left; width: calc(33.333% - 1.333rem); margin-right: 2rem;}
.lead li:nth-child(3){margin-right: 0px;}

.rep{display: block;overflow: hidden; width: 100%; margin-top: 2rem;padding-bottom: .5rem;}
.rep ul{}
.rep li:nth-child(1){display: block;float: left; width: calc(33.333% - 1.333rem); margin-right: 2rem;}
.rep li:nth-child(2){display: block;float: left; width: calc(66.666% - 1.1rem); margin-right: 0;}

@media screen and (max-width: 820px) {
.lead-pic {
  display: block;
  float: none;
  width: 70%;
  margin-right: 0;
  margin: 0 auto;
}
.lead-txt {
  display: block;
  float: none;
  overflow: hidden;
  width: 90%;
  margin: 1.5rem auto 0 auto;
}

}
@media screen and (max-width: 492px) {
  .overlay_close_btn {
    right: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
  }
.join_overlay {
  width: 90%;
	padding: 30px 15px;
}	
.teams h4 {
  display: block;
  overflow: hidden;
  line-height: 1.5;
	font-size: 1.125rem;}
.teams h4 span {
  margin-right: 0;
  display: block;
}
.lead li {
  display: block;
  float: none;
  width: 70%;
  margin-right: 0;
  margin: 0 auto 2rem auto;
}
.lead li:nth-child(3) {
  margin-right: 0px;
  margin: 0 auto;
}
.rep li:nth-child(1) {
  display: block;
  float: none;
  width: 70%;
  margin-right: 0;
  margin: 0 auto 1.5rem auto;
}
.rep li:nth-child(2) {
  display: block;
  float: none;
  width: 90%;
  margin-right: 0;
  margin:0 auto;
}
}