﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500&family=Open+Sans:wght@400;500;700&display=swap");
body {
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "Open Sans", Myriad Pro, Myriad, Aria, sans-serif;
  background-color: #fff;
  padding-top: 0;
  letter-spacing: 1px;
  line-height: 1.2;
  transition: background-color 0.5s ease;
}

input, textarea, button {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "Open Sans", Myriad Pro, Myriad, Aria, sans-serif;
  outline: none;
}

a {
  text-decoration: none;
}

.mid_block {
  max-width: 1400px;
  width: 90%;
  position: relative;
}

.mid_block_m {
  width: 80%;
  max-width: 1600px;
}
@media only screen and (max-width: 1500px) {
  .mid_block_m {
    width: 90%;
  }
}
@media only screen and (max-width: 650px) {
  .mid_block_m {
    width: calc(100% - 60px);
  }
}

.font24 {
  font-size: 24px;
}
@media only screen and (max-width: 1200px) {
  .font24 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 650px) {
  .font24 {
    font-size: 18px;
  }
}

.font20 {
  font-size: 20px;
}
@media only screen and (max-width: 1200px) {
  .font20 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 650px) {
  .font20 {
    font-size: 16px;
  }
}

.font18 {
  font-size: 18px;
}
@media only screen and (max-width: 1200px) {
  .font18 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 650px) {
  .font18 {
    font-size: 15px;
  }
}

.font16 {
  font-size: 16px;
}
@media only screen and (max-width: 650px) {
  .font16 {
    font-size: 14px;
  }
}

img {
  display: block;
}

#load {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  left: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading > div {
  display: inline-block;
  float: none;
  background-color: #538049;
  border: 0 solid #538049;
}
.loading {
  width: 40px;
  height: 32px;
}

.loading > div {
  width: 4px;
  height: 32px;
  margin: 0 2px;
  border-radius: 0;
  animation: loadings 0.9s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.loading > div:nth-child(3) {
  animation-delay: -0.9s;
}

.loading > div:nth-child(2),
.loading > div:nth-child(4) {
  animation-delay: -0.7s;
}

.loading > div:nth-child(1),
.loading > div:nth-child(5) {
  animation-delay: -0.5s;
}

.loading.la-sm {
  width: 20px;
  height: 16px;
}

.loading.la-sm > div {
  width: 2px;
  height: 16px;
  margin: 0 1px;
}

.loading.la-2x {
  width: 80px;
  height: 64px;
}

.loading.la-2x > div {
  width: 8px;
  height: 64px;
  margin: 0 4px;
}

.loading.la-3x {
  width: 120px;
  height: 96px;
}

.loading.la-3x > div {
  width: 12px;
  height: 96px;
  margin: 0 6px;
}

@keyframes loadings {
  0% {
    transform: scaley(1);
  }
  50% {
    transform: scaley(0.3);
  }
  to {
    transform: scaley(1);
  }
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.link {
  outline: none;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  height: 125px;
  border-bottom: 1px solid #d6d6d8;
}
header.active .logo {
  opacity: 1;
  -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.active .scrollDown {
  opacity: 1;
}
header .logo {
  position: absolute;
  left: 5%;
  top: 22px;
}
header .scrollDown {
  position: fixed;
  width: 50px;
  height: 75px;
  z-index: 10;
  bottom: 5%;
  left: 52px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s ease;
}
header .scrollDown.hide {
  pointer-events: none;
  opacity: 0;
}
header .scrollDown::before {
  content: "";
  border: 1px solid black;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 16px;
  bottom: 10px;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) translateX(0%);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
header .scrollDown::after {
  content: "";
  background-color: black;
  width: 1px;
  height: 52px;
  position: absolute;
  left: 25px;
  bottom: 9px;
  border-top: 0;
  border-right: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
header .scrollDown span {
  position: relative;
}
@media only screen and (min-height: 1350px) {
  header .scrollDown {
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (min-width: 1200px) {
  header .scrollDown:hover::after {
    height: 28px;
  }
  header .scrollDown:hover::before {
    bottom: 0;
  }
}
header .menu {
  position: absolute;
  left: 5%;
  top: 50%;
  margin-left: 415px;
  display: flex;
}
header .menu .copyright {
  display: none;
}
header .menu .mainLink {
  margin-right: 4vw;
  position: relative;
}
header .menu .mainLink.login {
  display: none;
}
header .menu .mainLink > .link {
  position: relative;
  color: black;
  z-index: 6;
}
@media only screen and (min-width: 1200px) {
  header .menu .mainLink:hover .downMenu:after {
    opacity: 1;
  }
}
@media only screen and (max-width: 1400px) {
  header .menu .mainLink {
    margin-right: 20px;
  }
}
header .menu .mainLink .downMenu {
  position: absolute;
  top: 0;
  padding-top: 62px;
  display: block;
  z-index: 5;
  width: 182px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
header .menu .mainLink .downMenu.login .link:nth-child(2) {
  border-radius: 15px 15px 0 0;
}
header .menu .mainLink .downMenu div {
  position: relative;
}
@media only screen and (min-width: 1000px) {
  header .menu .mainLink .downMenu div:hover .subLink {
    opacity: 1;
    pointer-events: all;
  }
}
header .menu .mainLink .downMenu div:last-child {
  border-radius: 0px 0px 15px 15px;
}
header .menu .mainLink .downMenu div .link:first-child {
  border-radius: 0 0 0 0;
}
header .menu .mainLink .downMenu div:first-child > .link:first-child {
  border-radius: 15px 15px 0 0;
}
@media only screen and (min-width: 1200px) {
  header .menu .mainLink .downMenu div:first-child:hover > .link:first-child {
    border-radius: 15px 0 0 0;
  }
}
header .menu .mainLink .downMenu div .subLink {
  position: absolute;
  left: 100%;
  width: 150px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
header .menu .mainLink .downMenu div .subLink .link {
  background: #76b069;
  color: rgba(255, 255, 255, 0.8);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
header .menu .mainLink .downMenu div .subLink .link:first-child {
  border-radius: 0 15px 0 0;
}
@media only screen and (min-width: 1000px) {
  header .menu .mainLink .downMenu div .subLink .link:hover {
    color: rgb(255, 255, 255);
  }
}
header .menu .mainLink .downMenu::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 8px 7.5px;
  border-color: transparent transparent #538049 transparent;
  left: 50%;
  top: 54px;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}
header .menu .mainLink .downMenu.onlyone .link {
  border-radius: 15px !important;
}
header .menu .mainLink .downMenu .link {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 9px;
  color: black;
  border: 1px solid #c6cac5;
  transition: all 0.3s ease;
  color: black;
  border-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  header .menu .mainLink .downMenu .link:hover {
    color: #538049;
  }
}
header .menu .mainLink .downMenu .link:last-child {
  border-radius: 0px 0px 15px 15px;
  border-bottom: 1px solid #c6cac5;
}
header .menu .mainLink .downMenu .link:first-child {
  border-radius: 15px 15px 0 0;
}
header .btn {
  position: absolute;
  right: 5%;
  top: 50px;
  display: flex;
  margin-right: 106px;
}
header .btn.login {
  margin-right: 90px;
}
header .btn .home {
  position: relative;
  color: #7c7c7e;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  margin-right: 15px;
  top: -1px;
}
header .btn .ytlink {
  position: relative;
  width: 40px;
  height: 40px;
  color: #dd5763;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 46px;
  font-size: 18px;
}
header .btn .ytlink::after {
  content: "";
  background-color: rgb(170, 170, 170);
  position: absolute;
  right: -16px;
  width: 1px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}
header .btn .fblink {
  position: relative;
  width: 40px;
  height: 40px;
  color: #4f7bcb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}
header .serviceBtn {
  position: fixed;
  right: 5%;
  top: 50px;
  z-index: 50;
}
header .serviceBtn.in {
  width: 80px;
  height: 50px;
  cursor: pointer;
  top: 45px;
}
header .serviceBtn.in:after {
  content: "";
  border: 2px solid #538049;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 5px;
  transform: rotate(45deg);
  border-top: 0;
  border-left: 0;
  top: 18px;
}
header .serviceBtn.in .login {
  display: none;
}
header .serviceBtn .mypic {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  transition: all 0.3s ease;
}
header .serviceBtn .mypic img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1200px) {
  header .serviceBtn .mypic:hover {
    border-color: #538049;
  }
}
header .serviceBtn .member_info {
  position: absolute;
  width: 185px;
  height: auto;
  top: 79px;
  left: -65px;
  z-index: 88;
  display: none;
}
header .serviceBtn .member_info.show:after {
  opacity: 1;
  transition: all 0.5s ease 0.3s;
}
header .serviceBtn .member_info:before {
  content: "";
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 30px;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
}
header .serviceBtn .member_info::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 8px 7.5px;
  border-color: transparent transparent #538049 transparent;
  left: 50%;
  top: -7px;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 0;
}
header .serviceBtn .member_info .line {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #cecece;
  padding: 16px 20px;
  align-items: center;
  margin-bottom: 12px;
}
header .serviceBtn .member_info .line img {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}
header .serviceBtn .member_info .line .text {
  position: relative;
}
header .serviceBtn .member_info .line .text .name {
  position: relative;
  font-size: 18px;
  margin-bottom: 2px;
  word-break: break-all;
}
header .serviceBtn .member_info .line .text .type {
  position: relative;
  font-size: 16px;
  color: #6e6e6e;
}
header .serviceBtn .member_info .link {
  position: relative;
  width: 100%;
  display: block;
  color: black;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
header .serviceBtn .member_info .link:before {
  content: "";
  border: 1px solid white;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 33px;
  z-index: 3;
  border-top: 0;
  border-left: 0;
  transform: rotate(-45deg);
  top: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}
header .serviceBtn .member_info .link:after {
  content: "";
  background: #76b069;
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  right: 25px;
  opacity: 0;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1200px) {
  header .serviceBtn .member_info .link:hover {
    color: #76b069;
  }
  header .serviceBtn .member_info .link:hover:before {
    opacity: 1;
  }
  header .serviceBtn .member_info .link:hover:after {
    opacity: 1;
  }
}
header .serviceBtn .member_info .logout {
  margin-top: 12px;
  position: relative;
  width: 100%;
  display: block;
  color: black;
  padding: 15px 20px;
  background: #f7f7f7;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0 0px 30px 30px;
  border: 1px solid #ccc;
  border-top: 0;
}
@media only screen and (min-width: 1200px) {
  header .serviceBtn .member_info .logout:hover {
    background: #76b069;
    color: white;
  }
}
header .serviceBtn .login {
  background: #538049;
  color: white;
  border-radius: 30px;
  padding: 0 23px;
  display: inline-block;
  line-height: 40px;
  position: relative;
  transition: all 0.3s ease;
}
header .serviceBtn .login i {
  display: inline-block;
  position: relative;
  margin-right: 8px;
}
@media only screen and (min-width: 1200px) {
  header .serviceBtn .login:hover {
    background: #76b069;
  }
}
header .control_btn {
  display: none;
}
@media only screen and (max-width: 1500px) {
  header .menu {
    margin-left: 390px;
  }
  header .serviceBtn .login {
    font-size: 14px;
    padding: 0 15px;
  }
  header .btn {
    margin-right: 105px;
  }
  header .btn.login {
    margin-right: 80px;
  }
  header .btn .home {
    margin-right: 5px;
  }
  header .btn .ytlink {
    margin-right: 15px;
  }
  header .btn .ytlink:after {
    display: none;
  }
  header .btn .fblink {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 1400px) {
  header .menu {
    margin-left: 360px;
  }
}
@media only screen and (max-width: 1200px) {
  header {
    height: 100px;
  }
  header .serviceBtn {
    top: 30px;
  }
  header .serviceBtn.in {
    top: 25px;
  }
  header .serviceBtn .login {
    font-size: 0;
    border: 0;
    background-color: transparent;
    color: #538049;
    padding: 0;
    border-radius: 0;
  }
  header .serviceBtn .login i {
    font-size: 20px;
    line-height: 40px;
    margin: 0;
  }
  header .serviceBtn .member_info {
    top: 74px;
  }
  header .logo {
    top: 16px;
  }
  header .logo img {
    width: 64px;
  }
  header .logo .name {
    margin-left: 14px;
  }
  header .logo .name .tw {
    font-size: 16px;
  }
  header .logo .name .en {
    font-size: 13px;
  }
  header .menu {
    margin-left: 256px;
    top: 41px;
  }
  header .menu .mainLink .downMenu {
    padding-top: 58px;
  }
  header .btn {
    top: 30px;
    margin-right: 20px;
  }
  header .btn.login {
    margin-right: 70px;
  }
}
@media only screen and (max-width: 1000px) {
  header {
    width: 100%;
    height: 70px;
    z-index: 100;
    border-bottom: 1px solid #e3e3e3;
    background-color: #ffffff;
    top: 0;
  }
  header.show .control_btn i {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
  }
  header.show .control_btn .fa-xmark {
    opacity: 1;
    top: 2px;
    transform: rotate(90deg) scale(1);
  }
  header .serviceBtn {
    top: 17px;
    margin-right: 50px;
  }
  header .serviceBtn.in {
    top: 11px;
  }
  header .serviceBtn .member_info {
    top: 58px;
  }
  header .control_btn {
    position: absolute;
    display: block;
    right: 5%;
    font-size: 25px;
    color: #538049;
    height: 70px;
    line-height: 70px;
    top: 0;
  }
  header .control_btn .fa-xmark {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 70px;
  }
  header .control_btn i {
    opacity: 1;
    transform: rotate(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 .block {
    position: relative;
    top: 69px;
    display: none;
  }
  header .btn {
    top: auto;
    bottom: 18px;
    margin-right: 0;
  }
  header .btn .home, header .btn .ytlink, header .btn .fblink {
    margin-right: 0;
  }
  header .btn .home:after, header .btn .ytlink:after, header .btn .fblink:after {
    display: none;
  }
  header .menu {
    margin-left: 0;
    top: 0;
    width: 100%;
    background-color: white;
    left: 0;
    position: relative;
    display: flex;
    padding: 66px 5% 100px;
    box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.1882352941);
    flex-wrap: wrap;
  }
  header .menu .link {
    margin-bottom: 28px;
    width: 100%;
    display: block;
    margin-right: 0;
  }
  header .menu .copyright {
    display: block;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    border-bottom: 3px solid #538049;
    width: 90%;
    padding-bottom: 10px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.568627451);
  }
  header .menu .mainLink {
    margin-bottom: 40px;
    width: 50%;
    margin-right: 0;
    padding-right: 50px;
  }
  header .menu .mainLink > .link {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
  }
  header .menu .mainLink .downMenu {
    padding-top: 58px;
    position: relative;
    display: block;
    left: 0;
    transform: none;
    top: 0;
    margin: 0;
    padding-top: 0;
    padding-left: 0;
    border-bottom: 0;
    opacity: 0.8;
  }
  header .menu .mainLink .downMenu div .subLink {
    position: relative;
    left: 0;
    opacity: 1;
    padding-left: 18px;
    font-size: 14px;
    pointer-events: all;
  }
  header .menu .mainLink .downMenu div .subLink .link {
    font-size: 14px;
    background: white;
    color: black;
    opacity: 0.8;
    padding: 4px 0;
  }
  header .menu .mainLink .downMenu .link {
    margin-bottom: 0;
    width: auto;
    text-align: left;
    padding: 10px 0;
    border: 0;
  }
  header .menu .mainLink .downMenu .link:last-child {
    border: 0;
  }
  header .logo {
    position: absolute;
    left: 30px;
    top: 10px;
    width: 250px;
    border: 0;
    display: flex;
  }
  header .logo .logoImg {
    width: 50px;
    border: 0;
  }
  header .logo .name {
    margin-top: 4px;
    display: block;
    width: auto;
    font-size: 13px;
    margin-left: 10px;
  }
  header .logo .name .tw {
    width: 100%;
    font-size: 15px;
    margin-left: 0;
    letter-spacing: 2px;
  }
  header .logo .name .en {
    font-size: 13px;
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    transform: none;
  }
}
@media only screen and (max-width: 650px) {
  header .block {
    overflow: scroll;
    max-height: calc(100vh - 69px);
  }
  header .menu {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 120px;
    padding-top: 40px;
    display: block;
  }
  header .menu .mainLink {
    width: 100%;
  }
  header .menu .copyright {
    font-size: 12px;
    padding-right: 0;
    padding-bottom: 12px;
    width: calc(100% - 60px);
  }
  header .menu .copyright br {
    display: none;
  }
  header .control_btn {
    right: 30px;
  }
  header .btn {
    bottom: 95px;
    right: auto;
    left: 30px;
    transform: scale(0.8);
    transform-origin: left;
    position: relative;
  }
  header .serviceBtn.in {
    width: 75px;
  }
  header .serviceBtn .member_info {
    border-radius: 20px;
  }
  header .serviceBtn .member_info:before {
    border-radius: 20px;
  }
  header .serviceBtn .member_info .logout {
    padding: 10px 16px;
    margin-top: 5px;
    border-radius: 0 0px 20px 20px;
  }
  header .serviceBtn .member_info .link {
    padding: 8px 16px;
  }
  header .serviceBtn .member_info .line {
    padding: 12px 16px;
    margin-bottom: 5px;
  }
  header .serviceBtn .member_info .line .text .name {
    font-size: 16px;
  }
  header .serviceBtn .member_info .line .text .type {
    font-size: 14px;
  }
}
@media only screen and (max-width: 400px) {
  header .serviceBtn.in {
    width: 75px;
    transform: scale(0.9);
    transform-origin: right;
    margin-right: 43px;
  }
}
@media only screen and (max-width: 370px) {
  header .logo {
    transform: scale(0.9);
    transform-origin: left;
  }
  header .serviceBtn.in {
    transform: scale(0.7);
  }
  header .serviceBtn .member_info {
    top: 70px;
  }
}

main {
  padding-top: 0;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1200px) {
  main {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 1000px) {
  main {
    padding-top: 70px;
  }
}

#banner {
  position: relative;
  width: 100%;
}
#banner.homeStyle, #banner.null {
  padding-top: 125px;
}
#banner.homeStyle .swiper-pagination, #banner.null .swiper-pagination {
  display: none;
}
#banner.homeStyle .swiper-button-next, #banner.null .swiper-button-next {
  position: absolute;
  right: 1%;
  color: white;
  background-color: #76b069;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 55px;
}
#banner.homeStyle .swiper-button-prev, #banner.null .swiper-button-prev {
  position: absolute;
  left: 1%;
  color: white;
  background-color: #76b069;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 55px;
}
#banner.homeStyle .imgs, #banner.null .imgs {
  position: relative;
  display: flex;
  background-image: url(/web/images/bg.jpg);
  color: white;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  height: 25.8vw;
}
#banner.homeStyle .imgs .liner, #banner.null .imgs .liner {
  position: absolute;
  bottom: 0;
  height: 0.66vw;
  max-height: 20px;
  z-index: 5;
  display: flex;
  width: 70%;
  opacity: 0;
  justify-content: flex-end;
  -webkit-transition: all 2s cubic-bezier(0.34, 0.13, 0.23, 0.7);
  -moz-transition: all 2s cubic-bezier(0.34, 0.13, 0.23, 0.7);
  -o-transition: all 2s cubic-bezier(0.34, 0.13, 0.23, 0.7);
  -ms-transition: all 2s cubic-bezier(0.34, 0.13, 0.23, 0.7);
  transition: all 2s cubic-bezier(0.34, 0.13, 0.23, 0.7);
}
#banner.homeStyle .imgs .liner:before, #banner.null .imgs .liner:before {
  content: "";
  position: relative;
  background-color: #e6d192;
  height: 100%;
  bottom: 0;
  width: 25vw;
  z-index: 5;
  max-height: 20px;
}
#banner.homeStyle .imgs .liner:after, #banner.null .imgs .liner:after {
  content: "";
  position: relative;
  background-color: #ffffff;
  height: 100%;
  bottom: 0;
  width: 65vw;
  z-index: 5;
  right: 0;
  max-height: 20px;
  opacity: 0.5;
}
#banner.homeStyle .maxImg, #banner.null .maxImg {
  position: relative;
  display: block;
  width: 100%;
  height: 25.8vw;
  overflow: hidden;
}
#banner.homeStyle .maxImg img, #banner.null .maxImg img {
  display: block;
  transform: none;
  width: 100%;
  opacity: 1;
  transform: scale(1);
  transition: all 1s ease;
}
#banner .btn-group {
    position: absolute;
    bottom: 4%;
    display: flex;
    flex-direction: column;
    left: 9.5%;
    width: 16%;
}

