@charset "UTF-8";
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: "Microsoft Jhenghei", 微軟正黑體;
}

p {
  margin: 0;
  font-family: "Microsoft Jhenghei", 微軟正黑體;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

html, body {
  font-size: large;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100%;
}

h1 {
  font-size: 1rem;
  letter-spacing: 0.08rem;
  margin: 0 5px;
  color: #222;
}

h2 {
  font-size: 1rem;
  color: #222;
  line-height: 1.3rem;
  letter-spacing: 0.8px;
}

h3 {
  font-size: 1rem;
  color: #565656;
  font-weight: bold;
}

h4 {
  font-size: 1.87rem;
  color: #565656;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

h5 {
  font-size: 0.75rem;
  color: #707070;
  font-weight: 500;
}

h6 {
  font-size: 20px;
  color: rgb(65, 65, 65);
}

@keyframes animate01 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-3000px, 0, 0);
  }
}
@keyframes animate02 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animate03 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animate04 {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.rentClass > .partTittle,
.lesson-part.part,
.lessonText,
.bottestButton {
  visibility: hidden;
}

.partTittle.ready,
.lesson-part.part.ready,
.lessonText.ready,
.bottestButton.ready {
  visibility: initial;
}

.lessInfo .tittle,
.lessInfo .hotSerch {
  animation: animate02 0.3s linear 0.1s, animate03 0.3s linear 0.1s;
  animation-fill-mode: both;
}
.lessInfo .easyInfo {
  animation: animate02 0.3s linear 0.3s, animate03 0.3s linear 0.3s;
  animation-fill-mode: both;
}
.lessInfo .infos {
  animation: animate04 0.3s linear 0.5s, animate03 0.3s linear 0.5s;
  animation-fill-mode: both;
}

.partTittle.ready {
  animation: animate04 0.4s linear, animate03 0.25s linear;
}

.lesson-part.part.ready {
  animation: animate02 0.5s linear 0.3s, animate03 0.3s linear 0.3s;
  animation-fill-mode: both;
}
.lesson-part.part.ready .lesson-buttons {
  animation: animate04 0.3s linear 0.5s, animate03 0.3s linear 0.5s;
  animation-fill-mode: both;
}

.lessonText.ready {
  animation: animate03 0.25s linear;
  animation-fill-mode: both;
}
.lessonText.ready .partTittle {
  animation: animate04 0.4s linear 0.1s;
  animation-fill-mode: both;
}
.lessonText.ready .lessPart {
  animation: animate02 0.3s linear 0.2s, animate03 0.3s linear 0.2s;
  animation-fill-mode: both;
}

.bottestButton.ready {
  animation: animate04 0.3s linear 0.2s, animate03 0.3s linear 0.2s;
  animation-fill-mode: both;
}

.forRender {
  display: none;
}

.right-fixed {
  position: fixed;
  right: 5%;
  bottom: 15%;
  z-index: 5;
}
.right-fixed .share-button {
  display: flex;
  background: #5cb774;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
  flex-direction: column;
  transition: background 0.4s;
}
.right-fixed .share-button .back-side-button {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  background-color: pink;
}
.right-fixed .share-button img {
  height: 32%;
}
.right-fixed .share-button img.scroll {
  height: 25%;
  transform: translateY(-9%);
}
.right-fixed .share-button h1 {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}
.right-fixed .share-button::before {
  content: "";
  position: absolute;
  top: 5.5%;
  height: 3rem;
  width: 3rem;
  border: 1px solid white;
  border-radius: 100%;
  left: 5.5%;
}

.notice {
  display: flex;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  top: 50%;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 0.7rem 1rem;
  background: rgba(0, 0, 0, 0.618);
  transform: translate(-50%, -50%);
  border-radius: 6px;
  transition: opacity 1s, visibility 0s 1s;
}
.notice .succuce h2 {
  color: white;
}
.notice.active {
  visibility: visible;
  transition: opacity 1s;
  opacity: 1;
}

header {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
header .logo {
  display: flex;
  position: absolute;
  top: 18%;
  z-index: 1;
  width: 100%;
  justify-content: center;
}
header .logo h2 {
  color: #5cb774;
}
header .logo > div {
  display: flex;
  width: 100%;
  max-width: 1300px;
}
header .logo > div a > div {
  display: flex;
  position: relative;
  border-radius: 6px;
  padding: 2.3rem 12rem;
  backdrop-filter: blur(2px);
}
header .logo > div a > div img {
  align-self: center;
  height: 2rem;
}
header .logo > div a > div::after {
  content: "";
  position: absolute;
  display: flex;
  border-radius: 6px;
  height: 100%;
  width: 100%;
  background: white;
  box-shadow: 1px 1px 3px 1px rgba(51, 52, 78, 0.1019607843);
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: -1;
}
header .logo h1 {
  font-size: 2rem;
  color: #5cb774;
  font-weight: bold;
}
header .svgAnimte {
  position: relative;
  display: flex;
  width: 5000px;
  height: 270px;
  bottom: 0;
  background-image: url("https://isha.org.tw/Msite/tech/image/tech_serch/headerSVG01.svg");
  background-repeat: repeat-x;
  background-size: contain;
  animation: animate01 200s linear infinite;
  background-color: #d0eae9;
}
header .bot {
  display: flex;
  height: 100px;
  width: 100vw;
}
header .bot img {
  object-position: top;
  object-fit: contain;
  width: 100%;
}
header .book {
  display: flex;
  width: 400px;
  height: 270px;
  background-image: url("https://isha.org.tw/Msite/tech/image/tech_serch/headerSVG02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: animate02 7s linear infinite;
  right: 10%;
  top: 85px;
  position: absolute;
}
header .mainNav {
  position: absolute;
  display: flex;
  width: 100%;
  height: fit-content;
  left: 0;
  bottom: 8%;
  justify-content: center;
  align-items: center;
}
header .mainNav .menu {
  display: flex;
  max-width: 1300px;
  width: 100%;
  border-radius: 25px;
  background: white;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 1px 8px rgba(0, 0, 0, 0.08);
}
header .mainNav .menu .menu-button {
  display: flex;
  height: 4rem;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: background-color 0.35s, transform 0.5s;
  border-radius: 10px;
  margin: 0 0.3%;
}
header .mainNav .menu .menu-button h1 {
  transition: color 0.35s;
}
header .mainNav .menu .menu-button a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
header .mainNav .menu .menu-button:first-child {
  margin-left: 25px;
}
header .mainNav .menu .menu-button:last-child {
  margin-right: 25px;
}
header .mainNav .menu .menu-button.active {
  background-color: #5cb774;
  transform: translateY(-5px);
}
header .mainNav .menu .menu-button.active h1 {
  color: white;
}

.innerHtml {
  display: flex;
  width: 100%;
  height: fit-content;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}
.innerHtml > .tittle {
  margin: 2rem 0 0rem;
  max-width: 1300px;
  width: 100%;
  display: flex;
}
.innerHtml > .tittle h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: bold;
  color: #0d1f2c;
}
.innerHtml > .Buttons {
  margin: 1rem 0 2rem;
  max-width: 1300px;
  width: 100%;
  display: flex;
  background: linear-gradient(to right, #19B6A9, #19B6A9);
  padding: 1rem;
  border-radius: 50px;
  align-items: center;
}
.innerHtml > .Buttons p {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: bold;
  color: rgb(156, 156, 156);
}
.innerHtml > .Buttons .button {
  align-items: center;
  display: flex;
  border: 1px solid rgba(144, 190, 171, 0.8901960784);
  padding: 0.5rem 1.3rem;
  background-color: white;
  cursor: pointer;
}
.innerHtml > .Buttons .button p {
  transition: 0.5s color;
}
.innerHtml > .Buttons .button span {
  height: 100%;
  align-items: center;
  display: flex;
  transform: translateY(3px);
  transition: 0.5s color;
}
.innerHtml > .Buttons .button .material-symbols-outlined {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: rgb(156, 156, 156);
}
.innerHtml > .Buttons .button:nth-child(1) {
  border-radius: 30px 0px 0 30px;
  border-right: 0px;
}
.innerHtml > .Buttons .button:nth-last-child(1) {
  border-radius: 0px 30px 30px 0px;
}
.innerHtml > .Buttons .button.active p {
  color: rgb(11, 183, 171);
}
.innerHtml > .Buttons .button.active .material-symbols-outlined {
  color: rgb(11, 183, 171);
}
.innerHtml > .Buttons .input {
  display: flex;
  height: 3.5rem;
  flex: 1;
  margin-left: 1rem;
  margin-right: 4rem;
  position: relative;
  align-items: center;
}
.innerHtml > .Buttons .input input {
  height: 100%;
  width: 100%;
  border: initial;
  border-radius: 4px;
  padding: 0 1rem;
  font-size: 2rem;
  font-weight: bold;
  background-color: #e0ebe8;
  cursor: pointer;
  color: rgba(62, 102, 122, 0.6431372549);
}
.innerHtml > .Buttons .input input::placeholder {
  font-size: 2.1rem;
  font-weight: bold;
}
.innerHtml > .Buttons .input input:focus {
  border: 2px solid #0189f8;
  outline: none;
  background-color: white;
}
.innerHtml > .Buttons .input input:focus ~ span {
  background-color: white;
  border-right: 2px solid #0189f8;
}
.innerHtml > .Buttons .input span {
  position: absolute;
  height: fit-content;
  width: fit-content;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  line-height: 3rem;
  font-size: 3rem;
  color: rgb(192, 73, 73);
}
.innerHtml .hotSerch {
  display: flex;
  flex-direction: column;
  max-width: 1300px;
  width: 100%;
  margin: 0.5rem 0 1rem;
}
.innerHtml .hotSerch > .tittle {
  margin-right: 1rem;
}
.innerHtml .hotSerch > .tittle h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #259797;
  text-wrap: nowrap;
}
.innerHtml .hotSerch .hotbox {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.innerHtml .hotSerch .hotbox h2 {
  line-height: initial;
  background-color: #e1ebe8;
  padding: 0.3rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  text-wrap: nowrap;
  font-size: 1.2rem;
}
.innerHtml .appearData {
  margin: 0rem;
  width: 100%;
  display: flex;
  background-color: #f5f5f5;
  justify-content: center;
  min-height: 100dvh;
}
.innerHtml .appearData > .lessones {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  max-width: 1300px;
  animation: animate02 0.3s linear 0.1s, animate03 0.3s linear 0.1s;
  animation-fill-mode: both;
}
.innerHtml .appearData > .lessones .all-result {
  display: flex;
  justify-content: center;
  width: 100%;
}
.innerHtml .appearData > .lessones .all-result p {
  color: rgb(28, 168, 75);
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
}
.innerHtml .appearData > .lessones .lesson {
  background-color: white;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
}
.innerHtml .appearData > .lessones .lesson > .partTittle {
  border-bottom: 1px solid #19B6A9;
  display: flex;
  position: relative;
  padding: 0 0 0.7rem 0;
  margin-bottom: 1rem;
}
.innerHtml .appearData > .lessones .lesson > .partTittle h3 {
  font-size: 2rem;
  color: #525252;
}
.innerHtml .appearData > .lessones .lesson > .partTittle span {
  width: 20%;
  height: 2px;
  background: #19B6A9;
  position: absolute;
  top: 100%;
}
.innerHtml .appearData > .lessones .lesson > span {
  display: block;
  width: 100%;
  height: 3rem;
  background-color: #f5f5f5;
}
.innerHtml .appearData > .lessones .lesson .lessonData {
  padding: 0.5rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 10px;
  position: relative;
  margin-bottom: 0.5rem;
  transition: 0.25s background-color ease;
}
.innerHtml .appearData > .lessones .lesson .lessonData > h2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: initial;
  color: #525252;
}
.innerHtml .appearData > .lessones .lesson .lessonData a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.innerHtml .appearData > .lessones .lesson .lessonData .bottonInfo {
  display: flex;
  align-items: flex-end;
}
.innerHtml .appearData > .lessones .lesson .lessonData .bottonInfo .time p {
  font-size: 1rem;
  color: #565656;
}
.innerHtml .appearData > .lessones .lesson .lessonData .bottonInfo > p {
  background-color: #243f5e;
  display: flex;
  align-items: center;
  color: white;
  width: fit-content;
  font-size: 1.2rem;
  border-radius: 5px;
  letter-spacing: 0.1rem;
  padding: 0.5rem 1rem;
  margin-left: auto;
  transition: transform 0.15s ease;
  pointer-events: none;
}
.innerHtml .appearData > .lessones .lesson .lessonData .bottonInfo > p .material-symbols-outlined.touch {
  color: white;
  font-size: 1.3rem;
  margin-left: 0.2rem;
}
@media only screen and (min-width: 769px) {
  .innerHtml .appearData > .lessones .lesson .lessonData:hover {
    background-color: #f4fcfd;
  }
  .innerHtml .appearData > .lessones .lesson .lessonData:hover .bottonInfo > p {
    transform: translateY(-5px);
  }
}
.innerHtml .appearData > .lessones .lesson .hotSerch {
  display: flex;
  flex-direction: column;
  max-width: 1300px;
  width: 100%;
  margin: 0.5rem 0 0.5rem;
}
.innerHtml .appearData > .lessones .lesson .hotSerch .hotbox {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.innerHtml .appearData > .lessones .lesson .hotSerch .hotbox h4 {
  line-height: initial;
  background-color: #e1ebe8;
  padding: 0.3rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  white-space: normal;
  word-break: break-word;
  font-size: 1.2rem;
}

footer {
  background: #f5f5f5;
  display: flex;
  width: 100%;
  flex-direction: column;
  position: relative;
}
footer > .top {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 3%;
  width: 100%;
}
footer > .top h3 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  color: #565656;
  letter-spacing: 2px;
  font-size: 1.15rem;
  margin-bottom: 0.8em;
}
footer > .top > span {
  width: 100%;
  max-width: 1300px;
  display: block;
  background-color: #e3e3e3;
  height: 1px;
  margin: 0 auto;
}
footer .inner {
  width: 100%;
  max-width: 1300px;
  display: flex;
  margin: 3rem auto 0;
  justify-content: flex-start;
}
footer .inner > div {
  display: flex;
  margin: 0rem 9rem 3rem 0px;
  flex-direction: column;
  align-items: center;
  padding: 0rem 0rem 0;
  border-radius: 8px;
  height: fit-content;
}
footer .inner > div > div {
  display: flex;
  width: fit-content;
  flex-direction: column;
}
footer .inner > div h3 {
  color: #565656;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
footer .inner > div h6 {
  color: #000;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
footer .copyright {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}
footer .copyright p {
  margin: 0 0 1rem 0;
  font-size: 0.8rem;
  display: inline-block;
  width: fit-content;
}

@media only screen and (min-width: 769px) {
  header .mainNav .menu .menu-button:hover {
    background-color: #5cb774;
    transform: translateY(-5px);
  }
  header .mainNav .menu .menu-button:hover h1 {
    color: white;
  }
  .right-fixed .share-button:hover {
    background: #4f9d63;
  }
  .innerHtml > .Buttons .button:hover p {
    color: rgb(11, 183, 171);
  }
  .innerHtml > .Buttons .button:hover span {
    color: rgb(11, 183, 171) !important;
  }
  footer .inner > div > div h3:first-child {
    font-size: inherit;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  html, body {
    font-size: smaller;
  }
  .innerHtml {
    padding: 0 1.5%;
  }
  .right-fixed {
    bottom: 5%;
  }
}
@media only screen and (max-width: 768px) {
  html, body {
    font-size: small;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h5 {
    font-size: 1rem;
  }
  .right-fixed {
    bottom: 5%;
  }
  .right-fixed img {
    height: 46%;
  }
  .right-fixed h1 {
    display: none;
  }
  header .logo {
    top: 0;
  }
  header .logo h2 {
    height: 2.5rem;
    font-size: 1.1rem;
  }
  header .logo > div a > div {
    border-radius: 0;
    height: 60px;
    width: 100vw;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  header .logo > div a > div::after {
    border-radius: 0px;
    opacity: 1;
  }
  header .logo h1 {
    font-size: 2rem;
  }
  header .logo > div a > div img {
    height: 2.1rem;
  }
  header .book {
    width: 60%;
    right: -40px;
  }
  header .bot {
    height: 80px;
  }
  header .mainNav {
    bottom: initial;
    top: 75px;
    width: 100%;
    justify-content: flex-start;
  }
  header .mainNav .menu {
    background: none;
    box-shadow: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: fit-content;
    border-radius: initial;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 0;
    padding-left: 5px;
  }
  header .mainNav .menu::-webkit-scrollbar {
    display: none;
  }
  header .mainNav .menu .menu-button {
    margin: 5px 5px 0px 0;
    width: 29vw;
    height: 4.8rem;
    background: white;
  }
  header .mainNav .menu .menu-button:first-child {
    margin-left: initial;
  }
  header .mainNav .menu .menu-button:last-child {
    margin-right: initial;
  }
  header .mainNav .menu .menu-button.active {
    background-color: #5cb774;
    transform: initial;
    order: -1;
  }
  .innerHtml .tittle {
    padding: 0 2.5%;
  }
  .innerHtml .tittle h1 {
    margin: 0;
    font-size: 2.2rem;
  }
  .innerHtml > .hotSerch {
    flex-direction: column;
    max-width: 100%;
    padding: 0 2.5%;
  }
  .innerHtml > .hotSerch .hotbox h2 {
    text-wrap: wrap;
    font-size: 1.3rem;
  }
  .innerHtml .Buttons {
    margin: 0;
    flex-direction: column;
    border-radius: 5px;
    width: 95%;
  }
  .innerHtml .Buttons .button:nth-child(1) {
    border-radius: 30px;
    margin-bottom: 0.5rem;
    justify-content: center;
    padding: 0.3rem 2rem;
  }
  .innerHtml .Buttons .input {
    width: 100%;
    margin: 0;
  }
  .innerHtml .Buttons .input input {
    padding: 0.7rem 0 0.7rem 1rem;
    font-size: 1.8rem;
  }
  .innerHtml .Buttons .input input::placeholder {
    font-size: 1.8rem;
  }
  .innerHtml .appearData {
    margin-top: 1rem;
  }
  .innerHtml .appearData > .lessones .lesson {
    padding: 1.3rem 2.5%;
  }
  .innerHtml .appearData > .lessones .lesson .hotSerch .hotbox h4 {
    text-wrap: initial;
    white-space: normal;
    word-break: break-word;
  }
  .innerHtml .appearData > .lessones .lesson .lessonData .bottonInfo {
    margin-top: 1.5rem;
  }
  .innerHtml .appearData > .lessones .lesson .lessonData .bottonInfo .time p {
    font-size: 1.2rem;
  }
  footer > .top {
    margin-top: 10%;
  }
  footer > .top h3 {
    width: 96%;
    font-size: 1.3rem;
  }
  footer .inner {
    flex-direction: column;
    width: 95%;
    align-items: flex-start;
  }
  footer .inner > div h3 {
    font-size: 1.2rem;
  }
  footer .inner > div h6 {
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=tech_lesson_all.css.map */
