/* ====================<< Mode >>==================== */
/* ========== CSS Reset Start (Meyer + Custom) ========== */
/* --- Reset default styles for common HTML elements --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* --- Ensure HTML5 elements are block-level --- */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* --- Set base line-height for body --- */
body {
  line-height: 1;
}

/* --- Remove default list styling --- */
ol, ul {
  list-style: none;
}

/* --- Remove default quote styling --- */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* --- Reset table spacing --- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ========== CSS Reset End ========== */
/* ========== Basic Utility Styles ========== */
/* --- Set font-family for body --- */
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

/* --- Remove underline and default link color --- */
a {
  text-decoration: none;
  color: inherit;
}

/* --- Responsive image scaling --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Remove form element default styles --- */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Show pointer cursor on buttons --- */
button {
  cursor: pointer;
}

/* --- Use border-box for all elements to include padding/border in size --- */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ========== Debug Tools (for development only) ========== */
/* --- Add 1px outline to all elements for layout debugging --- */
/* ====================<< Mode >>==================== */
.wrap {
  margin: 0 auto;
  max-width: 1024px;
}

.bar {
  background-color: rgba(74, 74, 74, 0.5019607843);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  gap: 20px;
}
.bar h1 a {
  background-image: url(../image/logo.png);
  width: 182px;
  height: 36px;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.bar ul {
  width: 200px;
  display: flex;
  justify-content: space-between;
}
.bar ul li a {
  color: #FFFFFF;
  font-family: PingFang TC;
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
}
.bar ul li a:hover {
  color: #00CC99;
  -webkit-text-decoration: 7px underline #00CC99;
          text-decoration: 7px underline #00CC99;
  text-underline-offset: 25px;
}

.nav-link.active {
  color: #00CC99;
  -webkit-text-decoration: 7px underline #00CC99;
          text-decoration: 7px underline #00CC99;
  text-underline-offset: 25px;
}

@media (max-width: 481px) {
  .bar {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }
}
.header {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  background: rgb(50, 50, 41);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 40px;
}
.footer .footerImg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .footerImg a {
  width: 170px;
  height: 36px;
}
.footer .footerImg p {
  color: #9B9B9B;
  text-align: right;
}
.footer .footerMenu {
  display: flex;
  width: 140px;
  justify-content: space-between;
}
.footer .footerMenu a {
  width: 32px;
  height: 32px;
  display: block;
}
.footer .footerMenu a:hover {
  transform: scale(1.2);
  transition: transform 0.5s;
}

@media (max-width: 420px) {
  .footer .footerMenu a {
    width: 25px;
    height: 25px;
    display: block;
  }
}
.titleText {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin: 50px 0 30px;
}
.titleText h2 {
  font-size: 36px;
  color: #9B9B9B;
}
.titleText p {
  font-size: 20px;
  color: #9B9B9B;
}

@media (max-width: 620px) {
  .titleText {
    flex-direction: column;
    align-items: flex-start;
  }
}
.arrowButton {
  width: 226px;
  height: 58px;
  font-size: 20px;
  color: #FFFFFF;
  background: #00CC99;
  text-align: center;
  line-height: 58px;
  text-decoration: none;
  border-radius: 5px;
  animation: blink 1.5s infinite;
}
.arrowButton:hover {
  background: gray !important;
}
.arrowButton .arrow {
  margin-left: 20px;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.form {
  background-color: #EBEBEB;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 30px;
  gap: 50px;
}
.form .context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.form .context p {
  color: #323223;
  font-size: 30px;
  font-family: PingFang TC;
  line-height: 1.2;
}
.form .formStyle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}
.form .formStyle input {
  display: block;
  width: 460px;
  height: 56px;
  color: #9B9B9B;
  background: #FFFFFF;
  font-size: 20px;
  font-family: PingFang TC;
  text-indent: 10px;
  border: none;
  border-radius: 5px;
}
.form .formStyle button {
  width: 140px;
  height: 51px;
  background: #00CC99;
  color: #FFFFFF;
  font-size: 20px;
  font-family: PingFang TC;
  border: none;
  border-radius: 5px;
  letter-spacing: 20px;
  text-indent: 20px;
  cursor: pointer;
}
.form .formStyle button:hover {
  background: gray;
}

.indexHeader {
  background-image: url(../image/bg_index.png);
}
.indexHeader .headerObject {
  height: 484px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding-left: 30px;
}
.indexHeader .headerObject p {
  color: #00CC99;
  font-size: 48px;
  line-height: 1.2;
}
.indexHeader .headerObject .word {
  color: #FFFFFF;
}

@media (max-width: 550px) {
  .indexHeader .headerObject {
    padding: 20px;
    text-align: left;
  }
  .indexHeader .headerObject p {
    font-size: 32px;
    padding-left: 0;
  }
}
@media (max-width: 360px) {
  .indexHeader .headerObject {
    padding: 10px;
    text-align: left;
  }
  .indexHeader .headerObject p {
    font-size: 28px;
    padding-left: 0;
  }
}
.indexMain {
  margin: 60px 40px;
}
.indexMain .swiper {
  padding: 20px 15px;
}
.indexMain .course li {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 28px 22px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.indexMain .course li:hover {
  transform: scale(105%);
  transition: transform 0.5s;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}
.indexMain .course li img {
  width: 100px;
}
.indexMain .course li h3 {
  font-size: 20px;
  color: #4A4A4A;
  line-height: 1.2;
}
.indexMain .course li p {
  color: #9B9B9B;
  line-height: 1.5;
}
.indexMain .tableStyle {
  margin: 0 auto;
  text-align: center;
}
.indexMain .tableStyle th,
.indexMain .tableStyle td {
  width: 235px;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  padding: 14px 22px;
}
.indexMain .tableStyle th {
  background: #EBEBEB;
}
.indexMain .tableStyle span {
  color: #00CC99;
}

@media (max-width: 960px) {
  .indexForm {
    flex-direction: column;
  }
  .indexForm .formStyle,
  .indexForm .formStyle input {
    width: 100%;
  }
  .indexForm .formStyle button {
    width: auto;
  }
}
@media (max-width: 450px) {
  .indexForm .context p {
    font-size: 25px;
  }
}
@media (max-width: 400px) {
  .indexForm .context p {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .indexMain .tableStyle th,
  td {
    padding: 14px 10px;
  }
}
.courseHeader {
  background-image: url(../image/bg_course.png);
  position: relative;
}
.courseHeader::before {
  position: absolute;
  content: "";
  background-image: url(../image/html.png);
  width: 94px;
  height: 132px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 100px;
  right: 150px;
}
.courseHeader::after {
  position: absolute;
  content: "";
  background-image: url(../image/CSS.png);
  width: 94px;
  height: 132px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 100px;
  right: 50px;
}
.courseHeader .headerObject {
  height: 484px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding-left: 30px;
}
.courseHeader .headerObject p {
  color: #FFFFFF;
  font-size: 48px;
  line-height: 0.8;
}
.courseHeader .headerObject p span {
  color: #00CC99;
  font-size: 24px;
}

@media (max-width: 800px) {
  .courseHeader .headerObject p {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .courseHeader::before,
  .courseHeader::after {
    top: 130px;
  }
}
@media (max-width: 400px) {
  .courseHeader .headerObject p,
  .courseHeader .headerObject p span {
    font-size: 20px;
    line-height: 1.5;
  }
}
.courseMain {
  max-width: 620px;
  margin: 50px auto;
  padding: 0 15px;
}
.courseMain .introduce {
  display: flex;
  align-items: center;
  gap: 36px;
}

@media (max-width: 530px) {
  .courseMain .introduce {
    flex-direction: column;
  }
  .courseMain h1 {
    text-align: center;
  }
}
.courseMain .introduce .photo {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background-image: url(../image/teacher.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.courseMain .introduce h1 {
  font-size: 36px;
  font-family: PingFang TC;
  line-height: 1.5;
  color: #00CC99;
}
.courseMain .introduce h1 span {
  color: #323228;
}
.courseMain .introduce ul {
  line-height: 1.5;
  list-style-type: disc;
  font-family: PingFang TC;
}
.courseMain .content ol {
  list-style-type: decimal;
  padding-left: 20px;
  line-height: 1.5;
}
.courseMain .listStyle li {
  height: 60px;
  line-height: 60px;
  text-indent: 30px;
}
.courseMain .listStyle li:nth-child(odd) {
  background: #EBEBEB;
}

.courseForm a {
  display: block;
}

@media (max-width: 700px) {
  .courseForm {
    flex-direction: column;
  }
}
@media (max-width: 420px) {
  .courseForm .context p {
    font-size: 20px;
  }
  .courseForm a {
    width: 60%;
  }
}
.QAHeader {
  background-image: url(../image/bg_QA.png);
}
.QAHeader .headerObject {
  height: 484px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: relative;
  text-align: center;
}
.QAHeader .headerObject p {
  color: #FFFFFF;
  font-size: 48px;
  line-height: 1.2;
}
.QAHeader .headerObject p span {
  color: #00CC99;
  font-size: 24px;
}
.QAHeader .headerObject .search {
  position: relative;
  width: 620px;
}
.QAHeader .headerObject input {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 5px;
  padding: 0 50px 0 20px;
  font-size: 20px;
  background: #FFFFFF;
}
.QAHeader .headerObject button {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  top: 10px;
  right: 10px;
}
.QAHeader .headerObject button img {
  width: 28px;
  height: 28px;
}

@media (max-width: 650px) {
  .QAHeader .headerObject p {
    font-size: 36px;
  }
  .QAHeader .headerObject p span {
    font-size: 20px;
  }
  .QAHeader .headerObject .search {
    width: 90%;
  }
  .QAHeader .headerObject input {
    font-size: 18px;
  }
  .QAHeader .headerObject button img {
    width: 24px;
    height: 24px;
  }
}
.QAMain {
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 0 15px;
}
.QAMain a {
  text-decoration: none;
  color: #9B9B9B;
}
.QAMain .question ul > li:nth-child(odd),
.QAMain .pay ul > li:nth-child(odd),
.QAMain .refund ul > li:nth-child(odd) {
  font-size: 20px;
  color: #323223;
  line-height: 3;
}
.QAMain .question ul > li:nth-child(even),
.QAMain .pay ul > li:nth-child(even),
.QAMain .refund ul > li:nth-child(even) {
  color: #9B9B9B;
  line-height: 2;
}
.QAMain .pay .payList li {
  list-style-type: decimal;
  margin-left: 20px;
}
.QAMain .refund .refundList li {
  list-style-type: disc;
  margin-left: 20px;
}

.QAForm textarea {
  width: 460px;
  height: 202px;
  font-size: 20px;
  line-height: 1.2;
  color: #9B9B9B;
  background: #FFFFFF;
  font-family: PingFang TC;
  border: none;
  border-radius: 5px;
  padding: 10px;
  resize: none;
  overflow: hidden;
}

@media (max-width: 950px) {
  .QAForm {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .QAForm .context p {
    font-size: 30px;
  }
  .QAForm .formStyle,
  .QAForm .formStyle input,
  .QAForm .formStyle textarea {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .QAForm .context p {
    font-size: 25px;
  }
}
mark {
  background-color: yellow;
  color: black;
  font-weight: bold;
  padding: 0 2px;
}

html,
body {
  scroll-behavior: smooth;
}/*# sourceMappingURL=style.css.map */