#banner .lecturer {
    position: absolute;
    bottom: 4%;
    display: flex;
    flex-direction: unset;
    left: 8%;
    width: 24%;
}

#banner .lecturer .btn-lecturer {
}

@media only screen and (max-width: 999px) {
    #banner .btn-group {
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        left: 5%;
    }

    #banner .lecturer {
        width: 70%;
    }

    #banner.homeStyle .btn-group .btn-img .btn-en {
        width: 70% !important;
    }
}

#banner.homeStyle .btn-group img {
    width: 70%;
    min-height: 0;
    object-fit: contain;
}

#banner.homeStyle .lecturer img {
    width: 90%;
}

#banner.homeStyle .lecturer .btn-img:hover img {
/*    width: 60%;*/
}

#banner.homeStyle .btn-group .btn-img .btn-en {
    width: 90%;
}

#banner.homeStyle .btn-group .btn-hover {
    display: none;
}

#banner.homeStyle .btn-group .btn-img:hover .btn-normal {
    display: none;
}

#banner.homeStyle .btn-group .btn-img:hover .btn-hover {
    display: block;
}
@media only screen and (min-width: 1200px) {
    #banner.homeStyle .maxImg:hover img, #banner.null .maxImg:hover img {
    transform: scale(1.03);
  }
}
#banner.homeStyle a, #banner.null a { /*
&:after {
    content: "";
    border: 5px solid #ebd089;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: block;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .3s ease;
}*/ }
@media only screen and (min-width: 1200px) {
  #banner.homeStyle a:hover:after, #banner.null a:hover:after {
    opacity: 1;
  }
}
#banner.homeStyle .text, #banner.null .text {
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  position: relative;
  padding-left: 10%;
  width: 33%;
  display: block;
  padding-bottom: 0;
  opacity: 0;
  transform: translateX(30px);
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
#banner.homeStyle .text .name, #banner.null .text .name {
  position: relative;
  font-size: 3vw;
  font-weight: bold;
  margin-bottom: 2vw;
}
#banner.homeStyle .text .memo, #banner.null .text .memo {
  position: relative;
  font-size: 20px;
  display: block;
  line-height: 1.5;
}
#banner.homeStyle img, #banner.null img {
  position: relative;
  display: block;
  width: 100%;
  opacity: 0;
  transform: scale(1.1) translateY(30px);
  width: 65vw;
}
#banner.homeStyle.active .imgs, #banner.null.active .imgs {
  opacity: 1;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
#banner.homeStyle.active .imgs img, #banner.null.active .imgs img {
  transform: scale(1) translateY(0);
  opacity: 1;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
#banner.homeStyle.active .imgs .liner, #banner.null.active .imgs .liner {
  width: 100%;
  opacity: 1;
}
#banner.homeStyle.active .text, #banner.null.active .text {
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
#banner.active .imgs {
  opacity: 1;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
#banner.active .imgs img {
  transform: scale(1) translateY(0);
  opacity: 1;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
#banner.active .mid_block_m .text h2 {
  transform: translateY(0);
  opacity: 1;
}
#banner.active .mid_block_m .text .en {
  transform: translateY(0);
  opacity: 1;
}
#banner.active .mid_block_m .text:after {
  opacity: 1;
  transform: rotate(-45deg) translateY(0);
}
#banner .imgs {
  position: relative;
  display: block;
  overflow: hidden;
}
#banner img {
  position: relative;
  display: block;
  width: 100%;
  opacity: 0;
  transform: scale(1.1) translateY(30px);
  min-height: 400px;
  object-fit: cover;
}
#banner .mid_block_m {
  position: absolute;
  bottom: 30%;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}
#banner .mid_block_m .text {
  position: relative;
  display: block;
  color: white;
}
#banner .mid_block_m .text h2 {
  position: relative;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 10px;
  display: block;
  margin-bottom: 10px;
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.2s;
  -moz-transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.2s;
  -o-transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.2s;
  -ms-transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.2s;
  transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.2s;
}
#banner .mid_block_m .text .en {
  position: relative;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  font-size: 18px;
  opacity: 0.7;
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.4s;
  -moz-transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.4s;
  -o-transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.4s;
  -ms-transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.4s;
  transition: all 0.8s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.4s;
}
#banner .mid_block_m .text::after {
  content: "";
  position: absolute;
  background-color: #e6d192;
  height: 3px;
  bottom: -76px;
  width: 60px;
  opacity: 0;
  transform: rotate(0deg) translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.6s;
  -moz-transition: all 0.6s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.6s;
  -o-transition: all 0.6s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.6s;
  -ms-transition: all 0.6s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.6s;
  transition: all 0.6s cubic-bezier(0.34, 0.13, 0.23, 0.7) 0.6s;
}
@media only screen and (max-width: 1500px) {
  #banner img {
    min-height: 335px;
  }
  #banner .mid_block_m .text h2 {
    font-size: 34px;
    letter-spacing: 5px;
  }
  #banner .mid_block_m .text .en {
    font-size: 16px;
  }
  #banner .mid_block_m .text::after {
    width: 40px;
    bottom: -50px;
  }
  #banner.homeStyle .text {
    padding-left: 5%;
  }
  #banner.homeStyle .imgs .liner:before {
    bottom: 0;
    width: 30vw;
  }
}
@media only screen and (max-width: 1200px) {
  #banner.homeStyle, #banner.null {
    padding-top: 0;
  }
  #banner.homeStyle .text .name, #banner.null .text .name {
    margin-bottom: 18px;
    font-size: 32px;
  }
  #banner.homeStyle .text .memo, #banner.null .text .memo {
    font-size: 18px;
  }
  #banner.homeStyle .swiper-button-next, #banner.homeStyle .swiper-button-prev, #banner.null .swiper-button-next, #banner.null .swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: 0;
    font-size: 12px;
  }
  #banner .mid_block_m {
    bottom: 40%;
  }
  #banner img {
    min-height: 135px;
  }
}
@media only screen and (max-width: 1000px) {
  #banner {
    padding-left: 0px;
  }
  #banner.homeStyle .swiper-slide.swiper-slide-active .imgs {
    filter: opacity(1);
  }
  #banner.homeStyle .swiper-slide.swiper-slide-active .maxImg {
    opacity: 1;
    pointer-events: auto;
    transition: all 1s ease;
  }
  #banner.homeStyle .swiper-button-next, #banner.homeStyle .swiper-button-prev {
    display: none;
  }
  #banner.homeStyle .maxImg {
    opacity: 0;
    pointer-events: none;
  }
  #banner.homeStyle .swiper-pagination {
    display: flex;
    justify-content: center;
    margin-top: 6px;
  }
  #banner.homeStyle .imgs {
    display: block;
    height: auto;
    filter: opacity(0);
  }
  #banner.homeStyle .imgs .liner {
    right: 0;
    transition: all 0.8s ease 0.3s;
  }
  #banner.homeStyle .maxImg {
    height: auto;
  }
  #banner.homeStyle img {
    width: 100%;
  }
  #banner.homeStyle .text {
    margin-top: 40px;
    width: 90%;
    margin-bottom: 40px;
  }
  #banner img {
    transform: scale(1.1) translateY(0px);
  }
  #banner .mid_block_m {
    bottom: 40%;
  }
  #banner .mid_block_m .text h2 {
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 3px;
  }
  #banner .mid_block_m .text .en {
    font-size: 14px;
  }
  #banner .mid_block_m .text::after {
    width: 25px;
    bottom: -30px;
  }
}
@media only screen and (max-width: 650px) {
  #banner.homeStyle .text {
    padding-bottom: 30px;
    margin-top: 30px;
    margin-bottom: 0;
  }
  #banner.homeStyle .text .name {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #banner.homeStyle .text .memo {
    font-size: 16px;
  }
  #banner .imgs {
    position: relative;
  }
  #banner .imgs img {
    height: 50vw;
    object-fit: cover;
  }
  #banner .mid_block_m {
    bottom: 25px;
    left: 30px;
    transform: translateX(0);
  }
  #banner .mid_block_m .text h2 {
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 3px;
  }
  #banner .mid_block_m .text .en {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6509803922);
  }
  #banner .mid_block_m .text::after {
    display: none;
  }
}

.select_box {
  position: relative;
  z-index: 10;
}

.ui-selectmenu-button.ui-button {
  border: 1px solid #cccccc;
  border-radius: 26px;
  padding: 12px 50px 12px 26px;
  outline: none;
  background-color: white;
  transition: all 0.3s ease;
}
.ui-selectmenu-button.ui-button.ui-selectmenu-button-open .ui-selectmenu-icon.ui-icon {
  transform: rotate(180deg);
}
@media only screen and (min-width: 1200px) {
  .ui-selectmenu-button.ui-button:hover {
    border-color: #538049;
  }
}

.ui-selectmenu-icon.ui-icon {
  position: absolute;
  background-color: #76b069;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "Open Sans", Myriad Pro, Myriad, Aria, sans-serif;
  transition: all 0.3s ease;
}
.ui-selectmenu-icon.ui-icon::after {
  content: "";
  position: relative;
  width: 7px;
  display: block;
  height: 7px;
  border: 2px solid white;
  transform: rotate(45deg);
  border-top: 0;
  border-left: 0;
  top: -1px;
}

.ps--active-y > .ps__rail-y {
  width: 4px;
}

.ui-selectmenu-menu.ui-selectmenu-open {
  display: block;
  box-sizing: border-box;
}
.ui-selectmenu-menu.ui-selectmenu-open .ui-menu {
  max-height: 250px;
  background-color: white;
  border-radius: 25px;
  transform: translateY(6px);
  border: 1px solid #cccccc;
  padding: 25px 38px 20px 20px;
}

