/* ====================<< 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 {
  max-width: 1920px;
  margin: 0 auto;
  background: #FBFBFB;
  font-family: "Noto Sans TC", "Montserrat", sans-serif;
  line-height: 1.5;
  font-weight: 500;
}

/* ----------------------------- */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
}
nav a {
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
}

.link_JS.active {
  color: #0027D5;
}

/* ----------------------------- */
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .banner_right {
  width: 50%;
  height: 834px;
  background: url("../image/index/banner2.png") no-repeat center/cover;
  display: flex;
  align-items: center;
}
.banner .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding-left: 80px;
}
.banner .title h1 {
  color: #0027D5;
  font-size: 120px;
  font-weight: 900;
}
.banner .title p {
  color: #0027D5;
  font-family: "jf-jinxuan", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

@media (max-width: 1700px) {
  .banner {
    flex-wrap: wrap;
  }
  .banner img {
    width: 100%;
  }
  .banner .banner_right {
    width: 100%;
    height: 100%;
  }
  .banner .title {
    height: 100%;
    margin: 24px;
  }
}
@media (max-width: 800px) {
  .banner .title {
    gap: 10px;
    padding-left: 0;
    margin: 24px auto;
  }
  .banner .title h1 {
    font-size: 52px;
  }
}
/* ----------------------------- */
h2 {
  font-size: 64px;
  font-weight: 700;
}

@media (max-width: 550px) {
  h2 {
    font-size: 48px;
    text-align: center;
  }
}
/* ----------------------------- */
main {
  padding: 80px 12px;
  border-top: 1px solid #6C757D;
  border-bottom: 1px solid #6C757D;
}

@media (max-width: 375px) {
  main {
    padding: 64px 12px;
  }
}
/* ----------------------------- */
footer {
  background: #FFFFFF;
  padding: 24px 0;
}
footer p {
  text-align: center;
}

/* ----------------------------- */
.section_article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.section_article .essay {
  width: 636px;
  padding: 48px 12px;
}

@media (max-width: 1650px) {
  .section_article {
    justify-content: center;
  }
}
/* ----------------------------- */
.essay img {
  width: 100%;
}
.essay time {
  display: block;
  margin: 8px 0;
}
.essay .tags {
  display: flex;
  align-items: center;
  gap: 5px;
}
.essay .tag {
  color: #0027D5;
  font-size: 24px;
}
.essay .tag_important {
  background: #0027D5;
  color: #FFFFFF;
  border: 1px solid #0027D5;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 40px;
  animation: shine1 1.5s infinite ease-in-out;
}
.essay h3 {
  font-weight: 700;
  font-size: 28px;
  margin: 8px 0;
}
.essay .content {
  color: #4B4B4B;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.essay .content a {
  color: #0027D5;
  font-size: 20px;
}
.essay .content a:hover {
  color: darkblue;
  font-weight: bold;
}
.essay .readMore_css {
  display: inline-block;
  color: #4B4B4B;
  border: 1px solid black;
  border-radius: 40px;
  padding: 8px 16px;
}
.essay .readMore_css:hover {
  background: #4B4B4B;
  color: white;
}
.essay .content.readMore {
  display: block;
}

@media (max-width: 400px) {
  .essay .tags {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* ----------------------------- */
.section_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  padding: 80px 20px;
}
.section_link .email {
  font-size: 32px;
}

.icon {
  display: flex;
  gap: 4px;
}
.icon li:hover {
  transform: scale(130%);
  transition: all 0.3s ease;
}

@media (max-width: 450px) {
  .section_link {
    display: none;
  }
}
/* ----------------------------- */
.up {
  font-size: 50px;
  color: rgba(0, 39, 213, 0.6);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 5%;
  right: 5%;
  transition: opacity 0.5s ease;
}
.up.show {
  opacity: 1;
  pointer-events: auto;
}
.up:hover {
  color: #B2BEF2;
}

.index_header {
  position: relative;
  padding-bottom: 230px;
}
.index_header .introduce {
  max-width: 1077px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px 40px;
  font-size: 28px;
  position: absolute;
  right: 100px;
  bottom: 10px;
}
.index_header .introduce .icon {
  display: flex;
  gap: 4px;
}

@media (max-width: 1700px) {
  .index_header {
    margin-bottom: 10px;
    padding-bottom: 0px;
  }
  .index_header .introduce {
    max-width: 100%;
    position: static;
    padding: 40px 24px;
    margin: 0 auto;
  }
}
@media (max-width: 1100px) {
  .index_header .introduce {
    margin: 0 12px;
  }
}
.index_main section {
  border-top: 1px solid #6C757D;
  border-bottom: 1px solid #6C757D;
  padding: 80px 12px;
}
.index_main .serviceCase,
.index_main .blogSelect,
.index_main .successCase,
.index_main .contact {
  max-width: 1296px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.index_main .serviceCase_section {
  border-top: none;
}
.index_main .serviceCase ul {
  width: 1076px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.index_main .serviceCase .card {
  display: flex;
  position: relative;
}
.index_main .serviceCase .card .content {
  max-width: 480px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: #FFFFFF;
  padding: 24px;
}
.index_main .serviceCase .card .line {
  width: 30px;
  height: 2.5px;
  background: #0027D5;
  margin: 20px 0;
}
.index_main .serviceCase .card h3 {
  font-size: 28px;
  font-weight: 700;
}
.index_main .serviceCase .card p {
  color: #4B4B4B;
}
.index_main .serviceCase .reverse {
  flex-direction: row-reverse;
}
.index_main .serviceCase .reverse .content {
  left: 0;
}
.index_main .serviceCase .callMe {
  text-align: end;
  animation: shine2 1s infinite;
}
.index_main .serviceCase .callMe a {
  font-weight: 700;
  font-size: 28px;
}
.index_main .serviceCase .callMe a:hover {
  color: #0027D5 !important;
}
.index_main .serviceCase .callMe .arrow_css {
  font-size: 30px;
}
.index_main .successCase a {
  display: inline-block;
  color: #4B4B4B;
  border: 1px solid black;
  border-radius: 40px;
  padding: 8px 16px;
}
.index_main .successCase a:hover {
  background: #4B4B4B;
  color: white;
}
.index_main .successCase .content {
  display: flex;
  position: relative;
}
.index_main .successCase .content .photo {
  display: inline-block;
  background: #EDEDED;
  padding: 24px;
}
.index_main .successCase .content .card {
  max-width: 526px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 80px 40px;
  font-weight: 700;
}
.index_main .successCase .content .line {
  width: 30px;
  height: 2.5px;
  background: #0027D5;
}
.index_main .successCase .content span {
  color: #0027D5;
}
.index_main .successCase .content .card1 {
  background: #FFFFFF;
  position: absolute;
  top: 30px;
  right: 220px;
}
.index_main .successCase .content .card2 {
  background: #F5F5F5;
  position: absolute;
  bottom: 100px;
  right: 50px;
}
.index_main .successCase .content a {
  color: #0027D5;
  border: 1px solid #0027D5;
  animation: shine1 1.5s infinite ease;
}
.index_main .successCase .content a:hover {
  background: #0027D5 !important;
  color: white !important;
}
.index_main .successCase .menu {
  background: #F5F5F5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px;
  gap: 24px;
}
.index_main .successCase .menu li {
  width: 294px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.index_main .successCase .menu .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid #4B4B4B;
}
.index_main .successCase .menu img {
  display: inline-block;
  margin-right: 8px;
}
.index_main .successCase .menu h3 {
  font-weight: 700;
  font-size: 24px;
}
.index_main .banner form {
  margin: 24px 80px;
  width: 100%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 80px;
}
.index_main .banner form p {
  font-size: 20px;
}
.index_main .banner form span {
  color: #0027D5;
}
.index_main .banner form .input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.index_main .banner form .input input {
  background: #F1F1F1;
  padding: 8px 16px;
}
.index_main .banner form button {
  display: inline-block;
  color: #0027D5;
  border: 1px solid #0027D5;
  border-radius: 40px;
  padding: 8px 16px;
  animation: shine1 1.5s infinite ease;
}
.index_main .banner form button:hover {
  background: #0027D5 !important;
  color: white !important;
}
.index_main .contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.index_main .contact .link {
  padding-bottom: 16px;
  border-bottom: 1px solid black;
}
.index_main .contact .link a {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.index_main .contact .link .mail {
  font-size: 32px;
  text-decoration: underline;
}
.index_main .contact .link span {
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
}
.index_main .contact .link .arrow_css {
  margin-left: auto;
  font-size: 24px;
}
.index_main .contact .link:hover {
  color: #0027D5;
}

@media (max-width: 1300px) {
  .index_main .successCase .content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .index_main .successCase .content .card {
    width: 100%;
  }
  .index_main .successCase .content .card1 {
    position: static;
  }
  .index_main .successCase .content .card2 {
    position: static;
  }
}
@media (max-width: 1100px) {
  .index_main .serviceCase ul {
    width: 100%;
    gap: 32px;
  }
  .index_main .serviceCase .card {
    flex-wrap: wrap;
    justify-content: center;
  }
  .index_main .serviceCase .card .content {
    position: static;
    transform: none;
  }
}
@media (max-width: 750px) {
  .index_main .banner form {
    padding: 40px 24px;
    margin: 12px;
  }
}
@media (max-width: 450px) {
  .index_main .contact .link a {
    display: block;
  }
  .index_main .contact .link img {
    display: inline;
    vertical-align: middle;
  }
  .index_main .contact .link .mail,
  .index_main .contact .link span {
    font-size: 24px;
  }
  .index_main .contact .link .arrow_css {
    display: block;
    margin-left: 0;
    font-size: 24px;
  }
}
.blogSelect_section {
  position: relative;
}
.blogSelect_section .essay {
  width: 100%;
  background: #FBFBFB;
}
.blogSelect_section .arrow_CSS {
  font-size: 44px;
  color: #0027D5;
}
.blogSelect_section .arrow_CSS:hover {
  color: #B2BEF2;
}
.blogSelect_section .leftArrow_position {
  position: absolute;
  bottom: 300px;
  left: 200px;
}
.blogSelect_section .rightArrow_position {
  position: absolute;
  bottom: 300px;
  right: 200px;
}

@media (max-width: 1800px) {
  .blogSelect_section .arrow_container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: end;
    padding: 20px;
  }
  .blogSelect_section .leftArrow_position,
  .blogSelect_section .rightArrow_position {
    position: static;
  }
  .blogSelect_section .rightArrow_position {
    margin-left: 30px;
  }
}
.section_article {
  border-top: 1px solid #6C757D;
  border-bottom: 1px solid #6C757D;
}

.blog_main {
  /* ----------------------------- */
  /* ----------------------------- */
}
.blog_main .search {
  max-width: 1320px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.blog_main .search .searchInput {
  width: 416px;
  height: 56px;
  font-size: 20px;
  border: 1px solid #4B4B4B;
  border-radius: 40px;
  padding: 16px 48px 16px 60px;
}
.blog_main .search .searchIcon {
  font-size: 24px;
  color: #4B4B4B;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.blog_main .search .searchIcon:hover {
  font-size: 30px;
}
.blog_main .container_essay {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  gap: 80px 12px;
}
.blog_main .container_essay .essay {
  max-width: 416px;
  background: #FBFBFB;
}
@media (max-width: 1300px) {
  .blog_main .container_essay {
    justify-content: center;
  }
}
@media (max-width: 375px) {
  .blog_main .container_essay {
    gap: 32px;
  }
}

@media (max-width: 375px) {
  .blog_main {
    padding: 64px 12px;
  }
}
.article_main {
  max-width: 636px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
}
.article_main h3 {
  color: #0027D5;
  font-size: 28px;
  font-weight: 700;
}
.article_main .annotation {
  background: #EDEDED;
  border-radius: 24px;
  padding: 24px;
  font-weight: bold;
}
.article_main .preface,
.article_main .para,
.article_main .conclusion,
.article_main .extend {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article_main .preface .word,
.article_main .para .word,
.article_main .conclusion .word,
.article_main .extend .word {
  color: #0027D5;
}
.article_main .para ul li,
.article_main .extend ul li {
  list-style-position: inside;
  list-style-type: disc;
}
.article_main .para ol li,
.article_main .extend ol li {
  list-style-position: inside;
  list-style-type: decimal;
}
.article_main .para h4 {
  font-weight: 700;
  font-size: 20px;
}
.article_main .para .part {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article_main .extend a {
  color: #0027D5;
}
.article_main .changePage {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article_main .changePage a {
  border: 1px solid #4B4B4B;
  border-radius: 40px;
  padding: 8px 16px;
}
.article_main .changePage a:hover {
  background: #4B4B4B;
  color: white;
}
.article_main .changePage .next {
  margin-left: auto;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@keyframes shine1 {
  0%, 100% {
    background: #0027D5;
    color: #FFFFFF;
  }
  50% {
    color: #0027D5;
    background: #FFFFFF;
  }
}
@keyframes shine2 {
  0%, 100% {
    color: #000000;
  }
  50% {
    color: #FFFFFF;
  }
}
/* ------------------------------ *//*# sourceMappingURL=all.css.map */