:root {
  --color-primary: #0083C7;
  --color-primary-hover: #006FA8;
  --color-primary-disable: #76B6D8;
  --color-secondary: #FFDA23;
  --color-secondary-hover: #CCAB08;
  --color-secondary-disable: #FFE97E;
  --color-tertiary: #F8656F;
  --color-tertiary-hover: #AF4148;
  --color-tertiary-disable: #FF989F;
  --color-light: #F2F2F2;
  --color-light-hover: #DBDBDB;
  --color-light-disable: #F9F9F9;
  --color-dark: #001F2E;
  --color-dark-hover: #000F16;
  --color-dark-disable: #385461;
  --color-greyscale1: #C5C5C5;
  --color-greyscale2: #999999;
  --color-greyscale3: #ECECEC;
  --color-universal-white: #FFFFFF;
  --color-universal-black: #000000;
  --color-gradient-primary: linear-gradient(#0083C7, #004161);
}

@font-face {
  font-family: "Roboto";
  font-weight: 100;
  src: url("/assets/fonts/Roboto-Thin.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 300;
  src: url("/assets/fonts/Roboto-Light.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  src: url("/assets/fonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  src: url("/assets/fonts/Roboto-Medium.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  src: url("/assets/fonts/Roboto-Bold.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 900;
  src: url("/assets/fonts/Roboto-Black.ttf");
}
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,
select,
input,
textarea,
button {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  pointer-events: none;
}

a {
  text-decoration: none;
  vertical-align: middle;
}

button {
  background: none;
  cursor: pointer;
}

i {
  font-style: normal;
}

strong {
  font-weight: 700;
}

select,
input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  outline: none;
}

.grid-1,
.grid-2,
.grid-4 {
  max-width: 1264px;
  margin-inline: auto;
  padding-inline: 32px;
  display: flex;
  flex-flow: row wrap;
  gap: 32px;
}

.grid-1 > .col {
  flex: 1;
}

.grid-2 > .col {
  flex: 1 584px;
}

.grid-4 > .col {
  flex: 1 276px;
}

@media (max-width: 1200px) {
  .grid-1,
  .grid-2,
  .grid-4 {
    max-width: 768px;
  }
  .grid-2 > .col {
    flex: 1 336px;
  }
  .grid-4 > .col {
    flex: 1 152px;
  }
}
@media (max-width: 704px) {
  .grid-1,
  .grid-2,
  .grid-4 {
    max-width: 360px;
    gap: 16px;
    padding-inline: 16px;
  }
  .grid-2 > .col {
    flex: 1 156px;
  }
  .grid-4 > .col {
    flex: 1 70px;
  }
}
.ico {
  background-repeat: no-repeat;
  background-position: center;
}
.ico-bn {
  background-image: var(--ico-bn);
}

.card {
  --ico-bn: url(/assets/images/icons/bn1-1.png);
  min-height: 158px;
  border: 1px solid var(--color-greyscale1);
  background-color: var(--color-universal-white);
  color: var(--color-universal-black);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:hover, .card.active {
  --ico-bn: url(/assets/images/icons/bn1-2-2.png);
  color: var(--color-universal-white);
}
.card:hover > .subtitle, .card.active > .subtitle {
  color: var(--color-primary-disable);
}
.card > .subtitle {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 32px;
}
.card > .title {
  font-size: 2.4rem !important;
  font-weight: bold;
  letter-spacing: -0.36px !important;
}
.card.icon {
  min-width: 180px;
  min-height: 212px;
  border: none;
  background-color: var(--color-light-disable);
  padding: 24px 16px;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}
.card.icon > i {
  min-width: 64px;
  min-height: 64px;
  border-radius: 32px;
  background-color: var(--color-universal-white);
  margin-bottom: 16px;
}
.card.icon > .title {
  letter-spacing: 0px;
}
.card.icon > .text {
  display: none;
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin-top: 16px;
}
.card.icon:hover, .card.icon.active {
  min-width: 500px;
  background-color: var(--color-universal-white);
  padding: 24px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1607843137);
}
.card.icon:hover > i, .card.icon.active > i {
  --color-primary-disable: #76B6D81A;
  background-color: var(--color-primary-disable);
}
.card.icon:hover > .title, .card.icon.active > .title {
  color: var(--color-universal-black);
}
.card.icon:hover > .text, .card.icon.active > .text {
  display: block;
  color: var(--color-universal-black);
}

@media (max-width: 1200px) {
  .card.icon.active {
    max-width: unset;
    flex: 1 500px;
  }
}
@media (max-width: 704px) {
  .card {
    --ico-bn: url(/assets/images/icons/bn1-2-1.png);
    max-width: 156px;
    min-height: 148px;
    padding: 16px;
  }
  .card > .title {
    font-size: 1.6rem;
    letter-spacing: -0.24px;
  }
  .card:hover, .card.active {
    --ico-bn: url(/assets/images/icons/bn1-2-1.png);
  }
  .card.icon {
    flex: 1 328px;
    min-height: 145px;
    background-color: var(--color-universal-white);
    padding: 16px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1607843137);
  }
  .card.icon:hover, .card.icon.active {
    min-width: 328px;
    min-height: 145px;
    background-color: var(--color-universal-white);
    padding: 16px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1607843137);
  }
  .card.icon > i {
    min-width: 48px;
    min-height: 48px;
    border-radius: 24px;
    margin-bottom: 12px;
    --color-primary-disable: #76B6D81A;
    background-color: var(--color-primary-disable);
  }
  .card.icon > .title, .card.icon:hover > .title, .card.icon.active > .title {
    font-size: 2rem !important;
  }
  .card.icon > .text, .card.icon:hover > .text, .card.icon.active > .text {
    display: block;
    font-size: 1.4rem;
    margin-top: 12px;
    overflow: hidden;
  }
}
.list {
  flex: 328px;
  min-height: 322px;
  border: 1px solid var(--color-greyscale1);
  background-color: var(--color-universal-white);
  display: flex;
  flex-direction: column;
}
.list > .title {
  min-height: 117px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: -0.036rem;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
  text-align: center;
}
.list > .title ~ ul {
  flex: 1;
  background-color: var(--color-light-disable);
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding: 24px 23px 24px 35px;
}
.list > .title ~ ul > li {
  list-style: disc;
  word-break: break-word;
}
.list > .title ~ ul > li::marker {
  color: var(--color-primary);
}
.list > .title ~ ul > li + li {
  margin-top: 16px;
}

@media (max-width: 704px) {
  .list {
    min-height: 276px;
  }
  .list > .title {
    min-height: 92px;
    font-size: 2rem !important;
  }
  .list > .title p:nth-child(n+2) {
    font-size: 1.2rem !important;
  }
}
.intro__card {
  height: 400px;
  width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.intro__card > .caption {
  height: 144px;
  width: 100%;
  background-color: #000;
  opacity: 0.6;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro__card > .caption > .title {
  color: #fff;
  font-size: 2.4rem;
}
.intro__card > .caption > .text {
  color: #fff;
  font-size: 1.6rem;
}

/*--------------------------------header--------------------------------*/
.header {
  --logo: url("/assets/images/logo/logo_1_w.svg");
  width: 100%;
  height: 72px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
}
.header.fixed, .header:hover {
  --logo: url("/assets/images/logo/logo_1.svg");
  border-bottom: 1px solid var(--color-greyscale3);
  background-color: var(--color-universal-white);
}
.header.fixed > .grid-1 > .col > .menu a, .header:hover > .grid-1 > .col > .menu a {
  color: var(--color-universal-black);
  opacity: 1;
}
.header > .btn-menu,
.header > .grid-1 > .col > .menu > .btn-close {
  display: none;
}
.header > .btn-menu {
  background-image: var(--ico-menu);
  float: right;
}
.header > .grid-1 {
  height: 100%;
  align-items: center;
}
.header > .grid-1 > .col {
  height: 100%;
  display: flex;
  align-items: center;
}
.header > .grid-1 > .col > .logo::before {
  display: block;
  width: 120px;
  height: 40px;
  content: "";
  background-image: var(--logo);
}
.header > .grid-1 > .col > .menu {
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 40px;
}
.header > .grid-1 > .col > .menu > .btn-close {
  background-image: var(--ico-close);
}
.header > .grid-1 > .col > .menu a {
  font-size: 1.6rem;
  color: var(--color-universal-white);
  opacity: 0.6;
}
.header > .grid-1 > .col > .menu > a:hover, .header > .grid-1 > .col > .menu > a.active {
  color: var(--color-primary) !important;
  font-weight: normal;
}
.header > .grid-1 > .col > .menu > .collapse {
  display: flex;
  align-items: center;
  height: 100%;
}
.header > .grid-1 > .col > .menu > .collapse::after {
  min-width: 120px;
  height: 16px;
  content: "";
  position: fixed;
  top: 70px;
}
.header > .grid-1 > .col > .menu > .collapse:hover > .sub-menu {
  display: flex;
}
.header > .grid-1 > .col > .menu > .collapse:hover > a {
  color: var(--color-primary);
  font-weight: normal;
}
.header > .grid-1 > .col > .menu > .collapse > .sub-menu {
  display: none;
  flex-direction: column;
  min-width: 120px;
  padding: 16px;
  gap: 12px;
  position: fixed;
  top: 72px;
  background-color: var(--color-universal-white);
  font-size: 1.6rem;
  transform: translateX(-40px);
}
.header > .grid-1 > .col > .menu > .collapse > .sub-menu > a:hover, .header > .grid-1 > .col > .menu > .collapse > .sub-menu > a.active {
  color: var(--color-primary) !important;
}
.header > .grid-1 > .col > .menu > .collapse > a.active {
  color: var(--color-primary) !important;
  font-weight: normal;
}

@media (max-width: 1200px) {
  .header {
    --ico-menu: url("/assets/images/icons/menu1-2.png");
    --ico-close: url("/assets/images/icons/close1-2.png");
  }
  .header.fixed, .header:hover {
    --ico-menu: url("/assets/images/icons/menu2-2.png");
  }
  .header > .grid-1 > .col {
    justify-content: center;
  }
  .header > .grid-1 > .col > .menu {
    display: none;
  }
  .header > .grid-1 > .col > .menu > .collapse {
    display: block;
    align-items: center;
    height: initial;
  }
  .header > .grid-1 > .col > .menu > .collapse:after {
    content: unset;
  }
  .header > .grid-1 > .col > .menu > .collapse:hover > a {
    color: var(--color-primary) !important;
  }
  .header > .grid-1 > .col > .menu > .collapse > a {
    font-weight: bold;
  }
  .header > .grid-1 > .col > .menu > .collapse > a.active {
    font-weight: bold;
    color: var(--color-primary) !important;
  }
  .header > .grid-1 > .col > .menu > .collapse > .sub-menu {
    display: flex;
    position: relative;
    padding: 0;
    margin-top: 24px;
    top: 0;
    transform: unset;
  }
  .header > .grid-1 > .col > .menu > .collapse > .sub-menu > a:hover {
    font-weight: bold;
  }
  .header > .grid-1 > .col > .menu > a {
    font-weight: bold;
  }
  .header > .btn-menu {
    display: block;
    width: 32px;
    height: 32px;
    transform: translateY(-52px) translateX(-32px);
  }
  .header.active > .btn-menu {
    display: none;
  }
  .header.active > .grid-1 > .col > .menu {
    display: flex;
    justify-content: start;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    min-width: 360px;
    min-height: 1024px;
    background-color: var(--color-universal-white);
    padding: 20px 32px;
    align-items: start;
  }
  .header.active > .grid-1 > .col > .menu a {
    color: var(--color-universal-black);
    opacity: 1;
  }
  .header.active > .grid-1 > .col > .menu > .btn-close {
    display: block;
    width: 32px;
    height: 32px;
    align-self: end;
  }
}
@media (max-width: 360px) {
  .header {
    --ico-menu: url("/assets/images/icons/menu1-1.png");
    --logo: url("/assets/images/logo/logo_2_w.svg");
    height: 56px;
  }
  .header.fixed, .header:hover {
    --ico-menu: url("/assets/images/icons/menu2-1.png");
    --logo: url("/assets/images/logo/logo_2.svg");
  }
  .header > .grid-1 > .col > .logo::before {
    width: 96px;
    height: 32px;
  }
  .header > .btn-menu {
    width: 24px;
    height: 24px;
    transform: translateY(-40px) translateX(-16px);
  }
}
/*--------------------------------main--------------------------------*/
.wrapper > .main > .sub-light-menu > .grid-1 > .col > a:hover, .wrapper > .main > .sub-light-menu > .grid-1 > .col > a.active {
  color: var(--color-primary);
}
.wrapper > .main > .sub-light-menu > .grid-1 > .col > a:hover::after, .wrapper > .main > .sub-light-menu > .grid-1 > .col > a.active::after {
  height: 2px;
  width: 100%;
  display: block;
  content: "";
  background-color: var(--color-primary);
  transform: translateY(calc((48px - 1.4rem) / 2 - 2px));
}

/*--------------------------------footer--------------------------------*/
.footer {
  --logo: url("/assets/images/logo/logo_1_g.svg");
  --arrow: url("/assets/images/icons/more1-2.png");
  background-color: var(--color-light);
  padding-block: 24px;
  min-height: 134px;
}
.footer > .grid-1 > .col {
  display: flex;
  flex-flow: row wrap;
}
.footer > .grid-1 > .col .logo {
  content: var(--logo);
}
.footer > .grid-1 > .col .logo ~ p {
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--color-greyscale2);
}
.footer > .grid-1 > .col > .menu {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: start;
  gap: 32px;
}
.footer > .grid-1 > .col > .menu > a {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: var(--color-greyscale2);
}
.footer > .grid-1 > .col > .menu > a > .ico-arrow {
  display: flex;
  width: 24px;
  height: 24px;
  background-color: var(--color-universal-white);
  border-radius: 12px;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
}
.footer > .grid-1 > .col > .menu > a > .ico-arrow::after {
  display: block;
  content: var(--arrow);
  width: 24px;
  height: 24px;
}

@media (max-width: 704px) {
  .footer {
    --logo: url("/assets/images/logo/logo_2_g.svg");
    --arrow: url("/assets/images/icons/more1-1.png");
    min-height: 138px;
  }
  .footer > .grid-1 > .col {
    gap: 24px;
  }
  .footer > .grid-1 > .col .logo ~ p {
    margin-top: 8px;
    font-size: 1.2rem;
  }
  .footer > .grid-1 > .col > .menu {
    justify-content: start;
  }
  .footer > .grid-1 > .col > .menu > a {
    font-size: 1.2rem;
  }
  .footer > .grid-1 > .col > .menu > a > .ico-arrow {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-left: 8px;
  }
  .footer > .grid-1 > .col > .menu > a > .ico-arrow:after {
    width: 16px;
    height: 16px;
  }
}
.ico.ico-wd1, .ico.ico-wd2, .ico.ico-wd3, .ico.ico-wd4, .ico.ico-wd5, .ico.ico-wd6, .ico.ico-wd7, .ico.ico-wd8 {
  display: flex;
  min-width: 32px;
  min-height: 32px;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
}
.ico.ico-wd1 {
  background-color: rgba(0, 111, 168, 0.1019607843);
}
.ico.ico-wd1::after {
  content: url("/assets/images/wd/wd1-1.png");
}
.ico.ico-wd2 {
  background-color: rgba(0, 131, 199, 0.1019607843);
}
.ico.ico-wd2::after {
  content: url("/assets/images/wd/wd2-1.png");
}
.ico.ico-wd3 {
  background-color: rgba(118, 182, 216, 0.1019607843);
}
.ico.ico-wd3::after {
  content: url("/assets/images/wd/wd3-1.png");
}
.ico.ico-wd4 {
  background-color: rgba(0, 31, 46, 0.1019607843);
}
.ico.ico-wd4::after {
  content: url("/assets/images/wd/wd4-1.png");
}
.ico.ico-wd5 {
  background-color: rgba(56, 84, 97, 0.1019607843);
}
.ico.ico-wd5::after {
  content: url("/assets/images/wd/wd5-1.png");
}
.ico.ico-wd6 {
  background-color: rgba(197, 197, 197, 0.1019607843);
}
.ico.ico-wd6::after {
  content: url("/assets/images/wd/wd6-1.png");
}
.ico.ico-wd7 {
  background-color: rgba(255, 218, 35, 0.1019607843);
}
.ico.ico-wd7::after {
  content: url("/assets/images/wd/wd7-1.png");
}
.ico.ico-wd8 {
  background-color: rgba(255, 152, 159, 0.1019607843);
}
.ico.ico-wd8::after {
  content: url("/assets/images/wd/wd8-1.png");
}

.wrapper {
  min-height: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.wrapper #content1 {
  padding-top: 72px;
}
.wrapper > .main {
  flex: 1;
}
.wrapper > .main .index_layout > .grid-4 > .col.mf {
  flex: 1 276px;
  cursor: default;
}
.wrapper > .main :is(.section1, .section2, .section3) .title {
  font-size: 3.2rem;
  font-weight: bold;
}
.wrapper > .main :is(.section1, .section2, .section3) .title > span {
  color: var(--color-primary);
}
.wrapper > .main :is(.section1, .section2, .section3) .title:has(+ .title_info_box) {
  margin-bottom: 40px;
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1:has(.card.icon) {
  justify-content: center;
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.active.icon:nth-child(1) {
  --ico-bn: url("/assets/images/icons/bn1-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.active.icon:nth-child(2) {
  --ico-bn: url("/assets/images/icons/bn2-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.active.icon:nth-child(3) {
  --ico-bn: url("/assets/images/icons/bn3-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.active.icon:nth-child(4) {
  --ico-bn: url("/assets/images/icons/bn4-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.active.icon:nth-child(5) {
  --ico-bn: url("/assets/images/icons/bn5-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(1) {
  --ico-bn: url("/assets/images/icons/bn1-1.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(1):hover {
  --ico-bn: url("/assets/images/icons/bn1-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(2) {
  --ico-bn: url("/assets/images/icons/bn2-1.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(2):hover {
  --ico-bn: url("/assets/images/icons/bn2-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(3) {
  --ico-bn: url("/assets/images/icons/bn3-1.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(3):hover {
  --ico-bn: url("/assets/images/icons/bn3-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(4) {
  --ico-bn: url("/assets/images/icons/bn4-1.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(4):hover {
  --ico-bn: url("/assets/images/icons/bn4-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(5) {
  --ico-bn: url("/assets/images/icons/bn5-1.png");
}
.wrapper > .main :is(.section1, .section2, .section3) .grid-1 .card.icon:nth-child(5):hover {
  --ico-bn: url("/assets/images/icons/bn5-2-2.png");
}
.wrapper > .main :is(.section1, .section2, .section3):last-of-type {
  margin-bottom: 80px;
}
.wrapper > .main :is(.section1, .section2, .section3):last-of-type:has(.z-box) {
  margin-bottom: 0px;
}
.wrapper > .main :is(.section1, .section2, .section3):last-of-type.bg-grey {
  margin-bottom: 0px;
}
.wrapper > .main > .banner {
  background-image: var(--banner-img);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1C222D;
  height: 160px;
  margin-top: 72px;
}
.wrapper > .main > .banner > .grid-1 {
  height: 100%;
}
.wrapper > .main > .banner > .grid-1 > .col {
  display: flex;
  align-items: center;
}
.wrapper > .main > .banner > .grid-1 > .col p {
  font-size: 3.2rem;
  color: var(--color-universal-white);
  font-weight: bold;
}
.wrapper > .main > .banner.bus_banner {
  background-color: #0F1529;
  --banner-img: url("/assets/images/title_banner/titlebanner2-1.png");
}
.wrapper > .main > .under-banner {
  --banner-img: url("/assets/images/cr/bg2-1.png");
  background-color: #fff;
  background-image: var(--banner-img);
  background-repeat: no-repeat;
  background-position: center;
  height: 404px;
  margin-top: 89px;
  margin-bottom: 0px;
  padding-block: 80px;
}
.wrapper > .main > .under-banner > .grid-1 {
  height: 100%;
}
.wrapper > .main > .under-banner > .grid-1 > .col {
  display: flex;
  flex-flow: row wrap;
}
.wrapper > .main > .under-banner > .grid-1 > .col > .under-list {
  flex: 400px;
  min-height: 244px;
  border: 1px solid var(--color-universal-white);
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.2901960784);
}
.wrapper > .main > .under-banner > .grid-1 > .col > .under-list > .under-title {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: -0.036rem;
  color: var(--color-universal-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 24px;
}
.wrapper > .main > .under-banner > .grid-1 > .col > .under-list > .under-title ~ ul {
  height: 120px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding: 0px 35px 24px;
  color: var(--color-universal-white);
}
.wrapper > .main > .under-banner > .grid-1 > .col > .under-list > .under-title ~ ul > li {
  list-style: disc;
  word-break: break-word;
  font-size: 1.5rem;
}
.wrapper > .main > .under-banner > .grid-1 > .col > .under-list > .under-title ~ ul > li::marker {
  color: var(--color-universal-white);
}
.wrapper > .main > .under-banner > .grid-1 > .col > .under-list > .under-title ~ ul > li + li {
  margin-top: 16px;
}
.wrapper > .main > .under-banner > .grid-1 > .col.car_col_func {
  justify-content: center;
  flex-wrap: wrap;
}
.wrapper > .main .sub-light-menu {
  background-color: var(--color-light);
}
.wrapper > .main .sub-light-menu > .grid-1 > .col {
  font-size: 1.4rem;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--color-greyscale2);
}
.wrapper > .main .sub-light-menu + .section1 {
  margin-top: 40px;
}
.wrapper > .main .section1 {
  margin-top: 80px;
}
.wrapper > .main .section1:has(+ .section1.bg-grey) {
  padding-bottom: 80px;
}
.wrapper > .main .section1.bg-grey {
  margin-top: unset;
  background-color: var(--color-light-disable);
  padding-bottom: 80px;
  padding-top: 40px;
}
.wrapper > .main .section1.bg-grey + .section1 {
  margin-top: unset;
  padding-bottom: 80px;
  padding-top: 40px;
}
.wrapper > .main .section1.po_index {
  margin-bottom: unset;
}
.wrapper > .main .section1.po_index > .grid-1 > .col > p {
  font-size: 2.4rem;
  font-weight: bold;
}
.wrapper > .main .section1.po_index > .grid-1 > .col > div:first-of-type {
  margin-top: 24px;
  background-color: var(--color-light-disable);
  padding: 32px 24px;
  font-size: 1.6rem;
}
.wrapper > .main .section1.po_index > .grid-1 > .col > div:first-of-type > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-dark-disable);
}
.wrapper > .main .section1.po_index > .grid-1 > .col > div:first-of-type > div > a {
  font-weight: bold;
  color: var(--color-primary);
}
.wrapper > .main .section1.po_index > .grid-1 > .col > div:first-of-type > div a:hover {
  cursor: pointer;
}
.wrapper > .main .section1.po_index > .grid-2 > .col > p {
  font-size: 2.4rem;
  font-weight: bold;
}
.wrapper > .main .section1.po_index > .grid-2 > .col > div {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  background-color: var(--color-light-disable);
  padding: 32px 24px;
  font-size: 1.6rem;
  color: var(--color-dark-disable);
  gap: 16px;
}
.wrapper > .main .section1.po_index > .grid-2 > .col > div > div {
  display: flex;
  flex-direction: row;
}
.wrapper > .main .section1.po_index > .grid-2 > .col > div > div > a {
  flex: 1;
  font-weight: bold;
  color: var(--color-primary);
}
.wrapper > .main .section1.po_unset {
  margin-top: unset;
  padding-top: 72px;
}
.wrapper > .main .section1.po_unset > .grid-1 > .col > p:first-child {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-dark-disable);
}
.wrapper > .main .section1.po_unset > .grid-1 > .col > p:last-child {
  font-size: 1.4rem;
  line-height: 24px;
}
.wrapper > .main .section1.po_unset > .grid-1 > .col > p:last-child > span {
  font-weight: bold;
  line-height: 24px;
}
.wrapper > .main .section1 > .grid-1 > .col.policy {
  margin-top: 40px;
}
.wrapper > .main .section1 > .grid-1 > .col.policy > p:last-child > span {
  font-weight: bold;
}
.wrapper > .main .section1 > .grid-1 > .col > p > .unique_font {
  font-weight: bold;
  font-family: Italic;
}
.wrapper > .main .section1 > .grid-1 > .col > p.title ~ p {
  font-size: 1.4rem;
  line-height: 24px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.wrapper > .main .section1 > .grid-1 > .col > p.title ~ p:last-of-type {
  margin-bottom: unset;
}
.wrapper > .main .section1 > .grid-1 > .col > p.title ~ p:last-of-type + .img_box {
  margin-top: 40px;
}
.wrapper > .main .section1 > .grid-1 > .col > p.title ~ img {
  max-width: 1200px;
  height: 648px;
  margin-inline: auto;
  margin-top: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrapper > .main .section1 > .grid-1 > .col > div:has(.card.icon.active) {
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
  flex-flow: row wrap;
  gap: 32px;
  justify-content: center;
}
.wrapper > .main .section1 > .grid-1 > .col > .list_unique {
  flex: 378px;
  height: 271px;
  border: 1px solid var(--color-greyscale1);
  background-color: var(--color-universal-white);
  display: flex;
  flex-direction: column;
}
.wrapper > .main .section1 > .grid-1 > .col > .list_unique > .title {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: -0.036rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}
.wrapper > .main .section1 > .grid-1 > .col > .list_unique > .title ~ ul {
  height: 160px;
  background-color: var(--color-light-disable);
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding: 24px 35px;
}
.wrapper > .main .section1 > .grid-1 > .col > .list_unique > .title ~ ul > li {
  list-style: disc;
}
.wrapper > .main .section1 > .grid-1 > .col > .list_unique > .title ~ ul > li::marker {
  color: var(--color-primary);
}
.wrapper > .main .section1 > .grid-1 > .col > .list_unique > .title ~ ul > li + li {
  margin-top: 16px;
}
.wrapper > .main .section1 > .grid-1 > .col.col_eye_unique {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 33px;
}
.wrapper > .main .section1 > .grid-1 > .col.col_eye_unique > .list_unique > .title > .eye_sub_title:last-child {
  line-height: 22px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.wrapper > .main .section1 > .grid-2 > .col.container img + .title {
  margin-top: 24px;
  font-size: 2.4rem;
}
.wrapper > .main .section1 > .grid-2 > .col.container img + .title + .text {
  margin-top: 24px;
  font-size: 1.4rem;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--color-greyscale1);
  line-height: 24px;
}
.wrapper > .main .section1 > .grid-2 > .col.container > .text {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--color-greyscale1);
  font-size: 1.4rem;
  line-height: 24px;
}
.wrapper > .main .section1 > .grid-2 > .col:last-child > .title_func {
  font-size: 3.2rem;
  font-weight: bold;
}
.wrapper > .main .section1 > .grid-2 > .col:last-child > .title_func > span {
  color: var(--color-primary);
}
.wrapper > .main .section1 > .grid-2 > .col.col_unique {
  max-width: 584px;
  max-height: 440px;
  border: 1px solid var(--color-greyscale1);
}
.wrapper > .main .section1 > .grid-2 > .col.col_unique > div {
  padding: 24px;
}
.wrapper > .main .section1 > .grid-2 > .col.col_unique > div > div {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 32px;
}
.wrapper > .main .section1 > .grid-2 > .col.col_unique > div > div + button {
  font-size: 1.4rem;
  width: 112px;
  height: 40px;
  border-radius: 4px;
  background-color: var(--color-primary);
  color: var(--color-universal-white);
}
.wrapper > .main .section1 > .grid-2.bene_box {
  margin-top: 40px;
  gap: 24px 32px;
}
.wrapper > .main .section1 > .grid-2.bene_box > div {
  border: 1px solid var(--color-greyscale1);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 213px;
}
.wrapper > .main .section1 > .grid-2.bene_box > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wrapper > .main .section1 > .grid-2.bene_box > div > div > div {
  background-color: rgba(118, 182, 216, 0.1);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper > .main .section1 > .grid-2.bene_box > div > div > div + p {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
}
.wrapper > .main .section1 > .grid-2:has(.col_unique) {
  margin-top: 40px;
}
.wrapper > .main .section2 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.wrapper > .main .section2 .com {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.wrapper > .main .section2 .com > .rect {
  max-width: 24px;
  height: 24px;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  margin-right: 8px;
}
.wrapper > .main .section2 .com > .rect ~ p {
  font-size: 1.6rem;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .title {
  margin-bottom: 40px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box {
  display: flex;
  justify-content: end;
  background-color: rgba(118, 182, 216, 0.1019607843);
  position: absolute;
  left: 0;
  width: calc(50% - 16px);
  height: 360px;
  padding-block: 40px;
  padding-right: 152px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box > img {
  height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text > div:first-of-type {
  background-color: rgba(118, 182, 216, 0.1019607843);
  display: flex;
  font-size: 1.6rem;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 24px 32px;
  gap: 24px 44px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text > div:first-of-type > .com.grad:nth-child(1) > .rect {
  background: linear-gradient(#004161, #0083C7);
  width: 24px;
  height: 24px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text > div:first-of-type > .com.grad:nth-child(2) > .rect {
  background: linear-gradient(#0083C7, #7F60FF);
  width: 24px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text > div:first-of-type > .com.grad:nth-child(3) > .rect {
  background: linear-gradient(#7F60FF, #04FFDD);
  width: 24px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text + div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.6rem;
  padding: 24px 32px;
  gap: 24px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text + div > .com.grey:nth-child(1) > .rect {
  background: var(--color-greyscale1);
  width: 24px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text + div > .com.grey:nth-child(2) > .rect {
  background: var(--color-greyscale3);
  width: 24px;
}
.wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text > .tri {
  width: 20px;
  height: 32px;
  background-color: rgba(118, 182, 216, 0.1019607843);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  margin-right: 12px;
}
.wrapper > .main .section3 {
  margin-top: 80px;
}
.wrapper > .main .section3 > .grid-1 > .col {
  background-color: var(--color-light-disable);
  padding: 40px;
}
.wrapper > .main .section3 > .grid-1 > .col > img {
  max-width: 840px;
  height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
  margin-top: 40px;
}
.wrapper > .main > .index_img {
  height: 648px;
  background-image: url("/assets/images/main/bg1-1.png");
}
.wrapper > .main > .index_img > .grid-1 {
  height: 100%;
  padding-block: 80px;
}
.wrapper > .main > .index_img > .grid-1 > .title {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}
.wrapper > .main > .index_img > .grid-1 > .title > span {
  font-weight: normal;
}
.wrapper > .main > .index_img > .grid-1 > .intro {
  width: 100%;
  margin-top: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) {
  flex: 0 calc(100% - 800px);
  display: flex;
  flex-direction: column;
  gap: 27px;
  font-size: 2.4rem;
  color: rgba(249, 249, 249, 0.5);
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1)::before {
  width: 1px;
  height: 224px;
  background-color: rgba(249, 249, 249, 0.5);
  position: absolute;
  content: "";
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: default;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p {
  margin-left: 22px;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p:hover, .wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p.active {
  color: var(--color-universal-white);
  font-weight: bold;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p:hover + div, .wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p.active + div {
  flex: 1;
  display: flex;
  align-items: center;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p:hover + div::before, .wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p.active + div::before {
  background-color: #fff;
  flex: 1;
  height: 1px;
  margin-left: 16px;
  z-index: 5;
  content: "";
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p:hover + div > .half_circle::after, .wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div > p.active + div > .half_circle::after {
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  background-color: rgba(0, 111, 168, 0.5019607843);
  width: 56px;
  height: 56px;
  position: absolute;
  transform: translateY(-28px) translateX(-28px);
  content: "";
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1) > div:has(> .intro__title.active)::before {
  width: 4px;
  height: 56px;
  background-color: #fff;
  content: "";
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1):has(> div:nth-child(1) > .intro__title.active) ~ .col:nth-child(2) {
  display: block;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1):has(> div:nth-child(2) > .intro__title.active) ~ .col:nth-child(3) {
  display: block;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1):has(> div:nth-child(3) > .intro__title.active) ~ .col:nth-child(4) {
  display: block;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(1):has(> div:nth-child(4) > .intro__title.active) ~ .col:nth-child(5) {
  display: block;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(n+2) {
  z-index: 5;
  display: none;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(n+2) > .intro__card > div > a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(n+2) > .intro__card > div > a > .ico-arrow {
  display: flex;
  width: 24px;
  height: 24px;
  background-color: var(--color-universal-white);
  border-radius: 12px;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(n+2) > .intro__card > div > a > .ico-arrow::after {
  display: block;
  content: var(--arrow);
  width: 24px;
  height: 24px;
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(2) > .intro__card {
  background-image: url("/assets/images/main/herald_tomorrow.jpg");
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(2) > .intro__card > div > a > .ico-arrow:after {
  --arrow: url("/assets/images/icons/more1-2.png");
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(3) > .intro__card {
  background-image: url("/assets/images/main/herald_campus.jpg");
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(3) > .intro__card > div > a > .ico-arrow:after {
  --arrow: url("/assets/images/icons/more1-2.png");
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(4) > .intro__card {
  background-image: url("/assets/images/main/herald_prep.jpg");
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(4) > .intro__card > div > a > .ico-arrow:after {
  --arrow: url("/assets/images/icons/more1-2.png");
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(5) > .intro__card {
  background-image: url("/assets/images/main/game_eye.jpg");
}
.wrapper > .main > .index_img > .grid-1 > .intro > .col:nth-child(5) > .intro__card > div > a > .ico-arrow:after {
  --arrow: url("/assets/images/icons/more1-2.png");
}
.wrapper > .main > .seg_info {
  display: none;
}
.wrapper > .main > .section1 > .grid-1 > .col.col_func {
  margin-top: 11px;
}
.wrapper > .main > .section1 > .grid-1 > .col.col_func > div {
  background: linear-gradient(to right, #000F16, #385461);
  width: 100%;
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  gap: 24px;
  position: relative;
}
.wrapper > .main > .section1 > .grid-1 > .col.col_func > div .email_logo {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  transform: translateX(-318px);
  content: url("/assets/images/cr/e-mail-1.png");
}
.wrapper > .main > .section1 > .grid-1 > .col.col_func > div > div {
  color: #fff;
  font-size: 1.4rem;
}
.wrapper > .main > .section1 > .grid-1 > .col.col_func > div > span {
  color: #fff;
  font-size: 2.4rem;
}
.wrapper > .main > .banner.why_banner {
  --banner-img: url("/assets/images/title_banner/titlebanner1-1.png");
}
.wrapper > .main .title_info_box {
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
  gap: 32px;
  border-bottom: 1px solid var(--color-greyscale3);
  padding-bottom: 40px;
}
.wrapper > .main .title_info {
  color: var(--color-primary-hover);
  font-weight: bold;
  font-size: 2.4rem;
  flex: 0 276px;
}
.wrapper > .main .title_exp {
  font-size: 1.4rem;
  flex: 1;
  color: var(--color-dark-disable);
  line-height: 24px;
}
.wrapper > .main .sub_title_info {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 24px 0;
}
.wrapper > .main .sub_text_info {
  font-size: 1.4rem;
  margin-top: 16px;
  line-height: 24px;
}
.wrapper > .main .grey_row_func {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.wrapper > .main .grey_row_func > div {
  flex: 1;
  display: flex;
  justify-content: center;
  line-height: 24px;
  font-size: 1.6rem;
  padding: 16px 24px;
}
.wrapper > .main .feature_box {
  background-color: var(--color-light-disable);
  min-height: 167px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  padding: 32px 0px;
}
.wrapper > .main .feature_box > p {
  font-size: 2.4rem;
  font-weight: bold;
  padding-left: 24px;
}
.wrapper > .main .feature_box > p + ul {
  list-style: disc;
  font-size: 1.4rem;
  margin-top: 24px;
  padding-left: 36px;
}
.wrapper > .main .feature_box > p + ul > li::marker {
  color: var(--color-primary);
}
.wrapper > .main .z-box {
  padding-bottom: 80px;
  background-color: var(--color-light-disable);
}
.wrapper > .main .z-box::before {
  position: absolute;
  width: 100%;
  height: 110px;
  background-color: var(--color-universal-white);
  content: "";
}
.wrapper > .main .z-box > .grid-1 {
  position: relative;
  flex-flow: column;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade {
  margin-top: 40px;
  --grade-col: 3;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade.col-1 td {
  text-align: start;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade.col-2 {
  --grade-col: 2;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade.col-2 > .flex-table {
  display: flex;
  flex-flow: row wrap;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade.col-2 > .flex-table > table {
  flex: 1;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade.col-4 {
  --grade-col: 4;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade > .title {
  background-color: var(--color-universal-white);
  text-align: center;
  padding: 16px 24px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1215686275);
  border-radius: 4px;
  font-size: 2.4rem;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade table {
  margin-top: 8px;
  text-align: center;
  font-size: 1.6rem;
  word-break: normal;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade table tr {
  border-bottom: 1px solid #DBDBDB;
  line-height: 24px;
}
.wrapper > .main .z-box > .grid-1 > .col > .grade table tr > td {
  width: calc(100% / var(--grade-col));
  padding: 16px 24px;
}
.wrapper > .main .car_slider {
  overflow: hidden;
}
.wrapper > .main .car_slider.slick-initialized .slick-slide {
  background-repeat: no-repeat;
  background-position: center bottom;
}
.wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+1) {
  background-color: #006FA8;
  background-image: url("/assets/images/title_banner/titlebanner3-2-1.png");
}
.wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+2) {
  background-color: #0B1222;
  background-image: url("/assets/images/title_banner/titlebanner3-1-1.png");
}
.wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+3) {
  background-color: #EEEDE9;
  color: var(--color-universal-black);
  background-image: url("/assets/images/title_banner/titlebanner3-3-1.png");
}
.wrapper > .main .car_slider .grid-1 {
  margin-top: 72px;
  height: 262px;
  align-items: center;
}
.wrapper > .main .car_slider .grid-1 > .col {
  color: var(--color-universal-white);
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.wrapper > .main .car_slider .grid-1 > .col > p:nth-child(1) {
  font-size: 2.4rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.wrapper > .main .car_slider .grid-1 > .col > p:nth-child(2) {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin-top: 24px;
  font-size: 4rem;
  margin-top: 16px;
  margin-bottom: 24px;
}
.wrapper > .main .car_slider .grid-1 > .col > p:nth-child(3) {
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 584px;
  line-height: 24px;
}
.wrapper > .main .car_box,
.wrapper > .main .bus_box {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 33px;
}
.wrapper > .main .car_box > .list .title p:nth-child(n+2),
.wrapper > .main .bus_box > .list .title p:nth-child(n+2) {
  font-size: 1.4rem;
  line-height: 22px;
  color: var(--color-dark-disable);
  margin-top: 8px;
  font-weight: normal;
}
.wrapper > .main .slider {
  overflow: hidden;
}
.wrapper > .main .slider.slick-initialized .slick-slide {
  background-repeat: no-repeat;
  background-position: none;
}
.wrapper > .main .slider.slick-initialized .slick-slide:nth-child(2n+1) {
  background-image: url("/assets/images/main/banner_2-1.jpg");
}
.wrapper > .main .slider.slick-initialized .slick-slide:nth-child(2n+2) {
  background-image: url("/assets/images/main/banner_1-1.jpg");
}
.wrapper > .main .slider .grid-1 {
  height: 640px;
  align-items: center;
}
.wrapper > .main .slider .grid-1 > .col {
  color: var(--color-universal-white);
}
.wrapper > .main .slider .grid-1 > .col > .title {
  font-size: 5.6rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.wrapper > .main .slider .grid-1 > .col > .title ~ p {
  font-size: 2.4rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
  margin-top: 24px;
}
.wrapper > .main .index_layout {
  padding-block: 80px;
}
.wrapper > .main .index_layout .grid-1 .col p:first-child {
  font-size: 4rem;
}
.wrapper > .main .index_layout .grid-1 .col p:first-child span {
  color: var(--color-primary);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.wrapper > .main .index_layout .grid-1 .col p:last-child {
  margin-top: 24px;
  font: 16px Roboto-Regular;
}
.wrapper > .main .index_layout > .grid-4 {
  margin-top: 40px;
}
.wrapper > .main .index_layout > .grid-4 > .mf:nth-child(1) > .card:hover {
  background-image: url("/assets/images/main/mf1.jpg");
}
.wrapper > .main .index_layout > .grid-4 > .mf:nth-child(2) > .card:hover {
  background-image: url("/assets/images/main/mf2.jpg");
}
.wrapper > .main .index_layout > .grid-4 > .mf:nth-child(3) > .card:hover {
  background-image: url("/assets/images/main/mf3.jpg");
}
.wrapper > .main .index_layout > .grid-4 > .mf:nth-child(4) > .card:hover {
  background-image: url("/assets/images/main/mf4.jpg");
}
.wrapper > .main .t_index_img {
  background-image: url("/assets/images/main/bg1-2.jpg");
  background-repeat: repeat-x;
  background-position: center;
  height: 100%;
  visibility: hidden;
  position: absolute;
  top: 0;
}
.wrapper > .main .t_index_img > .grid-1 {
  padding-block: 80px;
}
.wrapper > .main .t_index_img > .grid-1 > .title {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}
.wrapper > .main .t_index_img > .grid-1 > .title > span {
  font-weight: normal;
}
.wrapper > .main .t_index_img .slider.slick-initialized .slick-slide {
  background-repeat: no-repeat;
  background-position: none;
  min-height: 308px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.wrapper > .main .t_index_img .slider.slick-initialized .slick-slide:nth-child(4n+1) {
  background-image: url("/assets/images/main/game_eye.jpg");
}
.wrapper > .main .t_index_img .slider.slick-initialized .slick-slide:nth-child(4n+2) {
  background-image: url("/assets/images/main/herald_tomorrow.jpg");
}
.wrapper > .main .t_index_img .slider.slick-initialized .slick-slide:nth-child(4n+3) {
  background-image: url("/assets/images/main/herald_campus.jpg");
}
.wrapper > .main .t_index_img .slider.slick-initialized .slick-slide:nth-child(4n+4) {
  background-image: url("/assets/images/main/herald_prep.jpg");
}
.wrapper > .main .t_index_img .slider .caption {
  height: 144px;
  width: 100%;
  background-color: #000;
  opacity: 0.6;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wrapper > .main .t_index_img .slider .caption > .title {
  color: #fff;
  font-size: 2.4rem;
}
.wrapper > .main .t_index_img .slider .caption > .text {
  color: #fff;
  font-size: 1.6rem;
}
.wrapper > .main .space {
  display: none;
}

@media (max-width: 1280px) {
  .wrapper > .main .section2 + .section1 {
    margin-top: 56px;
  }
  .wrapper > .main .section2 > .grid-2 {
    gap: 0;
  }
  .wrapper > .main .section2 > .grid-2 > .col:first-child {
    flex: none;
  }
  .wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box {
    position: unset !important;
    justify-content: center !important;
    width: 100% !important;
    padding-right: 0 !important;
    background-color: unset !important;
  }
  .wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 360px;
    background-color: rgba(118, 182, 216, 0.1019607843);
    content: "";
    transform: translateY(-40px);
  }
  .wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text {
    margin-top: 24px;
  }
}
@media (max-width: 1200px) {
  .wrapper > .main :is(.section1, .section2, .section3) .grid-2:has(.col.container) > .col:not(.container) {
    flex: 1 584px;
  }
  .wrapper > .main > .slider .grid-1 {
    height: 480px;
  }
  .wrapper > .main > .slider.slick-initialized .slick-slide:nth-child(2n+1) {
    background-image: url("/assets/images/main/banner_1.jpg");
    background-size: cover;
  }
  .wrapper > .main > .slider.slick-initialized .slick-slide:nth-child(2n+2) {
    background-image: url("/assets/images/main/banner_2.jpg");
    background-size: cover;
  }
  .wrapper > .main > .banner.bus_banner {
    background-color: #0F1529;
    --banner-img: url("/assets/images/title_banner/titlebanner2-2.png");
    max-height: 160px;
  }
  .wrapper > .main > .banner.why_banner {
    --banner-img: url("/assets/images/title_banner/titlebanner1-2.png");
  }
  .wrapper > .main .sub-light-menu {
    display: none;
  }
  .wrapper > .main .section1 > .grid-1 > .col > p.title ~ p {
    margin-bottom: 40px;
  }
  .wrapper > .main .section1 > .grid-1 > .col > p.title ~ img {
    width: 704px;
    height: 532px;
    content: url("/assets/images/wd/chart2-2.png");
  }
  .wrapper > .main .section1 > .grid-2 > .col.col_unique {
    flex: 1 336px;
  }
  .wrapper > .main .section2 {
    margin-top: 40px;
  }
  .wrapper > .main .section3 > .grid-1 > .col {
    padding: 40px 24px;
  }
  .wrapper > .main .section3 > .grid-1 > .col > img {
    width: 656px;
    height: 248px;
    content: url("/assets/images/wd/chart3-2.png");
  }
  .wrapper > .main > .index_img {
    display: none;
  }
  .wrapper > .main > .t_index_img {
    visibility: visible;
    position: unset;
    top: unset;
  }
  .wrapper > .main > .t_index_img > .grid-1 > .slider > .slick-list > .slick-track > div {
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-universal-black);
  }
  .wrapper > .main > .under-banner {
    --banner-img: url("/assets/images/cr/bg2-2.png");
    height: 593px;
  }
  .wrapper > .main > .under-banner > .grid-1 > .col > .under-list {
    flex: 328px;
    min-height: 233px;
  }
  .wrapper > .main > .under-banner > .grid-1 > .col > .under-list > .under-title ~ ul {
    flex: 1;
  }
  .wrapper > .main .title_info_box .title_info {
    flex: 0 30px;
  }
  .wrapper > .main .index_layout > .grid-4 > .col.mf {
    flex: 1 276px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    min-height: 1024px;
  }
  .wrapper > .main > .slider .grid-1 {
    height: 480px;
  }
  .wrapper > .main > .slider.slick-initialized .slick-slide:nth-child(2n+1) {
    background-image: url("/assets/images/main/banner_1.jpg");
  }
  .wrapper > .main > .slider.slick-initialized .slick-slide:nth-child(2n+2) {
    background-image: url("/assets/images/main/banner_2.jpg");
  }
  .wrapper > .main > .banner.bus_banner {
    background-color: #0F1529;
    --banner-img: url("/assets/images/title_banner/titlebanner2-2.png");
    max-height: 160px;
  }
  .wrapper > .main > .banner.why_banner {
    --banner-img: url("/assets/images/title_banner/titlebanner1-2.png");
  }
  .wrapper > .main > .section1 {
    margin-top: 56px;
  }
  .wrapper > .main > .section1 > .grid-2 > .col:last-child > .title_func {
    font-size: 3.2rem;
    font-weight: bold;
  }
  .wrapper > .main > .section1 > .grid-2 > .col:last-child > .title_func > span {
    color: var(--color-primary);
  }
  .wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text {
    margin-top: 24px;
  }
  .wrapper > .main .section2 > .grid-2 > .col:last-child > .edtech-box-text > div:first-of-type {
    gap: 24px 37px;
  }
  .wrapper > .main > .grid-1 > .col.car_box, .wrapper > .main > .grid-1 > .col.bus_box {
    gap: 32px;
  }
  .wrapper > .main > .banner {
    --banner-img: url("/assets/images/title_banner/titlebanner1-2.png");
  }
  .wrapper > .main .car_slider {
    overflow: hidden;
  }
  .wrapper > .main .car_slider.slick-initialized .slick-slide {
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  .wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+1) {
    background-image: url("/assets/images/title_banner/titlebanner3-2-2.png");
  }
  .wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+2) {
    background-image: url("/assets/images/title_banner/titlebanner3-1-2.png");
  }
  .wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+3) {
    color: var --color-universal-black;
    background-image: url("/assets/images/title_banner/titlebanner3-3-2.png");
  }
  .wrapper > .main .z-box > .grid-1 > .col > .grade table tr > td {
    padding: 16px 16px;
  }
}
@media (max-width: 704px) {
  .wrapper {
    min-height: 740px;
  }
  .wrapper > .main .title_info {
    color: var(--color-primary-hover);
    font-weight: bold;
    font-size: 2.4rem;
    flex: 0;
  }
  .wrapper > .main > .t_index_img > .grid-1 > .title {
    font-size: 3.2rem;
  }
  .wrapper > .main > .t_index_img > .grid-1 > .slider > .slick-list > .slick-track > div {
    background-position: unset;
    background-size: contain;
  }
  .wrapper > .main > .t_index_img > .grid-1 > .slider .caption {
    opacity: 0.9;
    display: flex;
    justify-content: center;
    line-height: 22px;
  }
  .wrapper > .main > .t_index_img > .grid-1 > .slider .caption > .title {
    font-weight: bold;
    font-size: 1.6rem;
  }
  .wrapper > .main > .t_index_img > .grid-1 > .slider .caption > .text {
    font-size: 1.4rem;
  }
  .wrapper > .main :is(.section1, .section2, .section3) .grid-2:has(.col.container) > .col {
    flex: 1 336px;
  }
  .wrapper > .main :is(.section1, .section2, .section3):last-of-type {
    margin-bottom: 56px;
  }
  .wrapper > .main :is(.section1, .section2, .section3) .title {
    font-size: 2.4rem;
  }
  .wrapper > .main :is(.section1, .section2, .section3) .title:has(+ .title_info_box) {
    margin-bottom: 32px;
  }
  .wrapper > .main .index_layout {
    padding-block: 56px;
  }
  .wrapper > .main .index_layout .grid-1 .col p:first-child {
    font-size: 3.2rem;
  }
  .wrapper > .main .index_layout .grid-1 .col p:last-child {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 22px;
  }
  .wrapper > .main .index_layout .card {
    height: 148px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .wrapper > .main .index_layout .card > .subtitle {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 32px;
  }
  .wrapper > .main .index_layout .card > .title {
    font-size: 1.6rem !important;
    letter-spacing: -0.36px !important;
  }
  .wrapper > .main .index_layout .card > .title:first-of-type {
    font-size: 1.6rem !important;
    letter-spacing: -0.36px !important;
  }
  .wrapper > .main .index_layout > .grid-4 > .col.mf {
    flex: 1 70px;
  }
  .wrapper > .main > .slider.slick-initialized .slick-slide:nth-child(2n+1) {
    background-image: url("/assets/images/main/banner1-3.png");
    background-size: cover;
  }
  .wrapper > .main > .slider.slick-initialized .slick-slide:nth-child(2n+2) {
    background-image: url("/assets/images/main/banner2-3.png");
    background-size: cover;
  }
  .wrapper > .main > .slider .grid-1 {
    height: 320px;
  }
  .wrapper > .main > .slider .grid-1 > .col > .title {
    font-size: 4rem;
  }
  .wrapper > .main > .slider .grid-1 > .col > .title ~ p {
    font-size: 1.6rem;
    margin-top: 16px;
    line-height: 24px;
  }
  .wrapper > .main > .banner.why_banner {
    --banner-img: url("/assets/images/title_banner/titlebanner1-3.png");
    max-height: 88px;
  }
  .wrapper > .main > .banner.why_banner > .grid-1 > .col > p {
    font-size: 2.4rem;
  }
  .wrapper > .main > .banner.bus_banner {
    background-color: #0F1529;
    --banner-img: url("/assets/images/title_banner/titlebanner2-3.png");
    max-height: 88px;
  }
  .wrapper > .main > .banner.bus_banner > .grid-1 > .col > p {
    font-size: 2.4rem;
  }
  .wrapper > .main .section1 {
    margin-top: 32px;
  }
  .wrapper > .main .section1.po_index > .grid-2 > .col > div {
    gap: 12px;
  }
  .wrapper > .main .section1.po_index > .grid-2 > .col > div > div {
    flex-direction: column;
    gap: 12px;
  }
  .wrapper > .main .section1 > .grid-1 > .col.policy {
    margin-top: 88px;
  }
  .wrapper > .main .section1 > .grid-1 > .col p.title ~ img {
    content: url("/assets/images/wd/chart2-3.png");
    width: 328px;
    height: 296px;
  }
  .wrapper > .main .section1 > .grid-1 > .col p.title ~ p {
    margin-top: 16px;
    margin-bottom: 32px;
  }
  .wrapper > .main .section1 > .grid-1 > .col p.title ~ p:last-of-type + .img_box {
    margin-top: 32px;
  }
  .wrapper > .main .section1 > .grid-1 > .col.col_func > div {
    flex-direction: column;
    padding-top: 64px;
    padding-bottom: 24px;
  }
  .wrapper > .main .section1 > .grid-1 > .col.col_func > div .email_logo {
    width: 56px;
    height: 56px;
    transform: translateX(-28px) translateY(-92px);
  }
  .wrapper > .main .section1 > .grid-2:has(.col.container) {
    gap: 32px;
  }
  .wrapper > .main .section1 > .grid-2 > .col.container > .text {
    margin-top: 24px;
  }
  .wrapper > .main .section1 > .grid-2 > .col.container img + .title {
    font-size: 2rem;
    margin-top: 16px;
  }
  .wrapper > .main .section1 > .grid-2 > .col.container img + .title + .text {
    margin-top: 16px;
    padding-top: 12px;
  }
  .wrapper > .main .section1 > .grid-2.bene_box {
    gap: 16px;
  }
  .wrapper > .main .section1 > .grid-2.bene_box > div {
    min-height: 208px;
  }
  .wrapper > .main .section1 > .grid-2.bene_box > div > div > div + p {
    font-size: 2rem;
  }
  .wrapper > .main .section1:has(+ .section1.bg-grey) {
    padding-bottom: 56px;
  }
  .wrapper > .main .section1.bg-grey {
    padding-bottom: 56px;
    padding-top: 32px;
  }
  .wrapper > .main .section1.bg-grey + .section1 {
    padding-bottom: 56px;
    padding-top: 32px;
  }
  .wrapper > .main .section2 {
    margin-top: 24px;
    margin-bottom: unset;
  }
  .wrapper > .main .section3 {
    margin-top: 56px;
    margin-bottom: 56px;
  }
  .wrapper > .main .section3 > .grid-1 > .col {
    padding: 32px 0;
  }
  .wrapper > .main .section3 > .grid-1 > .col > img {
    margin-top: 32px;
    width: 328px;
    height: 332px;
    content: url("/assets/images/wd/chart3-3.png");
  }
  .wrapper > .main .section3 > .grid-1 > .col > .title {
    margin-left: 16px;
  }
  .wrapper > .main > .seg_info {
    display: block;
    margin-top: 24px;
  }
  .wrapper > .main > .seg_info > .grid-1 > .col > div {
    border-top: 1px dashed #DBDBDB;
    padding-block: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  .wrapper > .main > .seg_info > .grid-1 > .col > div > div {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .wrapper > .main > .seg_info > .grid-1 > .col > div > div > p {
    font-size: 1.2rem;
    line-height: 20px;
    margin-left: 8px;
  }
  .wrapper > .main > .seg_info > .grid-1 > .col > div:first-of-type {
    border-top: 1px solid #DBDBDB;
    padding-top: 24px;
  }
  .wrapper > .main .under-banner {
    --banner-img: url("/assets/images/cr/bg2-3.png");
    height: 690px;
    padding-block: unset;
  }
  .wrapper > .main .under-banner > .grid-1 > .col {
    flex-direction: column;
    justify-content: center;
  }
  .wrapper > .main .under-banner > .grid-1 > .col > .under-list {
    min-height: unset;
    flex: 0 149px;
  }
  .wrapper > .main .under-banner > .grid-1 > .col > .under-list > .under-title {
    padding: 24px 8px 16px;
  }
  .wrapper > .main .under-banner > .grid-1 > .col > .under-list > .under-title ~ ul {
    padding: 0px 16px 24px 28px;
  }
  .wrapper > .main .z-box > .grid-1 .col .grade > .title {
    font-size: 1.6rem;
  }
  .wrapper > .main .z-box > .grid-1 .col .grade table {
    font-size: 1.4rem;
  }
  .wrapper > .main .z-box > .grid-1 .col .grade table tr > td {
    padding: 8px 12px;
  }
  .wrapper > .main .car_slider {
    overflow: hidden;
  }
  .wrapper > .main .car_slider.slick-initialized .slick-slide {
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  .wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+1) {
    background-color: #006FA8;
    background-image: url("/assets/images/title_banner/titlebanner3-3-3.png");
    color: var(--color-universal-black);
  }
  .wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+2) {
    background-color: #0B1222;
    background-image: url("/assets/images/title_banner/titlebanner3-1-3.png");
  }
  .wrapper > .main .car_slider.slick-initialized .slick-slide:nth-child(3n+3) {
    background-color: #EEEDE9;
    background-image: url("/assets/images/title_banner/titlebanner3-2-3.png");
  }
  .wrapper > .main .car_slider .grid-1 > .col > p:nth-child(1) {
    font-size: 2rem;
  }
  .wrapper > .main .car_slider .grid-1 > .col > p:nth-child(2) {
    font-size: 3.2rem;
  }
  .wrapper > .main .car_slider .grid-1 > .col > p:nth-child(3) {
    font-size: 1.2rem;
  }
  .wrapper > .main .title_info_box {
    flex-direction: column;
    margin-bottom: 30px;
    padding-bottom: 35px;
    gap: 16px;
  }
  .wrapper > .main .title_info_box .title_info {
    font-size: 2rem;
  }
  .wrapper > .main .space {
    display: inline;
  }
}
@media (max-width: 360px) {
  .wrapper > .main > .slider.slick-initialized .slick-slide:nth-child(2n+1) {
    background-image: url("/assets/images/main/banner1-3.png");
  }
  .wrapper > .main > .slider.slick-initialized .slick-slide:nth-child(2n+2) {
    background-image: url("/assets/images/main/banner2-3.png");
  }
  .wrapper > .main > .slider .grid-1 {
    height: 320px;
  }
  .wrapper > .main > .slider .grid-1 > .col > .title {
    font-size: 4rem;
  }
  .wrapper > .main > .slider .grid-1 > .col > .title ~ p {
    font-size: 1.6rem;
    margin-top: 16px;
    line-height: 24px;
  }
  .wrapper > .main > .banner.why_banner {
    --banner-img: url("/assets/images/title_banner/titlebanner1-3.png");
    max-height: 88px;
  }
  .wrapper > .main > .banner.bus_banner {
    background-color: #0F1529;
    --banner-img: url("/assets/images/title_banner/titlebanner2-3.png");
    max-height: 88px;
  }
  .wrapper > .main > .banner {
    height: 88px;
    margin-top: 56px;
    --banner-img: url("/assets/images/title_banner/titlebanner1-3.png");
  }
  .wrapper > .main > .banner > .grid-1 > .col p {
    font-size: 2.4rem;
  }
  .wrapper > .main :is(.section1, .section2, .section3) .title {
    font-size: 2.4rem;
  }
  .wrapper > .main > .section2 {
    margin-top: 56px;
  }
  .wrapper > .main > .section2 + .section1 {
    margin-top: 39px;
  }
  .wrapper > .main > .section2 > .grid-2 > .col:last-child > .title {
    margin-bottom: 32px;
  }
  .wrapper > .main > .section2 > .grid-2 > .col:last-child > .edtech-box::before {
    height: 344px;
    transform: translateY(-32px);
  }
  .wrapper > .main > .section2 > .grid-2 > .col:last-child > .edtech-box-text {
    margin-top: 16px;
  }
  .wrapper > .main > .section2 > .grid-2 > .col:last-child > .edtech-box-text + div {
    font-size: 1.4rem;
    padding: 17px 16px;
    gap: 17px;
  }
  .wrapper > .main > .section2 > .grid-2 > .col:last-child > .edtech-box-text > .tri {
    width: 16px;
    height: 24px;
    margin-right: 8px;
  }
  .wrapper > .main > .section2 > .grid-2 > .col:last-child > .edtech-box-text > div:first-of-type {
    gap: 17px;
    padding: 17px 16px;
  }
  .wrapper > .main > .section2 .com > .rect {
    width: 16px;
    height: 16px;
  }
  .wrapper > .main > .section2 .com > .rect ~ p {
    font-size: 1.4rem;
  }
  .wrapper > .main .index_layout {
    padding-block: 56px;
  }
  .wrapper > .main .index_layout .grid-1 .col p:first-child {
    font-size: 3.2rem;
  }
  .wrapper > .main .index_layout .grid-1 .col p:last-child {
    margin-top: 14px;
  }
  .wrapper > .main .index_layout .card {
    height: 148px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .wrapper > .main .index_layout .card > .subtitle {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 32px;
  }
  .wrapper > .main .index_layout .card > .title {
    font-size: 1.6rem !important;
    letter-spacing: -0.36px !important;
  }
  .wrapper > .main .index_layout .card > .title:first-of-type {
    font-size: 1.6rem !important;
    letter-spacing: -0.36px !important;
  }
  .wrapper > .main .t_index_img {
    background-image: url("/assets/images/main/bg1-3.png");
  }
  .wrapper > .main .t_index_img > .grid-1 {
    height: 505px;
    padding-block: 56px;
  }
  .wrapper > .main .t_index_img > .grid-1 > .title {
    font-size: 3.2rem;
  }
  .wrapper > .main .t_index_img > .grid-1 > .title > span {
    font-weight: normal;
  }
  .wrapper > .main .t_index_img > .grid-1 > .slider .caption {
    opacity: 0.9;
  }
  .wrapper > .main .t_index_img > .grid-1 > .slider .caption > .title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .wrapper > .main .t_index_img > .grid-1 > .slider .caption > .text {
    color: #fff;
    font-size: 1.4rem;
  }
}