.ui-menu {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "Open Sans", Myriad Pro, Myriad, Aria, sans-serif;
}
.ui-menu .ui-menu-item {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.ui-menu .ui-menu-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.ui-menu .ui-menu-item.ui-state-disabled {
  opacity: 0.7;
}
.ui-menu .ui-state-active {
  margin: 0;
  opacity: 1;
  color: rgb(0, 0, 0);
}

.ui-menu .ui-menu-item-wrapper {
  padding: 0;
}

.tab {
  position: relative;
  background-color: #538049;
}
.tab .mid_block_m {
  position: relative;
  margin: 0 auto;
  display: flex;
}
.tab .tablink {
  position: relative;
  color: white;
  line-height: 55px;
  display: block;
  font-size: 18px;
  margin-right: 80px;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.tab .tablink.active {
  position: relative;
  opacity: 1;
}
@media only screen and (min-width: 1200px) {
  .tab .tablink:hover {
    opacity: 1;
  }
}
@media only screen and (max-width: 1200px) {
  .tab .mid_block_m {
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .tab .tablink {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 1000px) {
  .tab .mid_block_m {
    padding: 0 0;
  }
  .tab .tablink {
    font-size: 16px;
    margin-right: 0;
    width: 50%;
    text-align: center;
    padding: 10px 15px;
    line-height: 30px;
    color: #e3e3e3;
  }
  .tab .tablink.active {
    color: white;
  }
  .tab .tablink:last-child:after {
    display: none;
  }
  .tab .tablink:nth-child(odd):after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 10px;
    background-color: white;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
  }
}
@media only screen and (max-width: 650px) {
  .tab .mid_block_m {
    padding: 6px 0;
    width: calc(100% - 30px);
  }
  .tab .tablink {
    padding: 3px 15px;
    font-size: 14px;
  }
}

.bread {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 29px;
  font-size: 14px;
  color: #343434;
  opacity: 0.7;
  padding-bottom: 45px;
}
.bread a {
  position: relative;
  color: #343434;
  margin: 0 4px;
}
.bread div {
  position: relative;
  margin: 0 4px;
}
.bread div:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .bread {
    flex-wrap: wrap;
    line-height: 2;
  }
}
@media only screen and (max-width: 650px) {
  .bread {
    justify-content: center;
    padding-bottom: 30px;
    padding-top: 15px;
  }
}

.page {
  position: relative;
  padding-bottom: 50px;
  display: block;
}
.page .mid_block_m {
  margin: 0 auto;
  display: block;
}
.page.opacity0 {
  opacity: 0;
  transition: all 0.5s ease;
}
.page.opacity0.show {
  opacity: 1;
  transition: all 0.5s ease;
}
.page.success {
  padding-top: 210px;
}
@media only screen and (max-width: 1000px) {
  .page.success {
    padding-top: 45px;
  }
}
@media only screen and (max-width: 650px) {
  .page.success {
    padding-top: 34px;
  }
  .page.success .eventDetail .block .mainTitle .icon {
    width: 130px;
    height: 130px;
    font-size: 52px;
  }
  .page.success .eventDetail .block .mainTitle .successMemo {
    padding-bottom: 60px;
  }
  .page.success .eventDetail .block .mainTitle .successMemo:after {
    height: 40px;
    bottom: 0px;
  }
}
.page .pageTitle {
  position: relative;
  text-align: center;
  font-weight: 500;
  display: block;
  padding-bottom: 70px;
  margin-bottom: 40px;
}
.page .pageTitle::after {
  content: "";
  position: absolute;
  height: 40px;
  width: 1px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #cccccc;
}
.page .pageTitle .en {
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  color: #585858;
  display: block;
  margin-top: 5px;
}
.page .pageTitle span {
  color: #585858;
  display: block;
  margin-top: 5px;
}
.page .sub_tab {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.page .sub_tab .link {
  position: relative;
  color: rgba(52, 52, 52, 0.6352941176);
  font-size: 16px;
  border: 1px solid #d8d8d8;
  padding: 18px;
  width: 200px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: -1px;
}
.page .sub_tab .link.active {
  color: #76b069;
}
@media only screen and (min-width: 1200px) {
  .page .sub_tab .link:hover {
    color: #76b069;
  }
}
@media only screen and (max-width: 1200px) {
  .page .sub_tab {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 650px) {
  .page .pageTitle {
    padding-bottom: 0;
    margin-bottom: 12px;
  }
  .page .pageTitle:after {
    display: none;
  }
}

.engStyle {
  line-height: 1.5;
}

.eaapPage .select_box {
  display: block;
  text-align: right;
  margin-bottom: 30px;
}
.eaapPage .contentList .line {
  padding-left: 20px;
  padding-right: 20px;
}
.eaapPage .contentList .line .date {
  display: flex;
  margin-right: 0;
}
.eaapPage .contentList .line .date .num {
  margin-left: 50px;
  font-weight: bold;
}

.noResult {
  position: relative;
  text-align: center;
  margin: 80px 0;
  display: block;
}
.noResult .circle {
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  background-color: #e5e5e5;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  text-align: center;
  font-size: 140px;
  font-weight: bold;
  color: white;
  line-height: 170px;
  margin: 0 auto;
  position: relative;
}
.noResult .circle i {
  position: absolute;
  font-size: 75px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.noResult span {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-top: 28px;
  letter-spacing: 2px;
}

.rangeSmall {
  max-width: 730px;
  margin: 0 auto;
}

input[type=text]:disabled,
input[type=tel]:disabled {
  background: #8d8d8d;
  color: white;
}

.label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.label.noEdit .phoneStyle {
  pointer-events: none;
  background-color: #8d8d8d;
  color: white;
}
.label.noEdit .phoneStyle input {
  color: white;
}
.label.noEdit .inputBox {
  pointer-events: none;
  background-color: #8d8d8d;
  color: white;
}
.label.noEdit input {
  color: white;
  pointer-events: none;
}
.label.errorStyle {
  margin-bottom: 40px;
}
.label .filedName {
  position: relative;
  min-width: 95px;
  display: block;
}
.label .filedName .small {
  font-size: 15px;
  margin-left: 10px;
}
.label #myid {
  text-transform: uppercase;
}
.label .inputBox {
  position: relative;
  height: 50px;
  border-radius: 40px;
  border: 1px solid #cccccc;
  font-size: 16px;
  padding: 0 20px;
  width: 100%;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "Open Sans", Myriad Pro, Myriad, Aria, sans-serif;
}
.label .errorMsg {
  color: #c53a3a;
  color: #c53a3a;
  position: absolute;
  right: 20px;
  top: 0;
  line-height: 48px;
}
.label .errorMsg.formMsg {
  position: relative;
  right: auto;
  line-height: 1;
  margin-top: 8px;
  left: 20px;
}
.label .sendMsg {
  position: absolute;
  right: auto;
  top: 0;
  line-height: 48px;
}
.label .sendMsg span {
  color: #76b069;
}
.label .codeStyle {
  position: relative;
  width: calc(100% - 95px);
  display: flex;
  justify-content: space-between;
}
.label .codeStyle .codeBorder {
  width: 355px;
  position: relative;
  height: 50px;
  border-radius: 40px;
  border: 1px solid #cccccc;
  font-size: 16px;
  padding: 0 20px;
  letter-spacing: 2px;
}
.label .codeStyle .codeBorder .inputBox {
  border: 0;
  padding: 0;
  height: 100%;
  background: transparent;
  border-radius: 0;
  width: auto;
  letter-spacing: 2px;
}
.label.codeLabel {
  padding-bottom: 90px;
}
.label.codeLabel.changestyle {
  padding-bottom: 40px;
  margin-bottom: 0;
}
.label.codeLabel .checkBtn {
  position: absolute;
  bottom: 0;
  margin-left: 0;
  left: 50%;
  transform: translateX(-50%);
}
.label.codeLabel .checkBtn.cantclick {
  pointer-events: none;
}
@media only screen and (max-width: 650px) {
  .label.codeLabel .checkBtn {
    position: relative;
    margin-top: 50px;
  }
}
.label.codeLabel .resetBtn {
  margin-left: 8px;
  min-width: 250px;
}
.label.codeLabel .waitBtn {
  background-color: #646464;
  pointer-events: none;
  color: white;
  text-align: center;
  padding: 0;
  width: calc(100% - 355px);
  display: block;
  letter-spacing: 1px;
}
@media only screen and (max-width: 650px) {
  .label.codeLabel {
    padding-bottom: 30px;
  }
}
.label .phoneStyle {
  position: relative;
  height: 50px;
  border-radius: 40px;
  border: 1px solid #cccccc;
  font-size: 16px;
  padding: 0 20px;
  width: 100%;
  letter-spacing: 2px;
  background-color: white;
}
.label .phoneStyle div {
  height: 100%;
}
.label .phoneStyle .inputBox {
  border-radius: 0;
  border: 0;
  width: auto;
  height: 100%;
  background-color: transparent;
  padding: 0;
  letter-spacing: 2px;
  width: auto;
  /*&:first-child {
      margin-left: 2px;
      width: 26px;
  }*/
}
.label .phoneStyle.showmsg {
  height: auto;
}
.label .phoneStyle.showmsg .sendMsg {
  position: relative;
  height: auto;
  line-height: 1.6;
  padding: 13px 0px;
}
@media only screen and (max-width: 650px) {
  .label {
    display: block;
  }
  .label.showmsg {
    border: 0;
    padding: 0;
    border-radius: 0;
    top: -5px;
  }
  .label.showmsg .sendMsg {
    padding-top: 0;
  }
  .label .filedName {
    margin-bottom: 15px;
  }
  .label .phoneStyle.showmsg {
    border: 0;
    padding: 0;
    border-radius: 0;
    top: -5px;
  }
  .label .phoneStyle.showmsg .sendMsg {
    padding-top: 0;
  }
  .label.codeLabel .resetBtn {
    margin-left: 0;
    width: 100%;
    margin-top: 15px;
  }
  .label .codeStyle {
    width: 100%;
    display: block;
  }
  .label .codeStyle.errorStyle .waitBtn {
    margin-top: 30px;
  }
  .label .codeStyle .codeBorder {
    width: 100%;
  }
  .label .codeStyle .codeBorder.hasMsg {
    margin-bottom: 35px;
  }
  .label .codeStyle .waitBtn {
    height: 50px;
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
    max-width: 100%;
  }
}

.memberBlock {
  padding-top: 0px;
}
.memberBlock .linkButton {
  width: 245px;
  margin-left: 95px;
  padding: 10px 100px 10px 28px;
}
.memberBlock .linkButton.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.memberBlock .errorMsg {
  position: relative;
  line-height: 1.6;
  display: block;
  height: auto;
  width: 100%;
  right: auto;
  padding-left: 0;
  color: #c53a3a;
  margin-bottom: 15px;
}
.memberBlock .errorMsg a {
  color: #c53a3a;
  border-bottom: 1px solid;
}
@media only screen and (max-width: 650px) {
  .memberBlock {
    padding-top: 20px;
  }
  .memberBlock .linkButton {
    padding: 14px 100px 14px 28px;
    margin-left: auto;
    margin-right: auto;
  }
  .memberBlock .errorMsg {
    padding-left: 0;
  }
}

.editBlock {
  position: relative;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  color: #343434;
}
.editBlock strong, .editBlock b {
  font-weight: bold;
}
.editBlock ul, .editBlock ol {
  list-style: initial;
}
.editBlock ul.num {
  list-style: number;
  padding-left: 22px;
}
.editBlock a {
  color: #538049;
  padding-bottom: 0;
  border-bottom: 1px solid;
}
.editBlock.editSmall {
  width: 80%;
}
.editBlock.rangeSmall {
  max-width: 650px;
}
.editBlock.editCenter {
  text-align: center;
  margin: 0 auto 90px;
}
.editBlock img {
  max-width: 100%;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .editBlock.editSmall {
    width: 100%;
  }
  .editBlock.editCenter {
    margin: 0 auto 50px;
  }
  .editBlock a {
    word-break: break-word;
  }
}

.dot_box {
  position: relative;
  width: 685px;
  display: block;
  margin: 110px auto;
}
.dot_box.starter .dotimg {
  opacity: 1;
  transform: rotate(0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.dot_box.starter .en {
  margin-top: 0;
  opacity: 1;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.dot_box.starter .title {
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.8s ease 0.5s;
  -moz-transition: all 0.8s ease 0.5s;
  -o-transition: all 0.8s ease 0.5s;
  -ms-transition: all 0.8s ease 0.5s;
  transition: all 0.8s ease 0.5s;
}
.dot_box.starter .name_box {
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.8s ease 0.8s;
  -moz-transition: all 0.8s ease 0.8s;
  -o-transition: all 0.8s ease 0.8s;
  -ms-transition: all 0.8s ease 0.8s;
  transition: all 0.8s ease 0.8s;
}
.dot_box .box {
  position: relative;
  padding-left: 91px;
}
.dot_box .en {
  position: absolute;
  font-size: 15px;
  transform: rotate(90deg);
  transform-origin: left top;
  display: block;
  left: 46px;
  top: 40px;
  margin-top: 30px;
  opacity: 0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.dot_box .title {
  position: relative;
  font-size: 26px;
  line-height: 1.6;
  transform: translateY(30px);
  opacity: 0;
  padding-top: 72px;
  text-align: justify;
}
.dot_box .dotimg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: rotate(80deg);
  opacity: 0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.dot_box .dotimg img {
  position: relative;
}
.dot_box .name_box {
  margin-top: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
  opacity: 0;
  transition: all 0.5s ease;
}
.dot_box .name_box .name {
  position: relative;
  font-size: 16px;
  margin-right: 12px;
  word-break: keep-all;
  white-space: nowrap;
}
.dot_box .name_box .img {
  position: relative;
  min-width: 65px;
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 50%;
}
.dot_box .name_box .img img {
  position: relative;
  object-fit: cover;
  width: 100%;
}
.dot_box .name_box::before {
  content: "";
  position: relative;
  width: 100%;
  background-color: #cccccc;
  height: 1px;
  margin-right: 18px;
}
@media only screen and (max-width: 1200px) {
  .dot_box {
    margin: 70px auto;
    width: 55%;
  }
  .dot_box .box {
    padding-left: 70px;
  }
  .dot_box .title {
    font-size: 21px;
    padding-top: 50px;
  }
  .dot_box .en {
    font-size: 13px;
    left: 40px;
    top: 45px;
  }
  .dot_box .dotimg img {
    width: 80px;
  }
}
@media only screen and (max-width: 1000px) {
  .dot_box {
    width: 100%;
    margin: 0;
    padding: 70px 15%;
    background-color: #fff;
  }
  .dot_box .dotimg {
    z-index: 5;
  }
}
@media only screen and (max-width: 650px) {
  .dot_box {
    background-color: #f6f6f6;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .dot_box .dotimg {
    z-index: 5;
    left: -30px;
  }
  .dot_box .box {
    padding-left: 0;
  }
  .dot_box .en {
    font-size: 14px;
    left: 0;
    top: 9px;
    transform: none;
  }
  .dot_box .title {
    font-size: 18px;
    padding-top: 50px;
  }
  .dot_box .name_box .img {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .dot_box .name_box .name {
    font-size: 14px;
  }
}

@-webkit-keyframes moving_ {
  0% {
    -webkit-transform: translateY(-8px) scale(0.9);
    transform: translateY(-8px) scale(0.9);
  }
  100% {
    -webkit-transform: translateY(8px) scale(1);
    transform: translateY(8px) scale(1);
  }
}
@keyframes moving_ {
  0% {
    -webkit-transform: translateY(-8px) scale(0.9);
    transform: translateY(-8px) scale(0.9);
  }
  100% {
    -webkit-transform: translateY(8px) scale(1);
    transform: translateY(8px) scale(1);
  }
}
.smallCircleButton {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  background-color: #76b069;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0);
  border: 0;
  -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;
}
.smallCircleButton i {
  position: relative;
  color: white;
  font-size: 12px;
  transform: scale(0.9);
}
@media only screen and (min-width: 1200px) {
  .smallCircleButton:hover {
    background-color: #538049;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2117647059);
  }
}
@media only screen and (max-width: 650px) {
  .smallCircleButton {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
}

.notopRange {
  position: relative;
  padding-top: 225px;
}
@media only screen and (max-width: 1200px) {
  .notopRange {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 650px) {
  .notopRange {
    padding-top: 50px;
  }
}

.notopRangeHasBread {
  position: relative;
  padding-top: 120px;
}
@media only screen and (max-width: 1200px) {
  .notopRangeHasBread {
    padding-top: 0;
  }
}
@media only screen and (max-width: 650px) {
  .notopRangeHasBread {
    padding-top: 0;
  }
}

.moreLink {
  position: relative;
  display: flex;
  margin-top: 65px;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 650px) {
  .moreLink .askLink {
    margin: 0 5px 8px 5px;
  }
  .moreLink .askLink:after {
    display: none;
  }
}

.askLink {
  position: relative;
  font-size: 16px;
  color: #858585;
  display: flex;
  align-items: center;
  margin: 0 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.askLink span {
  position: relative;
  margin-right: 8px;
}
.askLink i {
  position: relative;
  font-weight: 300;
  width: 22px;
  height: 22px;
  font-size: 12px;
  border: 1px solid #cccccc;
  color: #cccccc;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.askLink:after {
  content: "";
  background: #cccccc;
  position: absolute;
  right: -19px;
  width: 1px;
  height: 16px;
  top: 3px;
}
.askLink:last-child:after {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .askLink:hover {
    color: #76b069;
  }
  .askLink:hover i {
    color: #76b069;
    border-color: #76b069;
  }
}
@media only screen and (max-width: 1000px) {
  .askLink {
    font-size: 14px;
  }
}

.jumpModal {
  display: none;
  width: 500px;
  max-width: 90%;
  width: 500px;
  max-width: 90%;
  padding: 50px 50px;
  line-height: 1.8;
  border-radius: 30px;
}
.jumpModal.bigModal {
  width: 1100px;
  padding-top: 30px;
}
.jumpModal.bigModal .title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
  .jumpModal.bigModal .title {
    margin-bottom: 15px;
  }
}
.jumpModal .title {
  font-size: 20px;
  font-weight: bold;
  display: block;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.4;
}
.jumpModal .title.warningTitle {
  text-align: center;
  font-size: 24px;
}
.jumpModal .memo {
  font-size: 16px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.jumpModal .memo .box {
  position: relative;
  width: 48%;
  border: 1px solid #cecece;
  border-radius: 30px;
  padding: 30px 40px;
}
.jumpModal .memo .box b {
  font-size: 18px;
  font-weight: 500;
}
.jumpModal.bigger {
  width: 980px;
}
.jumpModal.bigger .title {
  text-align: center;
  margin-bottom: 30px;
}
.jumpModal .btnBlock {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.jumpModal .btnBlock .linkButton {
  width: 56%;
}
.jumpModal .btnBlock .cancleButton {
  position: relative;
  background: white;
  text-align: center;
  padding-right: 0;
  padding-left: 0;
  width: 40%;
  color: #a1a1a1;
  border-color: #cdcdcd;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1200px) {
  .jumpModal .btnBlock .cancleButton:hover {
    background-color: #c53a3a;
    color: white;
  }
}
@media only screen and (max-width: 1200px) {
  .jumpModal {
    padding: 30px 30px;
  }
  .jumpModal .title {
    font-size: 18px;
  }
  .jumpModal .title.warningTitle {
    font-size: 18px;
  }
  .jumpModal .memo .box {
    width: 100%;
    margin-bottom: 12px;
    padding: 20px 20px;
  }
  .jumpModal .btnBlock .cancleButton {
    background-color: #c53a3a;
    color: white;
    border-color: #c53a3a;
  }
}
.jumpModal .close {
  position: absolute;
  right: 20px;
  top: 14px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.jumpModal .close:after {
  content: "";
  background: #538049;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 4px;
  transform: translate(-50%, -50%) rotate(45deg);
  -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;
}
.jumpModal .close:before {
  content: "";
  background: #538049;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 4px;
  transform: translate(-50%, -50%) rotate(-45deg);
  -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;
}
@media only screen and (min-width: 1200px) {
  .jumpModal .close:hover:after, .jumpModal .close:hover:before {
    background: #76b069;
  }
}

.recordList {
  position: relative;
}
.recordList .th {
  position: relative;
  display: flex;
  background-color: #e0e0e0;
  color: black;
}
.recordList .th .td {
  position: relative;
  font-weight: 500;
}
.recordList .tr {
  position: relative;
  display: flex;
  color: black;
  letter-spacing: 1px;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}
.recordList .tr .td {
  position: relative;
  border-left: 1px solid #e0e0e0;
}
.recordList .tr .td a {
  color: #538049;
  -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;
}
@media only screen and (min-width: 1200px) {
  .recordList .tr .td a:hover {
    color: #76b069;
  }
}
.recordList .tr .td:nth-child(4) {
  text-align: left;
  padding-left: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 17px;
  border-right: 1px solid #e0e0e0;
}
.recordList .td {
  width: 20%;
  padding: 12px 0;
  border-left: 1px solid white;
}
.recordList .td:nth-child(1) {
  width: 13%;
}
.recordList .td:nth-child(2) {
  width: 23%;
}
.recordList .td:nth-child(3) {
  width: 17%;
}
.recordList .td:nth-child(4) {
  width: 48%;
}
@media only screen and (max-width: 1000px) {
  .recordList .th {
    display: none;
  }
  .recordList .tr {
    display: block;
    margin-bottom: 6px;
  }
  .recordList .tr .td {
    position: relative;
    border-left: 0;
    padding: 4px 0;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    padding-left: 102px;
    text-align: left;
    word-break: break-word;
  }
  .recordList .tr .td a {
    padding-left: 80px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .recordList .td {
    width: 100% !important;
  }
  .recordList .td:before {
    content: attr(data-name);
    width: 90px;
    background-color: #e0e0e0;
    padding: 0;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid white;
  }
  .recordList .td:nth-child(4) {
    text-align: center;
    padding-left: 0;
  }
  .recordList .td:nth-child(4):before {
    border-bottom: 0;
  }
}

.linkButton {
  position: relative;
  color: black;
  font-size: 16px;
  background-color: #ededed;
  padding: 10px 100px 10px 28px;
  border-radius: 34px;
  line-height: 1.8;
  cursor: pointer;
  border: 1px solid #ededed;
  word-break: keep-all;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "Open Sans", Myriad Pro, Myriad, Aria, sans-serif;
  font-weight: 400;
  text-align: left;
  letter-spacing: 2px;
  outline: none;
  -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;
}
.linkButton.backStyle {
  padding-right: 28px;
  padding-left: 100px;
  text-align: right;
}
.linkButton.backStyle .arrow {
  right: auto;
  left: 22px;
  transform: rotate(180deg);
  top: 16px;
}
.linkButton.whiteStyle {
  background-color: white;
  border-color: #d8d8d8;
}
.linkButton.green {
  background-color: white;
  color: #538049;
  border: 1px solid #d8d8d8;
}
@media only screen and (min-width: 1200px) {
  .linkButton.green:hover {
    background-color: white;
    border-color: #538049;
  }
}
.linkButton.centerButton {
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 250px;
  max-width: 100%;
}
.linkButton.mobileButton {
  display: none !important;
}
@media only screen and (min-width: 1200px) {
  .linkButton.warning:hover {
    color: #c53a3a;
    background: #fff2ed;
    border-color: #fff2ed;
  }
}
@media only screen and (max-width: 1200px) {
  .linkButton.warning {
    color: #c53a3a;
    background: #fff2ed;
    border-color: #fff2ed;
  }
  .linkButton.warning .arrow {
    background-color: #c53a3a;
  }
}
.linkButton.wrong {
  background: #fbf1f1;
  color: #c53a3a;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  border-color: #fbf1f1;
  pointer-events: none;
}
.linkButton.waitting {
  background: #f1f7f0;
  color: #7c9c75;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  border-color: #f1f7f0;
  pointer-events: none;
}
.linkButton.linkButtonGreen {
  background-color: #538049;
  color: white;
}
.linkButton.linkButtonGreen .arrow {
  background-color: white;
}
.linkButton.linkButtonGreen .arrow i {
  color: #538049;
}
@media only screen and (min-width: 1200px) {
  .linkButton.linkButtonGreen:hover {
    background-color: #3b6432;
    /* .arrow {
        background-color: white;

        i {
            color: #000;
        }
    }*/
  }
}
.linkButton span {
  position: relative;
}
.linkButton .waiting {
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: #ededed;
  border-radius: 18px;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  -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;
}
.linkButton .waiting i {
  position: relative;
  color: #538049;
  font-size: 16px;
  transform: scale(0.9);
  animation: icon_rotate 1s linear infinite;
}
.linkButton .arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #538049;
  border-radius: 18px;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  -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;
}
.linkButton .arrow i {
  position: relative;
  color: white;
  font-size: 12px;
  left: 1px;
  transform: scale(0.9);
}
@media only screen and (min-width: 1200px) {
  .linkButton:hover {
    background-color: #d6d6d6;
    /* .arrow {
        background-color: white;

        i {
            color: #000;
        }
    }*/
  }
}
@media only screen and (max-width: 1000px) {
  .linkButton.PCButton {
    display: none;
  }
  .linkButton.mobileButton {
    display: block !important;
  }
}
@media only screen and (max-width: 650px) {
  .linkButton {
    font-size: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.3;
  }
  .linkButton .arrow {
    right: 14px;
  }
}

.intro {
  position: relative;
  padding-top: 120px;
  padding-bottom: 380px;
  display: block;
  color: white;
  line-height: 2;
}
.intro .bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
}
.intro.starter .box {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition: all 1s ease 0.3s;
  -moz-transition: all 1s ease 0.3s;
  -o-transition: all 1s ease 0.3s;
  -ms-transition: all 1s ease 0.3s;
  transition: all 1s ease 0.3s;
}
.intro .box {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  margin: 0 auto;
  width: 80%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.intro .box .title {
  position: absolute;
  width: 20px;
  line-height: 1.2;
  left: 0;
  font-size: 20px;
  margin-top: -17px;
}
.intro .box .textBox {
  position: relative;
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.intro .box .textBox .text {
  position: relative;
  width: 100%;
  column-count: 2;
  column-gap: 70px;
  text-align: justify;
}
.intro .linkButton {
  position: relative;
  left: 50%;
  margin-left: 32px;
  display: inline-block;
  margin-top: 60px;
}
@media only screen and (max-width: 1500px) {
  .intro .box {
    width: calc(100% - 130px);
    padding-right: 5%;
    margin-right: 0;
  }
  .intro .box .textBox {
    width: 100%;
    padding-left: 60px;
  }
  .intro .linkButton {
    margin-left: 65px;
    background-color: #76b069;
    color: #000;
  }
}
@media only screen and (max-width: 1200px) {
  .intro .box {
    width: calc(100% - 100px);
  }
}
@media only screen and (max-width: 1000px) {
  .intro .box {
    width: calc(100% - 60px);
    padding-right: 0;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 650px) {
  .intro {
    padding-top: 60px;
  }
  .intro .box .title {
    margin-top: 0;
    position: relative;
    width: auto;
    font-size: 16px;
    top: 0;
    margin-bottom: 24px;
  }
  .intro .box .textBox {
    font-size: 14px;
    padding-left: 0;
    display: block;
  }
  .intro .box .textBox .text {
    column-count: 1;
    column-gap: 0;
    opacity: 0.85;
  }
  .intro .linkButton {
    left: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 90%;
    max-width: 200px;
    line-height: 1.4;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .intro .linkButton .arrow {
    right: 14px;
  }
}

.newsBlock {
  position: relative;
  width: 85%;
  background-color: white;
  margin-top: -290px;
  z-index: 10;
  margin-right: 0;
  margin-left: auto;
  border-radius: 50px 0 0 50px;
  padding: 60px 160px 60px 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
}
.newsBlock .mainType {
  position: absolute;
  right: 160px;
  width: 20px;
  font-size: 20px;
  height: calc(100% - 116px);
  overflow: hidden;
}
.newsBlock .mainType::before {
  content: "";
  position: absolute;
  background-color: #dddddd;
  height: 100%;
  top: 124px;
  width: 1px;
  left: 50%;
}
.newsBlock .mainType::after {
  content: "";
  background-color: #2b2b2b;
  width: 1px;
  left: 50%;
  position: absolute;
  height: 6%;
  top: 124px;
}
.newsBlock .title {
  position: relative;
  display: block;
  margin-bottom: 60px;
}
.newsBlock .title .tw {
  position: relative;
  font-size: 26px;
  display: block;
  letter-spacing: 4px;
}
.newsBlock .title .en {
  position: relative;
  display: block;
  font-size: 16px;
  opacity: 0.8;
  margin-top: 5px;
}
.newsBlock .timeInfo {
  position: relative;
  width: 43%;
  padding-left: 45px;
  display: flex;
}
.newsBlock .timeInfo .circleButton {
  margin-top: -23px;
}
.newsBlock .timeInfo .date {
  position: relative;
  margin-right: 50px;
}
.newsBlock .timeInfo .date .day {
  position: relative;
  color: #538049;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 5px;
  display: flex;
  line-height: 1;
}
.newsBlock .timeInfo .date .day b {
  font-size: 25px;
  font-weight: 400;
  border: 2px solid;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 0.9;
  text-align: center;
  padding-left: 0;
  margin-left: 18px;
  top: 9px;
  position: relative;
}
.newsBlock .timeInfo .date .time {
  position: relative;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 5px;
  margin-top: 10px;
  line-height: 1;
}
.newsBlock .block {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 95%;
}
.newsBlock .block .name {
  position: absolute;
  font-size: 16px;
  width: 20px;
  left: 0;
  top: 4px;
}
.newsBlock .block .name span {
  font-size: 16px;
  opacity: 0.8;
  margin-left: 4px;
}
.newsBlock .locationInfo {
  position: relative;
  width: 57%;
  padding-left: 45px;
  display: flex;
}
.newsBlock .locationInfo .circleButton {
  margin-left: 15px;
  margin-top: -23px;
}
.newsBlock .locationInfo .loc {
  position: relative;
  font-size: 22px;
  display: block;
  letter-spacing: 4px;
  margin-right: 30px;
  line-height: 1.5;
}
.newsBlock .locationInfo .loc .addr {
  position: relative;
  color: #538049;
  margin-bottom: 6px;
  padding-bottom: 8px;
  margin-top: 1px;
  border-bottom: 1px solid silver;
}
.newsBlock .locationInfo .loc .room {
  position: relative;
  font-size: 20px;
}
.newsBlock .wayInfo {
  position: relative;
  width: 43%;
  display: flex;
  border-top: 1px solid black;
  padding-top: 40px;
  margin-top: 40px;
}
.newsBlock .wayInfo .name {
  position: relative;
  top: 0;
}
.newsBlock .wayInfo .tel {
  position: relative;
  padding-left: 24px;
}
.newsBlock .wayInfo .tel .text {
  position: relative;
  font-size: 20px;
  letter-spacing: 3px;
  display: block;
}
.newsBlock .wayInfo .tel .text span {
  font-size: 16px;
  opacity: 0.8;
  margin-left: 4px;
}
.newsBlock .wayInfo .tel .telNumber {
  position: relative;
  display: flex;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-top: 6px;
  align-items: flex-end;
  color: #538049;
}
.newsBlock .wayInfo .tel .telNumber .t {
  color: #000;
  font-size: 16px;
  margin: 0 12px 4px;
  display: block;
}
.newsBlock .wayInfo .tel .telNumber div {
  position: relative;
}
.newsBlock .wayInfo .tel .telNumber div:last-child {
  font-size: 32px;
}
.newsBlock .onlineInfo {
  position: relative;
  width: 57%;
  display: block;
  border-top: 1px solid black;
  padding-top: 40px;
  margin-top: 40px;
  font-size: 20px;
}
.newsBlock .onlineInfo .name {
  position: relative;
  font-size: 20px;
  width: auto;
  letter-spacing: 3px;
}
.newsBlock .onlineInfo .go {
  position: relative;
  display: flex;
  margin-top: 12px;
  align-items: center;
  letter-spacing: 3px;
}
.newsBlock .onlineInfo .go .addr {
  color: #538049;
  position: relative;
}
.newsBlock .onlineInfo .go .linkButton {
  position: relative;
  margin-left: 40px;
  margin-right: 0;
}
.newsBlock .onlineInfo .go .memo {
  position: relative;
  font-size: 16px;
  opacity: 0.8;
}
.newsBlock.starter {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
@media only screen and (max-width: 1800px) {
  .newsBlock {
    width: calc(100% - 160px);
    padding-right: 5%;
  }
  .newsBlock .locationInfo .circleButton {
    top: 0;
  }
  .newsBlock .timeInfo,
  .newsBlock .wayInfo {
    width: 42%;
  }
  .newsBlock .locationInfo,
  .newsBlock .onlineInfo {
    width: 58%;
  }
  .newsBlock .block .name {
    top: 0;
  }
  .newsBlock .locationInfo .loc {
    font-size: 20px;
    margin-right: 16px;
  }
  .newsBlock .locationInfo .loc .room {
    font-size: 18px;
  }
  .newsBlock .mainType {
    right: 5%;
  }
  .newsBlock .wayInfo .tel .telNumber {
    font-size: 30px;
    margin-top: 8px;
  }
  .newsBlock .wayInfo .tel .telNumber .t {
    margin-bottom: 2px;
  }
  .newsBlock .wayInfo .tel .telNumber div:last-child {
    font-size: 22px;
  }
  .newsBlock .timeInfo .date {
    margin-right: 28px;
  }
  .newsBlock .timeInfo .date .day {
    font-size: 32px;
  }
  .newsBlock .timeInfo .date .day b {
    font-size: 22px;
    width: 28px;
    height: 28px;
    top: 6px;
    margin-left: 6px;
    padding-left: 1px;
  }
  .newsBlock .timeInfo .date .time {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1600px) {
  .newsBlock .locationInfo .circleButton {
    margin-top: -15px;
  }
  .newsBlock .timeInfo .circleButton {
    margin-top: -15px;
  }
}
@media only screen and (max-width: 1500px) {
  .newsBlock {
    width: calc(100% - 130px);
    padding: 50px 5% 50px 50px;
  }
  .newsBlock .title .tw {
    font-size: 24px;
  }
  .newsBlock .locationInfo .loc {
    margin-right: 30px;
  }
  .newsBlock .timeInfo .circleButton {
    margin-top: 0;
  }
  .newsBlock .wayInfo .tel .telNumber {
    margin-top: 20px;
  }
  .newsBlock .mainType {
    height: calc(100% - 98px);
  }
  .newsBlock .timeInfo {
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid black;
  }
  .newsBlock .locationInfo {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    align-items: center;
  }
  .newsBlock .locationInfo .circleButton {
    margin-top: 0;
  }
  .newsBlock .locationInfo .name {
    top: 18px;
  }
  .newsBlock .wayInfo {
    padding-top: 30px;
    margin-top: 30px;
    width: 50%;
  }
  .newsBlock .wayInfo .tel {
    padding-left: 25px;
  }
  .newsBlock .onlineInfo {
    padding-top: 30px;
    margin-top: 30px;
    width: 50%;
  }
  .newsBlock .onlineInfo .go {
    letter-spacing: 2px;
    padding-bottom: 30px;
  }
  .newsBlock .onlineInfo .go .memo {
    left: 227px;
    position: absolute;
    bottom: 0;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .newsBlock {
    width: calc(100% - 100px);
  }
  .newsBlock .onlineInfo {
    width: 100%;
    border-top: 0;
    padding-top: 0;
    margin-right: 0;
    padding-left: 45px;
    margin-top: 50px;
  }
  .newsBlock .onlineInfo .go .linkButton {
    margin-right: 20px;
  }
  .newsBlock .onlineInfo .go .memo {
    left: auto;
    position: relative;
  }
  .newsBlock .onlineInfo::before {
    content: "";
    background-color: silver;
    position: absolute;
    width: calc(100% - 45px);
    height: 1px;
    top: -24px;
    left: 45px;
  }
  .newsBlock .timeInfo .date .day b {
    font-size: 22px;
    width: 25px;
    height: 25px;
    top: 6px;
    margin-left: 6px;
    border: 1px solid;
  }
  .newsBlock .wayInfo .tel .telNumber {
    font-size: 32px;
  }
  .newsBlock .wayInfo {
    width: 100%;
  }
}
@media only screen and (max-width: 1000px) {
  .newsBlock {
    width: calc(100% - 30px);
  }
  .newsBlock .title .tw {
    font-size: 20px;
  }
  .newsBlock .title .en {
    font-size: 15px;
  }
}
@media only screen and (max-width: 650px) {
  .newsBlock {
    overflow: hidden;
    WIDTH: 100%;
    padding: 65px 30PX 50px 30PX;
  }
  .newsBlock .title .tw {
    line-height: 1.5;
  }
  .newsBlock .title .en {
    font-size: 14px;
  }
  .newsBlock .block {
    width: 100%;
  }
  .newsBlock .block .name {
    position: relative;
    width: auto;
    margin-bottom: 10px;
    letter-spacing: 3px;
  }
  .newsBlock .mainType {
    display: none;
  }
  .newsBlock .circleButton {
    width: 80%;
    margin: 0 auto;
  }
  .newsBlock .locationInfo {
    display: block;
    padding-left: 0;
    border: 0;
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
  .newsBlock .locationInfo .name {
    top: 0;
  }
  .newsBlock .locationInfo::after {
    content: "";
    background-color: black;
    position: absolute;
    width: 100vw;
    bottom: 0;
    left: 50%;
    height: 1px;
    transform: translateX(-50%);
  }
  .newsBlock .locationInfo .circleButton {
    margin: 12px auto 0px;
    width: 200px;
    padding-right: 0;
  }
  .newsBlock .locationInfo .loc {
    margin-bottom: 30px;
    display: block;
    margin-right: 0;
  }
  .newsBlock .locationInfo .loc .addr {
    font-size: 20px;
  }
  .newsBlock .locationInfo .loc .room {
    font-size: 18px;
  }
  .newsBlock .wayInfo {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    border: 0;
    display: block;
  }
  .newsBlock .wayInfo .tel {
    padding-left: 0;
    margin-top: 20px;
  }
  .newsBlock .wayInfo .tel .text {
    font-size: 14px;
    line-height: 1.5;
  }
  .newsBlock .wayInfo .tel .text span {
    font-size: 14px;
  }
  .newsBlock .wayInfo .tel .telNumber {
    font-size: 34px;
    flex-wrap: wrap;
  }
  .newsBlock .wayInfo .tel .telNumber .t {
    font-size: 14px;
    margin-left: 0;
  }
  .newsBlock .wayInfo .tel .telNumber div:first-child {
    margin-right: 12px;
  }
  .newsBlock .wayInfo .tel .telNumber div:last-child {
    font-size: 28px;
  }
  .newsBlock .onlineInfo {
    border-top: 1px solid #cecece;
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 0;
  }
  .newsBlock .onlineInfo::before {
    display: none;
  }
  .newsBlock .onlineInfo .name {
    font-size: 14px;
    line-height: 1.5;
  }
  .newsBlock .onlineInfo .name span {
    font-size: 14px;
  }
  .newsBlock .onlineInfo .go {
    display: block;
    padding-bottom: 0;
  }
  .newsBlock .onlineInfo .go .linkButton {
    display: block;
    margin-top: 35px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    line-height: 1.4;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .newsBlock .onlineInfo .go .linkButton .arrow {
    right: 14px;
  }
  .newsBlock .onlineInfo .go .memo {
    text-align: center;
  }
  .newsBlock .timeInfo {
    display: block;
    padding-left: 0;
    border: 0;
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
  .newsBlock .timeInfo::after {
    content: "";
    background-color: black;
    position: absolute;
    width: 100vw;
    bottom: 0;
    left: 50%;
    height: 1px;
    transform: translateX(-50%);
  }
  .newsBlock .timeInfo .circleButton {
    margin: 50px auto 0px;
    width: 200px;
    padding-right: 0;
  }
  .newsBlock .timeInfo .date {
    margin-bottom: 28px;
  }
  .newsBlock .timeInfo .date .day {
    font-size: 40px;
  }
  .newsBlock .timeInfo .date .day b {
    font-size: 22px;
    width: 25px;
    height: 25px;
    top: 10px;
    margin-left: 3px;
  }
  .newsBlock .timeInfo .date .time {
    font-size: 28px;
  }
}

.circleButton {
  position: relative;
  background-color: #e3ece1;
  width: 120px;
  min-width: 120px;
  height: 120px;
  min-height: 120px;
  border-radius: 50%;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  line-height: 1.4;
  text-align: center;
  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;
}
.circleButton .buttonName {
  position: relative;
}
.circleButton div {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  bottom: 12px;
  color: #538049;
  -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;
}
.circleButton .arrow::after {
  content: "";
  background-color: #538049;
  position: absolute;
  width: 8px;
  height: 1px;
  right: 6px;
  top: 50%;
  -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;
}
.circleButton .arrow::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid #538049;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
@media only screen and (min-width: 1200px) {
  .circleButton:hover {
    background-color: #538049;
    color: white;
  }
  .circleButton:hover div {
    transform: scale(1.2);
  }
}
@media only screen and (max-width: 1600px) {
  .circleButton {
    min-width: 100px;
    width: 100px;
    min-height: 100px;
    height: 100px;
    font-size: 14px;
  }
  .circleButton .buttonName {
    top: -5px;
  }
}
@media only screen and (max-width: 1200px) {
  .circleButton {
    background-color: #538049;
    color: white;
  }
}
@media only screen and (max-width: 650px) {
  .circleButton {
    padding: 14px 100px 14px 28px;
    border-radius: 34px;
    width: auto;
    min-height: auto;
    height: auto;
    text-align: left;
    display: block;
  }
  .circleButton .buttonName {
    top: 0;
  }
  .circleButton div {
    right: 14px;
    left: auto;
    bottom: 15px;
  }
}

.timeLine {
  position: relative;
  max-width: 1600px;
  margin: 180px auto;
  width: 80%;
}
.timeLine .mainType {
  position: absolute;
  width: 20px;
  line-height: 1.2;
  left: 0;
  font-size: 20px;
  margin-top: -17px;
}
.timeLine .linkButton {
  width: 200px;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.6s ease;
}
@media only screen and (min-width: 1200px) {
  .timeLine .linkButton:hover {
    -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;
  }
}
.timeLine.starter .linkButton {
  opacity: 1;
  transition: all 0.6s ease, opacity 0.6s ease 2.6s;
}
@media only screen and (min-width: 1200px) {
  .timeLine.starter .linkButton:hover {
    -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;
  }
}
.timeLine .timeLine_block {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto 65px;
  padding: 0 120px;
}
.timeLine .timeLine_block.starter .timeLineBox {
  transform: translateX(0);
  opacity: 1;
}
.timeLine .timeLine_block .timeLineBox {
  position: relative;
  display: flex;
  background-color: transparent;
  padding: 10px 22px;
  min-height: 60px;
  align-items: center;
  border-radius: 60px;
  overflow: hidden;
  font-size: 18px;
  transform: translateX(30px);
  opacity: 0;
  transition: all 0.6s ease, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(2) {
  transition: all 0.6s ease 0.2s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(3) {
  transition: all 0.6s ease 0.4s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(4) {
  transition: all 0.6s ease 0.6s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(5) {
  transition: all 0.6s ease 0.8s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(6) {
  transition: all 0.6s ease 1s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(7) {
  transition: all 0.6s ease 1.2s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(8) {
  transition: all 0.6s ease 1.4s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(9) {
  transition: all 0.6s ease 1.6s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(10) {
  transition: all 0.6s ease 1.8s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(11) {
  transition: all 0.6s ease 2s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(12) {
  transition: all 0.6s ease 2.2s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(13) {
  transition: all 0.6s ease 2.4s, color 0.5s ease;
}
.timeLine .timeLine_block .timeLineBox:nth-child(even) {
  background-color: white;
}
.timeLine .timeLine_block .timeLineBox .time {
  position: relative;
  width: 25%;
  font-weight: 300;
}
.timeLine .timeLine_block .timeLineBox .title {
  position: relative;
  width: 45%;
  line-height: 1.5;
}
.timeLine .timeLine_block .timeLineBox .name {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 34%;
}
.timeLine .timeLine_block .timeLineBox .name .name_box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  margin-right: 25px;
}
.timeLine .timeLine_block .timeLineBox .name .name_box:last-child {
  margin-right: 0;
}
.timeLine .timeLine_block .timeLineBox .name .name_box .myimg {
  position: relative;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  MARGIN-RIGHT: 12px;
}
.timeLine .timeLine_block .timeLineBox .name .name_box .myimg img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeLine .timeLine_block .timeLineBox .name .name_box .myname {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .timeLine .timeLine_block .timeLineBox:hover {
    color: #538049;
  }
}
@media only screen and (max-width: 1600px) {
  .timeLine {
    width: calc(100% - 160px);
    margin-left: 160px;
    margin-right: 0;
  }
  .timeLine .timeLine_block {
    padding: 0 60px;
  }
  .timeLine .timeLine_block .timeLineBox .name {
    width: 40%;
    font-size: 16px;
  }
  .timeLine .timeLine_block .timeLineBox .time {
    width: 235px;
  }
}
@media only screen and (max-width: 1500px) {
  .timeLine {
    width: calc(100% - 130px);
    margin-left: 130px;
  }
  .timeLine .mainType {
    margin-top: -4px;
  }
  .timeLine .timeLine_block .timeLineBox {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .timeLine {
    width: calc(100% - 100px);
    margin-left: 100px;
  }
  .timeLine .timeLine_block .timeLineBox .name {
    min-width: 200px;
    font-size: 16px;
    margin-left: 35px;
    width: 15%;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box:nth-child(2) {
    margin-top: 5px;
  }
  .timeLine .timeLine_block .timeLineBox .title {
    color: #538049;
  }
}
@media only screen and (max-width: 1000px) {
  .timeLine {
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-top: 100px;
    margin-bottom: 120px;
  }
  .timeLine .mainType {
    position: relative;
    margin-top: 0;
    padding-left: 20px;
    width: auto;
    margin-bottom: 16px;
  }
  .timeLine .timeLine_block {
    padding: 0;
    margin-bottom: 40px;
  }
  .timeLine .timeLine_block .timeLineBox .name {
    font-size: 14px;
    min-width: 190px;
  }
}
@media only screen and (max-width: 650px) {
  .timeLine {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .timeLine .mainType {
    padding-left: 0;
    font-size: 16px;
    margin-bottom: 28px;
    letter-spacing: 3px;
  }
  .timeLine::before {
    content: "";
    position: absolute;
    left: -13px;
    background-color: #cecece;
    top: 47px;
    height: calc(100% - 140px);
    width: 1px;
  }
  .timeLine::after {
    content: "";
    position: absolute;
    left: -13px;
    background-color: rgb(0, 0, 0);
    top: 47px;
    height: 15px;
    width: 1px;
  }
  .timeLine .timeLine_block .timeLineBox,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) {
    background-color: white;
    margin-bottom: 16px;
    border-radius: 20px;
    display: block;
    padding-bottom: 20px;
    padding-top: 22px;
  }
  .timeLine .timeLine_block .timeLineBox .time,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .time {
    width: 100%;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .timeLine .timeLine_block .timeLineBox .title,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .title {
    font-size: 16px;
    width: 100%;
  }
  .timeLine .timeLine_block .timeLineBox .name,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name {
    font-size: 14px;
    min-width: auto;
    width: 100%;
    margin-left: 0;
    text-align: left;
    display: block;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name .name_box {
    margin-right: 0;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box:nth-child(1),
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name .name_box:nth-child(1) {
    margin-top: 15px;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box .myimg,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name .name_box .myimg {
    width: 50px;
    height: 50px;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box:last-child,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name .name_box:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.swiper-button-next {
  outline: none;
}
.swiper-button-next::after {
  display: none;
}
@media only screen and (max-width: 650px) {
  .swiper-button-next {
    width: 35px;
    height: 35px;
    background-color: #76b069;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    color: white;
  }
}

.swiper-button-prev {
  outline: none;
}
.swiper-button-prev::after {
  display: none;
}
@media only screen and (max-width: 650px) {
  .swiper-button-prev {
    width: 35px;
    height: 35px;
    background-color: #76b069;
    border-radius: 50%;
    line-height: 35px;
    font-size: 14px;
    text-align: center;
    color: white;
  }
}

.swiper-pagination {
  position: relative;
  display: flex;
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  outline: none;
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  width: 10px;
  height: 10px;
  position: relative;
  display: block;
  background-color: #e0e0e0;
  border-radius: 50%;
  box-shadow: 3px 2px 2px #b3b3b3 inset;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #76b069;
  box-shadow: 3px 2px 2px #4d7344 inset;
}

.unitBlock {
  position: relative;
  max-width: 1600px;
  margin: 35px auto 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.unitBlock.starter {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.unitBlock .swiper-pagination {
  position: absolute;
  width: auto;
  bottom: auto;
  top: 0;
  right: 0;
  left: auto;
}
.unitBlock .mainType {
  position: relative;
  line-height: 1.2;
  left: 0;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}
.unitBlock .swiper-slide {
  position: relative;
  height: 200px;
}
.unitBlock .unitBlockSwiper {
  position: relative;
  width: 100%;
  top: 20px;
}
.unitBlock .block {
  position: relative;
  width: 100%;
  margin: 0 auto 0;
  padding: 0 0;
  display: block;
  overflow: hidden;
  padding-right: 1px;
}
.unitBlock .block .swiper-button {
  display: none;
}
.unitBlock .block .brand {
  position: relative;
  background-color: white;
  font-size: 18px;
  color: black;
  padding: 0;
  text-align: center;
  line-height: 1.6;
  border: 1px solid #c5c5c5;
  box-shadow: -1px 9px 10px rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
  margin-left: 0;
  width: 100%;
  display: block;
}
.unitBlock .block .brand img {
  position: relative;
  display: block;
  width: 100%;
}
.unitBlock .block .brand .name {
  position: relative;
  border-top: 1px solid #ededed;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 50px;
  box-sizing: border-box;
  -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;
}
.unitBlock .block .brand .name div {
  position: relative;
}
.unitBlock .block .brand .name i {
  position: absolute;
  background-color: #76b069;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  transform: scale(0.9) translateX(-50%);
  left: 50%;
  opacity: 0;
  bottom: 15px;
  -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;
}
@media only screen and (min-width: 1200px) {
  .unitBlock .block .brand:hover {
    box-shadow: -1px -1px 10px rgba(0, 0, 0, 0.1);
    /*  .name {
        color: $color_green_deep;
        padding-top: 30px;
        padding-bottom: 70px;
        @include ani(.8s);

        i {
            opacity: 1;
            bottom: 26px;
            @include ani_delay(.5s, .2s);
        }
    }*/
  }
}
@media only screen and (max-width: 1700px) {
  .unitBlock .swiper-slide {
    height: 11vw;
  }
  .unitBlock .block .brand .name {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1500px) {
  .unitBlock .mainType {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .unitBlock {
    margin-top: 0;
  }
  .unitBlock .mainType {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .unitBlock .unitBlockSwiper {
    top: 0;
  }
  .unitBlock .swiper-slide {
    height: auto;
  }
  .unitBlock::after {
    content: "";
    background-color: white;
    position: absolute;
    width: 100vw;
    height: 55%;
    bottom: -56px;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    left: 50%;
  }
}
@media only screen and (max-width: 1000px) {
  .unitBlock {
    margin-top: 80px;
  }
  .unitBlock::after {
    height: 23%;
  }
  .unitBlock .mainType {
    position: relative;
    margin-top: 0;
    padding-left: 0;
    width: auto;
    margin-bottom: 25px;
  }
  .unitBlock .block {
    padding-right: 0;
    padding-left: 0;
    flex-wrap: wrap;
  }
  .unitBlock .block .brand {
    width: 100%;
    margin-top: 1px;
  }
  .unitBlock .block .brand img {
    max-width: 349px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 650px) {
  .unitBlock {
    margin-top: 0;
  }
  .unitBlock .swiper-pagination {
    display: none;
  }
  .unitBlock .mainType {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .unitBlock .block {
    overflow: visible;
  }
  .unitBlock .block .swiper-button {
    display: block;
    opacity: 0.9;
    transform: translateY(0);
    right: 0;
    left: auto;
    top: -30px;
  }
  .unitBlock .block .swiper-button.swiper-button-disabled {
    opacity: 0.5;
  }
  .unitBlock .block .swiper-button.swiper-button-prev {
    right: 50px;
  }
  .unitBlock .unitBlockSwiper {
    overflow: hidden;
  }
  .unitBlock .block .brand {
    width: 100%;
    margin-left: 0;
  }
  .unitBlock .block .brand .name {
    font-size: 14px;
    padding: 5px 28px;
    height: 74px;
  }
  .unitBlock::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: white;
    width: 100vw;
    height: 32vw;
    bottom: -58px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  color: black;
}
.logo .logoImg {
  position: relative;
}
.logo .name {
  position: relative;
  display: block;
  margin-left: 20px;
}
.logo .name .tw {
  position: relative;
  font-size: 22px;
  color: #343434;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.logo .name .en {
  position: relative;
  font-weight: 300;
  font-size: 16px;
}

.yearBox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.yearBox .yearList {
  position: relative;
  background-color: #f7f7f7;
  margin-bottom: 10px;
  display: block;
  width: 24%;
  height: 114px;
}
.yearBox .yearList.has {
  background: #f1f7f0;
}
.yearBox .yearList .m {
  position: relative;
  font-size: 16px;
  padding: 11px 15px;
}
.yearBox .yearList.multi .newslink {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  border-top: 1px solid white;
  line-height: 1.5;
}
.yearBox .yearList.multi .newslink:nth-child(9), .yearBox .yearList.multi .newslink:nth-child(4), .yearBox .yearList.multi .newslink:nth-child(5), .yearBox .yearList.multi .newslink:nth-child(6), .yearBox .yearList.multi .newslink:nth-child(7), .yearBox .yearList.multi .newslink:nth-child(8) {
  display: none;
}
.yearBox .yearList.multi .newslink .arrow {
  top: 8px;
}
.yearBox .yearList .newslink {
  position: relative;
  font-size: 18px;
  color: black;
  padding: 4px 40px 4px 15px;
  display: block;
  line-height: 1.8;
  background-color: transparent;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.yearBox .yearList .newslink .arrow {
  position: absolute;
  right: 16px;
  top: 11px;
  background-color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: green;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.yearBox .yearList .newslink .arrow i {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .yearBox .yearList .newslink:hover {
    background: #76b069;
    color: white;
  }
  .yearBox .yearList .newslink:hover .arrow {
    opacity: 1;
  }
}
@media only screen and (max-width: 1500px) {
  .yearBox .yearList {
    width: 32%;
  }
}
@media only screen and (max-width: 1200px) {
  .yearBox .yearList .newslink {
    background: #76b069;
    color: white;
    padding-right: 12px;
  }
  .yearBox .yearList .newslink .arrow {
    display: none;
  }
}
@media only screen and (max-width: 650px) {
  .yearBox .yearList {
    width: 100%;
    display: none;
  }
  .yearBox .yearList.has {
    display: block;
    height: auto;
    padding-bottom: 2px;
  }
  .yearBox .yearList.multi .newslink {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: initial;
  }
  .yearBox .yearList .newslink {
    padding-right: 50px;
    background-color: transparent;
    color: black;
    line-height: 1.5;
  }
  .yearBox .yearList .newslink .arrow {
    opacity: 0.7;
    border: 1px solid #9aaf95;
    color: #538049;
    background-color: transparent;
    display: flex;
    top: 8px;
  }
}

.twoNews .main_board_item .years {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

footer.normal {
  position: relative;
  background-color: white;
  z-index: 2;
  display: block;
  margin-top: 90px;
  border-top: 1px solid #cccccc;
}
footer.normal .logo {
  position: absolute;
  top: 50px;
}
footer.normal .logo .name .tw {
  font-size: 22px;
  margin-bottom: 5px;
}
footer.normal .logo .name .en {
  font-size: 16px;
}
footer.normal .block {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  padding-bottom: 114px;
  flex-wrap: wrap;
  padding: 185px 0 150px;
  align-items: flex-start;
  justify-content: space-between;
}
footer.normal .block::after {
  content: "";
  background-color: #538049;
  height: 6px;
  width: 100%;
  position: absolute;
  top: 0;
}
footer.normal .footer_sitemap {
  position: relative;
  display: flex;
  width: 55%;
  justify-content: space-between;
}
footer.normal .footer_sitemap .box {
  position: relative;
  display: block;
}
footer.normal .footer_sitemap .box.login {
  display: none;
}
footer.normal .footer_sitemap .box .mainlink {
  position: relative;
  display: block;
  color: black;
  font-size: 18px;
  margin-bottom: 35px;
}
footer.normal .footer_sitemap .box .mainlink i {
  display: none;
}
footer.normal .footer_sitemap .box .sublink {
  position: relative;
  display: block;
  color: black;
  font-size: 15px;
  margin-bottom: 16px;
  opacity: 0.8;
  -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;
}
footer.normal .footer_sitemap .box .sublink i {
  position: relative;
  background-color: #76b069;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  transform: scale(0.9) translateX(18px);
  right: 10px;
  opacity: 0;
  top: -2px;
  opacity: 0;
  -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;
}
@media only screen and (min-width: 1200px) {
  footer.normal .footer_sitemap .box .sublink:hover {
    color: #538049;
  }
  footer.normal .footer_sitemap .box .sublink:hover i {
    right: 0;
    opacity: 1;
  }
}
footer.normal .info {
  position: relative;
  display: block;
  width: auto;
  margin-left: 0;
  line-height: 1.3;
}
footer.normal .info .line {
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid #cccccc;
  display: block;
  font-size: 15px;
}
footer.normal .info .line:first-child {
  padding-top: 0;
}
footer.normal .info .line:last-child {
  border-bottom: 0;
}
footer.normal .info .line .map i {
  position: relative;
  font-size: 20px;
  color: #d3d6dc;
  margin-left: 8px;
  transition: all 0.3s ease;
}
footer.normal .info .line label {
  position: relative;
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
}
footer.normal .info .line a {
  position: relative;
  color: #000;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: block;
}
@media only screen and (min-width: 1200px) {
  footer.normal .info .line a:hover {
    color: #538049;
    opacity: 1;
  }
  footer.normal .info .line a:hover i {
    color: #538049;
  }
}
footer.normal .fblink {
  position: absolute;
  bottom: auto;
  background-color: white;
  color: #538049;
  right: 0;
  top: 65px;
  padding-right: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1200px) {
  footer.normal .fblink:hover {
    color: #fff;
    background-color: #4f7bcb;
    border-color: #4f7bcb;
  }
}
footer.normal .tip {
  position: absolute;
  opacity: 0.6;
  bottom: 50px;
  left: 0;
  margin-left: 0;
  font-size: 14px;
  z-index: 5;
}
footer.normal .copyright {
  position: absolute;
  bottom: 45px;
  left: 0;
  opacity: 0.6;
  font-size: 14px;
  width: 100%;
  line-height: 1.6;
  text-align: left;
  border-top: 1px solid #cccccc;
  padding-top: 16px;
  padding-left: 45%;
}
footer.normal #gotop {
  position: absolute;
  bottom: 50px;
  right: 5%;
  width: auto;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  padding-left: 35px;
  letter-spacing: 2px;
  transition: all 0.5s ease;
  color: #538049;
}
footer.normal #gotop span {
  position: relative;
}
footer.normal #gotop::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid #538049;
  border-bottom: 0;
  border-right: 0;
  left: 5px;
  transform: rotate(45deg);
  top: 8px;
}
footer.normal #gotop::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid #538049;
  border-bottom: 0;
  border-right: 0;
  left: 5px;
  transform: rotate(45deg);
  top: 8px;
  opacity: 0;
  transform: translateY(15px) rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  footer.normal #gotop:hover {
    color: #538049;
  }
  footer.normal #gotop:hover::before {
    opacity: 0;
    transform: translateY(-10px) rotate(45deg);
    transition: all 0.5s ease;
  }
  footer.normal #gotop:hover::after {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
    transition: all 0.5s ease 0.2s;
  }
}
@media only screen and (max-width: 1700px) {
  footer.normal .block {
    padding: 185px 0 115px;
  }
  footer.normal .footer_sitemap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  footer.normal .footer_sitemap .box {
    display: block;
    margin-right: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1500px) {
  footer.normal #gotop {
    right: 0;
  }
}
@media only screen and (max-width: 1300px) {
  footer.normal .footer_sitemap {
    width: 50%;
  }
  footer.normal .footer_sitemap .box {
    width: 145px;
    margin-right: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  footer.normal .info {
    width: 40%;
    line-height: 1.8;
  }
  footer.normal .footer_sitemap .box {
    width: 32%;
    margin-right: 2%;
  }
  footer.normal .footer_sitemap .box:nth-child(3n) {
    margin-right: 0;
  }
  footer.normal .copyright {
    padding-left: 0;
    bottom: 52px;
  }
  footer.normal .tip {
    bottom: 30px;
  }
}
@media only screen and (max-width: 1000px) {
  footer.normal {
    z-index: 10;
  }
  footer.normal .logo .logoImg {
    width: 60px;
  }
  footer.normal .logo .name {
    margin-left: 13px;
  }
  footer.normal .logo .name .tw {
    font-size: 18px;
    margin-bottom: 2px;
  }
  footer.normal .logo .name .en {
    font-size: 13px;
  }
  footer.normal .block {
    padding-top: 150px;
    display: block;
  }
  footer.normal .info {
    width: 100%;
    line-height: 1.2;
  }
  footer.normal .footer_sitemap {
    width: 100%;
    margin-top: 50px;
  }
  footer.normal .footer_sitemap .box {
    width: auto;
    margin-right: 35px;
  }
  footer.normal .footer_sitemap .box:nth-child(3n) {
    margin-right: 35px;
  }
  footer.normal .footer_sitemap .sublink i {
    display: none;
  }
  footer.normal #gotop {
    position: fixed;
    background-color: #538049;
    WIDTH: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid white;
    bottom: 5%;
    right: 5%;
    padding: 0;
    margin: 0;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 3px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.5s ease;
  }
  footer.normal #gotop::before {
    position: relative;
    border-color: white;
    left: auto;
    top: 3px;
  }
  footer.normal #gotop div, footer.normal #gotop::after {
    display: none;
  }
  footer.normal #gotop.show {
    opacity: 1;
  }
}
@media only screen and (max-width: 650px) {
  footer.normal {
    margin-top: 30px;
  }
  footer.normal .block {
    padding-top: 125px;
    padding-bottom: 40px;
  }
  footer.normal .block::after {
    height: 4px;
  }
  footer.normal .copyright {
    padding-left: 0;
    bottom: 0;
    position: relative;
    margin-top: 12px;
    padding-top: 7px;
    font-size: 12px;
    padding-right: 50px;
  }
  footer.normal .tip {
    bottom: 0;
    position: relative;
    margin-top: 50px;
    font-size: 12px;
  }
  footer.normal .footer_sitemap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  footer.normal .footer_sitemap .box {
    margin-bottom: 40px;
    margin-right: 3%;
    width: 45%;
  }
  footer.normal .footer_sitemap .box:nth-child(3n) {
    margin-right: 3%;
  }
  footer.normal .footer_sitemap .box:nth-child(2n) {
    margin-right: 0;
  }
  footer.normal .footer_sitemap .box .mainlink {
    margin-bottom: 15px;
  }
  footer.normal .footer_sitemap .box .sublink {
    margin-bottom: 12px;
  }
  footer.normal .logo {
    top: 30px;
  }
  footer.normal .logo .name {
    margin-left: 13px;
  }
  footer.normal .logo .name .tw {
    font-size: 16px;
    margin-bottom: 2px;
  }
  footer.normal .logo .name .en {
    font-size: 12px;
  }
  footer.normal .fblink {
    display: none;
  }
  footer.normal .info .line {
    padding: 14px 0;
  }
  footer.normal .info .line label {
    margin-bottom: 6px;
    font-size: 16px;
  }
  footer.normal .info .line .map {
    padding-right: 30px;
    line-height: 1.5;
  }
  footer.normal .info .line .map i {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.twoNews {
  height: auto;
  position: relative;
  display: flex;
  padding: 60px 0;
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
  justify-content: space-between;
}

.twoNews .main_board_item {
  display: block;
  position: relative;
  width: 46%;
}

.twoNews .main_board_item .main_section_title {
  display: block;
  border-bottom: 2px solid black;
  padding: 18px 100px 22px 0;
  color: #2c2c2c;
  font-weight: 500;
  margin-bottom: 10px;
}

.twoNews .main_board_item .main_section_more {
  color: #538049;
  position: absolute;
  top: 22px;
  right: 0;
  font-weight: bold;
  transition: all 0.3s ease;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
}

.twoNews .main_board_item .main_section_more::after {
  content: "+";
  margin-left: 8px;
}

.twoNews .main_board_item ul {
  display: block;
  position: relative;
}

.twoNews .main_board_item ul li {
  border-bottom: 1px solid #dddddd;
  padding: 15px 0;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.twoNews .main_board_item ul li .link {
  display: flex;
  color: #000;
  line-height: 28px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 10px 0 2px;
  height: 38px;
  -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;
}

.twoNews .main_board_item ul li .link .type {
  background-color: #538049;
  color: white;
  padding: 3px 12px;
  display: block;
  position: absolute;
  margin-right: 0;
  left: 0;
  transition: all 0.3s ease;
}

.twoNews .main_board_item ul li .link .type2 {
  background-color: #76b069;
}

.twoNews .main_board_item.main_board_item_style2 .main_board_subject {
  padding-left: 75px;
  width: calc(100% - 145px);
}

.twoNews .main_board_item.main_board_item_style2 ul li {
  padding: 20px 0;
}

.twoNews .main_board_item.main_board_item_style2.heighter ul li {
  padding: 18px 0;
}

.twoNews .main_board_item ul li .link::after {
  content: "";
  position: absolute;
  background-color: #538049;
  width: 0;
  height: 2px;
  bottom: -1px;
  left: 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;
}

.twoNews .main_board_item .main_board_subject {
  display: block;
  width: 73%;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.twoNews .main_board_item .main_board_date {
  text-align: right;
  display: block;
  width: auto;
  opacity: 0.8;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  color: black;
  -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;
}

.videoBlock {
  position: relative;
}
.videoBlock h2.main_section_title {
  position: relative;
}
.videoBlock .video-pagination {
  position: absolute;
  top: 20px;
  right: 0;
}
.videoBlock .videoBlockSwiper {
  position: relative;
  overflow: hidden;
  margin-top: -10px;
}
.videoBlock .swiper-button-next {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #76b069;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0);
  border: 0;
  display: none;
}
.videoBlock .swiper-button-next i {
  position: relative;
  color: white;
  font-size: 12px;
  transform: scale(0.9);
}
.videoBlock .swiper-button-prev {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #76b069;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0);
  border: 0;
  display: none;
}
.videoBlock .swiper-button-prev i {
  position: relative;
  color: white;
  font-size: 12px;
  transform: scale(0.9);
}
.videoBlock .videoBox {
  padding-bottom: 56.3%;
  position: relative;
  display: block;
  width: 100%;
  background-color: #383838;
}
.videoBlock .videoBox .name {
  position: absolute;
  background-color: rgba(83, 128, 73, 0.85);
  color: white;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 22px;
  font-size: 16px;
}
.videoBlock .videoBox img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videoBlock .videoBox iframe {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.videoBlock .swiper-slide {
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .videoBlock .video-pagination {
    top: 0;
  }
}
@media only screen and (max-width: 650px) {
  .videoBlock .video-pagination {
    display: none;
  }
  .videoBlock .swiper-button-prev {
    display: flex;
    top: 5px;
    margin: 0;
    right: 35px;
    left: auto;
  }
  .videoBlock .swiper-button-next {
    display: flex;
    top: 5px;
    margin: 0;
    right: 0;
  }
  .videoBlock .videoBox .name {
    padding: 11px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 1900px) {
  .twoNews .main_board_item.main_board_item_style2 ul li {
    padding: 1vw 0;
  }
}
@media only screen and (max-width: 1500px) {
  .twoNews .main_board_item ul li {
    padding: 12px 0;
  }
  .twoNews .main_board_item.main_board_item_style2 ul li {
    padding: 12px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .twoNews .main_board_item ul li, .twoNews .main_board_item.main_board_item_style2.heighter ul li {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 1000px) {
  .twoNews .main_board_item ul li, .twoNews .main_board_item.main_board_item_style2.heighter ul li {
    padding: 8px 0;
  }
}
#calendar {
  width: 100%;
  margin: 15px auto 0;
  font-size: 16px;
  text-align: center;
  display: block;
  position: relative;
}
#calendar.biggerStyle .tableBox {
  position: relative;
}
#calendar.biggerStyle .tip {
  display: none;
}
#calendar.biggerStyle .calendar-header {
  display: block;
  position: relative;
  color: black;
}
#calendar.biggerStyle #year-select-button {
  width: 180px;
  padding-right: 0;
  font-weight: bold;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  letter-spacing: 2px;
  margin-right: 12px;
}
#calendar.biggerStyle #month-select-button {
  width: 120px;
  padding-right: 0;
  font-weight: bold;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  letter-spacing: 2px;
  margin-left: 12px;
  margin-right: 12px;
}
#calendar.biggerStyle .dateBox {
  position: relative;
  padding-right: 75px;
  margin-right: 22px;
}
#calendar.biggerStyle .dateBox:after {
  content: "";
  background: #e0e0e0;
  width: 60px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
}
#calendar.biggerStyle .dateChoice {
  font-size: 20px;
  font-weight: 400;
  position: relative;
  display: flex;
}
#calendar.biggerStyle .header {
  width: 100%;
}
#calendar.biggerStyle #today-btn {
  display: block;
  font-size: 16px;
  border-radius: 40px;
  background-color: #ededed;
  border: 0;
  width: 135px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1200px) {
  #calendar.biggerStyle #today-btn:hover {
    background-color: #76b069;
    color: white;
  }
}
#calendar.biggerStyle .mounthbutton {
  position: relative;
  display: flex;
  font-size: 16px;
  color: #585858;
  width: 82px;
  justify-content: space-between;
  cursor: pointer;
}
#calendar.biggerStyle .mounthbutton .smallCircleButton {
  position: relative;
}
#calendar.biggerStyle .mounthbutton span {
  position: relative;
}
#calendar.biggerStyle td {
  text-align: left;
  padding: 0;
  height: 110px;
}
#calendar.biggerStyle td > span {
  padding: 15px 20px 5px 19px;
  display: block;
  position: relative;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
}
#calendar.biggerStyle td a {
  margin-bottom: 5px;
  font-weight: 500;
  margin: 6px;
}
#calendar.biggerStyle .current-day {
  background: white;
  border: 3px solid #e6d192;
}
#calendar .main_section_more {
  font-size: 18px;
  font-weight: 400;
  top: 6px;
}
#calendar .main_section_more .arrow {
  display: none;
}
#calendar .calendar-header, #calendar #today-btn {
  display: none;
}
#calendar table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  table-layout: fixed;
}
#calendar #calendar-body {
  font-size: 16px;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
}
#calendar thead {
  font-size: 18px;
}
#calendar thead th {
  background: #dedede;
  border-color: #ffffff;
  padding: 7px 10px;
  font-weight: 400;
}
#calendar thead th:first-child, #calendar thead th:last-child {
  background-color: #e6d192;
}
#calendar th,
#calendar td {
  padding: 19px 10px;
  border: 1px solid #e5e5e5;
  position: relative;
}
#calendar th .numberlink,
#calendar td .numberlink {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent !important;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  z-index: 5;
}
#calendar th a,
#calendar td a {
  position: relative;
  font-size: 16px;
  color: #464d44;
  background: #f1f7f0;
  text-align: left;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 8px;
  line-height: 1.3;
  display: block;
  transition: all 0.3s ease;
}
#calendar th a span,
#calendar td a span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  #calendar th a:hover,
  #calendar td a:hover {
    background: #cfe3cb;
  }
}
#calendar th.active,
#calendar td.active {
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}
#calendar th.active:after,
#calendar td.active:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 42px;
  height: 42px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  border: 2px solid #76b069;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1200px) {
  #calendar th.active:hover,
  #calendar td.active:hover {
    color: #538049;
    background-color: #f1f7f0;
  }
  #calendar th.active:hover:after,
  #calendar td.active:hover:after {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
#calendar th {
  font-weight: bold;
  background-color: #f5f5f5;
}
#calendar td {
  text-align: center;
}
#calendar .current-day {
  background-color: #f1f7f0;
  color: #538049;
  font-weight: bold;
}
#calendar .highlight {
  background-color: #f2f2f2;
}
#calendar .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  width: 245px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
#calendar .header b {
  font-size: 20px;
}
@media only screen and (max-width: 1200px) {
  #calendar {
    margin-top: 0;
  }
  #calendar .main_section_more {
    font-weight: 500;
    top: 4px;
    font-size: 15px;
  }
  #calendar .header {
    font-size: 20px;
    margin-bottom: 15px;
  }
  #calendar .header b {
    font-size: 18px;
  }
  #calendar td {
    padding: 17px 10px;
  }
  #calendar.biggerStyle td a {
    font-size: 14px;
  }
  #calendar.biggerStyle td a span {
    -webkit-line-clamp: 4;
  }
  #calendar.biggerStyle .dateBox {
    padding-right: 50px;
  }
  #calendar.biggerStyle .dateBox:after {
    width: 35px;
  }
  #calendar.biggerStyle thead {
    font-size: 16px;
  }
  #calendar.biggerStyle #today-btn {
    width: 106px;
    font-size: 14px;
  }
  #calendar.biggerStyle .dateChoice {
    font-size: 16px;
  }
  #calendar.biggerStyle #year-select-button {
    font-size: 16px;
    width: 140px;
    padding: 7px 0 8px 18px;
  }
  #calendar.biggerStyle #month-select-button {
    font-size: 16px;
    width: 100px;
    padding: 7px 0 8px 18px;
  }
}
@media only screen and (max-width: 1000px) {
  #calendar.biggerStyle .tableBox {
    width: 100%;
    overflow: scroll;
  }
  #calendar.biggerStyle .tip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12%;
    background-color: rgba(0, 0, 0, 0.7607843137);
    width: 300px;
    justify-content: center;
    height: 200px;
    align-items: center;
    display: flex;
    color: white;
    padding: 20px;
    font-size: 18px;
    line-height: 2;
    border-radius: 22px;
    max-width: 100%;
  }
  #calendar.biggerStyle .tip i {
    font-size: 22px;
    animation: move_ani 2s ease infinite;
  }
  #calendar.biggerStyle table {
    margin-top: 0;
    width: 950px;
  }
  #calendar.biggerStyle .header {
    padding-top: 70px;
  }
  #calendar.biggerStyle .dateChoice {
    font-size: 16px;
    position: absolute;
    top: 0;
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (max-width: 650px) {
  #calendar {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 70px;
    margin-bottom: 50px;
  }
  #calendar .header {
    font-size: 18px;
    width: 100%;
    justify-content: center;
  }
  #calendar .header b {
    font-size: 16px;
  }
  #calendar .header #prev-btn {
    position: absolute;
    left: 0;
  }
  #calendar .header #next-btn {
    position: absolute;
    right: 0;
  }
  #calendar .main_section_more {
    width: 250px;
    color: black;
    background-color: #ededed;
    padding: 10px 100px 10px 28px;
    border-radius: 34px;
    display: flex;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.3;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #dddddd;
    justify-content: space-between;
    right: auto;
    bottom: 0;
    top: auto;
    letter-spacing: 2px;
    font-weight: 400;
  }
  #calendar .main_section_more:after {
    display: none;
  }
  #calendar .main_section_more .arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #538049;
    border-radius: 18px;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #calendar .main_section_more .arrow i {
    position: relative;
    color: white;
    font-size: 12px;
    transform: scale(0.9);
  }
  #calendar thead {
    font-size: 16px;
  }
  #calendar th.active:after, #calendar td.active:after {
    width: 32px;
    height: 32px;
  }
  #calendar.biggerStyle .dateChoice {
    margin-top: 0;
    top: 20px;
    justify-content: space-between;
  }
  #calendar.biggerStyle .dateBox {
    padding-right: 0;
    margin-right: 0;
    transform: scale(0.8);
    transform-origin: left top;
  }
  #calendar.biggerStyle .dateBox:after {
    display: none;
  }
  #calendar.biggerStyle #month-select-button {
    margin-left: 8px;
    margin-right: 8px;
    width: 92px;
    padding: 5px 0 8px 12px;
  }
  #calendar.biggerStyle #year-select-button {
    font-size: 16px;
    width: 108px;
    margin-right: 8px;
    padding: 5px 0 8px 12px;
  }
  #calendar.biggerStyle #today-btn {
    position: absolute;
    right: 0;
    height: 30px;
  }
}
@media only screen and (max-width: 400px) {
  #calendar.biggerStyle .dateChoice {
    margin-top: 0;
    top: 15px;
    flex-wrap: wrap;
  }
  #calendar.biggerStyle .header {
    padding-top: 110px;
  }
  #calendar.biggerStyle #today-btn {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 11px;
  }
  #calendar.biggerStyle .dateBox {
    padding-right: 0;
    margin-right: 0;
    transform: scale(1);
    width: 100%;
    transform-origin: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .twoNews .main_board_item ul li:hover .link {
    color: #538049;
  }
  .twoNews .main_board_item ul li:hover .link .type {
    background-color: #000;
  }
  .twoNews .main_board_item ul li:hover .link::after {
    width: 100%;
  }
  .twoNews .main_board_item ul li:hover .link .main_board_date {
    opacity: 1;
  }
  .twoNews .main_board_item .main_section_more:hover {
    color: #76b069;
  }
}
@media (max-width: 1200px) {
  .twoNews .main_board_item .main_section_more {
    top: 4px;
  }
  .twoNews .main_board_item .main_section_title {
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 15px;
  }
}
@media (max-width: 1000px) {
  .twoNews {
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .twoNews .main_board_item {
    width: 100%;
    margin-bottom: 50px;
  }
  .twoNews .main_board_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 650px) {
  .twoNews {
    display: block;
    padding: 40px 0;
  }
  .twoNews .main_board_item {
    width: 100%;
  }
  .twoNews .main_board_item .main_board_subject {
    width: calc(100% - 112px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
  .twoNews .main_board_item ul li .link {
    height: auto;
    padding: 0;
    line-height: 1.6;
    align-items: flex-start;
  }
  .twoNews .main_board_item.main_board_item_style2 .main_board_subject {
    padding-left: 0;
    width: calc(100% - 112px);
  }
  .twoNews .main_board_item.main_board_item_style2 ul li .link {
    padding-top: 38px;
  }
  .twoNews .main_board_item.main_board_item_style2 ul li .link .type {
    top: 14px;
    padding: 3px 20px;
  }
}
.jump_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}
.jump_box.breadStyle {
  background: rgba(83, 128, 73, 0.9098039216);
  display: none;
  height: auto;
  left: 50%;
  top: 50%;
  width: auto;
  color: white;
  padding: 36px;
  letter-spacing: 4px;
  min-width: 400px;
  max-width: 600px;
  text-align: center;
  border-radius: 11px;
  transform: translate(-50%, -50%);
  font-size: 18px;
  line-height: 1.6;
}
@media only screen and (max-width: 1200px) {
  .jump_box.breadStyle {
    width: 90%;
    font-size: 16px;
    min-width: 200px;
    padding: 30px;
  }
}
.jump_box .closebg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.jump_box .contentbox {
  position: relative;
  background-color: white;
  height: auto;
  left: 50%;
  top: 50%;
  width: auto;
  color: white;
  padding: 50px;
  letter-spacing: 4px;
  text-align: center;
  border-radius: 32px;
  transform: translate(-50%, -50%);
  font-size: 18px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  width: 500px;
}
.jump_box .contentbox .title {
  color: black;
  font-weight: bold;
  display: block;
  margin-bottom: 60px;
  width: 100%;
  font-size: 24px;
  line-height: 1.4;
}
.jump_box .contentbox span {
  background: transparent;
  transition: none;
}
.jump_box .contentbox .linkButton {
  margin: 0 10px;
  padding-right: 80px;
  letter-spacing: 1px;
}
.jump_box .contentbox .linkButton.cancleButton {
  padding-left: 50px;
  padding-right: 50px;
  background-color: rgba(255, 255, 255, 0.7803921569);
  text-align: center;
  padding-right: 0;
  padding-left: 0;
  width: 145px;
  transition: all 0.3s ease;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (min-width: 1200px) {
  .jump_box .contentbox .linkButton.cancleButton:hover {
    color: #ffffff;
    background-color: #c53a3a;
  }
}
@media only screen and (max-width: 650px) {
  .jump_box .contentbox .linkButton {
    padding-right: 50px;
    margin: 0 2px 10px;
  }
  .jump_box .contentbox .linkButton.cancleButton {
    padding-left: 30px;
    padding-right: 30px;
    width: auto;
    min-width: 110px;
  }
}
@media only screen and (max-width: 1200px) {
  .jump_box .contentbox {
    max-width: 90%;
    letter-spacing: 2px;
    border-radius: 25px;
    padding: 30px 5px;
  }
  .jump_box .contentbox .title {
    margin-bottom: 40px;
    font-size: 20px;
  }
}

.jump_box.show {
  transition: opacity 0.8s ease, transform 0.5s ease 0.2s;
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.jump_box .box {
  left: 50%;
  position: fixed;
  top: 5%;
  padding: 0;
  text-align: left;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  border-radius: 2px;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}
.jump_box .box.show {
  opacity: 1;
}
.jump_box .box img {
  max-height: 85vh;
  margin: 0 auto;
  max-width: 80vw;
}

.jump_box .inner {
  display: block;
  position: relative;
  height: 100%;
  padding-right: 0;
}

.jump_box .closebtn {
  position: absolute;
  background-color: #76b069;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  left: auto;
  width: 72px;
  height: 72px;
  right: 0;
  transform: translateX(108px);
  top: 0;
}
@media only screen and (min-width: 1200px) {
  .jump_box .closebtn:hover {
    background-color: #538049;
  }
  .jump_box .closebtn:hover span {
    background-color: #76b069;
  }
}

.jump_box span {
  position: relative;
  width: 35px;
  height: 1px;
  transform: rotate(34deg);
  background-color: #538049;
  transition: all 0.3s ease;
}

.jump_box span:last-child {
  position: absolute;
  transform: rotate(-34deg);
}

.jump_box a {
  word-break: break-all;
}

@media only screen and (max-width: 1200px) {
  .jump_box .closebtn {
    width: 60px;
    height: 60px;
    transform: translateX(80px);
  }
}
@media only screen and (max-width: 1000px) {
  .jump_box .closebtn {
    width: 60px;
    height: 60px;
    transform: translateY(-75px);
  }
  .jump_box .box {
    top: 100px;
  }
  .jump_box .box img {
    max-width: 90vw;
  }
}
@media only screen and (max-width: 650px) {
  .jump_box .closebtn {
    width: 42px;
    height: 42px;
    transform: translateY(-60px);
  }
  .jump_box span {
    width: 25px;
  }
  .jump_box .box {
    top: 90px;
  }
  .jump_box .box img {
    max-width: 90vw;
  }
}

#cookie {
  position: fixed;
  background-color: #2b2b2b;
  color: white;
  z-index: 800;
  bottom: 0;
  left: 0;
  padding: 40px 7%;
  font-size: 16px;
  line-height: 2;
  border-radius: 0;
  display: none;
  width: 100%;
}
#cookie .box {
  position: relative;
  width: 100%;
  padding-right: 30%;
  DISPLAY: block;
  text-align: justify;
}
#cookie .box .title {
  position: relative;
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
  word-break: keep-all;
}
#cookie .box .memo {
  position: relative;
  opacity: 0.8;
}
#cookie .box .memo a {
  color: #fff;
  text-decoration: underline;
}
#cookie .btn {
  position: absolute;
  right: 7%;
  top: 38px;
  display: flex;
  z-index: 5;
}
#cookie .cookiebtn {
  z-index: 10;
  position: absolute;
  color: white;
  width: 94px;
  height: 94px;
  letter-spacing: 3px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  cursor: pointer;
}
#cookie .cookiebtn span {
  position: relative;
  z-index: 5;
}
#cookie .cookiebtn::before {
  content: "";
  background-color: #538049;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  -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;
}
#cookie .cookiebtn::after {
  content: "";
  background-color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  transform: scale(0.8);
  -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;
  opacity: 0.5;
}
@media only screen and (min-width: 1200px) {
  #cookie .cookiebtn:focus::after {
    transform: scale(1.4);
    opacity: 0;
  }
  #cookie .cookiebtn:hover::before {
    transform: scale(0.9);
  }
  #cookie .cookiebtn:hover::after {
    transform: scale(1.1);
  }
}
#cookie .cookiebtn.confirm {
  right: 7%;
  margin-right: 120px;
}
#cookie .cookiebtn.close {
  position: absolute;
  right: 7%;
}
#cookie .cookiebtn.close::before {
  background-color: transparent;
  border: 2px solid #595959;
}
#cookie .cookiebtn.close::after {
  background-color: transparent;
}
@media only screen and (max-width: 1000px) {
  #cookie {
    border-radius: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 30px 30px;
  }
  #cookie .box .title {
    margin-bottom: 10px;
  }
  #cookie .cookiebtn {
    position: relative;
    right: auto;
    background-color: #538049;
    border-radius: 45px;
    height: 50px;
    text-align: left;
    margin: 0 auto;
    display: block;
    padding-left: 27px;
    width: 200px;
    margin-top: 26px;
    line-height: 48px;
    top: 0;
    transform: none;
  }
  #cookie .cookiebtn.confirm {
    right: auto;
    margin-right: auto;
    margin-left: 0;
  }
  #cookie .cookiebtn.close {
    position: absolute;
    right: auto;
    bottom: 29px;
    top: auto;
    margin-left: 217px;
    background-color: transparent;
    border: 1px solid #888888;
  }
  #cookie .cookiebtn.close::before {
    background-color: #e4e4e4;
    border: 0;
    width: 14px;
    height: 1px;
    transform: rotate(45deg);
    right: 18px;
    border-radius: 0;
    opacity: 0.8;
  }
  #cookie .cookiebtn.close::after {
    background-color: #e4e4e4;
    border: 0;
    width: 14px;
    height: 1px;
    transform: rotate(-45deg);
    right: 18px;
    margin: 0;
    border-radius: 0;
    opacity: 0.8;
  }
  #cookie .cookiebtn::after {
    position: absolute;
    width: 6px;
    height: 8px;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 0;
    border-left: 0;
    border-top: 0;
    right: 23px;
    left: auto;
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    z-index: 5;
    margin-top: -2px;
  }
  #cookie .cookiebtn::before {
    position: absolute;
    width: 18px;
    background-color: white;
    right: 14px;
    top: 50%;
    left: auto;
    height: 18px;
    transform: translateY(-50%);
    opacity: 0.8;
  }
  #cookie .close {
    right: 17px;
    top: 14px;
  }
  #cookie .close::before {
    background-color: white;
  }
  #cookie .close::after {
    background-color: white;
  }
  #cookie .box {
    padding-right: 0;
    font-size: 14px;
  }
}
@media only screen and (max-width: 650px) {
  #cookie .cookiebtn {
    margin-top: 15px;
  }
  #cookie .cookiebtn.confirm {
    width: 100%;
  }
  #cookie .cookiebtn.close {
    position: relative;
    right: auto;
    bottom: 0;
    top: auto;
    width: 100%;
    margin-left: 0;
  }
}

input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.search_box {
  position: relative;
  max-width: 850px;
  width: 80%;
  margin: 0 auto 70px;
}
.search_box .inputBox {
  position: relative;
  height: 49px;
  width: 100%;
  border: 1px solid #cccccc;
  outline: none;
  border-radius: 42px;
  font-size: 16px;
  padding: 5px 100px 5px 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}
.search_box .button_send {
  position: absolute;
  background-color: #76b069;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 16px;
  top: 15px;
  cursor: pointer;
}
.search_box .button_send i {
  position: relative;
  transform: scale(0.85);
}
@media only screen and (max-width: 1200px) {
  .search_box {
    width: 100%;
    margin-bottom: 40px;
  }
}

.contentList {
  position: relative;
  border-top: 3px solid black;
  display: block;
}
.contentList.newsStyle .line .type {
  height: 35px;
  line-height: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.contentList .line {
  position: relative;
  display: flex;
  padding: 20px 0 20px 168px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
}
.contentList .line:nth-child(even) {
  background-color: #f7f7f7;
}
.contentList .line .type {
  position: absolute;
  left: 29px;
  color: white;
  width: 100px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  top: 20px;
  background-color: #538049;
  transition: all 0.3s ease;
}
.contentList .line .title {
  position: relative;
  color: #000;
  line-height: 1.4;
  width: 68%;
}
@media only screen and (max-width: 1650px) {
  .contentList .line .title {
    width: 56%;
  }
}
.contentList .line .title .name {
  position: relative;
  font-size: 18px;
  color: #000;
  transition: all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contentList .line .title .from {
  position: relative;
  opacity: 0.7;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contentList .line .date {
  position: relative;
  opacity: 0.8;
  font-size: 16px;
  white-space: nowrap;
  margin-left: 20px;
  margin-right: 22px;
  TEXT-ALIGN: RIGHT;
  transition: all 0.3s ease;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
}
.contentList .line::after {
  content: "";
  background-color: #538049;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 3;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media only screen and (min-width: 1200px) {
  .contentList .line:hover .type {
    background-color: #000;
  }
  .contentList .line:hover .title .name {
    color: #538049;
  }
  .contentList .line:hover .title .date {
    opacity: 1;
  }
  .contentList .line:hover::after {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .contentList .line {
    padding-left: 145px;
  }
  .contentList .line .type {
    left: 15px;
  }
  .contentList .line .date {
    margin-right: 5px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1000px) {
  .contentList {
    border-top: 2px solid #000;
  }
  .contentList .line .title {
    width: 60%;
  }
  .contentList.newsStyle .line .type {
    top: 18px;
    transform: none;
    width: auto;
    padding: 2px 14px;
    line-height: 29px;
    height: 34px;
    font-size: 14px;
  }
  .contentList .line {
    padding-left: 15px;
    padding-top: 58px;
    padding-bottom: 15px;
    align-items: flex-start;
    padding-right: 15px;
  }
  .contentList .line .type {
    top: 18px;
    transform: none;
    width: auto;
    padding: 2px 14px;
    line-height: 29px;
    height: 34px;
    font-size: 14px;
  }
  .contentList .line .title {
    width: 100%;
  }
  .contentList .line .title .name {
    font-size: 16px;
    display: block;
    text-overflow: unset;
    white-space: normal;
  }
  .contentList .line .title .from {
    font-size: 14px;
    margin-top: 6px;
    text-overflow: unset;
    white-space: normal;
  }
  .contentList .line .date {
    width: 405px;
    white-space: unset;
    margin-right: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 650px) {
  .contentList .line {
    flex-wrap: wrap;
  }
  .contentList .line .date {
    position: relative;
    width: 100%;
    display: block;
    top: auto;
    right: auto;
    height: auto;
    text-align: left;
    margin: 0;
    padding: 12px 0 0;
  }
}

.pageBox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
}
.pageBox .btn {
  position: relative;
  width: 45px;
  height: 45px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 12px;
  cursor: pointer;
  background-color: white;
  -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;
}
.pageBox .btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media only screen and (min-width: 1200px) {
  .pageBox .btn:hover {
    background-color: #76b069;
    border-color: #76b069;
    color: white;
  }
  .pageBox .btn:hover::before {
    background-color: white;
  }
  .pageBox .btn:hover::after {
    background-color: white;
  }
  .pageBox .btn:hover.prev::before, .pageBox .btn:hover.next::before {
    background-color: black;
  }
  .pageBox .btn:hover.prev::after, .pageBox .btn:hover.next::after {
    background-color: black;
  }
}
.pageBox .prevHome {
  position: relative;
  margin-right: 28px;
}
.pageBox .prevHome::before {
  content: "";
  background-color: black;
  height: 9px;
  width: 2px;
  position: relative;
  top: 0px;
  -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;
}
.pageBox .prev {
  position: relative;
}
.pageBox .prev::after {
  content: "";
  position: absolute;
  left: -15px;
  height: 10px;
  width: 1px;
  background-color: black;
  opacity: 0.2;
}
.pageBox .num {
  position: relative;
  display: flex;
  align-items: center;
  color: #a8a8a8;
  margin: 0px 40px;
  padding: 0 100px;
}
.pageBox .num .select_box {
  position: relative;
}
.pageBox .num .all {
  position: relative;
  margin-left: 22px;
  letter-spacing: 2px;
}
.pageBox .num::before {
  content: "";
  background-color: #e0e0e0;
  position: absolute;
  width: 60px;
  height: 1px;
  left: 0;
}
.pageBox .num::after {
  content: "";
  background-color: #e0e0e0;
  position: absolute;
  width: 60px;
  height: 1px;
  right: 0;
}
.pageBox .nextHome {
  position: relative;
  margin-left: 28px;
}
.pageBox .nextHome::after {
  content: "";
  background-color: black;
  height: 9px;
  width: 2px;
  position: relative;
  top: 0px;
  -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;
}
.pageBox .next {
  position: relative;
}
.pageBox .next::after {
  content: "";
  position: absolute;
  right: -15px;
  height: 10px;
  width: 1px;
  background-color: black;
  opacity: 0.2;
}
.pageBox .ui-selectmenu-text {
  font-size: 16px;
  margin-right: 0;
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.7529411765);
}
.pageBox .ui-selectmenu-button.ui-button {
  width: 120px;
}
@media only screen and (max-width: 1000px) {
  .pageBox .num {
    margin: 0px 20px;
    padding: 0 40px;
  }
  .pageBox .num::before {
    width: 20px;
  }
  .pageBox .num::after {
    width: 20px;
  }
}
@media only screen and (max-width: 650px) {
  .pageBox .num {
    margin: 0;
    padding: 0;
  }
  .pageBox .num::before, .pageBox .num::after {
    display: none;
  }
  .pageBox .num .all {
    font-size: 14px;
    margin-left: 4px;
  }
  .pageBox .next {
    position: absolute;
    right: 0;
    overflow: hidden;
  }
  .pageBox .prev {
    position: absolute;
    left: 0;
    overflow: hidden;
  }
  .pageBox .prevHome, .pageBox .nextHome {
    display: none;
  }
}

.btnBottom {
  position: relative;
  display: flex;
  justify-content: center;
}
.btnBottom.btnBottomPay {
  margin-top: -50px;
}
.btnBottom .linkButton {
  width: 250px;
  margin: 0 20px;
}
@media only screen and (max-width: 650px) {
  .btnBottom {
    flex-wrap: wrap;
  }
  .btnBottom .linkButton {
    margin-bottom: 25px;
  }
  .btnBottom .linkButton:last-child {
    margin-bottom: 0;
  }
}

@keyframes move_ani {
  0%, 100% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes icon_rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fancybox-content {
  padding: 50px;
  letter-spacing: 4px;
  text-align: center;
  border-radius: 32px;
}
@media only screen and (max-width: 650px) {
  .fancybox-content {
    padding: 30px 30px;
  }
}

#jumpModal, #jumpModal2 {
  width: 500px;
}
@media only screen and (max-width: 1200px) {
  #jumpModal, #jumpModal2 {
    padding: 30px 5px;
    width: 500px;
    max-width: 90%;
  }
}
#jumpModal.bigger, #jumpModal2.bigger {
  width: 980px;
}
#jumpModal.bigger .title, #jumpModal2.bigger .title {
  text-align: center;
  margin-bottom: 30px;
}
#jumpModal .title, #jumpModal2 .title {
  color: black;
  font-weight: bold;
  display: block;
  margin-bottom: 60px;
  width: 100%;
  font-size: 24px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1200px) {
  #jumpModal .title, #jumpModal2 .title {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
#jumpModal.updataStyle, #jumpModal2.updataStyle {
  width: 980px;
}
#jumpModal.updataStyle .title, #jumpModal2.updataStyle .title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 2px;
}
#jumpModal.updataStyle .sub_title, #jumpModal2.updataStyle .sub_title {
  font-size: 16px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 18px;
}
#jumpModal.updataStyle .memo .box, #jumpModal2.updataStyle .memo .box {
  text-align: left;
  letter-spacing: 2px;
}
#jumpModal.updataStyle .linkButton.centerButton, #jumpModal2.updataStyle .linkButton.centerButton {
  left: 0;
  transform: none;
  margin-top: 40px;
}
#jumpModal.updataStyle .notice, #jumpModal2.updataStyle .notice {
  position: relative;
  text-align: left;
  letter-spacing: 2px;
  line-height: 1.6;
  border-top: 1px solid #d8d8d8;
  padding-top: 20px;
}
#jumpModal.updataStyle .notice b, #jumpModal2.updataStyle .notice b {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  #jumpModal.updataStyle, #jumpModal2.updataStyle {
    padding: 30px 25px;
  }
}
#jumpModal .btnBlock, #jumpModal2 .btnBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#jumpModal .btnBlock .linkButton, #jumpModal2 .btnBlock .linkButton {
  margin: 0 10px;
  letter-spacing: 1px;
}
#jumpModal .btnBlock .linkButton.cancleButton, #jumpModal2 .btnBlock .linkButton.cancleButton {
  background-color: rgba(255, 255, 255, 0.7803921569);
  text-align: center;
  padding-right: 0;
  padding-left: 0;
  width: 145px;
  transition: all 0.3s ease;
  margin-left: 10px;
  margin-right: 10px;
}
#jumpModal .btnBlock .linkButton.cancleButton.needbig, #jumpModal2 .btnBlock .linkButton.cancleButton.needbig {
  width: 170px;
}
@media only screen and (min-width: 1200px) {
  #jumpModal .btnBlock .linkButton.cancleButton:hover, #jumpModal2 .btnBlock .linkButton.cancleButton:hover {
    color: #ffffff;
    background-color: #c53a3a;
  }
}
@media only screen and (max-width: 650px) {
  #jumpModal .btnBlock .linkButton, #jumpModal2 .btnBlock .linkButton {
    margin: 5px 10px;
    width: 150px;
  }
  #jumpModal .btnBlock .linkButton.cancleButton.needbig, #jumpModal2 .btnBlock .linkButton.cancleButton.needbig {
    width: 150px;
  }
}
