sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: theme('colors.gray.400', #9ca3af);
}
button,
[role='button'] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  vertical-align: middle;
  display: block;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none;
}
a {
  color: inherit;
  text-decoration: none;
}
span.link a {
  color: #0062cc;
}
* {
  box-sizing: border-box;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.space.nav {
  height: 0;
  margin-top: 72px;
}
@media (max-device-width: 960px) {
  .space.nav {
    margin-top: 100px;
  }
}
@media (max-width: 960px) {
  .space.nav {
    margin-top: 100px;
  }
}
.top.nav {
  width: 100%;
  z-index: 100;
  background: #f0f8ff;
  position: absolute;
  top: 0;
  left: 0;
}
.header.fixed-top {
  background-color: #f0f8ffe6;
  position: fixed;
}
.container.nav {
  height: 72px;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  display: flex;
}
.container.nav .logo {
  width: 170px;
  align-items: center;
  display: flex;
}
.container.nav .logo img {
  width: 100%;
}
.container.nav .bar input,
.container.nav .bar span {
  border: none;
  display: none;
}
.nav .menu {
  font-size: 16px;
}
.nav .menu .sub-menu {
  width: 170px;
  z-index: 100;
  background: #fff;
  border-radius: 24px;
  margin-left: -85px;
  padding: 24px 0;
  position: absolute;
  top: 180%;
  left: 50%;
  box-shadow: 0 0 14px #3457ff1c;
}
@media screen and (min-width: 961px) {
  .nav .menu .sub-menu {
    visibility: hidden;
    opacity: 0;
    transition:
      visibility,
      opacity 0.35s linear,
      transform 0.25s ease-in-out;
    transform: translateX(-20px);
  }
}
.nav .menu .sub-menu a {
  width: 100%;
  text-align: center;
  min-height: 36px;
  padding: 8px 0;
  font-size: 0.88em;
  display: block;
}
.nav .menu .sub-menu a:hover {
  color: #212121;
  background-color: #cce3fe;
}
.nav .menu .sub-menu a.active {
  color: #3457ff;
}
.nav .menu .sub-menu a.active:after {
  display: none;
}
.nav .menu div {
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .nav .menu div:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    background-color: #fff;
    transform: translateX(0);
  }
}
.nav .menu a {
  color: #212121;
  padding: 24px 16px;
  position: relative;
}
.nav .menu a:hover {
  color: #3457ff;
}
.nav .menu a.active {
  color: #3457ff;
  font-weight: 500;
}
.nav .menu a.active:after {
  content: '';
  width: 8px;
  height: 8px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: #3457ff;
  margin-top: 13px;
  margin-left: -3.8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(90deg);
}
@media (max-device-width: 960px) {
  .top.nav {
    overflow-x: hidden;
  }
  .nav .menu {
    width: 100vw;
    height: 100vh;
    color: #212121;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0 0;
    z-index: 10;
    background: #e0effd;
    padding-top: 100px;
    font-size: 16px;
    list-style-type: none;
    transition: transform 0.75s cubic-bezier(0.77, 0.2, 0.05, 1);
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    transform: translateX(100%);
  }
  .nav .menu.on {
    transform: none;
  }
  .nav .menu div {
    width: 100%;
  }
  .nav .menu a {
    width: 100%;
    padding: 0.8em 20vw;
    font-size: 1.2em;
    display: block;
  }
  .nav .menu a:hover {
    color: #212121;
  }
  .nav .menu a.active {
    color: #fff;
    background: #3457ff;
  }
  .nav .menu a.active:after {
    width: 0.5em;
    height: 0.5em;
    background: #fff;
    margin-top: -0.16em;
    margin-left: 0;
    left: 16vw;
  }
  .nav .menu .sub-menu {
    width: 100%;
    top: initial;
    left: initial;
    box-shadow: none;
    background: none;
    margin-left: 0;
    padding: 0;
    display: block;
    position: relative;
  }
  .nav .menu .sub-menu a {
    text-align: left;
    padding: 0.2em 25vw;
  }
  .nav .menu .sub-menu a.active {
    color: #3457ff;
    background: none;
  }
  .container.nav {
    height: 100px;
    justify-content: flex-end;
    padding-right: 0;
    position: relative;
  }
  .container.nav .bar {
    z-index: 11;
    -webkit-user-select: none;
    user-select: none;
    padding-right: 3.5vw;
    position: relative;
  }
  .container.nav .bar input {
    width: 80px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
    margin-top: -20px;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
  }
  .container.nav .bar span {
    width: 28px;
    height: 2px;
    z-index: 1;
    transform-origin: 0;
    background: #3457ff;
    border-radius: 3px;
    transition:
      transform 0.75s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.75s cubic-bezier(0.77, 0.2, 0.05, 1),
      opacity 0.55s;
    display: block;
    position: relative;
  }
  .container.nav .bar span + span {
    margin-top: 8px;
  }
  .container.nav .bar input:checked ~ span {
    opacity: 1;
    width: 28px;
    transform: rotate(-45deg);
  }
  .container.nav .bar input:checked ~ span:nth-last-child(2) {
    opacity: 0;
    transform: rotate(0);
  }
  .container.nav .bar input:checked ~ span:nth-last-child(3) {
    width: 28px;
    transform: rotate(45deg);
  }
  .container.nav .logo {
    width: 200px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 960px) {
  .top.nav {
    overflow-x: hidden;
  }
  .nav .menu {
    width: 100vw;
    height: 100vh;
    color: #212121;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0 0;
    z-index: 10;
    background: #e0effd;
    padding-top: 100px;
    font-size: 16px;
    list-style-type: none;
    transition: transform 0.75s cubic-bezier(0.77, 0.2, 0.05, 1);
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    transform: translateX(100%);
  }
  .nav .menu.on {
    transform: none;
  }
  .nav .menu div {
    width: 100%;
  }
  .nav .menu a {
    width: 100%;
    padding: 0.8em 20vw;
    font-size: 1.2em;
    display: block;
  }
  .nav .menu a:hover {
    color: #212121;
  }
  .nav .menu a.active {
    color: #fff;
    background: #3457ff;
  }
  .nav .menu a.active:after {
    width: 0.5em;
    height: 0.5em;
    background: #fff;
    margin-top: -0.16em;
    margin-left: 0;
    left: 16vw;
  }
  .nav .menu .sub-menu {
    width: 100%;
    top: initial;
    left: initial;
    box-shadow: none;
    background: none;
    margin-left: 0;
    padding: 0;
    display: block;
    position: relative;
  }
  .nav .menu .sub-menu a {
    text-align: left;
    padding: 0.2em 25vw;
  }
  .nav .menu .sub-menu a.active {
    color: #3457ff;
    background: none;
  }
  .container.nav {
    height: 100px;
    justify-content: flex-end;
    padding-right: 0;
    position: relative;
  }
  .container.nav .bar {
    z-index: 11;
    -webkit-user-select: none;
    user-select: none;
    padding-right: 3.5vw;
    position: relative;
  }
  .container.nav .bar input {
    width: 80px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
    margin-top: -20px;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
  }
  .container.nav .bar span {
    width: 28px;
    height: 2px;
    z-index: 1;
    transform-origin: 0;
    background: #3457ff;
    border-radius: 3px;
    transition:
      transform 0.75s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.75s cubic-bezier(0.77, 0.2, 0.05, 1),
      opacity 0.55s;
    display: block;
    position: relative;
  }
  .container.nav .bar span + span {
    margin-top: 8px;
  }
  .container.nav .bar input:checked ~ span {
    opacity: 1;
    width: 28px;
    transform: rotate(-45deg);
  }
  .container.nav .bar input:checked ~ span:nth-last-child(2) {
    opacity: 0;
    transform: rotate(0);
  }
  .container.nav .bar input:checked ~ span:nth-last-child(3) {
    width: 28px;
    transform: rotate(45deg);
  }
  .container.nav .logo {
    width: 200px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-device-width: 600px) {
  .container.nav .bar input {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .container.nav .bar input {
    width: 50px;
  }
}
footer {
  background: #212121;
  font-size: 16px;
}
footer .footer {
  color: #fff;
  justify-content: space-between;
  padding: 80px 40px 40px;
  display: flex;
}
footer .footer .left {
  width: 66%;
  grid-template-rows: repeat(3, min-content);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
}
footer .footer .left .block {
  flex-direction: column;
  margin-bottom: 2rem;
  display: flex;
}
footer .footer .left .block h2 {
  font-size: 16px;
  font-weight: bold;
}
footer .footer .left .block h2 a {
  font-size: 18px;
}
footer .footer .left .block a {
  font-size: 14px;
}
footer .footer .left .block a:hover {
  color: #ffbb0c;
}
footer .footer .left .block > * {
  margin-top: 8px;
}
footer .footer .right {
  width: 33%;
}
footer .footer .right h2 {
  margin-bottom: 12px;
  font-size: 18px;
}
footer .footer .right .block {
  grid-template-rows: repeat(3, min-content);
  margin-bottom: 0;
  display: flex;
}
footer .footer .right .block .icon {
  width: 14px;
  margin-right: 12px;
  padding-top: 4px;
}
footer .footer .right .block .content {
  flex-direction: column;
  margin-bottom: 1rem;
  font-size: 14px;
  display: flex;
}
@media (max-device-width: 960px) {
  footer {
    font-size: 26px;
  }
  footer .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5em 12%;
  }
  footer .footer .left {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5em;
    margin-bottom: 3.5rem;
  }
  footer .footer .left .block {
    margin-bottom: 0;
  }
  footer .footer .left .block h2 a {
    font-size: 16px;
  }
  footer .footer .right {
    width: 100%;
  }
  footer .footer .right h2 {
    margin-bottom: 1.5em;
    font-size: 18px;
  }
  footer .footer .right .block .icon {
    margin-right: 1em;
    padding-top: 0.3em;
  }
  footer .footer .right .block .icon img {
    width: 1.2em;
  }
  footer .footer .right .block + .block {
    margin-top: 0;
  }
}
@media (max-width: 960px) {
  footer {
    font-size: 26px;
  }
  footer .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5em 12%;
  }
  footer .footer .left {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5em;
    margin-bottom: 3.5rem;
  }
  footer .footer .left .block {
    margin-bottom: 0;
  }
  footer .footer .left .block h2 a {
    font-size: 16px;
  }
  footer .footer .right {
    width: 100%;
  }
  footer .footer .right h2 {
    margin-bottom: 1.5em;
    font-size: 18px;
  }
  footer .footer .right .block .icon {
    margin-right: 1em;
    padding-top: 0.3em;
  }
  footer .footer .right .block .icon img {
    width: 1.2em;
  }
  footer .footer .right .block + .block {
    margin-top: 0;
  }
}
@media (max-device-width: 960px) {
  footer {
    font-size: 32px;
  }
}
@media (max-width: 960px) {
  footer {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  footer {
    font-size: 16px;
  }
  footer .footer {
    padding: 30px 25px;
  }
}
.form-field {
  background: #fff;
  align-items: flex-start;
  margin-left: 16px;
  display: flex;
  position: relative;
}
.form-field .form-field-label {
  height: auto;
  background: #3457ff;
  margin-left: -16px;
  padding: 0 16px;
  line-height: 40px;
  display: inline-block;
}
.form-field .form-field-label span {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.form-field .form-field-control {
  height: auto;
  flex: 1;
  align-items: center;
  padding: 16px;
  display: flex;
}
.form-field .form-field-control textarea,
.form-field .form-field-control input {
  color: #212121;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: bold;
}
.form-field.form-field-textarea {
  height: auto;
  width: 470px;
  flex-direction: column;
}
.form-field.form-field-textarea .form-field-control {
  width: 100%;
}
.form-field-option input:checked + span {
  color: #fff;
  clip-path: polygon(
    calc(100% - 10px) 0%,
    0% 0%,
    0% 100%,
    100% 100%,
    100% 10px
  );
  background: #3457ff;
}
.form-field-option label {
  cursor: pointer;
}
.form-field-option span {
  -webkit-user-select: none;
  user-select: none;
  background: #ffa817;
  padding: 12px;
  display: inline-block;
  position: relative;
}
.form-field-option input {
  width: 0;
  height: 0;
}
.form-field-option span {
  color: #212121;
  font-size: 16px;
  font-weight: bold;
}
.form-field-2 {
  margin-bottom: 16px;
  display: flex;
}
.form-field-2 .form-field-2-label {
  color: #fff;
  margin-right: 28px;
  line-height: 56px;
}
.form-field-2 .form-field-2-control {
  height: 56px;
  background: #fff;
  border-radius: 8px;
  flex: 1;
  overflow: hidden;
}
.form-field-2 .form-field-2-control input,
.form-field-2 .form-field-2-control select,
.form-field-2 .form-field-2-control textarea,
.form-field-2 .form-field-2-control input[type='date'] {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  outline: none;
  padding: 15px;
}
.form-field-2 .form-field-2-select {
  position: relative;
}
.form-field-2 .form-field-2-select select {
  cursor: pointer;
}
.form-field-2 .form-field-2-select:after {
  content: '';
  pointer-events: none;
  width: 24px;
  height: 24px;
  height: 100%;
  background-image: url('images/select-arrow.b2d2423e.svg');
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 18px;
}
.form-field-2 .form-field-2-date {
  position: relative;
}
.form-field-2 .form-field-2-date input {
  cursor: pointer;
}
.form-field-2
  .form-field-2-date
  input[type='date']::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 24px;
  height: 24px;
  height: 100%;
  cursor: pointer;
  position: absolute;
  right: 18px;
}
.form-field-2 .form-field-2-date:after {
  content: '';
  pointer-events: none;
  width: 24px;
  height: 24px;
  height: 100%;
  background-image: url('images/select-date.97fc97a5.svg');
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 18px;
}
.form-field-2 .form-field-2-textarea {
  height: auto;
}
.breadcrumb-top {
  color: #5d646b;
  background: #f0f8ff;
  font-size: 16px;
}
.breadcrumb {
  padding: 10px 40px;
}
.breadcrumb span {
  font-size: 0.875rem;
  position: relative;
}
.breadcrumb span + span {
  margin-left: 8px;
}
.breadcrumb span + span:before {
  content: '>';
  margin-right: 8px;
}
@media (max-device-width: 600px) {
  .breadcrumb {
    padding: 10px 20px;
  }
}
@media (max-width: 600px) {
  .breadcrumb {
    padding: 10px 20px;
  }
}
h1 {
  color: #3457ff;
}
.expr-top {
  background: #cce3fe;
  position: relative;
}
.expr-top .tri_top {
  width: 100%;
  z-index: 2;
  position: absolute;
  bottom: 0;
}
.expr-top .tri_top img {
  width: 100%;
}
.expr-top .expr {
  height: 670px;
  justify-content: space-between;
  display: flex;
  position: relative;
}
.expr-top .expr .left {
  padding-top: 153px;
}
.expr-top .expr .left .title {
  color: #3457ff;
  margin-bottom: 16px;
  display: flex;
}
.expr-top .expr .left .title img {
  margin-right: 8px;
}
.expr-top .expr .left .list {
  margin-bottom: 56px;
  display: flex;
}
.expr-top .expr .left .list .item {
  width: 180px;
  height: 120px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}
@media (max-device-width: 960px) {
  .expr-top .expr .left .list .item {
    height: auto;
  }
}
@media (max-width: 960px) {
  .expr-top .expr .left .list .item {
    height: auto;
  }
}
.expr-top .expr .left .text {
  color: #212121;
  font-weight: bold;
}
.expr-top .expr .left .num-animate {
  visibility: hidden;
}
.expr-top .expr .left .num-animate span:last-child {
  font-size: 22px;
  display: inline-block;
  position: absolute;
  top: 5px;
}
.expr-top .expr .left .num {
  color: #3457ff;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 3em;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
.expr-top .expr .left .num span {
  display: inline-block;
  position: relative;
}
.expr-top .expr .right {
  height: 100%;
  align-items: flex-end;
  padding-bottom: 4%;
  display: flex;
}
.expr-top .expr .right .right-title {
  display: none;
}
.expr-top .expr .right .right-content {
  width: 525px;
  height: 477px;
  display: flex;
  position: relative;
}
.expr-top .expr .right .right-content .img {
  width: 647px;
  height: 647px;
}
.expr-top .expr .right .right-content .img img {
  width: 100%;
}
.expr-top .expr .right .right-content .text {
  width: 55%;
  position: absolute;
  top: 24%;
  left: 35%;
}
.expr-top .expr .right .right-content .text h2 {
  color: #212121;
  font-size: 1.5em;
}
.expr-top .expr .right .right-content .other {
  margin-top: 48px;
}
.expr-top .expr .right .right-content .other span {
  color: #212121;
  font-family:
    Inconsolata,
    monospace,
    Noto Sans Tc;
  font-size: 0.88em;
  font-weight: 700;
  font-stretch: 200%;
}
.expr-top .expr .right .right-content .other p {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
}
.feedback {
  overflow: hidden;
}
.home {
  color: #212121;
  position: relative;
  overflow: hidden;
}
.home .services-top .title {
  color: #3457ff;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 1.5em;
  display: flex;
}
.home .services-top .title span {
  font-size: 1.5em;
  font-weight: 700;
}
.home .services-top .services .blocks {
  width: 690px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 126px;
  margin-top: 8px;
  display: grid;
}
.home .services-top .services .blocks .block {
  width: 282px;
}
.home .services-top .services .blocks .block .index {
  color: #ff6109;
  font-family:
    Inconsolata,
    monospace,
    Noto Sans Tc;
  font-size: 0.8em;
  font-weight: 700;
  font-stretch: 200%;
}
.home .services-top .services .blocks .block .sub-title {
  color: #212121;
  margin-bottom: 4px;
  font-size: 1.5em;
  font-weight: bold;
}
.home .services-top .services .blocks .block p {
  color: #212121;
  text-align: justify;
  font-size: 0.88em;
  line-height: 1.2rem;
}
.home .services-top .services .blocks .block:nth-child(1) {
  grid-area: 1/1;
}
.home .services-top .services .blocks .block:nth-child(2) {
  grid-area: 2/1;
}
.home .services-top .services .blocks .block:nth-child(3) {
  grid-area: 3/1;
}
.home .services-top .services .blocks .block:nth-child(4) {
  grid-area: 4/1;
}
.home .services-top .services .blocks .block:nth-child(5) {
  grid-area: 1/2;
}
.home .services-top .services .blocks .block:nth-child(6) {
  grid-area: 2/2;
}
.home .services-top .services .blocks .block:nth-child(7) {
  grid-area: 3/2;
}
.home .services-top .services .blocks .block:nth-child(8) {
  grid-area: 4/2;
}
.home .case-top {
  background-position: top;
  background-size: cover;
  margin-top: -1px;
  position: relative;
}
.home .case-top .case {
  background-color: #e0effd;
  background-size: cover;
  margin-top: -1px;
}
@media (max-device-width: 1280px) {
  .home .case-top .container.title {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 1280px) {
  .home .case-top .container.title {
    margin-left: 40px;
    margin-right: 40px;
  }
}
.home .case-top .title {
  color: #3457ff;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}
.home .case-top .title span {
  font-size: 1.5em;
  font-weight: 700;
}
.home .case-top .title .link {
  flex: 1;
  justify-content: flex-end;
  padding-right: 25%;
  display: flex;
}
.home .case-top .title .link a {
  color: #3457ff;
  font-size: 1.125em;
  font-weight: 500;
}
.home {
  position: relative;
}
.home .services-top {
  background: #fff;
  padding: 150px 150px 80px;
  display: block;
  position: relative;
  transform: translateY(0);
}
.logos.training {
  background-color: #fff;
  padding-bottom: 72px;
}
@media (max-device-width: 960px) {
  .logos.training .logos-container .grid_set {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .logos.training .logos-container .grid_set {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.feedback {
  padding: 100px 0 68px;
}
.feedback.bg_blue {
  background-color: #e0effd;
}
@media (max-device-width: 960px) {
  .feedback {
    padding-bottom: 30px;
  }
}
@media (max-width: 960px) {
  .feedback {
    padding-bottom: 30px;
  }
}
.feedback .content {
  margin-left: calc(50% - 640px);
  padding: 24px 0;
}
@media (max-device-width: 1280px) {
  .feedback .content {
    margin-left: 40px;
  }
}
@media (max-width: 1280px) {
  .feedback .content {
    margin-left: 40px;
  }
}
@media (max-device-width: 960px) {
  .feedback .content {
    margin-right: 40px;
  }
}
@media (max-width: 960px) {
  .feedback .content {
    margin-right: 40px;
  }
}
@media (max-device-width: 600px) {
  .feedback .content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .feedback .content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.feedback .title {
  color: #3457ff;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}
.feedback .title span {
  font-size: 1.5em;
  font-weight: 700;
}
.feedback .title .dec3 {
  position: absolute;
  top: -53px;
  right: 35%;
}
.feedback .feedback-card {
  padding-bottom: 3rem;
}
.feedback .feedback-card .avatar {
  width: 78px;
  height: 78px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
.feedback .feedback-card .avatar .client {
  z-index: 1;
  position: relative;
}
.feedback .feedback-card .avatar .bg {
  z-index: 0;
  position: absolute;
}
.feedback .feedback-card .info {
  align-items: center;
  margin: 8px 0 4px;
  display: flex;
}
.feedback .feedback-card .info .client {
  margin-right: 8px;
  font-weight: bold;
}
.feedback .feedback-card .info .comp {
  font-size: 0.88em;
}
.feedback .feedback-card .desc {
  border-top: 1px solid #349dff;
  padding: 12px;
  line-height: 1.5rem;
}
.feedback .decs {
  width: 100%;
  height: 200px;
  display: flex;
  position: relative;
}
.feedback .decs .dec1 {
  position: absolute;
  top: 25px;
  right: 250px;
}
.feedback .decs .dec2 {
  position: absolute;
  top: 60px;
  right: 130px;
}
.feedback .feedback-pagination {
  visibility: hidden;
}
.content-case {
  width: 100%;
  margin-left: calc(50% - 640px);
  position: relative;
}
@media (max-device-width: 1280px) {
  .content-case {
    margin-left: 40px;
  }
}
@media (max-width: 1280px) {
  .content-case {
    margin-left: 40px;
  }
}
@media (max-device-width: 600px) {
  .content-case {
    margin-left: 1rem;
  }
}
@media (max-width: 600px) {
  .content-case {
    margin-left: 1rem;
  }
}
.content-case .case-swiper-pagination {
  width: auto;
  color: #3457ff;
  font-size: 0.88em;
  font-weight: 900;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.content-case .case-swiper-pagination > * {
  margin: 0 2px;
  font-family:
    Inconsolata,
    monospace,
    Noto Sans Tc;
  font-weight: 700;
  font-stretch: 200%;
}
.content-case .case-swiper-button-wrap {
  width: 150px;
  height: 50px;
  position: absolute;
  top: -60px;
}
.content-case .case-swiper-button-wrap .case-swiper-button-prev {
  color: #3457ff;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.content-case .case-swiper-button-wrap .case-swiper-button-next {
  color: #3457ff;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.case-swiper {
  margin-top: 100px;
}
@media (max-device-width: 960px) {
  .case-swiper {
    margin-top: 4rem;
  }
}
@media (max-width: 960px) {
  .case-swiper {
    margin-top: 4rem;
  }
}
.case-swiper .swiper-slide {
  width: 55%;
}
.case-swiper .swiper-slide-active .case-box {
  opacity: 1;
  transform: scale(1);
}
.case-swiper .case-box {
  opacity: 0.5;
  transform-origin: top;
  padding-bottom: 50px;
  transition-duration: 0.3s;
  display: block;
  position: relative;
  transform: scale(0.85);
}
.case-swiper .case-box:hover .img-wrap a {
  bottom: 22px;
}
.case-swiper .case-box p {
  margin-top: 10px;
  font-size: 1rem;
}
@media (max-device-width: 600px) {
  .case-swiper .case-box p {
    font-size: 0.875rem;
  }
}
@media (max-width: 600px) {
  .case-swiper .case-box p {
    font-size: 0.875rem;
  }
}
.case-swiper .case-box .img-wrap {
  position: relative;
  overflow: hidden;
}
.case-swiper .case-box .img-wrap img {
  width: 100%;
}
.case-swiper .case-box .img-wrap:before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: 2;
  background: none;
  transition: background 0.2s cubic-bezier(0.51, 0.92, 0.24, 1.15);
  position: absolute;
  top: 0;
  left: 0;
}
.case-swiper .case-box .img-wrap a {
  width: 80px;
  height: 80px;
  z-index: 2;
  color: transparent;
  background: url('images/related-case-link-sprites.cac73b26.png') 0 0 /
    no-repeat;
  transition: bottom 0.4s cubic-bezier(0.51, 0.92, 0.24, 1.15);
  position: absolute;
  bottom: -80px;
  right: 22px;
}
@media (max-device-width: 960px) {
  .case-swiper .case-box .img-wrap a {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 960px) {
  .case-swiper .case-box .img-wrap a {
    width: 40px;
    height: 40px;
  }
}
.case-swiper .title-wrap {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: absolute;
}
.case-swiper .title-wrap .comp {
  color: #fff;
  background: #3457ff;
  padding: 16px 12px 8px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-device-width: 960px) {
  .case-swiper .title-wrap .comp {
    padding: 4px 12px 2px;
    font-size: 12px;
  }
}
@media (max-width: 960px) {
  .case-swiper .title-wrap .comp {
    padding: 4px 12px 2px;
    font-size: 12px;
  }
}
.case-swiper .title-wrap .title {
  color: #fff;
  text-align: left;
  background: #3457ff;
  margin-top: -1px;
  padding: 1rem 2rem;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  display: inline-block;
}
@media (max-device-width: 960px) {
  .case-swiper .title-wrap .title {
    padding: 4px 12px;
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .case-swiper .title-wrap .title {
    padding: 4px 12px;
    font-size: 18px;
  }
}
.expr-carousel {
  -webkit-user-select: none;
  user-select: none;
}
.expr-carousel.disabled {
  pointer-events: none;
}
.expr-carousel .expr-carousel-item {
  display: none;
}
.expr-carousel .expr-carousel-active {
  display: inline-block;
}
@media (max-device-width: 1200px) {
  .expr-top .expr .right .right-content {
    width: 475px;
    height: 430px;
    position: absolute;
    right: 0;
  }
  .expr-top .expr .right .right-content .text {
    width: 45%;
    top: 30%;
    left: 28%;
  }
  .expr-top .expr .right .right-content .text h2 {
    font-size: 1.25rem;
  }
  .expr-top .expr .right .right-content .other p {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .expr-top .expr .right .right-content {
    width: 475px;
    height: 430px;
    position: absolute;
    right: 0;
  }
  .expr-top .expr .right .right-content .text {
    width: 45%;
    top: 30%;
    left: 28%;
  }
  .expr-top .expr .right .right-content .text h2 {
    font-size: 1.25rem;
  }
  .expr-top .expr .right .right-content .other p {
    font-size: 1rem;
  }
}
@media (max-device-width: 960px) {
  .expr-top .expr {
    height: auto;
    flex-direction: column;
  }
  .expr-top .expr .left {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .expr-top .expr .left .title {
    width: 100%;
    margin: 0 auto 0.5em;
    padding-top: 3em;
    display: flex;
  }
  .expr-top .expr .left .title h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.125em;
    font-weight: 700;
  }
  .expr-top .expr .left .title img {
    display: none;
  }
  .expr-top .expr .left .list {
    justify-content: center;
    margin-bottom: 56px;
    display: flex;
  }
  .expr-top .expr .left .list .item {
    width: 30%;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .expr-top .expr .left .list:nth-child(2) .item {
    width: 50%;
  }
  .expr-top .expr .left .text {
    color: #212121;
    font-size: 0.75em;
    font-weight: bold;
  }
  .expr-top .expr .left .num {
    color: #3457ff;
    font-size: 2em;
    position: relative;
  }
  .expr-top .expr .right {
    flex-direction: column;
    position: relative;
  }
  .expr-top .expr .right .right-title {
    padding-left: 6%;
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    position: absolute;
    top: 4em;
    left: 0;
  }
  .expr-top .expr .right .right-content {
    width: 525px;
    height: 477px;
    display: flex;
    position: relative;
  }
  .expr-top .expr .right .right-content .text {
    width: 55%;
  }
  .expr-top .expr .right .right-content .text h2 {
    display: none;
  }
  .expr-top .expr .right .right-content .text .other {
    margin-top: 48px;
  }
  .expr-top .expr .right .right-content .text .other span {
    color: #212121;
    font-size: 0.88em;
  }
  .expr-top .expr .right .right-content .text .other p {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
  }
  .home {
    font-size: 26px;
  }
  .home .services-top {
    background: #fff;
    padding: 0 12% 3em;
    position: relative;
  }
  .home .services-top .title {
    margin-bottom: 0;
    padding: 2em 0;
  }
  .home .services-top .title img {
    display: none;
  }
  .home .services-top .title span {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
  }
  .home .services-top .services .blocks {
    width: 100%;
    display: block;
  }
  .home .services-top .services .blocks .block {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    padding: 0 48px;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .home .services-top .services .blocks .block {
    padding: 0 24px;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .home .services-top .services .blocks .block {
    padding: 0 24px;
  }
}
@media (max-device-width: 960px) {
  .home .services-top .services .blocks .block .index {
    color: #ff6109;
    margin-bottom: 4px;
  }
  .home .services-top .services .blocks .block .sub-title {
    color: #212121;
    margin-bottom: 4px;
    font-size: 1em;
    font-weight: bold;
  }
  .home .services-top .services .blocks .block p {
    color: #212121;
    font-size: 0.88em;
    line-height: 1.2;
  }
  .home .services-top .services .blocks .block + .block {
    margin-top: 2em;
  }
  .home .case-top {
    background: none;
    padding-top: 0;
    transform: none;
  }
  .home .case-top .title {
    margin-bottom: 0;
    font-size: 18px;
    position: relative;
  }
  .home .case-top .title img {
    display: none;
  }
  .home .case-top .title span {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
  }
  .home .case-top .title .link {
    z-index: 1;
    padding-right: 0;
    position: absolute;
    top: 54px;
    right: 40px;
  }
  .home .case-top .title .link a {
    font-size: 12px;
  }
  .home .case-top .case {
    height: auto;
    padding-top: 2rem;
  }
  .feedback {
    padding-top: 50px;
  }
  .feedback .feedback-pagination {
    visibility: visible;
  }
  .feedback .feedback-card {
    padding-bottom: 1.5rem;
  }
  .feedback p {
    font-size: 0.875rem;
  }
  .feedback .title {
    margin-bottom: 0;
    padding: 2em 0;
    position: relative;
  }
  .feedback .title img {
    display: none;
  }
  .feedback .title span {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
  }
}
@media (max-device-width: 960px) and (max-device-width: 960px) {
  .feedback .title span {
    font-size: 1.5rem;
  }
}
@media (max-device-width: 960px) and (max-width: 960px) {
  .feedback .title span {
    font-size: 1.5rem;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .feedback .title span {
    font-size: 1.125rem;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .feedback .title span {
    font-size: 1.125rem;
  }
}
@media (max-device-width: 960px) {
  .feedback .title .dec3 {
    display: block;
    top: 2em;
    right: 0;
  }
  .feedback .content {
    position: relative;
  }
  .feedback .decs {
    height: 100px;
    position: relative;
    bottom: 0;
    right: 0;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .feedback .decs {
    width: 50%;
    right: -50%;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .feedback .decs {
    width: 50%;
    right: -50%;
  }
}
@media (max-device-width: 960px) {
  .feedback .decs .dec1,
  .feedback .decs .dec2 {
    width: 60px;
  }
  .feedback .decs .dec1 {
    right: 170px;
  }
  .feedback .logos {
    flex-wrap: wrap;
    gap: 10vw;
    margin-top: 2em;
    padding: 0 6vw;
    display: flex;
  }
  .feedback .logos .logo_wrap {
    width: 22.6667vw;
    align-items: center;
    display: flex;
  }
  .caseSwiper {
    padding-top: 2em;
    font-size: 26px;
  }
  .caseSwiper .swiper-slide {
    width: 690px;
    height: 500px;
  }
  .caseSwiper .swiper-slide .case .title {
    font-size: 1.5em;
  }
  .caseSwiper .swiper-slide-active {
    width: 690px;
    height: 900px;
  }
  .caseSwiper .swiper-slide-active img {
    height: 470px;
  }
}
@media (max-width: 960px) {
  .expr-top .expr {
    height: auto;
    flex-direction: column;
  }
  .expr-top .expr .left {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .expr-top .expr .left .title {
    width: 100%;
    margin: 0 auto 0.5em;
    padding-top: 3em;
    display: flex;
  }
  .expr-top .expr .left .title h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.125em;
    font-weight: 700;
  }
  .expr-top .expr .left .title img {
    display: none;
  }
  .expr-top .expr .left .list {
    justify-content: center;
    margin-bottom: 56px;
    display: flex;
  }
  .expr-top .expr .left .list .item {
    width: 30%;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .expr-top .expr .left .list:nth-child(2) .item {
    width: 50%;
  }
  .expr-top .expr .left .text {
    color: #212121;
    font-size: 0.75em;
    font-weight: bold;
  }
  .expr-top .expr .left .num {
    color: #3457ff;
    font-size: 2em;
    position: relative;
  }
  .expr-top .expr .right {
    flex-direction: column;
    position: relative;
  }
  .expr-top .expr .right .right-title {
    padding-left: 6%;
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    position: absolute;
    top: 4em;
    left: 0;
  }
  .expr-top .expr .right .right-content {
    width: 525px;
    height: 477px;
    display: flex;
    position: relative;
  }
  .expr-top .expr .right .right-content .text {
    width: 55%;
  }
  .expr-top .expr .right .right-content .text h2 {
    display: none;
  }
  .expr-top .expr .right .right-content .text .other {
    margin-top: 48px;
  }
  .expr-top .expr .right .right-content .text .other span {
    color: #212121;
    font-size: 0.88em;
  }
  .expr-top .expr .right .right-content .text .other p {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
  }
  .home {
    font-size: 26px;
  }
  .home .services-top {
    background: #fff;
    padding: 0 12% 3em;
    position: relative;
  }
  .home .services-top .title {
    margin-bottom: 0;
    padding: 2em 0;
  }
  .home .services-top .title img {
    display: none;
  }
  .home .services-top .title span {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
  }
  .home .services-top .services .blocks {
    width: 100%;
    display: block;
  }
  .home .services-top .services .blocks .block {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    padding: 0 48px;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .home .services-top .services .blocks .block {
    padding: 0 24px;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .home .services-top .services .blocks .block {
    padding: 0 24px;
  }
}
@media (max-width: 960px) {
  .home .services-top .services .blocks .block .index {
    color: #ff6109;
    margin-bottom: 4px;
  }
  .home .services-top .services .blocks .block .sub-title {
    color: #212121;
    margin-bottom: 4px;
    font-size: 1em;
    font-weight: bold;
  }
  .home .services-top .services .blocks .block p {
    color: #212121;
    font-size: 0.88em;
    line-height: 1.2;
  }
  .home .services-top .services .blocks .block + .block {
    margin-top: 2em;
  }
  .home .case-top {
    background: none;
    padding-top: 0;
    transform: none;
  }
  .home .case-top .title {
    margin-bottom: 0;
    font-size: 18px;
    position: relative;
  }
  .home .case-top .title img {
    display: none;
  }
  .home .case-top .title span {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
  }
  .home .case-top .title .link {
    z-index: 1;
    padding-right: 0;
    position: absolute;
    top: 54px;
    right: 40px;
  }
  .home .case-top .title .link a {
    font-size: 12px;
  }
  .home .case-top .case {
    height: auto;
    padding-top: 2rem;
  }
  .feedback {
    padding-top: 50px;
  }
  .feedback .feedback-pagination {
    visibility: visible;
  }
  .feedback .feedback-card {
    padding-bottom: 1.5rem;
  }
  .feedback p {
    font-size: 0.875rem;
  }
  .feedback .title {
    margin-bottom: 0;
    padding: 2em 0;
    position: relative;
  }
  .feedback .title img {
    display: none;
  }
  .feedback .title span {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
  }
}
@media (max-width: 960px) and (max-device-width: 960px) {
  .feedback .title span {
    font-size: 1.5rem;
  }
}
@media (max-width: 960px) and (max-width: 960px) {
  .feedback .title span {
    font-size: 1.5rem;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .feedback .title span {
    font-size: 1.125rem;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .feedback .title span {
    font-size: 1.125rem;
  }
}
@media (max-width: 960px) {
  .feedback .title .dec3 {
    display: block;
    top: 2em;
    right: 0;
  }
  .feedback .content {
    position: relative;
  }
  .feedback .decs {
    height: 100px;
    position: relative;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .feedback .decs {
    width: 50%;
    right: -50%;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .feedback .decs {
    width: 50%;
    right: -50%;
  }
}
@media (max-width: 960px) {
  .feedback .decs .dec1,
  .feedback .decs .dec2 {
    width: 60px;
  }
  .feedback .decs .dec1 {
    right: 170px;
  }
  .feedback .logos {
    flex-wrap: wrap;
    gap: 10vw;
    margin-top: 2em;
    padding: 0 6vw;
    display: flex;
  }
  .feedback .logos .logo_wrap {
    width: 22.6667vw;
    align-items: center;
    display: flex;
  }
  .caseSwiper {
    padding-top: 2em;
    font-size: 26px;
  }
  .caseSwiper .swiper-slide {
    width: 690px;
    height: 500px;
  }
  .caseSwiper .swiper-slide .case .title {
    font-size: 1.5em;
  }
  .caseSwiper .swiper-slide-active {
    width: 690px;
    height: 900px;
  }
  .caseSwiper .swiper-slide-active img {
    height: 470px;
  }
}
@media screen and (max-width: 768px) {
  .expr-top .expr .right .right-title {
    width: 100%;
    position: relative;
    top: 0;
  }
  .expr-top .expr .right .right-content {
    width: 65%;
    height: 363px;
  }
  .expr-top .expr .right .right-content .expr-carousel,
  .expr-top .expr .right .right-content .img {
    height: 500px;
    width: 500px;
  }
}
@media screen and (max-width: 450px) {
  .expr-top .expr .right .right-content {
    width: 85%;
    height: 303px;
  }
  .expr-top .expr .right .right-content .text {
    top: 20%;
  }
  .expr-top .expr .right .right-content .expr-carousel,
  .expr-top .expr .right .right-content .img {
    height: 388px;
    width: 388px;
  }
}
@media (max-device-width: 600px) {
  .home,
  .caseSwiper {
    font-size: 42px;
  }
}
@media (max-width: 600px) {
  .home,
  .caseSwiper {
    font-size: 42px;
  }
}
@media (max-width: 960px) {
  .home,
  .caseSwiper {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .home,
  .caseSwiper {
    font-size: 16px;
  }
}
@media (max-device-width: 1280px) {
  .container.expr {
    padding-left: 6%;
  }
}
@media (max-width: 1280px) {
  .container.expr {
    padding-left: 6%;
  }
}
@media (max-device-width: 960px) {
  .container.expr {
    padding-left: 0;
  }
}
@media (max-width: 960px) {
  .container.expr {
    padding-left: 0;
  }
}
.home-animate {
  background: #cce3fe;
  display: flex;
  position: relative;
}
.home-animate .video-loop {
  z-index: 1;
}
.home-animate .wrapper-l {
  width: 68%;
  height: 660px;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  position: relative;
}
@media (max-device-width: 1440px) {
  .home-animate .wrapper-l {
    height: 550px;
    flex-shrink: 1;
  }
}
@media (max-width: 1440px) {
  .home-animate .wrapper-l {
    height: 550px;
    flex-shrink: 1;
  }
}
@media (max-device-width: 1200px) {
  .home-animate .wrapper-l {
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .home-animate .wrapper-l {
    height: 500px;
  }
}
@media (max-device-width: 960px) {
  .home-animate .wrapper-l {
    height: 100%;
    width: 50%;
    transition-duration: 0.75s;
    transition-timing-function: ease-in;
    position: absolute;
  }
}
@media (max-width: 960px) {
  .home-animate .wrapper-l {
    height: 100%;
    width: 50%;
    transition-duration: 0.75s;
    transition-timing-function: ease-in;
    position: absolute;
  }
}
@media (max-width: 450px) {
  .home-animate .wrapper-l {
    width: 120%;
    transform: translateX(-75%);
  }
}
.home-animate .wrapper-l.active {
  width: calc(100% + 100px);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
  transform: translateX(0%);
}
.home-animate .wrapper-l.active .left-video {
  left: 15%;
}
@media (max-device-width: 600px) {
  .home-animate .wrapper-l.active .left-video {
    left: 0%;
  }
}
@media (max-width: 600px) {
  .home-animate .wrapper-l.active .left-video {
    left: 0%;
  }
}
.home-animate .wrapper-l.active span {
  display: block;
  top: 16px;
  transform: translateX(-100%);
}
.home-animate .left-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-device-width: 960px) {
  .home-animate .left-video {
    transition-duration: 1s;
    left: -20%;
  }
}
@media (max-width: 960px) {
  .home-animate .left-video {
    transition-duration: 1s;
    left: -20%;
  }
}
.home-animate .left-video .animate-video {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-device-width: 960px) {
  .home-animate .left-video .animate-video {
    transition-duration: 1.5s;
    transition-delay: 0.15s;
  }
}
@media (max-width: 960px) {
  .home-animate .left-video .animate-video {
    transition-duration: 1.5s;
    transition-delay: 0.15s;
  }
}
.home-animate .left-video span {
  opacity: 0;
  letter-spacing: 1px;
  z-index: 30;
  color: #fff;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 24px;
  transition-duration: 0.25s;
  transition-delay: 0.45s;
  display: none;
  position: absolute;
  top: 16px;
  right: 16%;
}
@media (max-device-width: 600px) {
  .home-animate .left-video span {
    right: 0;
  }
}
@media (max-width: 600px) {
  .home-animate .left-video span {
    right: 0;
  }
}
.home-animate .wrapper-r {
  min-height: 440px;
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  align-items: flex-end;
  margin-right: calc(47.5% - 640px);
  padding: 40px 0;
  display: flex;
}
@media (max-device-width: 1440px) {
  .home-animate .wrapper-r {
    margin-right: 40px;
  }
}
@media (max-width: 1440px) {
  .home-animate .wrapper-r {
    margin-right: 40px;
  }
}
@media (max-device-width: 600px) {
  .home-animate .wrapper-r {
    height: 320px;
    min-height: auto;
    margin-right: 15px;
  }
}
@media (max-width: 600px) {
  .home-animate .wrapper-r {
    height: 320px;
    min-height: auto;
    margin-right: 15px;
  }
}
.home-animate .wrapper-r span {
  display: block;
}
@media (max-device-width: 1200px) {
  .home-animate .wrapper-r span {
    max-height: 120px;
  }
}
@media (max-width: 1200px) {
  .home-animate .wrapper-r span {
    max-height: 120px;
  }
}
.home-animate .wrapper-r span svg {
  height: 136px;
  margin-left: auto;
}
@media (max-device-width: 1200px) {
  .home-animate .wrapper-r span svg {
    max-height: 100px;
  }
}
@media (max-width: 1200px) {
  .home-animate .wrapper-r span svg {
    max-height: 100px;
  }
}
@media (max-device-width: 600px) {
  .home-animate .wrapper-r span svg {
    max-height: 80px;
  }
}
@media (max-width: 600px) {
  .home-animate .wrapper-r span svg {
    max-height: 80px;
  }
}
.home-animate .wrapper-r a:last-child span svg {
  height: 86px;
}
@media (max-device-width: 1200px) {
  .home-animate .wrapper-r a:last-child span svg {
    max-height: 63.3px;
  }
}
@media (max-width: 1200px) {
  .home-animate .wrapper-r a:last-child span svg {
    max-height: 63.3px;
  }
}
@media (max-device-width: 600px) {
  .home-animate .wrapper-r a:last-child span svg {
    max-height: 52px;
  }
}
@media (max-width: 600px) {
  .home-animate .wrapper-r a:last-child span svg {
    max-height: 52px;
  }
}
.home-animate .right-arrow {
  z-index: 0;
  width: 99.8%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-animate .title-wrap {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
}
@media (max-device-width: 960px) {
  .home-animate .title-wrap {
    display: none;
  }
}
@media (max-width: 960px) {
  .home-animate .title-wrap {
    display: none;
  }
}
.home-animate .title-wrap .title {
  color: #fff;
  font-size: 5em;
  font-weight: bold;
  transition-duration: 0.5s;
  position: absolute;
  top: 34%;
  right: 6%;
  transform: rotate(8deg);
}
@media (max-device-width: 1200px) {
  .home-animate .title-wrap .title {
    font-size: 4rem;
    top: 30%;
    right: 6%;
  }
}
@media (max-width: 1200px) {
  .home-animate .title-wrap .title {
    font-size: 4rem;
    top: 30%;
    right: 6%;
  }
}
.home-animate .title-wrap .desc {
  color: #fff;
  font-size: 0.88em;
  transition-duration: 0.5s;
  position: absolute;
  top: 55%;
  right: 6%;
  transform: rotate(-8deg);
}
.home-animate .title-wrap.top .title {
  top: 12%;
}
@media (max-device-width: 1200px) {
  .home-animate .title-wrap.top .title {
    top: 9%;
    right: 8%;
  }
}
@media (max-width: 1200px) {
  .home-animate .title-wrap.top .title {
    top: 9%;
    right: 8%;
  }
}
.home-animate .title-wrap.top .desc {
  top: 33%;
}
.home-animate .title-wrap.bottom .title {
  top: 58%;
}
@media (max-device-width: 1200px) {
  .home-animate .title-wrap.bottom .title {
    top: 55%;
  }
}
@media (max-width: 1200px) {
  .home-animate .title-wrap.bottom .title {
    top: 55%;
  }
}
.home-animate .title-wrap.bottom .desc {
  top: 80%;
}
.home-animate .paint-area {
  z-index: -1;
  position: relative;
}
.home-animate .paint-area #arrow {
  fill: #3457ff;
  transition-duration: 0.35s;
}
@media (max-device-width: 960px) {
  .home-animate .paint-area #arrow {
    d: path('M0 0 H90 L100 50 L90 100 H0 ');
  }
}
@media (max-width: 960px) {
  .home-animate .paint-area #arrow {
    d: path('M0 0 H90 L100 50 L90 100 H0 ');
  }
}
.home-animate .paint-area .active-first {
  d: path('M0 0 H82 L100 25 L82 100 H0');
}
.home-animate .paint-area .active-second {
  d: path('M0 0 H82 L100 50 L82 100 H0');
}
.home-animate .paint-area .active-third {
  d: path('M0 0 H82 L100 75 L82 100 H0');
}
.ball-canavas {
  pointer-events: none;
  height: 1397px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-device-width: 960px) {
  .ball-canavas {
    display: none;
  }
}
@media (max-width: 960px) {
  .ball-canavas {
    display: none;
  }
}
.ball-canavas .ball {
  width: 10px;
  height: 10px;
  z-index: 2;
  background-color: transparent;
  border-radius: 100%;
  position: absolute;
  top: 144px;
  right: calc(47.5% - 320px);
}
@media (max-device-width: 1440px) {
  .ball-canavas .ball {
    top: 126px;
    right: 360px;
  }
}
@media (max-width: 1440px) {
  .ball-canavas .ball {
    top: 126px;
    right: 360px;
  }
}
@media (max-device-width: 1200px) {
  .ball-canavas .ball {
    top: 116px;
    right: 276px;
  }
}
@media (max-width: 1200px) {
  .ball-canavas .ball {
    top: 116px;
    right: 276px;
  }
}
@media (max-device-width: 1085px) {
  .ball-canavas .ball {
    top: 106px;
  }
}
@media (max-width: 1085px) {
  .ball-canavas .ball {
    top: 106px;
  }
}
.ball-canavas .ball-animate {
  animation:
    1.5s cubic-bezier(0.08, 0, 0.95, 0.71) forwards balldrop,
    1.5s linear 1.5s forwards ballreboundX,
    1.5s cubic-bezier(0.69, 0, 1, 0.94) 1.5s forwards ballreboundY,
    1.5s linear 3s forwards ballgoX;
}
:root {
  --width: 0;
  --first-height: 830px;
}
@keyframes balldrop {
  1% {
    background-color: #ff4f3e;
  }
  100% {
    top: var(--first-height);
    background-color: #ff4f3e;
  }
}
@keyframes ballreboundX {
  100% {
    right: 50%;
  }
}
@keyframes ballreboundY {
  0% {
    top: var(--first-height);
  }
  15% {
    top: calc(var(--first-height) - 15px);
  }
  100% {
    top: calc(100% - var(--width));
  }
}
@keyframes ballgoX {
  0% {
    right: 50%;
    top: calc(100% - var(--width) - 10px);
  }
  100% {
    top: calc(100% - 10px);
    right: 100%;
  }
}
.case-wrap-ball {
  width: 100%;
  display: block;
  position: relative;
}
.case-wrap-ball:after {
  content: '';
  width: 100%;
  height: 400px;
  background-color: #e0effd;
  display: block;
  position: absolute;
}
.case-wrap-ball img {
  width: 100%;
  margin-bottom: -2px;
}
.case-ball {
  width: 10px;
  height: 10px;
  z-index: 99;
  background-color: #ff4f3e;
  border-radius: 100%;
  position: absolute;
  top: -10px;
  left: -10px;
}
@media (max-device-width: 960px) {
  .case-ball {
    display: none;
  }
}
@media (max-width: 960px) {
  .case-ball {
    display: none;
  }
}
.case-ball-animate {
  animation: 3s cubic-bezier(0.57, 0.15, 1, 0.81) forwards case_ball;
}
@keyframes case_ball {
  0% {
    top: -10px;
    left: -10px;
  }
  100% {
    top: calc(98% - 5px);
    left: 100%;
  }
}
[data-aos='custom-in'] {
  opacity: 0;
  transition-property: transform, opacity;
  transform: translateY(-10px) scale(1.025);
}
[data-aos='custom-in'].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}
html {
  -webkit-text-size-adjust: 100%;
}
.about_page {
  background-color: #f0f8ff;
}
.container_pd_x {
  padding: 0 40px;
}
@media (max-device-width: 600px) {
  .container_pd_x {
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .container_pd_x {
    padding: 0 20px;
  }
}
.container_pd_x .d-flex {
  column-gap: 50px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
}
@media (max-device-width: 960px) {
  .container_pd_x .d-flex {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 960px) {
  .container_pd_x .d-flex {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.container_pd_x .about_img img {
  width: 100%;
  display: block;
}
@media (max-device-width: 960px) {
  .container_pd_x .about_img {
    display: none;
  }
}
@media (max-width: 960px) {
  .container_pd_x .about_img {
    display: none;
  }
}
h1.about_title {
  color: #212121;
  margin-bottom: 1.5rem;
  font-size: 24px;
}
h1.about_title span {
  color: #3457ff;
}
.about_content {
  width: 57%;
  flex-shrink: 0;
}
@media (max-device-width: 960px) {
  .about_content {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .about_content {
    width: 100%;
  }
}
.about_content .about_text p {
  margin-bottom: 1rem;
}
.about_block {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.about_block__title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 32px;
}
@media (max-device-width: 960px) {
  .about_block__title {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .about_block__title {
    font-size: 24px;
  }
}
.award_block {
  min-height: 496px;
  background-image: url('images/award_bg.373a9c08.jpg');
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-device-width: 960px) {
  .award_block .swiper-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 960px) {
  .award_block .swiper-wrapper {
    margin-bottom: 40px;
  }
}
.award_card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem;
  display: block;
}
.award_card img {
  margin: 0 auto;
}
.award_card__title {
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}
.award_card__title span {
  display: block;
}
.award_card__title span:first-child {
  font-weight: bold;
}
.award_card__highlight {
  color: #3457ff;
  text-align: center;
  background-color: #f0f8ff;
  border-radius: 16px;
  margin-top: 1rem;
  padding: 1rem 5px;
  font-size: 18px;
  font-weight: bold;
}
.award_card__highlight span {
  color: #f00;
  font-size: 24px;
  font-weight: bold;
}
.doutify_team {
  background-color: #f0f8ff;
}
.doutify_team__container.d-flex {
  width: 77.8%;
  max-width: 996px;
  column-gap: 50px;
  margin: 3.5rem auto 0;
  display: flex;
}
@media (max-device-width: 960px) {
  .doutify_team__container.d-flex {
    flex-direction: column;
    gap: 50px 0;
  }
}
@media (max-width: 960px) {
  .doutify_team__container.d-flex {
    flex-direction: column;
    gap: 50px 0;
  }
}
@media (max-device-width: 600px) {
  .doutify_team__container.d-flex {
    width: calc(100% - 40px);
  }
}
@media (max-width: 600px) {
  .doutify_team__container.d-flex {
    width: calc(100% - 40px);
  }
}
.doutify_team__container.d-flex .team_block {
  flex: 1;
}
.team_member__d-flex {
  align-items: flex-end;
  margin-bottom: 1.5rem;
  display: flex;
}
.team_member__title {
  margin-left: 1rem;
}
.team_member__title h3 {
  font-size: 32px;
  font-weight: bold;
}
.team_member__title h3 span {
  margin-right: 10px;
  display: inline-block;
}
@media (max-device-width: 960px) {
  .team_member__title h3 {
    font-size: 28px;
  }
}
@media (max-width: 960px) {
  .team_member__title h3 {
    font-size: 28px;
  }
}
.team_member__title span {
  display: block;
}
.team_member .list__header {
  color: #3457ff;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: bold;
}
.team_member .list__content {
  align-self: stretch;
  margin-bottom: 1rem;
}
.certificate {
  background-color: #cce3fe;
}
.certificate_container {
  width: 61%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  display: flex;
}
@media (max-device-width: 600px) {
  .certificate_container {
    width: calc(100% - 40px);
  }
}
@media (max-width: 600px) {
  .certificate_container {
    width: calc(100% - 40px);
  }
}
.certificate_card {
  max-width: calc(25% - 12px);
  text-align: center;
  min-height: 154px;
  background-color: #fff;
  border-radius: 16px;
  flex: 1 0 22%;
  padding: 1rem 10px;
}
.certificate_card img {
  margin: 0 auto 0.5rem;
}
@media (max-device-width: 960px) {
  .certificate_card {
    max-width: calc(50% - 8px);
    flex: 1 0 49%;
  }
}
@media (max-width: 960px) {
  .certificate_card {
    max-width: calc(50% - 8px);
    flex: 1 0 49%;
  }
}
.skills {
  background-color: #e0effd;
}
.skills__container {
  width: 77.8%;
  max-width: 996px;
  background-color: #fff;
  border-radius: 1rem;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
}
@media (max-device-width: 960px) {
  .skills__container {
    flex-direction: column;
  }
}
@media (max-width: 960px) {
  .skills__container {
    flex-direction: column;
  }
}
.skills__container .skills__category:nth-child(2) {
  border-color: #cce3fe;
  border-left-style: solid;
  border-left-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
}
@media (max-device-width: 960px) {
  .skills__container .skills__category:nth-child(2) {
    border: 1px solid #cce3fe;
    border-left: 0;
    border-right: 0;
  }
}
@media (max-width: 960px) {
  .skills__container .skills__category:nth-child(2) {
    border: 1px solid #cce3fe;
    border-left: 0;
    border-right: 0;
  }
}
.skills__category {
  width: 33.3333%;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.skills__category span {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: block;
}
@media (max-device-width: 960px) {
  .skills__category {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 960px) {
  .skills__category {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.skills .icon {
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}
.skills .icon img {
  width: 75px;
}
@media (max-device-width: 600px) {
  .skills .icon img {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .skills .icon img {
    width: 50px;
  }
}
.skills .icon p {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}
.partner {
  background-color: #cce3fe;
}
.partner__container {
  width: 77.8%;
  max-width: 996px;
  background-color: #cce3fe;
  column-gap: 1rem;
  margin: 0 auto;
  display: flex;
}
@media (max-device-width: 960px) {
  .partner__container {
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media (max-width: 960px) {
  .partner__container {
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media (max-device-width: 600px) {
  .partner__container {
    width: calc(100% - 40px);
  }
}
@media (max-width: 600px) {
  .partner__container {
    width: calc(100% - 40px);
  }
}
.partner__card {
  background-color: #fff;
  border-radius: 1rem;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 1rem;
  display: flex;
}
.partner__card img {
  margin-bottom: 1rem;
}
.partner__card p {
  font-size: 1rem;
  font-weight: 700;
}
.partner__card p:last-child {
  font-size: 0.875rem;
  font-weight: normal;
}
.company__container {
  width: 77.8%;
  max-width: 996px;
  column-gap: 1.5rem;
  margin: 0 auto;
  display: flex;
}
.company__container iframe {
  width: 58%;
}
@media (max-device-width: 960px) {
  .company__container {
    flex-direction: column;
    row-gap: 1.5rem;
  }
  .company__container iframe {
    width: 100%;
    min-height: 300px;
  }
}
@media (max-width: 960px) {
  .company__container {
    flex-direction: column;
    row-gap: 1.5rem;
  }
  .company__container iframe {
    width: 100%;
    min-height: 300px;
  }
}
@media (max-device-width: 600px) {
  .company__container {
    width: calc(100% - 40px);
  }
}
@media (max-width: 600px) {
  .company__container {
    width: calc(100% - 40px);
  }
}
.company__info {
  flex: 1;
}
.company .info_list {
  width: 100%;
  align-items: flex-start;
  margin-bottom: 1rem;
  display: flex;
}
.company .info_list span {
  width: 35px;
}
.company .info_list img {
  margin-right: 1rem;
}
.company .info_list__content {
  flex: 1 0 auto;
}
.company .info_list__content p {
  border-bottom: 1px solid #cce3fe;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.company .info_list__content p span:first-child {
  min-width: 105px;
  margin-right: 1rem;
  display: inline-block;
}
.company .info_list__content p span:last-child {
  font-weight: bold;
}
.company .info_list__content p:last-child {
  border: none;
}
.case-study {
  color: #212121;
  font-size: 16px;
}
.case-study.top {
  background: #3457ff;
}
.case-study.top .top-content {
  max-width: 1280px;
  height: 425px;
  margin: 0 auto;
  padding: 0 144px;
  position: relative;
  overflow: hidden;
}
.case-study.top .top-content .bg {
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.case-study.top .top-content .bg img {
  height: 100%;
}
.case-study.top .top-content .circle {
  z-index: 2;
  position: absolute;
  top: 266px;
  right: -82px;
}
.case-study.top .top-content .circle img {
  width: 240px;
}
.case-study.top .top-content .carousel {
  z-index: 2;
  position: absolute;
  top: 188px;
  left: 617px;
}
.case-study.top .top-content .carousel img {
  width: 300px;
}
.case-study.top .top-content .ball {
  width: 1250px;
  height: 1250px;
  z-index: 3;
  background: #3457ff;
  border-radius: 50%;
  position: absolute;
  top: -660px;
  left: -378px;
}
.case-study.top .top-content .link {
  cursor: pointer;
  z-index: 6;
  position: absolute;
  top: 310px;
  left: 705px;
}
.case-study.top .top-content .link a {
  width: 80px;
  height: 80px;
  background: url('images/link-sprites.ef167c40.png') -10px -10px no-repeat;
  display: block;
}
.case-study.top .top-content .link a:hover {
  background-position: -10px -110px;
}
.case-study.top .top-content .link a:active {
  background-position: -10px -210px;
}
.case-study.top .top-content .info-conteiner {
  z-index: 5;
  position: relative;
}
.case-study.top .top-content .info-conteiner .info {
  color: #cce3fe;
  padding: 30px 0 60px;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  display: flex;
}
.case-study.top .top-content .info-conteiner .info div {
  width: 200px;
}
.case-study.top .top-content .info-conteiner .info span {
  padding-left: 17px;
  font-size: 14px;
  display: block;
}
.case-study.top .top-content .info-conteiner .info .title {
  padding-left: 20px;
  font-size: 18px;
  position: relative;
}
.case-study.top .top-content .info-conteiner .info .title:before {
  content: '';
  width: 16px;
  height: 16px;
  background: url('images/polygon.5cf2880c.svg') 0 0 / contain no-repeat;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  left: 0;
}
.case-study.top .top-content .info-conteiner .main-info {
  width: 55%;
  color: #fff;
}
.case-study.top .top-content .info-conteiner .main-info span {
  display: block;
}
.case-study.top .top-content .info-conteiner .main-info .customer {
  font-size: 1.12em;
  line-height: 24px;
}
.case-study.top .top-content .info-conteiner .main-info .project-name {
  color: #fff;
  font-size: 2.75em;
  font-weight: 500;
  line-height: 1.3;
}
.case-study.top .top-content .info-conteiner .main-info .detail {
  margin-top: 1.5em;
  font-size: 15px;
  line-height: 1.5;
}
.case-study.foreword {
  background: #cce3fe;
}
.case-study.foreword .foreword-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5em 144px;
}
.case-study.foreword .section {
  font-size: 1.125em;
  line-height: 1.5;
}
.case-study.foreword .section p {
  text-align: left;
}
@media (max-device-width: 600px) {
  .case-study.foreword .section p {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .case-study.foreword .section p {
    text-align: left;
  }
}
.case-study.foreword .section + .section {
  margin-top: 2em;
}
.case-study.solutions {
  background: #f0f8ff;
}
.case-study.solutions .solutions-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 144px;
}
.case-study.solutions .hr {
  height: 0.3em;
  width: 100%;
  background: url('images/dotted.1eee0d23.svg') repeat-x;
}
.case-study.solutions .solution-section {
  padding: 5em 0;
}
.case-study.solutions .solution-section .space {
  height: 1em;
}
.case-study.solutions .solution-section .text-center {
  text-align: center;
}
.case-study.solutions .solution-section .title {
  color: #3457ff;
  margin-bottom: 0.5em;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
}
.case-study.solutions .solution-section .num {
  color: #3457ff;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
}
.case-study.solutions .solution-section .sub-title {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
}
.case-study.solutions .solution-section .text-box {
  background: #cce3fe;
  border-radius: 2.5em;
  margin: 1em 0;
  padding: 3em;
}
@media (max-device-width: 600px) {
  .case-study.solutions .solution-section .text-box {
    padding: 3em 1em;
  }
}
@media (max-width: 600px) {
  .case-study.solutions .solution-section .text-box {
    padding: 3em 1em;
  }
}
.case-study.solutions .solution-section .text-box div + div {
  margin-top: 2em;
}
.case-study.solutions .solution-section .text-box p {
  text-align: center;
  font-size: 1.125em;
  line-height: 1.5;
}
.case-study.solutions .solution-section .text-box .text-box-title {
  margin-bottom: 0.5em;
  font-weight: 700;
}
@media (max-device-width: 600px) {
  .case-study.solutions .solution-section .text-box .text-box-title {
    margin-bottom: 1em;
  }
}
@media (max-width: 600px) {
  .case-study.solutions .solution-section .text-box .text-box-title {
    margin-bottom: 1em;
  }
}
.case-study.solutions .solution-section .text-img-box {
  gap: 1em;
  margin: 1em 0;
  display: flex;
}
.case-study.solutions .solution-section .text-img-box div {
  width: 50%;
}
.case-study.solutions .solution-section .text-img-box img {
  width: 100%;
}
.case-study.solutions .solution-section .text-img-box .text-img-box-title {
  margin-bottom: 1em;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  display: block;
}
.case-study.solutions .solution-section .text-img-box .img-desc {
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
  line-height: 1.5;
  display: block;
}
.case-study.solutions .solution-section .text-img-box li {
  padding-left: 2em;
  font-size: 1.125em;
  position: relative;
}
.case-study.solutions .solution-section .text-img-box li:before {
  content: '';
  width: 0.2em;
  height: 0.2em;
  background: #212121;
  border-radius: 50%;
  position: absolute;
  top: 0.7em;
  left: 1em;
}
.case-study.solutions .solution-section .text-inline {
  gap: 0.5em;
  display: flex;
}
.case-study.solutions .solution-section p + p {
  margin-top: 1em;
}
@media (max-device-width: 600px) {
  .case-study.solutions .solution-section p + p {
    margin-top: 0.5em;
  }
}
@media (max-width: 600px) {
  .case-study.solutions .solution-section p + p {
    margin-top: 0.5em;
  }
}
.case-study.achievements {
  background: #f0f8ff;
}
.case-study.achievements .achievements-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5em 144px;
}
.case-study.achievements .title {
  color: #3457ff;
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.5em;
  font-weight: 700;
}
.case-study.achievements .achievement-section .big-num {
  text-align: center;
  color: #3457ff;
  overflow: hidden;
}
.case-study.achievements .achievement-section .big-num span {
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 5em;
  display: inline-block;
}
.case-study.achievements .achievement-section .big-num span:last-child {
  font-family:
    Noto Sans TC,
    Noto Sans;
  font-size: 1.5em;
}
.case-study.achievements .achievement-section .section-title {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
}
.case-study.achievements .achievement-section .section-title .num {
  text-align: center;
  color: #3457ff;
  padding: 0 0.5em;
}
.case-study.achievements .achievement-section p {
  text-align: center;
}
@media (max-device-width: 600px) {
  .case-study.achievements .achievement-section p {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .case-study.achievements .achievement-section p {
    text-align: left;
  }
}
.case-study.achievements .achievement-section + .achievement-section {
  margin-top: 3em;
}
.case-study.feedback-top {
  background: #fff;
  padding: 68px 0;
  overflow: hidden;
}
.case-study.feedback-top .feedback .title {
  max-width: 1280px;
  color: #3457ff;
  margin: 0 auto 1em;
  padding-left: 145px;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 50px;
}
.case-study.feedback-top .feedback .content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 145px;
}
@media (max-device-width: 960px) {
  .case-study {
    font-size: 26px;
  }
  .case-study.top {
    background: #3457ff;
  }
  .case-study.top .top-content {
    height: auto;
    padding: 0 12%;
  }
  .case-study.top .top-content .bg {
    height: 95vw;
    z-index: 1;
    position: absolute;
    top: 0;
    right: -20%;
  }
  .case-study.top .top-content .bg img {
    width: auto;
    max-width: none;
    height: 100%;
  }
  .case-study.top .top-content .circle {
    width: 82%;
    top: 50vw;
    right: -36%;
  }
  .case-study.top .top-content .circle img {
    width: 100%;
  }
  .case-study.top .top-content .carousel {
    display: none;
  }
  .case-study.top .top-content .ball {
    width: 250vw;
    height: 250vw;
    max-width: 250vw;
    max-height: 250vw;
    top: 67vw;
    left: -102vw;
    transform: translate3d(0, 0, 0);
  }
  .case-study.top .top-content .link {
    top: 73vw;
    right: 15%;
    left: initial;
    z-index: 6;
  }
  .case-study.top .top-content .link a {
    width: 6em;
    height: 6em;
    background-position: -12.5%;
    background-size: cover;
  }
  .case-study.top .top-content .link a:hover,
  .case-study.top .top-content .link a:active {
    background-position: -12.5%;
  }
  .case-study.top .top-content .info-conteiner {
    padding-top: 73vw;
  }
  .case-study.top .top-content .info-conteiner .info {
    gap: 2em 0;
    padding-bottom: 2em;
    padding-right: 5%;
    display: grid;
  }
  .case-study.top .top-content .info-conteiner .info div {
    width: auto;
  }
  .case-study.top .top-content .info-conteiner .info div:first-child {
    grid-area: 1/1 / auto/span 2;
  }
  .case-study.top .top-content .info-conteiner .info div:nth-child(2) {
    grid-area: 2/1;
  }
  .case-study.top .top-content .info-conteiner .info div:nth-child(3) {
    grid-area: 2/2;
  }
  .case-study.top .top-content .info-conteiner .info span {
    padding-left: 2.5em;
  }
  .case-study.top .top-content .info-conteiner .info .title {
    padding-left: 2em;
  }
  .case-study.top .top-content .info-conteiner .info .title:before {
    width: 1.4em;
    height: 1.4em;
    margin-top: -0.7em;
  }
  .case-study.top .top-content .info-conteiner .main-info {
    width: 100%;
    padding-bottom: 3em;
  }
  .case-study.top .top-content .info-conteiner .main-info .customer {
    margin-bottom: 1em;
    line-height: 1.5;
  }
  .case-study.top .top-content .info-conteiner .main-info .project-name {
    font-size: 2em;
  }
  .case-study.top .top-content .info-conteiner .main-info .detail {
    margin-top: 1em;
    font-size: 1em;
    line-height: 1.5;
  }
  .case-study.foreword .foreword-content {
    padding: 3em 6%;
  }
  .case-study.solutions .solutions-content {
    padding: 1em 6%;
  }
  .case-study.solutions .solution-section {
    padding: 2em 0;
  }
  .case-study.solutions .hr {
    background-position: center;
    background-size: contain;
  }
  .case-study.achievements .achievements-content {
    padding: 3em 6% 5em;
  }
  .case-study.achievements .title {
    font-size: 1.125em;
  }
  .case-study.achievements .achievement-section .section-title {
    margin-bottom: 0.5em;
    font-size: 1em;
  }
  .case-study.achievements
    .achievement-section
    .section-title
    span:first-of-type {
    width: 100%;
    display: block;
  }
  .case-study.achievements .achievement-section p {
    font-size: 1em;
  }
  .case-study.feedback-top {
    padding: 3em 0 0;
  }
  .case-study.feedback-top .feedback .content {
    padding: 24px 0;
  }
  .case-study.feedback-top .feedback .title {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    padding: 0 6%;
    font-size: 1.125em;
    font-weight: 500;
  }
}
@media (max-width: 960px) {
  .case-study {
    font-size: 26px;
  }
  .case-study.top {
    background: #3457ff;
  }
  .case-study.top .top-content {
    height: auto;
    padding: 0 12%;
  }
  .case-study.top .top-content .bg {
    height: 95vw;
    z-index: 1;
    position: absolute;
    top: 0;
    right: -20%;
  }
  .case-study.top .top-content .bg img {
    width: auto;
    max-width: none;
    height: 100%;
  }
  .case-study.top .top-content .circle {
    width: 82%;
    top: 50vw;
    right: -36%;
  }
  .case-study.top .top-content .circle img {
    width: 100%;
  }
  .case-study.top .top-content .carousel {
    display: none;
  }
  .case-study.top .top-content .ball {
    width: 250vw;
    height: 250vw;
    max-width: 250vw;
    max-height: 250vw;
    top: 67vw;
    left: -102vw;
    transform: translate3d(0, 0, 0);
  }
  .case-study.top .top-content .link {
    top: 73vw;
    right: 15%;
    left: initial;
    z-index: 6;
  }
  .case-study.top .top-content .link a {
    width: 6em;
    height: 6em;
    background-position: -12.5%;
    background-size: cover;
  }
  .case-study.top .top-content .link a:hover,
  .case-study.top .top-content .link a:active {
    background-position: -12.5%;
  }
  .case-study.top .top-content .info-conteiner {
    padding-top: 73vw;
  }
  .case-study.top .top-content .info-conteiner .info {
    gap: 2em 0;
    padding-bottom: 2em;
    padding-right: 5%;
    display: grid;
  }
  .case-study.top .top-content .info-conteiner .info div {
    width: auto;
  }
  .case-study.top .top-content .info-conteiner .info div:first-child {
    grid-area: 1/1 / auto/span 2;
  }
  .case-study.top .top-content .info-conteiner .info div:nth-child(2) {
    grid-area: 2/1;
  }
  .case-study.top .top-content .info-conteiner .info div:nth-child(3) {
    grid-area: 2/2;
  }
  .case-study.top .top-content .info-conteiner .info span {
    padding-left: 2.5em;
  }
  .case-study.top .top-content .info-conteiner .info .title {
    padding-left: 2em;
  }
  .case-study.top .top-content .info-conteiner .info .title:before {
    width: 1.4em;
    height: 1.4em;
    margin-top: -0.7em;
  }
  .case-study.top .top-content .info-conteiner .main-info {
    width: 100%;
    padding-bottom: 3em;
  }
  .case-study.top .top-content .info-conteiner .main-info .customer {
    margin-bottom: 1em;
    line-height: 1.5;
  }
  .case-study.top .top-content .info-conteiner .main-info .project-name {
    font-size: 2em;
  }
  .case-study.top .top-content .info-conteiner .main-info .detail {
    margin-top: 1em;
    font-size: 1em;
    line-height: 1.5;
  }
  .case-study.foreword .foreword-content {
    padding: 3em 6%;
  }
  .case-study.solutions .solutions-content {
    padding: 1em 6%;
  }
  .case-study.solutions .solution-section {
    padding: 2em 0;
  }
  .case-study.solutions .hr {
    background-position: center;
    background-size: contain;
  }
  .case-study.achievements .achievements-content {
    padding: 3em 6% 5em;
  }
  .case-study.achievements .title {
    font-size: 1.125em;
  }
  .case-study.achievements .achievement-section .section-title {
    margin-bottom: 0.5em;
    font-size: 1em;
  }
  .case-study.achievements
    .achievement-section
    .section-title
    span:first-of-type {
    width: 100%;
    display: block;
  }
  .case-study.achievements .achievement-section p {
    font-size: 1em;
  }
  .case-study.feedback-top {
    padding: 3em 0 0;
  }
  .case-study.feedback-top .feedback .content {
    padding: 24px 0;
  }
  .case-study.feedback-top .feedback .title {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    padding: 0 6%;
    font-size: 1.125em;
    font-weight: 500;
  }
}
@media (max-device-width: 600px) {
  .case-study {
    font-size: 42px;
  }
  .case-study.top .top-content .link a {
    width: 4em;
    height: 4em;
  }
  .case-study.solutions .solution-section .title,
  .case-study.solutions .solution-section .sub-title {
    font-size: 1.125em;
  }
  .case-study.solutions .solution-section .num,
  .case-study.solutions .solution-section .text-box p {
    font-size: 1em;
  }
  .case-study.solutions .solution-section .text-img-box {
    flex-wrap: wrap;
  }
  .case-study.solutions .solution-section .text-img-box div {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .case-study {
    font-size: 42px;
  }
  .case-study.top .top-content .link a {
    width: 4em;
    height: 4em;
  }
  .case-study.solutions .solution-section .title,
  .case-study.solutions .solution-section .sub-title {
    font-size: 1.125em;
  }
  .case-study.solutions .solution-section .num,
  .case-study.solutions .solution-section .text-box p {
    font-size: 1em;
  }
  .case-study.solutions .solution-section .text-img-box {
    flex-wrap: wrap;
  }
  .case-study.solutions .solution-section .text-img-box div {
    width: 100%;
  }
}
.relative-case {
  margin-left: calc(50% - 640px);
}
.relative-case .section_title {
  color: #3457ff;
  font-size: 24px;
  font-weight: 700;
}
@media (max-device-width: 960px) {
  .relative-case .section_title {
    text-align: center;
    font-size: 1.5rem;
  }
}
@media (max-width: 960px) {
  .relative-case .section_title {
    text-align: center;
    font-size: 1.5rem;
  }
}
@media (max-device-width: 600px) {
  .relative-case .section_title {
    font-size: 1.125rem;
  }
}
@media (max-width: 600px) {
  .relative-case .section_title {
    font-size: 1.125rem;
  }
}
@media (max-device-width: 1280px) {
  .relative-case {
    margin-left: 40px;
  }
}
@media (max-width: 1280px) {
  .relative-case {
    margin-left: 40px;
  }
}
@media (max-device-width: 960px) {
  .relative-case {
    margin-right: 40px;
  }
}
@media (max-width: 960px) {
  .relative-case {
    margin-right: 40px;
  }
}
@media (max-device-width: 600px) {
  .relative-case {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .relative-case {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.case-page-swiper {
  margin-top: 60px;
}
@media (max-device-width: 960px) {
  .case-page-swiper {
    margin-top: 4rem;
  }
}
@media (max-width: 960px) {
  .case-page-swiper {
    margin-top: 4rem;
  }
}
.case-page-swiper .case-box {
  padding-bottom: 50px;
  transition-duration: 0.3s;
  display: block;
  position: relative;
}
.case-page-swiper .case-box:hover .img-wrap:before {
  background: #3457ff66;
}
.case-page-swiper .case-box:hover .img-wrap a {
  bottom: 22px;
}
.case-page-swiper .case-box p {
  margin-top: 10px;
  font-size: 1rem;
}
@media (max-device-width: 600px) {
  .case-page-swiper .case-box p {
    font-size: 0.875rem;
  }
}
@media (max-width: 600px) {
  .case-page-swiper .case-box p {
    font-size: 0.875rem;
  }
}
.case-page-swiper .case-box .img-wrap {
  position: relative;
  overflow: hidden;
}
.case-page-swiper .case-box .img-wrap img {
  width: 100%;
}
.case-page-swiper .case-box .img-wrap:before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: 2;
  background: none;
  transition: background 0.2s cubic-bezier(0.51, 0.92, 0.24, 1.15);
  position: absolute;
  top: 0;
  left: 0;
}
.case-page-swiper .case-box .img-wrap a {
  width: 80px;
  height: 80px;
  z-index: 2;
  background: url('images/related-case-link-sprites.cac73b26.png') 0 0 / cover
    no-repeat;
  transition: bottom 0.4s cubic-bezier(0.51, 0.92, 0.24, 1.15);
  position: absolute;
  bottom: -80px;
  right: 22px;
}
@media (max-device-width: 960px) {
  .case-page-swiper .case-box .img-wrap a {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 960px) {
  .case-page-swiper .case-box .img-wrap a {
    width: 40px;
    height: 40px;
  }
}
.case-page-swiper .title-wrap {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: absolute;
}
.case-page-swiper .title-wrap .comp {
  color: #fff;
  background: #3457ff;
  padding: 16px 12px 8px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-device-width: 960px) {
  .case-page-swiper .title-wrap .comp {
    padding: 4px 12px 2px;
    font-size: 12px;
  }
}
@media (max-width: 960px) {
  .case-page-swiper .title-wrap .comp {
    padding: 4px 12px 2px;
    font-size: 12px;
  }
}
.case-page-swiper .title-wrap .title {
  color: #fff;
  text-align: left;
  background: #3457ff;
  margin-top: -1px;
  padding: 1rem 2rem;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  display: inline-block;
}
@media (max-device-width: 960px) {
  .case-page-swiper .title-wrap .title {
    padding: 4px 12px;
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .case-page-swiper .title-wrap .title {
    padding: 4px 12px;
    font-size: 18px;
  }
  .case-study {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .case-study {
    font-size: 16px;
  }
}
.case-gallery {
  color: #212121;
  font-size: 16px;
}
@media (max-device-width: 600px) {
  .case-gallery .desc br {
    display: none;
  }
}
@media (max-width: 600px) {
  .case-gallery .desc br {
    display: none;
  }
}
.case-gallery.top {
  background: #f0f8ff;
}
.case-gallery.top .top-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2em 144px;
}
.case-gallery.top .top-content div {
  text-align: center;
}
.case-gallery.top .top-content .title {
  margin-bottom: 0.5em;
  font-size: 1.5em;
  font-weight: 700;
}
.case-gallery.case-slider {
  background: #f0f8ff;
  padding-bottom: 5em;
}
.case-gallery.case-slider .swiper-slide {
  justify-content: center;
  align-items: center;
  display: flex;
}
.case-gallery.case-slider .swiper-wrapper {
  z-index: 2;
}
.case-gallery.case-slider .swiper-pagination {
  color: #fff;
}
.case-gallery.case-slider .swiper-button-prev {
  margin-left: 20px;
}
.case-gallery.case-slider .swiper-button-next {
  margin-right: 20px;
}
.case-gallery.case-slider .swiper-button-prev,
.case-gallery.case-slider .swiper-button-next {
  color: #3457ff;
}
.case-gallery.case-slider .swiper-button-prev.swiper-button-disabled,
.case-gallery.case-slider .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}
.case-gallery.case-slider .case-item {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 144px;
}
.case-gallery.case-slider .case-content {
  color: #fff;
  background: #3457ff;
  margin: 0 48px;
  padding: 3em;
  position: relative;
}
.case-gallery.case-slider .case-content:before,
.case-gallery.case-slider .case-content:after {
  content: '';
  width: 200px;
  height: 100%;
  z-index: 2;
  background: url('images/case-swiper-bg-shape.0ad181d0.svg') center/auto 100%
    no-repeat;
  position: absolute;
  top: 0;
}
.case-gallery.case-slider .case-content:before {
  left: 0;
  transform: translateX(-50%);
}
.case-gallery.case-slider .case-content:after {
  left: 100%;
  transform: translateX(-50%);
}
.case-gallery.case-slider .case-content .info {
  z-index: 3;
  align-items: center;
  gap: 1.5em;
  display: flex;
  position: relative;
}
.case-gallery.case-slider .case-content .industry {
  font-weight: 300;
}
.case-gallery.case-slider .case-content .img {
  min-width: 200px;
  border-radius: 1.5em;
  flex-grow: 1;
  overflow: hidden;
}
.case-gallery.case-slider .case-content .img img {
  width: 100%;
  min-height: 248px;
}
@media (max-device-width: 1280px) {
  .case-gallery.case-slider .case-content .img img {
    min-height: 196px;
  }
}
@media (max-width: 1280px) {
  .case-gallery.case-slider .case-content .img img {
    min-height: 196px;
  }
}
@media (max-device-width: 960px) {
  .case-gallery.case-slider .case-content .img img {
    min-height: auto;
  }
}
@media (max-width: 960px) {
  .case-gallery.case-slider .case-content .img img {
    min-height: auto;
  }
}
@media (max-device-width: 1280px) {
  .case-gallery.case-slider .case-content .img {
    max-width: 400px;
  }
}
@media (max-width: 1280px) {
  .case-gallery.case-slider .case-content .img {
    max-width: 400px;
  }
}
@media (max-device-width: 960px) {
  .case-gallery.case-slider .case-content .img {
    max-width: none;
  }
}
@media (max-width: 960px) {
  .case-gallery.case-slider .case-content .img {
    max-width: none;
  }
}
.case-gallery.case-slider .case-content .img + div {
  width: 35%;
  flex-shrink: 0;
}
@media (max-device-width: 960px) {
  .case-gallery.case-slider .case-content .img + div {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .case-gallery.case-slider .case-content .img + div {
    width: 100%;
  }
}
.case-gallery.case-slider .case-content .name {
  margin-bottom: 0.5em;
  font-size: 1.5em;
  font-weight: 700;
}
.case-gallery.case-slider .case-content .desc p {
  font-size: 1.125em;
  font-weight: 300;
}
.case-gallery.case-slider .case-content .detail {
  z-index: 3;
  margin-top: 1.5em;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}
.case-gallery.case-slider .case-content .link {
  width: 90px;
  height: 90px;
  z-index: 4;
  background: #ffbb0c;
  border: 3px solid #ffbb0c;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  display: flex;
  position: absolute;
  top: 16px;
  right: -32px;
  box-shadow: 0 0 12px #3457ff26;
}
.case-gallery.case-slider .case-content .link span {
  color: #212121;
  font-weight: 500;
}
.case-gallery.case-slider .case-content .link:hover {
  border: 3px solid #ff7b314d;
}
.case-gallery.case-slider .case-content .link:active {
  background: #ff7b31;
  border: 3px solid #ff7b31;
}
.case-gallery.case {
  background: #cce3fe;
  padding: 5em 0;
}
.case-gallery.case .case-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.case-gallery.case .main-title {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
}
.case-gallery.case .category {
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5em;
  padding: 2em 0 5em;
  display: flex;
}
.case-gallery.case .category .cancel-btn {
  display: none;
  position: absolute;
  top: -0.75em;
  right: -0.75em;
}
.case-gallery.case .category .cancel-btn span {
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
  background: #fff;
  border: 1px solid #deefff;
  border-radius: 50%;
  transition: all 0.3s;
  display: block;
  position: relative;
  box-shadow: 0 0 4px #3457ff26;
}
.case-gallery.case .category .cancel-btn span:before,
.case-gallery.case .category .cancel-btn span:after {
  content: '';
  width: 0.8em;
  height: 2px;
  transform-origin: center;
  background: #3457ff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.case-gallery.case .category .cancel-btn span:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.case-gallery.case .category .cancel-btn span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.case-gallery.case .category .cancel-btn:hover span {
  background: #cce3fe;
}
.case-gallery.case .category .category-item {
  width: calc(16.6667% - 1.25em);
  height: 80px;
  cursor: pointer;
  background: #f0f8ff;
  border-radius: 0.5em;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  display: flex;
  position: relative;
  box-shadow: 0 0 14px #3457ff33;
}
.case-gallery.case .category .category-item > span {
  color: #3457ff;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1.125em;
  display: flex;
}
.case-gallery.case .category .category-item:hover {
  background: #dde8ff;
}
.case-gallery.case .category .category-item.active {
  background: #3457ff;
}
.case-gallery.case .category .category-item.active span {
  color: #fff;
}
.case-gallery.case .category .category-item.active .cancel-btn {
  display: block;
}
.case-gallery.case .case-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6em 1.5em;
  display: grid;
}
.case-gallery.case .case-list .case-item {
  position: relative;
}
.case-gallery.case .case-list .case-item .client {
  color: #fff;
  background: #3457ff;
  padding: 0.5em 1em;
}
.case-gallery.case .case-list .case-item .project-name {
  color: #fff;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  background: #3457ff;
  -webkit-box-orient: vertical;
  padding: 0.2em 1em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 2rem;
  display: -webkit-box;
  overflow: hidden;
  transform: translateY(-1px);
}
.case-gallery.case .case-list .case-item .img {
  height: 95px;
  position: relative;
  overflow: hidden;
  transform: translateY(-1px);
}
.case-gallery.case .case-list .case-item .img img {
  width: 100%;
  position: absolute;
}
.case-gallery.case .case-list .case-item .detail {
  padding: 0.7em 0;
  font-size: 0.88em;
  line-height: 1.5;
}
.case-gallery.case .case-list .case-item .tags {
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  display: flex;
}
.case-gallery.case .case-list .case-item .tags .tag {
  background: #e0effd;
  border-radius: 1.125em;
  padding: 0.25em 0.8em;
}
.case-gallery.case .case-list .case-item .link {
  width: 60px;
  height: 60px;
  background: #ffbb0c;
  border: 3px solid #ffbb0c;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
  transition: all 0.3s;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 0 12px #3457ff26;
}
.case-gallery.case .case-list .case-item .link span {
  color: #212121;
  font-weight: 500;
}
.case-gallery.case .case-list .case-item .link:hover {
  border: 3px solid #ff7b314d;
}
.case-gallery.case .case-list .case-item .link:active {
  background: #ff7b31;
  border: 3px solid #ff7b31;
}
@media (max-device-width: 960px) {
  .case-gallery {
    font-size: 26px;
  }
  .case-gallery.top .top-content {
    padding: 0 6% 2em;
  }
  .case-gallery.top .top-content .title {
    padding-top: 0.5em;
  }
  .case-gallery.case-slider {
    padding-bottom: 0;
  }
  .case-gallery.case-slider .case-item {
    margin: 30vw 0;
    padding: 0 6%;
  }
  .case-gallery.case-slider .swiper-pagination {
    color: #3457ff;
    z-index: 1;
    font-size: 1.5em;
    font-weight: 700;
    display: block;
    position: absolute;
    top: 4vw;
    left: 0;
  }
  .case-gallery.case-slider .swiper-pagination * {
    font-family:
      Inconsolata,
      monospace,
      Noto Sans Tc;
    font-weight: 700;
    font-stretch: 200%;
  }
  .case-gallery.case-slider .swiper-button-next {
    margin-right: 0;
    top: calc(4vw + 20px);
    right: 12vw;
  }
  .case-gallery.case-slider .swiper-button-prev {
    margin-left: 0;
    top: calc(4vw + 20px);
    left: 12vw;
  }
  .case-gallery.case-slider .case-content {
    margin: 0;
    padding: 0 6% 4em;
  }
  .case-gallery.case-slider .case-content:before,
  .case-gallery.case-slider .case-content:after {
    width: 100%;
    height: 25vw;
    background: url('images/case-swiper-bg-shape-sm.fa1e26a6.svg') center/100%
      no-repeat;
  }
  .case-gallery.case-slider .case-content:before {
    transform: translateX(0) translateY(-50%);
  }
  .case-gallery.case-slider .case-content:after {
    top: 100%;
    left: 0;
    transform: translateX(0) translateY(-50%);
  }
  .case-gallery.case-slider .case-content .info {
    display: block;
  }
  .case-gallery.case-slider .case-content .info .img,
  .case-gallery.case-slider .case-content .info .img img {
    width: 100%;
  }
  .case-gallery.case-slider .case-content .industry {
    padding-top: 1em;
  }
  .case-gallery.case-slider .case-content .name {
    line-height: 1.5;
  }
  .case-gallery.case-slider .case-content .link {
    width: 9em;
    height: 9em;
    top: 100%;
    right: 0;
  }
  .case-gallery.case-slider .case-content .link:hover,
  .case-gallery.case-slider .case-content .link:active {
    background: #ffbb0c;
    border: 3px solid #ffbb0c;
  }
  .case-gallery.case {
    padding: 4em 0 6em;
  }
  .case-gallery.case .case-content {
    padding: 0 6%;
  }
  .case-gallery.case .category {
    justify-content: space-between;
    gap: 0;
  }
  .case-gallery.case .category .cancel-btn {
    display: none !important;
  }
  .case-gallery.case .category .category-item {
    width: calc(50% - 0.25em);
    height: 3em;
    margin-bottom: 1em;
  }
  .case-gallery.case .case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5em 1.5em;
  }
  .case-gallery.case .case-list .case-item .img {
    height: 7em;
  }
  .case-gallery.case .case-list .case-item .link {
    width: 4em;
    height: 4em;
    margin-top: -2em;
  }
  .case-gallery.case .case-list .case-item .link:hover,
  .case-gallery.case .case-list .case-item .link:active {
    background: #ffbb0c;
    border: 3px solid #ffbb0c;
  }
}
@media (max-width: 960px) {
  .case-gallery {
    font-size: 26px;
  }
  .case-gallery.top .top-content {
    padding: 0 6% 2em;
  }
  .case-gallery.top .top-content .title {
    padding-top: 0.5em;
  }
  .case-gallery.case-slider {
    padding-bottom: 0;
  }
  .case-gallery.case-slider .case-item {
    margin: 30vw 0;
    padding: 0 6%;
  }
  .case-gallery.case-slider .swiper-pagination {
    color: #3457ff;
    z-index: 1;
    font-size: 1.5em;
    font-weight: 700;
    display: block;
    position: absolute;
    top: 4vw;
    left: 0;
  }
  .case-gallery.case-slider .swiper-pagination * {
    font-family:
      Inconsolata,
      monospace,
      Noto Sans Tc;
    font-weight: 700;
    font-stretch: 200%;
  }
  .case-gallery.case-slider .swiper-button-next {
    margin-right: 0;
    top: calc(4vw + 20px);
    right: 12vw;
  }
  .case-gallery.case-slider .swiper-button-prev {
    margin-left: 0;
    top: calc(4vw + 20px);
    left: 12vw;
  }
  .case-gallery.case-slider .case-content {
    margin: 0;
    padding: 0 6% 4em;
  }
  .case-gallery.case-slider .case-content:before,
  .case-gallery.case-slider .case-content:after {
    width: 100%;
    height: 25vw;
    background: url('images/case-swiper-bg-shape-sm.fa1e26a6.svg') center/100%
      no-repeat;
  }
  .case-gallery.case-slider .case-content:before {
    transform: translateX(0) translateY(-50%);
  }
  .case-gallery.case-slider .case-content:after {
    top: 100%;
    left: 0;
    transform: translateX(0) translateY(-50%);
  }
  .case-gallery.case-slider .case-content .info {
    display: block;
  }
  .case-gallery.case-slider .case-content .info .img,
  .case-gallery.case-slider .case-content .info .img img {
    width: 100%;
  }
  .case-gallery.case-slider .case-content .industry {
    padding-top: 1em;
  }
  .case-gallery.case-slider .case-content .name {
    line-height: 1.5;
  }
  .case-gallery.case-slider .case-content .link {
    width: 9em;
    height: 9em;
    top: 100%;
    right: 0;
  }
  .case-gallery.case-slider .case-content .link:hover,
  .case-gallery.case-slider .case-content .link:active {
    background: #ffbb0c;
    border: 3px solid #ffbb0c;
  }
  .case-gallery.case {
    padding: 4em 0 6em;
  }
  .case-gallery.case .case-content {
    padding: 0 6%;
  }
  .case-gallery.case .category {
    justify-content: space-between;
    gap: 0;
  }
  .case-gallery.case .category .cancel-btn {
    display: none !important;
  }
  .case-gallery.case .category .category-item {
    width: calc(50% - 0.25em);
    height: 3em;
    margin-bottom: 1em;
  }
  .case-gallery.case .case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5em 1.5em;
  }
  .case-gallery.case .case-list .case-item .img {
    height: 7em;
  }
  .case-gallery.case .case-list .case-item .link {
    width: 4em;
    height: 4em;
    margin-top: -2em;
  }
  .case-gallery.case .case-list .case-item .link:hover,
  .case-gallery.case .case-list .case-item .link:active {
    background: #ffbb0c;
    border: 3px solid #ffbb0c;
  }
}
@media (max-device-width: 600px) {
  .case-gallery {
    font-size: 42px;
  }
  .case-gallery.case-slider .case-content .link {
    width: 7em;
    height: 7em;
    top: calc(100% - 3em);
  }
  .case-gallery.case .case-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .case-gallery.case .case-list .case-item {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .case-gallery {
    font-size: 42px;
  }
  .case-gallery.case-slider .case-content .link {
    width: 7em;
    height: 7em;
    top: calc(100% - 3em);
  }
  .case-gallery.case .case-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .case-gallery.case .case-list .case-item {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .case-gallery {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .case-gallery {
    font-size: 16px;
  }
}
.consultant {
  color: #212121;
  font-size: 16px;
}
.consultant.top {
  text-align: center;
  background: #f0f8ff;
  padding: 1.5em 0 6em;
}
.consultant.top .top-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 145px;
}
.consultant.top div {
  max-width: 650px;
  margin: 0 auto;
}
.consultant.top .title {
  margin-bottom: 0.5em;
  font-size: 1.5em;
  font-weight: 700;
}
.consultant.top .text {
  font-size: 14px;
}
.consultant.service {
  background: #f0f8ff;
}
.consultant.service .service-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}
.consultant.service .main-title {
  text-align: center;
  padding-bottom: 4px;
  font-size: 2em;
  font-weight: 700;
}
.consultant.service .service-list {
  padding-bottom: 90px;
  display: flex;
}
.consultant.service .service-item {
  width: 20%;
  padding: 0 10px;
}
.consultant.service .service-item img {
  width: 100%;
}
.consultant.service .service-item span {
  text-align: center;
  padding-bottom: 4px;
  line-height: 1.5em;
  display: block;
}
.consultant.service .service-item .title {
  margin-top: 1em;
  padding-bottom: 8px;
  font-size: 1.12em;
  font-weight: 500;
  line-height: 1.5em;
}
.consultant.service .service-item .link {
  color: #349dff;
  font-weight: 500;
}
.consultant.shape {
  overflow: hidden;
}
.consultant.shape span {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.consultant.shape img {
  width: 100%;
  transform: translateY(-2px);
}
.consultant.shape img.sm {
  display: none;
}
.consultant.shape.shape1 {
  background: #cce3fe;
}
.consultant.shape.shape2 {
  background: #f0f8ff;
}
.consultant.method {
  background: #cce3fe;
}
.consultant.method .method-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 145px;
}
@media (max-device-width: 1280px) {
  .consultant.method .method-content {
    padding: 0 60px;
  }
}
@media (max-width: 1280px) {
  .consultant.method .method-content {
    padding: 0 60px;
  }
}
.consultant.method .main-title {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 4px;
  font-size: 2em;
  font-weight: 700;
}
.consultant.method .sub-title {
  text-align: center;
  color: #3457ff;
  padding-bottom: 80px;
  font-size: 0.88em;
}
.consultant.method .method-list {
  padding-bottom: 90px;
  display: flex;
}
.consultant.method .method-item {
  width: 20%;
  padding: 0 10px;
  position: relative;
}
.consultant.method .method-item .img {
  position: relative;
}
.consultant.method .method-item .img img {
  width: 100%;
}
.consultant.method .method-item .link {
  width: 135px;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateX(-50%);
}
.consultant.method .method-item .link span.link-bg {
  padding: 0.3em 0;
  position: relative;
}
.consultant.method .method-item .link span.link-bg:before {
  content: '';
  width: 110%;
  height: 100%;
  z-index: 1;
  background-image: url('images/email-btn1.b14cb0a3.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: -5px;
}
.consultant.method .method-item .link span.dec {
  z-index: 2;
  padding-left: 2.2em;
  font-size: 0.88em;
  position: relative;
}
@media (max-device-width: 600px) {
  .consultant.method .method-item .link span.dec {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .consultant.method .method-item .link span.dec {
    font-size: 12px;
  }
}
.consultant.method .method-item span {
  text-align: center;
  padding-bottom: 4px;
  line-height: 1.5em;
  display: block;
}
.consultant.method .method-item .title {
  margin-top: 24px;
  padding-bottom: 16px;
  font-size: 1.12em;
  font-weight: 500;
  line-height: 1.5em;
}
.consultant.skill {
  background: #f0f8ff;
  padding: 60px 0;
}
.consultant.skill .skill-content {
  max-width: 1180px;
  background: #fff;
  border-radius: 80px;
  margin: 0 auto;
  padding: 50px 70px;
}
.consultant.skill .main-title {
  text-align: center;
  padding-bottom: 4px;
  font-size: 2em;
  font-weight: 700;
}
.consultant.skill .skill-list {
  grid-gap: 0 25px;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}
.consultant.skill .skill-group {
  border-bottom: 2px solid #f0f8ff;
  align-items: center;
  padding: 25px 0;
  display: flex;
}
.consultant.skill .skill-group-1 {
  grid-area: 1/1;
}
.consultant.skill .skill-group-2 {
  grid-area: 2/1;
}
.consultant.skill .skill-group-3 {
  grid-area: 3/1;
}
.consultant.skill .skill-group-4 {
  grid-area: 4/1;
}
.consultant.skill .skill-group-5 {
  border-bottom: none;
  grid-area: 5/1;
}
.consultant.skill .skill-group-6 {
  grid-area: 1/2;
}
.consultant.skill .skill-group-7 {
  grid-area: 2/2;
}
.consultant.skill .skill-group-8 {
  grid-area: 3/2;
}
.consultant.skill .skill-group-9 {
  grid-area: 4/2;
}
.consultant.skill .skill-group-10 {
  border-bottom: none;
  grid-area: 5/2;
}
.consultant.skill .skill-name {
  width: 120px;
  height: 50px;
  color: #3457ff;
  align-items: center;
  padding-right: 20px;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  display: flex;
}
.consultant.skill .skill-items {
  font-size: 1.125em;
}
.consultant.skill .skill-items div {
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-weight: 300;
}
@media (max-device-width: 960px) {
  .consultant {
    font-size: 26px;
  }
  .consultant.top {
    padding: 2em 0;
  }
  .consultant.top .top-content {
    padding: 0 6%;
  }
  .consultant.top div {
    max-width: 100%;
  }
  .consultant.top .title {
    font-size: 2em;
  }
  .consultant.top .text {
    font-size: 1.2em;
  }
  .consultant.service .service-content {
    padding: 0 6%;
  }
  .consultant.service .service-list {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 50px;
  }
  .consultant.service .service-item {
    width: 50%;
    padding: 0;
  }
  .consultant.service .service-item img {
    width: 50%;
    margin: 0 auto;
  }
  .consultant.shape img.lg {
    display: none;
  }
  .consultant.shape img.sm {
    display: block;
  }
  .consultant.method .method-content {
    padding: 0 6%;
  }
  .consultant.method .method-list {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 50px;
  }
  .consultant.method .method-item {
    width: 50%;
    padding: 0;
  }
  .consultant.method .method-item .img {
    width: 50%;
    margin: 0 auto;
  }
  .consultant.method .method-item .link {
    margin: 0 auto;
    position: static;
    left: auto;
    transform: translateX(0);
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .consultant.method .method-item .link {
    width: auto;
    max-width: 115px;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .consultant.method .method-item .link {
    width: auto;
    max-width: 115px;
  }
}
@media (max-device-width: 960px) {
  .consultant.skill {
    padding: 8em 0 0;
  }
  .consultant.skill .skill-content {
    width: 94%;
    border-radius: 2em;
    margin: 0 auto;
    padding: 2em 6%;
    position: relative;
  }
  .consultant.skill .main-title {
    width: 100%;
    position: absolute;
    bottom: calc(100% + 30px);
    left: 0;
  }
  .consultant.skill .skill-list {
    flex-wrap: wrap;
    display: flex;
  }
  .consultant.skill .skill-group {
    width: 100%;
    border-bottom: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5em 0;
  }
  .consultant.skill .skill-group + .skill-group {
    border-top: 0.2em solid #f0f8ff;
  }
  .consultant.skill .skill-name {
    width: 100%;
    height: auto;
    justify-content: center;
    padding: 0 0 0.5em;
  }
  .consultant.skill .skill-items {
    font-size: 1.3em;
  }
  .consultant.skill .skill-items div {
    text-align: center;
  }
}
@media (max-width: 960px) {
  .consultant {
    font-size: 26px;
  }
  .consultant.top {
    padding: 2em 0;
  }
  .consultant.top .top-content {
    padding: 0 6%;
  }
  .consultant.top div {
    max-width: 100%;
  }
  .consultant.top .title {
    font-size: 2em;
  }
  .consultant.top .text {
    font-size: 1.2em;
  }
  .consultant.service .service-content {
    padding: 0 6%;
  }
  .consultant.service .service-list {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 50px;
  }
  .consultant.service .service-item {
    width: 50%;
    padding: 0;
  }
  .consultant.service .service-item img {
    width: 50%;
    margin: 0 auto;
  }
  .consultant.shape img.lg {
    display: none;
  }
  .consultant.shape img.sm {
    display: block;
  }
  .consultant.method .method-content {
    padding: 0 6%;
  }
  .consultant.method .method-list {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 50px;
  }
  .consultant.method .method-item {
    width: 50%;
    padding: 0;
  }
  .consultant.method .method-item .img {
    width: 50%;
    margin: 0 auto;
  }
  .consultant.method .method-item .link {
    margin: 0 auto;
    position: static;
    left: auto;
    transform: translateX(0);
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .consultant.method .method-item .link {
    width: auto;
    max-width: 115px;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .consultant.method .method-item .link {
    width: auto;
    max-width: 115px;
  }
}
@media (max-width: 960px) {
  .consultant.skill {
    padding: 8em 0 0;
  }
  .consultant.skill .skill-content {
    width: 94%;
    border-radius: 2em;
    margin: 0 auto;
    padding: 2em 6%;
    position: relative;
  }
  .consultant.skill .main-title {
    width: 100%;
    position: absolute;
    bottom: calc(100% + 30px);
    left: 0;
  }
  .consultant.skill .skill-list {
    flex-wrap: wrap;
    display: flex;
  }
  .consultant.skill .skill-group {
    width: 100%;
    border-bottom: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5em 0;
  }
  .consultant.skill .skill-group + .skill-group {
    border-top: 0.2em solid #f0f8ff;
  }
  .consultant.skill .skill-name {
    width: 100%;
    height: auto;
    justify-content: center;
    padding: 0 0 0.5em;
  }
  .consultant.skill .skill-items {
    font-size: 1.3em;
  }
  .consultant.skill .skill-items div {
    text-align: center;
  }
}
@media (max-device-width: 600px) {
  .consultant {
    font-size: 42px;
  }
  .consultant.top .title {
    font-size: 1.5em;
  }
  .consultant.top .text {
    font-size: 1em;
  }
  .consultant.service .main-title {
    font-size: 1.5em;
  }
  .consultant.service .service-list {
    row-gap: 2em;
  }
  .consultant.service .service-item .title {
    margin-top: 0;
  }
  .consultant.service .service-item span:not(.title) {
    font-size: 0.88em;
  }
  .consultant.method .main-title {
    font-size: 1.5em;
  }
  .consultant.method .method-list {
    row-gap: 2em;
  }
  .consultant.method .method-item .img {
    width: 90%;
  }
  .consultant.method .method-item .img img {
    width: 70%;
    margin: 0 auto;
  }
  .consultant.skill .main-title {
    font-size: 1.5em;
  }
  .consultant.skill .skill-items span {
    font-size: 0.7em;
  }
}
@media (max-width: 600px) {
  .consultant {
    font-size: 42px;
  }
  .consultant.top .title {
    font-size: 1.5em;
  }
  .consultant.top .text {
    font-size: 1em;
  }
  .consultant.service .main-title {
    font-size: 1.5em;
  }
  .consultant.service .service-list {
    row-gap: 2em;
  }
  .consultant.service .service-item .title {
    margin-top: 0;
  }
  .consultant.service .service-item span:not(.title) {
    font-size: 0.88em;
  }
  .consultant.method .main-title {
    font-size: 1.5em;
  }
  .consultant.method .method-list {
    row-gap: 2em;
  }
  .consultant.method .method-item .img {
    width: 90%;
  }
  .consultant.method .method-item .img img {
    width: 70%;
    margin: 0 auto;
  }
  .consultant.skill .main-title {
    font-size: 1.5em;
  }
  .consultant.skill .skill-items span {
    font-size: 0.7em;
  }
}
@media (max-width: 960px) {
  .consultant {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .consultant {
    font-size: 16px;
  }
}
.contact-fixed-container {
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(0deg, #3457ff26, #3457ff26), #cce3fe33;
  transition:
    z-index 0s linear 1s,
    opacity 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
}
.contact-fixed-container.active {
  opacity: 1;
  z-index: 100;
  transition:
    z-index linear,
    opacity 0.3s ease-in-out;
}
.contact-fixed-container.active .contact-popup {
  transform: translateX(-50%) translateY(-50%);
}
.contact-popup {
  z-index: 1;
  width: 45%;
  max-width: 588px;
  background-color: #fff;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0 80px;
  transition-duration: 0.3s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-30%);
  box-shadow: 0 0 20px #3457ff1a;
}
.contact-popup img {
  max-width: 100%;
  margin-bottom: 1.75rem;
}
.contact-popup-context p {
  text-align: center;
  letter-spacing: 1px;
}
.contact-popup-context p:first-child {
  font-size: 24px;
  font-weight: 700;
}
@media (max-device-width: 960px) {
  .contact-popup {
    width: calc(100% - 48px);
  }
}
@media (max-width: 960px) {
  .contact-popup {
    width: calc(100% - 48px);
  }
}
.contact-us {
  color: #212121;
  background: #f0f8ff;
  font-size: 16px;
}
.top.contact-us {
  padding-top: 75px;
}
.top.contact-us .top-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 144px;
}
.top.contact-us .top-container span {
  font-weight: 700;
}
.top.contact-us .top-container div {
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}
.top.contact-us .top-container div span {
  font-size: 1.5em;
  font-weight: 700;
}
.form.contact-us {
  padding: 96px 0 150px;
}
.form.contact-us .form-container {
  max-width: 1280px;
  margin: 0 auto;
}
.form.contact-us .form-content {
  width: 384px;
  margin-left: 20%;
  padding: 32px 204px 65px;
  position: relative;
}
.form.contact-us .form-content:before,
.form.contact-us .form-content:after {
  content: '';
  z-index: 1;
  background: #deefff;
  position: absolute;
}
.form.contact-us .form-content:before {
  width: 600px;
  height: 540px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  top: 0;
  left: 0;
}
.form.contact-us .form-content:after {
  width: 540px;
  height: 540px;
  border-radius: 50%;
  top: 0;
  left: 88%;
}
.form.contact-us .form-content .bg-img {
  z-index: 2;
  position: absolute;
  top: -45px;
  left: -178px;
}
.form.contact-us .form-content .bg-img .sm {
  display: none;
}
.form.contact-us .form-content textarea,
.form.contact-us .form-content input {
  color: #212121;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 8px;
  outline: none;
  padding: 15px;
}
.form.contact-us .form-content textarea {
  resize: none;
}
.form.contact-us .form-content .form-input-field {
  width: 420px;
  z-index: 4;
  position: relative;
}
.form.contact-us .form-content .form-input-field label.title {
  color: #0068d1;
  margin-bottom: 0.6em;
  font-weight: 700;
  display: block;
}
.form.contact-us .form-content .form-input-field + .form-input-field {
  margin-top: 1em;
}
.form.contact-us .form-content .submit {
  width: 180px;
  height: 180px;
  z-index: 4;
  background-color: transparent;
  border: none;
  outline: none;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
  position: absolute;
  bottom: -14%;
  left: 160%;
}
.form.contact-us .form-content .submit span {
  z-index: 2;
  font-size: 1.5em;
  font-weight: 700;
  position: relative;
}
.form.contact-us .form-content .submit:focus .bg {
  background: url('images/submit-hover.e80de22a.svg') center/contain no-repeat;
  transform: rotate(0);
}
.form.contact-us .form-content .submit .bg {
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url('images/submit-normal.ea4f41fd.svg') center/contain no-repeat;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(15deg);
}
.form.contact-us .form-content .submit .bg:before {
  width: 0;
  height: 0;
  background: url('images/submit-hover.e80de22a.svg') no-repeat;
}
.form.contact-us .form-content .submit .bg:after {
  width: 0;
  height: 0;
  background: url('images/submit-disabled.d892ce0d.svg') no-repeat;
}
.form.contact-us .form-content .submit:hover .bg {
  background: url('images/submit-hover.e80de22a.svg') center/contain no-repeat;
  transform: rotate(0);
}
.form.contact-us .form-content .submit.disabled {
  cursor: not-allowed;
}
.form.contact-us .form-content .submit.disabled .text {
  opacity: 0.4;
}
.form.contact-us .form-content .submit.disabled .bg {
  background: url('images/submit-disabled.d892ce0d.svg') center/contain
    no-repeat;
}
.form.contact-us .form-content .submit:active .bg {
  background: url('images/submit-active.41bc1143.svg') center/contain no-repeat;
  transform: rotate(0);
}
@media (max-device-width: 960px) {
  .contact-us {
    font-size: 26px;
  }
  .top.contact-us {
    padding: 1.5em 6% 0;
  }
  .top.contact-us .top-container {
    padding: 0;
  }
  .top.contact-us .top-container img {
    display: none;
  }
  .top.contact-us .top-container span {
    width: 100%;
    text-align: center;
    display: block;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.contact-us .top-container span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.contact-us .top-container span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.contact-us .top-container div {
    margin-bottom: 0.25em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.contact-us .top-container div {
    margin-bottom: 0.25em;
  }
}
@media (max-device-width: 960px) {
  .top.contact-us .top-container div span {
    color: #3457ff;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.contact-us .top-container div span {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.contact-us .top-container div span {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .form.contact-us {
    padding: 40vw 6% 8em;
  }
  .form.contact-us .form-container {
    padding: 0;
  }
  .form.contact-us .form-content {
    width: 100%;
    margin: 0;
    padding: 2em 6% 5em;
  }
  .form.contact-us .form-content:after {
    display: none;
  }
  .form.contact-us .form-content:before {
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: 40px;
  }
  .form.contact-us .form-content .bg-img {
    width: 100%;
    top: -37vw;
    left: 0;
  }
  .form.contact-us .form-content .bg-img .lg {
    display: none;
  }
  .form.contact-us .form-content .bg-img .sm {
    display: block;
  }
  .form.contact-us .form-content .bg-img img {
    width: 92%;
    margin: 0 auto;
  }
  .form.contact-us .form-content .form-input-field {
    width: 100%;
  }
  .form.contact-us .form-content input,
  .form.contact-us .form-content textarea {
    padding: 0.8em;
  }
  .form.contact-us .form-content .submit {
    width: 8em;
    height: 8em;
    left: initial;
    bottom: -5.5em;
    right: 10px;
  }
  .form.contact-us .form-content .submit .text {
    font-size: 1.3em;
  }
  .form.contact-us .form-content .submit:hover .bg {
    background: url('images/submit-normal.ea4f41fd.svg') center/contain
      no-repeat;
    transform: rotate(15deg);
  }
}
@media (max-width: 960px) {
  .contact-us {
    font-size: 26px;
  }
  .top.contact-us {
    padding: 1.5em 6% 0;
  }
  .top.contact-us .top-container {
    padding: 0;
  }
  .top.contact-us .top-container img {
    display: none;
  }
  .top.contact-us .top-container span {
    width: 100%;
    text-align: center;
    display: block;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.contact-us .top-container span {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.contact-us .top-container span {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.contact-us .top-container div {
    margin-bottom: 0.25em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.contact-us .top-container div {
    margin-bottom: 0.25em;
  }
}
@media (max-width: 960px) {
  .top.contact-us .top-container div span {
    color: #3457ff;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.contact-us .top-container div span {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.contact-us .top-container div span {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .form.contact-us {
    padding: 40vw 6% 8em;
  }
  .form.contact-us .form-container {
    padding: 0;
  }
  .form.contact-us .form-content {
    width: 100%;
    margin: 0;
    padding: 2em 6% 5em;
  }
  .form.contact-us .form-content:after {
    display: none;
  }
  .form.contact-us .form-content:before {
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: 40px;
  }
  .form.contact-us .form-content .bg-img {
    width: 100%;
    top: -37vw;
    left: 0;
  }
  .form.contact-us .form-content .bg-img .lg {
    display: none;
  }
  .form.contact-us .form-content .bg-img .sm {
    display: block;
  }
  .form.contact-us .form-content .bg-img img {
    width: 92%;
    margin: 0 auto;
  }
  .form.contact-us .form-content .form-input-field {
    width: 100%;
  }
  .form.contact-us .form-content input,
  .form.contact-us .form-content textarea {
    padding: 0.8em;
  }
  .form.contact-us .form-content .submit {
    width: 8em;
    height: 8em;
    left: initial;
    bottom: -5.5em;
    right: 10px;
  }
  .form.contact-us .form-content .submit .text {
    font-size: 1.3em;
  }
  .form.contact-us .form-content .submit:hover .bg {
    background: url('images/submit-normal.ea4f41fd.svg') center/contain
      no-repeat;
    transform: rotate(15deg);
  }
}
@media (max-device-width: 600px) {
  .contact-us {
    font-size: 42px;
  }
  .form.contact-us .form-content .submit {
    width: 6em;
    height: 6em;
    bottom: -4em;
  }
  .form.contact-us .form-content .submit .text {
    font-size: 1em;
  }
}
@media (max-width: 600px) {
  .contact-us {
    font-size: 42px;
  }
  .form.contact-us .form-content .submit {
    width: 6em;
    height: 6em;
    bottom: -4em;
  }
  .form.contact-us .form-content .submit .text {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .contact-us {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .contact-us {
    font-size: 16px;
  }
}
@media screen and (max-width: 1160px) and (min-width: 961px) {
  .form.contact-us .form-content {
    padding: 32px 115px 65px;
  }
  .form.contact-us .form-content:before {
    width: 500px;
  }
  .form.contact-us .form-content:after {
    width: 370px;
  }
  .form.contact-us .form-content .submit {
    left: 130%;
  }
}
.join {
  color: #212121;
  background: #f0f8ff;
  font-size: 16px;
}
.joinPhotoSwiper iframe {
  height: 100%;
  min-height: 100%;
  max-height: 60px;
}
.top.join .top-container {
  max-width: 1280px;
  height: 580px;
  background: url('images/bg.4f09e0d0.svg');
  margin: 0 auto;
  position: relative;
}
.top.join .content {
  position: absolute;
  top: 205px;
  left: 142px;
}
.top.join .content .title {
  margin-bottom: 32px;
}
.top.join .content .title h2 {
  font-size: 24px;
}
@media (max-device-width: 960px) {
  .top.join .content .title h2 {
    font-size: 18px !important;
  }
}
@media (max-width: 960px) {
  .top.join .content .title h2 {
    font-size: 18px !important;
  }
}
.top.join .content .text {
  width: 600px;
}
.top.join .content .text p {
  margin-bottom: 18px;
  font-size: 1em;
}
.middle.join .middle-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 144px;
}
.middle.join .text {
  padding: 13px 0 51px;
}
.middle.join .jobs .title {
  text-align: center;
  margin-bottom: 24px;
}
.middle.join .jobs .list.no-job {
  margin-top: 16px;
}
.middle.join .jobs .list.no-job a {
  justify-content: center;
}
.middle.join .jobs .list a {
  background: #deefff;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  display: flex;
}
.middle.join .jobs .list a span {
  font-size: 1.125em;
  font-weight: bold;
}
.middle.join .jobs .list a + a {
  margin-top: 16px;
}
.welfare.join {
  padding-top: 80px;
}
.welfare.join .welfare-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 144px;
}
.welfare.join .main-title {
  margin-bottom: 24px;
}
.welfare.join .main-title h3 {
  font-size: 1.5em;
}
.welfare.join .content {
  grid-gap: 30px 20px;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}
.welfare.join .welfare-item:nth-child(1) {
  grid-area: 1/1;
}
.welfare.join .welfare-item:nth-child(2) {
  grid-area: 2/1;
}
.welfare.join .welfare-item:nth-child(3) {
  grid-area: 3/1;
}
.welfare.join .welfare-item:nth-child(4) {
  grid-area: 1/2;
}
.welfare.join .welfare-item:nth-child(5) {
  grid-area: 2/2;
}
.welfare.join .welfare-item:nth-child(6) {
  grid-area: 3/2;
}
.welfare.join .welfare-item .title {
  font-weight: 700;
}
.welfare.join .welfare-item ul {
  padding-left: 23px;
  line-height: 1.7;
  list-style: decimal;
}
.images.join {
  padding-top: 72px;
  overflow: hidden;
}
.images.join .title {
  padding: 0 144px;
}
.images.join .title h3 {
  font-size: 1.5em;
}
.images.join .joinPhotoSwiper {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  overflow: initial;
  margin: 0 auto;
  padding: 1em 145px 86px;
  position: relative;
}
.images.join .joinPhotoSwiper:before {
  content: '';
  height: 100%;
  width: 100%;
  z-index: 2;
  background: #f0f8ff;
  position: absolute;
  top: 0;
  right: calc(100% - 145px);
}
.images.join .joinPhotoSwiper .swiper-slide {
  width: 588px;
  height: 331px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.125em;
  display: flex;
}
.top.join p.mid-screen-text {
  display: none;
}
@media (max-device-width: 960px) {
  .join {
    font-size: 26px;
  }
  .top.join .hide-md-screen {
    display: none;
  }
  .top.join p.mid-screen-text {
    margin-top: 1rem;
    display: block;
  }
  .top.join .top-container {
    width: 100%;
    height: auto;
    background: url('images/bg-sm.be64d287.svg') top/88% no-repeat;
  }
  .top.join .content {
    top: initial;
    left: initial;
    padding: 0 6%;
    position: relative;
  }
  .top.join .content .title {
    height: 90vw;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
    padding: 0 9%;
    line-height: 1.5;
    display: flex;
  }
  .top.join .content .text {
    width: 100%;
  }
  .top.join .content .text p {
    margin-bottom: 0;
  }
  .middle.join .middle-container {
    padding: 3em 6% 0;
  }
  .middle.join .text {
    margin-bottom: 3em;
    padding: 0;
  }
  .middle.join .jobs .title {
    text-align: left;
  }
  .middle.join .jobs .list a {
    border-radius: 30px;
    padding: 1.5em 1em 1.5em 1.5em;
  }
  .middle.join .jobs .list a span {
    padding-right: 0.5em;
    font-size: 1.5em;
    font-weight: 500;
  }
  .middle.join .jobs .list a img {
    width: 75px;
  }
  .middle.join .jobs .list a + a {
    margin-top: 1em;
  }
  .welfare.join {
    padding-top: 3em;
  }
  .welfare.join .welfare-container {
    padding: 0 6%;
  }
  .welfare.join .main-title {
    margin-bottom: 1.5em;
  }
  .welfare.join .content {
    display: block;
  }
  .welfare.join .welfare-item ul {
    padding-left: 1.5em;
  }
  .welfare.join .welfare-item a {
    padding-left: 1.7em;
  }
  .welfare.join .welfare-item + .welfare-item {
    margin-top: 1em;
  }
  .images.join {
    padding-bottom: 60px;
  }
  .images.join .title {
    padding: 0 6%;
  }
  .images.join .joinPhotoSwiper {
    padding: 1em 6%;
    overflow: hidden;
  }
  .images.join .joinPhotoSwiper .swiper-slide {
    height: auto;
  }
  .images.join .joinPhotoSwiper:before {
    right: 94%;
  }
}
@media (max-width: 960px) {
  .join {
    font-size: 26px;
  }
  .top.join .hide-md-screen {
    display: none;
  }
  .top.join p.mid-screen-text {
    margin-top: 1rem;
    display: block;
  }
  .top.join .top-container {
    width: 100%;
    height: auto;
    background: url('images/bg-sm.be64d287.svg') top/88% no-repeat;
  }
  .top.join .content {
    top: initial;
    left: initial;
    padding: 0 6%;
    position: relative;
  }
  .top.join .content .title {
    height: 90vw;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
    padding: 0 9%;
    line-height: 1.5;
    display: flex;
  }
  .top.join .content .text {
    width: 100%;
  }
  .top.join .content .text p {
    margin-bottom: 0;
  }
  .middle.join .middle-container {
    padding: 3em 6% 0;
  }
  .middle.join .text {
    margin-bottom: 3em;
    padding: 0;
  }
  .middle.join .jobs .title {
    text-align: left;
  }
  .middle.join .jobs .list a {
    border-radius: 30px;
    padding: 1.5em 1em 1.5em 1.5em;
  }
  .middle.join .jobs .list a span {
    padding-right: 0.5em;
    font-size: 1.5em;
    font-weight: 500;
  }
  .middle.join .jobs .list a img {
    width: 75px;
  }
  .middle.join .jobs .list a + a {
    margin-top: 1em;
  }
  .welfare.join {
    padding-top: 3em;
  }
  .welfare.join .welfare-container {
    padding: 0 6%;
  }
  .welfare.join .main-title {
    margin-bottom: 1.5em;
  }
  .welfare.join .content {
    display: block;
  }
  .welfare.join .welfare-item ul {
    padding-left: 1.5em;
  }
  .welfare.join .welfare-item a {
    padding-left: 1.7em;
  }
  .welfare.join .welfare-item + .welfare-item {
    margin-top: 1em;
  }
  .images.join {
    padding-bottom: 60px;
  }
  .images.join .title {
    padding: 0 6%;
  }
  .images.join .joinPhotoSwiper {
    padding: 1em 6%;
    overflow: hidden;
  }
  .images.join .joinPhotoSwiper .swiper-slide {
    height: auto;
  }
  .images.join .joinPhotoSwiper:before {
    right: 94%;
  }
}
@media (max-device-width: 600px) {
  .join {
    font-size: 42px;
  }
  .top.join p.mid-screen-text {
    display: none;
  }
  .top.join .content .title {
    margin-bottom: 45px;
  }
  .top.join .content .title h2 {
    font-size: 1em;
  }
  .top.join .content .text.hide-md-screen {
    display: block;
  }
  .middle.join .jobs .title h2 {
    font-size: 1.125em;
  }
  .middle.join .jobs .list a span {
    font-size: 1em;
  }
  .middle.join .jobs .list a img {
    width: 35px;
  }
  .welfare.join .main-title h3 {
    font-size: 1.125em;
  }
  .welfare.join .welfare-item ul {
    padding-left: 9%;
  }
  .welfare.join .welfare-item a {
    padding-left: 10%;
  }
  .images.join .title h3 {
    font-size: 1.125em;
  }
  .images.join .joinPhotoSwiper .swiper-slide {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 600px) {
  .join {
    font-size: 42px;
  }
  .top.join p.mid-screen-text {
    display: none;
  }
  .top.join .content .title {
    margin-bottom: 45px;
  }
  .top.join .content .title h2 {
    font-size: 1em;
  }
  .top.join .content .text.hide-md-screen {
    display: block;
  }
  .middle.join .jobs .title h2 {
    font-size: 1.125em;
  }
  .middle.join .jobs .list a span {
    font-size: 1em;
  }
  .middle.join .jobs .list a img {
    width: 35px;
  }
  .welfare.join .main-title h3 {
    font-size: 1.125em;
  }
  .welfare.join .welfare-item ul {
    padding-left: 9%;
  }
  .welfare.join .welfare-item a {
    padding-left: 10%;
  }
  .images.join .title h3 {
    font-size: 1.125em;
  }
  .images.join .joinPhotoSwiper .swiper-slide {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 960px) {
  .join {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .join {
    font-size: 16px;
  }
}
.lecturer {
  background: #f0f8ff;
  padding: 32px 0 88px;
  font-size: 16px;
}
.lecturer .container {
  padding: 0 144px;
}
.lecturer .lecturer-info {
  color: #212121;
  display: flex;
}
.lecturer .lecturer-info .left {
  width: 300px;
  padding-top: 88px;
  padding-right: 1.5em;
}
.lecturer .lecturer-info .left .info-section {
  width: 244px;
  z-index: 1;
  position: relative;
}
.lecturer .lecturer-info .left .num {
  color: #ff4f3e;
  opacity: 0.1;
  z-index: 1;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 9em;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -10px;
  transform: translateY(-50%);
}
.lecturer .lecturer-info .left .avatar {
  z-index: 2;
  justify-content: flex-end;
  display: flex;
  position: relative;
}
.lecturer .lecturer-info .left .avatar img.sm {
  display: none;
}
.lecturer .lecturer-info .left .name {
  text-align: right;
  margin: 12px 0;
}
.lecturer .lecturer-info .left .name h1 {
  color: #212121;
  font-size: 32px;
}
@media (max-device-width: 960px) {
  .lecturer .lecturer-info .left .name h1 {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .lecturer .lecturer-info .left .name h1 {
    font-size: 24px;
  }
}
.lecturer .lecturer-info .right {
  width: 792px;
  background: #cce3fe;
  border-radius: 160px;
  padding: 88px 102px;
}
.lecturer .lecturer-info .right h2 {
  color: #3457ff;
  margin-bottom: 16px;
  font-size: 1.5em;
  font-weight: 700;
}
.lecturer .lecturer-info .right .expr {
  margin-bottom: 56px;
}
.lecturer .lecturer-info .right .expr p + ul,
.lecturer .lecturer-info .right .expr ul + ul,
.lecturer .lecturer-info .right .expr ul + p,
.lecturer .lecturer-info .right .expr p + p {
  margin-top: 32px;
}
.lecturer .lecturer-info .right .expr li {
  margin-bottom: 10px;
}
.lecturer .lecturer-info .right .link {
  margin-bottom: 26px;
}
.lecturer .lecturer-info .right .link span {
  margin-right: 8px;
  font-weight: 700;
}
.lecturer .lecturer-info .right .link a {
  color: #3457ff;
}
.lecturer .lecturer-info .right .link div + div {
  margin-top: 0.7em;
}
.lecturer .lecturer-info .achievement {
  width: 190px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  display: flex;
}
.lecturer .lecturer-info .achievement div {
  width: 50px;
}
.lecturer .lecturer-info .achievement img {
  width: 100%;
  margin-left: auto;
}
.lecturer .lecturer-info .achievement.achievement-sm {
  display: none;
}
.lecturer .lecturer-info .avatar img {
  width: 240px;
  height: 280px;
}
.lecturer .lecturer-info + .lecturer-info {
  margin-top: 42px;
}
@media (min-width: 960px) and (max-width: 1280px) {
  .lecturer .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  .lecturer .lecturer-info .right {
    width: auto;
    padding: 12% 8%;
  }
}
@media (max-device-width: 960px) {
  .lecturer {
    padding-bottom: 2px;
    font-size: 26px;
  }
  .lecturer .container {
    padding: 0;
  }
  .lecturer .lecturer-info {
    margin-bottom: 10em;
    padding: 1.5em 0;
    display: block;
  }
  .lecturer .lecturer-info .left,
  .lecturer .lecturer-info .right {
    width: 100%;
  }
  .lecturer .lecturer-info .left {
    align-items: flex-end;
    gap: 15px;
    padding: 0 3%;
    display: flex;
    position: absolute;
  }
  .lecturer .lecturer-info .left .num {
    font-size: 8em;
    left: 0;
  }
  .lecturer .lecturer-info .left .info-section {
    width: auto;
  }
  .lecturer .lecturer-info .left .info-section .name {
    text-align: left;
    transform: translateY(-8em);
  }
  .lecturer .lecturer-info .left .info-section .name h1 {
    font-weight: 500;
  }
  .lecturer .lecturer-info .left .avatar img {
    width: auto;
    height: 16em;
  }
  .lecturer .lecturer-info .left .avatar img.lg {
    display: none;
  }
  .lecturer .lecturer-info .left .avatar img.sm {
    display: block;
  }
  .lecturer .lecturer-info .right {
    width: 88%;
    border-radius: 3em;
    margin: 0 3% 0 9%;
    padding: 10em 6% 4em;
    transform: translateY(8em);
  }
  .lecturer .lecturer-info .achievement {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.3em;
    margin-left: 0;
    padding-bottom: 2em;
  }
  .lecturer .lecturer-info .achievement div {
    width: 3.5em;
  }
  .lecturer .lecturer-info .achievement.achievement-lg {
    display: none;
  }
  .lecturer .lecturer-info .achievement.achievement-sm {
    display: flex;
  }
}
@media (max-width: 960px) {
  .lecturer {
    padding-bottom: 2px;
    font-size: 26px;
  }
  .lecturer .container {
    padding: 0;
  }
  .lecturer .lecturer-info {
    margin-bottom: 10em;
    padding: 1.5em 0;
    display: block;
  }
  .lecturer .lecturer-info .left,
  .lecturer .lecturer-info .right {
    width: 100%;
  }
  .lecturer .lecturer-info .left {
    align-items: flex-end;
    gap: 15px;
    padding: 0 3%;
    display: flex;
    position: absolute;
  }
  .lecturer .lecturer-info .left .num {
    font-size: 8em;
    left: 0;
  }
  .lecturer .lecturer-info .left .info-section {
    width: auto;
  }
  .lecturer .lecturer-info .left .info-section .name {
    text-align: left;
    transform: translateY(-8em);
  }
  .lecturer .lecturer-info .left .info-section .name h1 {
    font-weight: 500;
  }
  .lecturer .lecturer-info .left .avatar img {
    width: auto;
    height: 16em;
  }
  .lecturer .lecturer-info .left .avatar img.lg {
    display: none;
  }
  .lecturer .lecturer-info .left .avatar img.sm {
    display: block;
  }
  .lecturer .lecturer-info .right {
    width: 88%;
    border-radius: 3em;
    margin: 0 3% 0 9%;
    padding: 10em 6% 4em;
    transform: translateY(8em);
  }
  .lecturer .lecturer-info .achievement {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.3em;
    margin-left: 0;
    padding-bottom: 2em;
  }
  .lecturer .lecturer-info .achievement div {
    width: 3.5em;
  }
  .lecturer .lecturer-info .achievement.achievement-lg {
    display: none;
  }
  .lecturer .lecturer-info .achievement.achievement-sm {
    display: flex;
  }
}
@media (max-device-width: 600px) {
  .lecturer {
    padding: 40px 0 0;
    font-size: 42px;
  }
  .lecturer .lecturer-info .left .avatar img {
    height: 50vw;
  }
  .lecturer .lecturer-info .left .info-section .name {
    transform: translateY(-25vw);
  }
  .lecturer .lecturer-info .right {
    padding: 30vw 6% 4em;
    transform: translateY(6em);
  }
}
@media (max-width: 600px) {
  .lecturer {
    padding: 40px 0 0;
    font-size: 42px;
  }
  .lecturer .lecturer-info .left .avatar img {
    height: 50vw;
  }
  .lecturer .lecturer-info .left .info-section .name {
    transform: translateY(-25vw);
  }
  .lecturer .lecturer-info .right {
    padding: 30vw 6% 4em;
    transform: translateY(6em);
  }
}
@media (max-width: 960px) {
  .lecturer {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .lecturer {
    font-size: 16px;
  }
}
.online {
  font-size: 16px;
}
.online .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 145px;
}
.top.online {
  background: #3457ff;
}
.top.online .top-content {
  max-width: 1280px;
  min-height: 400px;
  margin: 0 auto;
  padding: 0 145px;
  position: relative;
  overflow: hidden;
}
.top.online .top-content .bg {
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.top.online .top-content .bg img {
  height: 100%;
}
.top.online .top-content .circle {
  z-index: 2;
  position: absolute;
  top: 266px;
  right: -82px;
}
.top.online .top-content .circle img {
  width: 240px;
}
.top.online .top-content .carousel {
  z-index: 2;
  position: absolute;
  top: 188px;
  left: 617px;
}
.top.online .top-content .carousel img {
  width: 300px;
}
.top.online .top-content .ball {
  width: 1250px;
  height: 1250px;
  z-index: 3;
  background: #3457ff;
  border-radius: 50%;
  position: absolute;
  top: -660px;
  left: -378px;
}
.top.online .top-content .link {
  cursor: pointer;
  z-index: 4;
  position: absolute;
  top: 310px;
  left: 705px;
}
.top.online .top-content .link a {
  width: 80px;
  height: 80px;
  background: url('images/link-sprites.ef167c40.png') -10px -10px no-repeat;
  display: block;
}
.top.online .top-content .link a:hover {
  background-position: -10px -110px;
}
.top.online .top-content .link a:active {
  background-position: -10px -210px;
}
.top.online .top-content .info-conteiner {
  z-index: 5;
  position: relative;
}
.top.online .top-content .info-conteiner .info {
  color: #fff;
  padding: 50px 0;
  font-size: 1.125em;
}
@media (max-device-width: 1280px) {
  .top.online .top-content .info-conteiner .info {
    padding: 30px 0;
  }
}
@media (max-width: 1280px) {
  .top.online .top-content .info-conteiner .info {
    padding: 30px 0;
  }
}
.top.online .top-content .info-conteiner .info div {
  width: 200px;
}
.top.online .top-content .info-conteiner .main-info {
  width: 55%;
  color: #fff;
}
.top.online .top-content .info-conteiner .main-info span {
  display: block;
}
.top.online .top-content .info-conteiner .main-info .customer {
  font-size: 1.12em;
  line-height: 24px;
}
.top.online .top-content .info-conteiner .main-info .project-name {
  font-size: 2.75em;
  font-weight: 500;
  line-height: 1.3;
}
.top.online .top-content .info-conteiner .main-info .detail {
  margin-top: 1.5em;
  font-size: 0.88em;
  line-height: 20px;
}
.notice.online {
  background: #e0effd;
  padding: 56px 0;
}
.notice.online h2 {
  color: #3457ff;
  font-size: 2em;
  font-weight: 400;
}
.notice.online .dotted {
  height: 20px;
  width: 100%;
  background: url('images/dotted.1eee0d23.svg') repeat-x;
  margin: 40px 0;
}
.notice.online .first h2 {
  margin-bottom: 16px;
}
.notice.online .first span {
  color: #212121;
  align-items: center;
  margin-bottom: 24px;
  font-size: 1.5em;
  display: flex;
}
.notice.online .first span .check {
  width: 26px;
  height: 35px;
  margin-right: 8px;
}
.notice.online .second h2 {
  margin-bottom: 32px;
}
.notice.online .second span {
  font-size: 1.5em;
  font-weight: 700;
}
.notice.online .second li {
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}
.notice.online .second .check {
  width: 26px;
  height: 35px;
  margin-right: 8px;
}
.article.online {
  background: #fff;
  padding: 56px 0;
}
.article.online p {
  color: #212121;
  font-size: 1em;
}
.article.online p + p {
  margin-top: 32px;
}
.course-content.online {
  background: #e0effd;
  padding: 44px 0 120px;
  overflow: hidden;
}
.course-content.online h2 {
  color: #3457ff;
  font-weight: 700;
}
.course-content.online .chapter-list {
  width: 530px;
  margin-top: 33px;
  position: relative;
}
.course-content.online .chapter-list li.chapter {
  width: 80%;
  background: #cce3fe;
}
.course-content.online .chapter-list li.chapter a {
  height: 56px;
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px 14px 16px;
  font-size: 1.125em;
  display: flex;
  position: relative;
}
.course-content.online .chapter-list li.chapter a .text {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}
.course-content.online .chapter-list li.chapter a .diamond {
  z-index: -1;
  opacity: 0;
  transition: right 0.25s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
}
.course-content.online .chapter-list li.chapter a .right-icon {
  z-index: 2;
}
.course-content.online .chapter-list li.chapter a .right-active-icon {
  z-index: 2;
  display: none;
}
.course-content.online .chapter-list li.chapter .detail {
  width: 470px;
  visibility: hidden;
  display: none;
  position: absolute;
  bottom: 0;
  left: 100%;
}
.course-content.online .chapter-list li.chapter .detail .num {
  color: #3457ff;
  opacity: 0.2;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 150px;
  line-height: 115px;
}
.course-content.online .chapter-list li.chapter .detail h3 {
  color: #212121;
  margin-bottom: 16px;
  font-size: 1.5em;
}
.course-content.online .chapter-list li.chapter .detail li {
  align-items: flex-start;
  margin-bottom: 4px;
  display: flex;
}
.course-content.online .chapter-list li.chapter .detail .time {
  color: #3457ff;
  margin-right: 16px;
  font-size: 1em;
}
.course-content.online .chapter-list li.chapter .detail .desc {
  color: #212121;
  font-size: 1em;
}
.course-content.online .chapter-list li.chapter.active {
  color: #fff;
  background: #3457ff;
}
.course-content.online .chapter-list li.chapter.active a .right-icon {
  display: none;
}
.course-content.online .chapter-list li.chapter.active a .right-active-icon,
.course-content.online .chapter-list li.chapter.active a .diamond {
  opacity: 1;
  right: -28px;
}
.course-content.online .chapter-list li.chapter.active .detail {
  display: block;
}
.course-content.online .chapter-list img {
  color: #fff;
}
.photo.online {
  background: #e0effd;
  padding: 33px 0 73px;
  overflow: hidden;
}
.photo.online h2 {
  color: #3457ff;
  margin-bottom: 33px;
  font-weight: 700;
}
.photo.online img {
  height: 100%;
  width: 100%;
  border: 6px solid #3457ff;
}
.photo.online .swiper-icon {
  z-index: 99;
  width: 58px;
  height: 58px;
  border: none;
  position: absolute;
  bottom: -29px;
  right: -29px;
}
.photo.online .onlinePhotoSwiper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 145px 20px;
}
.photo.online .onlinePhotoSwiper:after {
  content: '';
  width: 50px;
  height: 50px;
  z-index: 1;
  background: #deefff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 923.5px;
  box-shadow: 0 0 8px #3457ff26;
}
.photo.online .swiper-button-next,
.photo.online .swiper-button-prev {
  color: #3457ff;
  bottom: 2px;
  top: initial;
}
.photo.online .swiper-button-next:after,
.photo.online .swiper-button-prev:after {
  font-size: 24px;
  font-weight: 900;
}
.photo.online .swiper-button-next.swiper-button-disabled,
.photo.online .swiper-button-prev.swiper-button-disabled {
  color: #349dff;
  opacity: 1;
}
.photo.online .swiper-button-next {
  left: 945px;
}
.photo.online .swiper-button-prev {
  left: 925px;
}
.onlinePhotoSwiper {
  width: 100%;
  height: 100%;
  overflow: initial;
  position: relative;
}
.onlinePhotoSwiper:before {
  content: '';
  height: 100%;
  width: 100%;
  z-index: 2;
  background: #e0effd;
  position: absolute;
  top: 0;
  right: calc(100% - 145px);
}
.onlinePhotoSwiper .swiper-slide {
  width: 792px;
  height: 446px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.lecturer.online {
  background: #fff0e8;
  padding: 56px 0 80px;
}
.lecturer.online h2 {
  font-weight: 700;
}
.lecturer.online .intro {
  margin-top: 40px;
  display: flex;
}
.lecturer.online .intro .name {
  align-items: flex-end;
  margin-bottom: 16px;
  font-weight: bold;
  display: flex;
}
.lecturer.online .intro .name h3 {
  margin-right: 4px;
  font-size: 24px;
}
.lecturer.online .intro p {
  margin-bottom: 16px;
}
.lecturer.online .avatar {
  width: 180px;
  height: 180px;
  border: 5px solid #ff4f3e;
  border-radius: 100%;
  margin-right: 47px;
}
.course-flex {
  display: flex;
}
.course-flex .pc-detail {
  display: none;
}
.course-flex .pc-detail .num {
  color: #3457ff;
  opacity: 0.2;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 150px;
  line-height: 115px;
}
.course-flex .pc-detail h3 {
  color: #212121;
  margin-bottom: 16px;
  font-size: 1.5em;
}
.course-flex .pc-detail li {
  align-items: flex-start;
  margin-bottom: 4px;
  display: flex;
}
.course-flex .pc-detail .time {
  color: #3457ff;
  margin-right: 16px;
  font-size: 1em;
}
.course-flex .pc-detail .desc {
  color: #212121;
  font-size: 1em;
}
.course-flex .pc-detail.active {
  display: block;
}
@media screen and (max-width: 960px) {
  .course-content.online {
    width: 100%;
    padding: 3em 0;
  }
  .course-content.online .content {
    width: 100%;
  }
  .course-content.online .container {
    padding: 0;
  }
  .course-content.online h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media screen and (max-width: 960px) and (max-device-width: 600px) {
  .course-content.online h2 {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 960px) and (max-width: 600px) {
  .course-content.online h2 {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 960px) {
  .course-content.online .chapter-list {
    width: 100%;
    margin-top: 1em;
  }
  .course-content.online .chapter-list li.chapter {
    width: 100%;
  }
  .course-content.online .chapter-list li.chapter a {
    height: auto;
    align-items: flex-start;
    padding: 0.8em 1em 0.8em 7vw;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 960px) and (max-device-width: 600px) {
  .course-content.online .chapter-list li.chapter a {
    font-size: 1em;
  }
}
@media screen and (max-width: 960px) and (max-width: 600px) {
  .course-content.online .chapter-list li.chapter a {
    font-size: 1em;
  }
}
@media screen and (max-width: 960px) {
  .course-content.online .chapter-list li.chapter a .text {
    padding-right: 1em;
  }
  .course-content.online .chapter-list li.chapter a .text span:first-of-type {
    margin-right: 0.5em;
  }
  .course-content.online .chapter-list li.chapter a .diamond {
    display: none !important;
  }
  .course-content.online .chapter-list li.chapter a .right-icon {
    width: 1.5em;
    transform: rotate(90deg);
  }
  .course-content.online .chapter-list li.chapter a .right-active-icon {
    width: 1.5em;
    transform: rotate(-90deg);
  }
  .course-content.online .chapter-list li.chapter .detail {
    width: 100%;
    top: initial;
    left: initial;
    visibility: visible;
    position: relative;
  }
  .course-content.online .chapter-list li.chapter .detail h3 {
    display: none;
  }
  .course-content.online .chapter-list li.chapter .detail .num {
    color: #fff;
    opacity: 0.1;
    z-index: 1;
    font-size: 9em;
    line-height: 0.8;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .course-content.online .chapter-list li.chapter .detail ul {
    z-index: 2;
    padding: 0.8em 7vw 2em;
    position: relative;
  }
  .course-content.online .chapter-list li.chapter .detail .time,
  .course-content.online .chapter-list li.chapter .detail .desc {
    color: #fff;
  }
  .course-content.online .chapter-list li.chapter + li.chapter {
    margin-top: 0.1em;
  }
  .wrapper-detail {
    display: none !important;
  }
}
@media (max-device-width: 960px) {
  .online {
    font-size: 26px;
  }
  .online .container {
    padding: 0 12%;
  }
  .top.online {
    background: #3457ff;
  }
  .top.online .top-content {
    height: auto;
    padding: 0 12%;
  }
  .top.online .top-content .bg {
    height: 95vw;
    z-index: 1;
    position: absolute;
    top: 0;
    right: -20%;
  }
  .top.online .top-content .bg img {
    width: auto;
    max-width: none;
    height: 100%;
  }
  .top.online .top-content .circle {
    width: 82%;
    top: 50vw;
    right: -36%;
  }
  .top.online .top-content .circle img {
    width: 100%;
  }
  .top.online .top-content .carousel {
    display: none;
  }
  .top.online .top-content .ball {
    width: 250vw;
    height: 250vw;
    max-width: 250vw;
    max-height: 250vw;
    top: 67vw;
    left: -102vw;
    transform: translate3d(0, 0, 0);
  }
  .top.online .top-content .link {
    top: 73vw;
    right: 15%;
    left: initial;
    z-index: 10;
  }
  .top.online .top-content .link a {
    width: 6em;
    height: 6em;
    background-position: -12.5%;
    background-size: cover;
  }
  .top.online .top-content .link a:hover,
  .top.online .top-content .link a:active {
    background-position: -12.5%;
  }
  .top.online .top-content .info-conteiner {
    padding-top: 73vw;
  }
  .top.online .top-content .info-conteiner .info {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em 0;
    padding-bottom: 2em;
    padding-right: 5%;
    font-size: 1.5em;
  }
  .top.online .top-content .info-conteiner .info div {
    width: calc(50% - 30px);
  }
  .top.online .top-content .info-conteiner .info div:first-of-type {
    width: 100%;
  }
  .top.online .top-content .info-conteiner .info span {
    padding-left: 55px;
  }
  .top.online .top-content .info-conteiner .info .title {
    padding-left: 64px;
  }
  .top.online .top-content .info-conteiner .info .title:before {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .top.online .top-content .info-conteiner .main-info {
    width: 100%;
    padding-bottom: 3em;
  }
  .top.online .top-content .info-conteiner .main-info .customer {
    margin-bottom: 1em;
    line-height: 1.5;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .customer {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .customer {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .top.online .top-content .info-conteiner .main-info .project-name {
    font-size: 1.7em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .project-name {
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .project-name {
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) {
  .top.online .top-content .info-conteiner .main-info .detail {
    margin-top: 1em;
    font-size: 1.125em;
    line-height: 1.5;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .detail {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .detail {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) {
  .notice.online .first h2 {
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .notice.online .first h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .notice.online .first h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .notice.online .first span {
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .notice.online .first span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .notice.online .first span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .notice.online .dotted {
    height: 0.3em;
    background-size: contain;
    margin: 2em 0;
  }
  .notice.online .second h2 {
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .notice.online .second h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .notice.online .second h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .notice.online .second .check {
    width: 1.5em;
    height: auto;
    margin-top: 0.3em;
    margin-right: 0.4em;
  }
  .notice.online .second span {
    width: calc(100% - 1.5em);
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .notice.online .second span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .notice.online .second span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .article.online {
    padding: 2em 0;
  }
  .article.online p {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .article.online p {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .article.online p {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .article.online p + p {
    margin-top: 1em;
  }
  .photo.online {
    padding-bottom: 5em;
  }
  .photo.online h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .photo.online h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .photo.online h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .photo.online img {
    border: none;
  }
  .photo.online .onlinePhotoSwiper {
    padding: 0 6%;
    overflow: hidden;
  }
  .onlinePhotoSwiper:before,
  .onlinePhotoSwiper:after,
  .onlinePhotoSwiper .swiper-button-next,
  .onlinePhotoSwiper .swiper-button-prev {
    display: none;
  }
  .onlinePhotoSwiper .swiper-slide {
    width: 88%;
    height: auto;
  }
  .lecturer.online {
    padding: 3em 0;
  }
  .lecturer.online h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .lecturer.online h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .lecturer.online h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .lecturer.online .intro {
    margin-top: 2em;
    display: block;
  }
  .lecturer.online .intro .name {
    justify-content: center;
    margin-top: 1em;
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .lecturer.online .intro .name h3,
  .lecturer.online .intro .name span {
    font-size: 20px;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .lecturer.online .intro .name h3,
  .lecturer.online .intro .name span {
    font-size: 20px;
  }
}
@media (max-device-width: 960px) {
  .lecturer.online .intro p {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .lecturer.online .intro p {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .lecturer.online .intro p {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) {
  .lecturer.online .intro p + p {
    margin-top: 0.5em;
  }
  .lecturer.online .avatar {
    width: 40%;
    height: auto;
    border: 10px solid #ff4f3e;
    margin: 0 auto;
  }
}
@media (max-width: 960px) {
  .online {
    font-size: 26px;
  }
  .online .container {
    padding: 0 12%;
  }
  .top.online {
    background: #3457ff;
  }
  .top.online .top-content {
    height: auto;
    padding: 0 12%;
  }
  .top.online .top-content .bg {
    height: 95vw;
    z-index: 1;
    position: absolute;
    top: 0;
    right: -20%;
  }
  .top.online .top-content .bg img {
    width: auto;
    max-width: none;
    height: 100%;
  }
  .top.online .top-content .circle {
    width: 82%;
    top: 50vw;
    right: -36%;
  }
  .top.online .top-content .circle img {
    width: 100%;
  }
  .top.online .top-content .carousel {
    display: none;
  }
  .top.online .top-content .ball {
    width: 250vw;
    height: 250vw;
    max-width: 250vw;
    max-height: 250vw;
    top: 67vw;
    left: -102vw;
    transform: translate3d(0, 0, 0);
  }
  .top.online .top-content .link {
    top: 73vw;
    right: 15%;
    left: initial;
    z-index: 10;
  }
  .top.online .top-content .link a {
    width: 6em;
    height: 6em;
    background-position: -12.5%;
    background-size: cover;
  }
  .top.online .top-content .link a:hover,
  .top.online .top-content .link a:active {
    background-position: -12.5%;
  }
  .top.online .top-content .info-conteiner {
    padding-top: 73vw;
  }
  .top.online .top-content .info-conteiner .info {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em 0;
    padding-bottom: 2em;
    padding-right: 5%;
    font-size: 1.5em;
  }
  .top.online .top-content .info-conteiner .info div {
    width: calc(50% - 30px);
  }
  .top.online .top-content .info-conteiner .info div:first-of-type {
    width: 100%;
  }
  .top.online .top-content .info-conteiner .info span {
    padding-left: 55px;
  }
  .top.online .top-content .info-conteiner .info .title {
    padding-left: 64px;
  }
  .top.online .top-content .info-conteiner .info .title:before {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .top.online .top-content .info-conteiner .main-info {
    width: 100%;
    padding-bottom: 3em;
  }
  .top.online .top-content .info-conteiner .main-info .customer {
    margin-bottom: 1em;
    line-height: 1.5;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .customer {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .customer {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .top.online .top-content .info-conteiner .main-info .project-name {
    font-size: 1.7em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .project-name {
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .project-name {
    font-size: 1.5em;
  }
}
@media (max-width: 960px) {
  .top.online .top-content .info-conteiner .main-info .detail {
    margin-top: 1em;
    font-size: 1.125em;
    line-height: 1.5;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .detail {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.online .top-content .info-conteiner .main-info .detail {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) {
  .notice.online .first h2 {
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .notice.online .first h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .notice.online .first h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .notice.online .first span {
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .notice.online .first span {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .notice.online .first span {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .notice.online .dotted {
    height: 0.3em;
    background-size: contain;
    margin: 2em 0;
  }
  .notice.online .second h2 {
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .notice.online .second h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .notice.online .second h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .notice.online .second .check {
    width: 1.5em;
    height: auto;
    margin-top: 0.3em;
    margin-right: 0.4em;
  }
  .notice.online .second span {
    width: calc(100% - 1.5em);
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .notice.online .second span {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .notice.online .second span {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .article.online {
    padding: 2em 0;
  }
  .article.online p {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .article.online p {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .article.online p {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .article.online p + p {
    margin-top: 1em;
  }
  .photo.online {
    padding-bottom: 5em;
  }
  .photo.online h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .photo.online h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .photo.online h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .photo.online img {
    border: none;
  }
  .photo.online .onlinePhotoSwiper {
    padding: 0 6%;
    overflow: hidden;
  }
  .onlinePhotoSwiper:before,
  .onlinePhotoSwiper:after,
  .onlinePhotoSwiper .swiper-button-next,
  .onlinePhotoSwiper .swiper-button-prev {
    display: none;
  }
  .onlinePhotoSwiper .swiper-slide {
    width: 88%;
    height: auto;
  }
  .lecturer.online {
    padding: 3em 0;
  }
  .lecturer.online h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .lecturer.online h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .lecturer.online h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .lecturer.online .intro {
    margin-top: 2em;
    display: block;
  }
  .lecturer.online .intro .name {
    justify-content: center;
    margin-top: 1em;
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .lecturer.online .intro .name h3,
  .lecturer.online .intro .name span {
    font-size: 20px;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .lecturer.online .intro .name h3,
  .lecturer.online .intro .name span {
    font-size: 20px;
  }
}
@media (max-width: 960px) {
  .lecturer.online .intro p {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .lecturer.online .intro p {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .lecturer.online .intro p {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) {
  .lecturer.online .intro p + p {
    margin-top: 0.5em;
  }
  .lecturer.online .avatar {
    width: 40%;
    height: auto;
    border: 10px solid #ff4f3e;
    margin: 0 auto;
  }
}
@media (max-device-width: 600px) {
  .online {
    font-size: 42px;
  }
  .top.online .top-content .link a {
    width: 4em;
    height: 4em;
  }
}
@media (max-width: 600px) {
  .online {
    font-size: 42px;
  }
  .top.online .top-content .link a {
    width: 4em;
    height: 4em;
  }
}
@media (max-width: 960px) {
  .online {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .online {
    font-size: 16px;
  }
}
.feedback.bg_blue.for_online .content {
  margin-left: calc(50% - 495px);
}
@media (max-device-width: 1280px) {
  .feedback.bg_blue.for_online .content {
    margin-left: 40px;
  }
}
@media (max-width: 1280px) {
  .feedback.bg_blue.for_online .content {
    margin-left: 40px;
  }
}
@media (max-device-width: 960px) {
  .feedback.bg_blue.for_online .content {
    margin-right: 40px;
  }
}
@media (max-width: 960px) {
  .feedback.bg_blue.for_online .content {
    margin-right: 40px;
  }
}
@media (max-device-width: 600px) {
  .feedback.bg_blue.for_online .content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .feedback.bg_blue.for_online .content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.online2 {
  font-size: 16px;
}
.online2 .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 145px;
}
.top.online2 {
  background: #3457ff;
}
.top.online2 .top-content {
  max-width: 1280px;
  height: 400px;
  margin: 0 auto;
  padding: 0 145px;
  position: relative;
  overflow: hidden;
}
.top.online2 .top-content .bg {
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.top.online2 .top-content .bg img {
  height: 100%;
}
.top.online2 .top-content .circle {
  z-index: 2;
  position: absolute;
  top: 266px;
  right: -82px;
}
.top.online2 .top-content .circle img {
  width: 240px;
}
.top.online2 .top-content .carousel {
  z-index: 2;
  position: absolute;
  top: 188px;
  left: 617px;
}
.top.online2 .top-content .carousel img {
  width: 300px;
}
.top.online2 .top-content .ball {
  width: 1250px;
  height: 1250px;
  z-index: 3;
  background: #3457ff;
  border-radius: 50%;
  position: absolute;
  top: -660px;
  left: -378px;
}
.top.online2 .top-content .link {
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 310px;
  left: 705px;
}
.top.online2 .top-content .link a {
  width: 80px;
  height: 80px;
  background: url('images/link-sprites.ef167c40.png') -10px -10px no-repeat;
  display: block;
}
.top.online2 .top-content .link a:hover {
  background-position: -10px -110px;
}
.top.online2 .top-content .link a:active {
  background-position: -10px -210px;
}
.top.online2 .top-content .info-conteiner {
  z-index: 5;
  position: relative;
}
.top.online2 .top-content .info-conteiner .info {
  color: #fff;
  padding: 50px 0;
  font-size: 1.125em;
}
@media (max-device-width: 1280px) {
  .top.online2 .top-content .info-conteiner .info {
    padding: 30px 0;
  }
}
@media (max-width: 1280px) {
  .top.online2 .top-content .info-conteiner .info {
    padding: 30px 0;
  }
}
.top.online2 .top-content .info-conteiner .info div {
  width: 200px;
}
.top.online2 .top-content .info-conteiner .main-info {
  width: 55%;
  color: #fff;
}
.top.online2 .top-content .info-conteiner .main-info span {
  display: block;
}
.top.online2 .top-content .info-conteiner .main-info .customer {
  font-size: 1.12em;
  line-height: 24px;
}
.top.online2 .top-content .info-conteiner .main-info .project-name {
  font-size: 2.75em;
  font-weight: 500;
  line-height: 1.3;
}
.top.online2 .top-content .info-conteiner .main-info .detail {
  margin-top: 1.5em;
  font-size: 0.88em;
  line-height: 20px;
}
.notice.online2 {
  background: #e0effd;
  padding: 56px 0;
}
.notice.online2 h2 {
  color: #3457ff;
  font-size: 2em;
  font-weight: 400;
}
.notice.online2 .dotted {
  height: 20px;
  width: 100%;
  background: url('images/dotted.1eee0d23.svg') repeat-x;
  margin: 40px 0;
}
.notice.online2 .first h2 {
  margin-bottom: 16px;
}
.notice.online2 .first span {
  color: #212121;
  align-items: center;
  margin-bottom: 24px;
  font-size: 1.5em;
  display: flex;
}
.notice.online2 .first span .check {
  width: 26px;
  height: 35px;
  margin-right: 8px;
}
.notice.online2 .second h2 {
  margin-bottom: 32px;
}
.notice.online2 .second span {
  font-size: 1.5em;
}
.notice.online2 .second li {
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}
.notice.online2 .second .check {
  width: 26px;
  height: 35px;
  margin-right: 8px;
}
.article.online2 {
  background: #fff;
  padding: 56px 0;
}
.article.online2 p {
  color: #212121;
  font-size: 1em;
}
.article.online2 p + p {
  margin-top: 32px;
}
.course-content.online2 {
  background: #e0effd;
  padding: 44px 0 120px;
  overflow: hidden;
}
.course-content.online2 h2 {
  color: #3457ff;
  font-weight: 500;
}
.course-content.online2 .chapter-list {
  width: 530px;
  margin-top: 33px;
  position: relative;
}
.course-content.online2 .chapter-list li.chapter {
  width: 80%;
  background: #cce3fe;
}
.course-content.online2 .chapter-list li.chapter a {
  height: 56px;
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px 14px 16px;
  font-size: 1.125em;
  display: flex;
  position: relative;
}
.course-content.online2 .chapter-list li.chapter a .text {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}
.course-content.online2 .chapter-list li.chapter a .diamond {
  z-index: -1;
  opacity: 0;
  transition: right 0.25s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
}
.course-content.online2 .chapter-list li.chapter a .right-icon {
  z-index: 2;
}
.course-content.online2 .chapter-list li.chapter a .right-active-icon {
  z-index: 2;
  display: none;
}
.course-content.online2 .chapter-list li.chapter .detail {
  width: 470px;
  visibility: hidden;
  display: none;
  position: absolute;
  bottom: 0;
  left: 100%;
}
.course-content.online2 .chapter-list li.chapter .detail .num {
  color: #3457ff;
  opacity: 0.2;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 150px;
  line-height: 115px;
}
.course-content.online2 .chapter-list li.chapter .detail h3 {
  color: #212121;
  margin-bottom: 16px;
  font-size: 1.5em;
}
.course-content.online2 .chapter-list li.chapter .detail li {
  align-items: flex-start;
  margin-bottom: 4px;
  display: flex;
}
.course-content.online2 .chapter-list li.chapter .detail .time {
  color: #3457ff;
  margin-right: 16px;
  font-size: 1em;
}
.course-content.online2 .chapter-list li.chapter .detail .desc {
  color: #212121;
  font-size: 1em;
}
.course-content.online2 .chapter-list li.chapter.active {
  color: #fff;
  background: #3457ff;
}
.course-content.online2 .chapter-list li.chapter.active a .right-icon {
  display: none;
}
.course-content.online2 .chapter-list li.chapter.active a .right-active-icon,
.course-content.online2 .chapter-list li.chapter.active a .diamond {
  opacity: 1;
  right: -28px;
}
.course-content.online2 .chapter-list li.chapter.active .detail {
  display: block;
}
.course-content.online2 .chapter-list img {
  color: #fff;
}
.photo.online2 {
  background: #e0effd;
  padding: 33px 0 73px;
  overflow: hidden;
}
.photo.online2 h2 {
  color: #3457ff;
  margin-bottom: 33px;
  font-weight: 500;
}
.photo.online2 img {
  height: 100%;
  width: 100%;
  border: 6px solid #3457ff;
}
.photo.online2 .swiper-icon {
  z-index: 99;
  width: 58px;
  height: 58px;
  border: none;
  position: absolute;
  bottom: -29px;
  right: -29px;
}
.photo.online2 .online2PhotoSwiper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 145px 20px;
}
.photo.online2 .online2PhotoSwiper:after {
  content: '';
  width: 50px;
  height: 50px;
  z-index: 1;
  background: #deefff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 923.5px;
  box-shadow: 0 0 8px #3457ff26;
}
.photo.online2 .swiper-button-next,
.photo.online2 .swiper-button-prev {
  color: #3457ff;
  bottom: 2px;
  top: initial;
}
.photo.online2 .swiper-button-next:after,
.photo.online2 .swiper-button-prev:after {
  font-size: 24px;
  font-weight: 900;
}
.photo.online2 .swiper-button-next.swiper-button-disabled,
.photo.online2 .swiper-button-prev.swiper-button-disabled {
  color: #349dff;
  opacity: 1;
}
.photo.online2 .swiper-button-next {
  left: 945px;
}
.photo.online2 .swiper-button-prev {
  left: 925px;
}
.online2PhotoSwiper {
  width: 100%;
  height: 100%;
  overflow: initial;
  position: relative;
}
.online2PhotoSwiper:before {
  content: '';
  height: 100%;
  width: 100%;
  z-index: 2;
  background: #e0effd;
  position: absolute;
  top: 0;
  right: calc(100% - 145px);
}
.online2PhotoSwiper .swiper-slide {
  width: 792px;
  height: 446px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.lecturer.online2 {
  background: #fff0e8;
  padding: 56px 0 80px;
}
.lecturer.online2 h2 {
  font-weight: 500;
}
.lecturer.online2 .intro {
  margin-top: 40px;
  display: flex;
}
.lecturer.online2 .intro .name {
  align-items: flex-end;
  margin-bottom: 16px;
  font-weight: bold;
  display: flex;
}
.lecturer.online2 .intro .name h3 {
  margin-right: 4px;
}
.lecturer.online2 .intro p {
  margin-bottom: 16px;
}
.lecturer.online2 .avatar {
  width: 180px;
  height: 180px;
  border: 5px solid #ff4f3e;
  border-radius: 100%;
  margin-right: 47px;
}
.online2.feedback-top {
  background: #e0effd;
  padding: 68px 0;
  overflow: hidden;
}
.online2.feedback-top .feedback .title {
  max-width: 1280px;
  color: #3457ff;
  margin: 0 auto 1em;
  padding-left: 145px;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 50px;
}
.online2.feedback-top .feedback .content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 145px;
}
.course-flex {
  display: flex;
}
.course-flex .pc-detail {
  display: none;
}
.course-flex .pc-detail .num {
  color: #3457ff;
  opacity: 0.2;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 150px;
  line-height: 115px;
}
.course-flex .pc-detail h3 {
  color: #212121;
  margin-bottom: 16px;
  font-size: 1.5em;
}
.course-flex .pc-detail li {
  align-items: flex-start;
  margin-bottom: 4px;
  display: flex;
}
.course-flex .pc-detail .time {
  color: #3457ff;
  margin-right: 16px;
  font-size: 1em;
}
.course-flex .pc-detail .desc {
  color: #212121;
  font-size: 1em;
}
.course-flex .pc-detail.active {
  display: block;
}
.online2 .online2FeedbackSwiper {
  width: 100%;
  height: 100%;
  color: #212121;
  overflow: initial;
  position: relative;
}
.online2 .online2FeedbackSwiper:before {
  content: '';
  height: 100%;
  width: 100%;
  z-index: 2;
  background: #e0effd;
  position: absolute;
  top: 0;
  right: 100%;
}
.online2 .online2FeedbackSwiper .swiper-slide {
  width: 384px;
  height: 300px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.online2 .online2FeedbackSwiper .swiper-slide .avatar {
  width: 78px;
  height: 78px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
.online2 .online2FeedbackSwiper .swiper-slide .avatar .client {
  z-index: 1;
  position: relative;
}
.online2 .online2FeedbackSwiper .swiper-slide .avatar .bg {
  z-index: 0;
  position: absolute;
}
.online2 .online2FeedbackSwiper .swiper-slide .info {
  margin: 8px 0 4px;
  display: flex;
}
.online2 .online2FeedbackSwiper .swiper-slide .info .client {
  margin-right: 8px;
  font-weight: bold;
}
.online2 .online2FeedbackSwiper .swiper-slide .info .comp {
  font-size: 0.88em;
}
.online2 .online2FeedbackSwiper .swiper-slide .desc {
  border-top: 1px solid #349dff;
  padding: 0.5em;
  line-height: 1.5rem;
}
.online2 .online2FeedbackSwiper .swiper-slide {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.online2 .online2FeedbackSwiper .swiper-slide p {
  text-align: left;
}
@media screen and (max-width: 960px) {
  .course-content.online2 {
    padding: 3em 0;
  }
  .course-content.online2 .content {
    width: 100%;
  }
  .course-content.online2 .container {
    padding: 0;
  }
  .course-content.online2 h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media screen and (max-width: 960px) and (max-device-width: 600px) {
  .course-content.online2 h2 {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 960px) and (max-width: 600px) {
  .course-content.online2 h2 {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 960px) {
  .course-content.online2 .chapter-list {
    width: 100%;
    margin-top: 1em;
  }
  .course-content.online2 .chapter-list li.chapter {
    width: 100%;
  }
  .course-content.online2 .chapter-list li.chapter a {
    height: auto;
    align-items: flex-start;
    padding: 0.8em 1em 0.8em 7vw;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 960px) and (max-device-width: 600px) {
  .course-content.online2 .chapter-list li.chapter a {
    font-size: 1em;
  }
}
@media screen and (max-width: 960px) and (max-width: 600px) {
  .course-content.online2 .chapter-list li.chapter a {
    font-size: 1em;
  }
}
@media screen and (max-width: 960px) {
  .course-content.online2 .chapter-list li.chapter a .text {
    padding-right: 1em;
  }
  .course-content.online2 .chapter-list li.chapter a .text span:first-of-type {
    margin-right: 0.5em;
  }
  .course-content.online2 .chapter-list li.chapter a .diamond {
    display: none !important;
  }
  .course-content.online2 .chapter-list li.chapter a .right-icon {
    width: 1.5em;
    transform: rotate(90deg);
  }
  .course-content.online2 .chapter-list li.chapter a .right-active-icon {
    width: 1.5em;
    transform: rotate(-90deg);
  }
  .course-content.online2 .chapter-list li.chapter .detail {
    width: 100%;
    top: initial;
    left: initial;
    visibility: visible;
    position: relative;
  }
  .course-content.online2 .chapter-list li.chapter .detail h3 {
    display: none;
  }
  .course-content.online2 .chapter-list li.chapter .detail .num {
    color: #fff;
    opacity: 0.1;
    z-index: 1;
    font-size: 9em;
    line-height: 0.8;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .course-content.online2 .chapter-list li.chapter .detail ul {
    z-index: 2;
    padding: 0.8em 7vw 2em;
    position: relative;
  }
  .course-content.online2 .chapter-list li.chapter .detail .time,
  .course-content.online2 .chapter-list li.chapter .detail .desc {
    color: #fff;
  }
  .course-content.online2 .chapter-list li.chapter + li.chapter {
    margin-top: 0.1em;
  }
  .wrapper-detail {
    display: none !important;
  }
}
.logos.online2 {
  background: #e0effd;
  padding-top: 4em;
  padding-bottom: 4em;
}
.logos.online2 .logos-content {
  max-width: 1280px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 48px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
}
@media (max-device-width: 960px) {
  .online2 {
    font-size: 26px;
  }
  .online2 .container {
    padding: 0 12%;
  }
  .top.online2 {
    background: #3457ff;
  }
  .top.online2 .top-content {
    height: auto;
    padding: 0 12%;
  }
  .top.online2 .top-content .bg {
    height: 95vw;
    z-index: 1;
    position: absolute;
    top: 0;
    right: -20%;
  }
  .top.online2 .top-content .bg img {
    width: auto;
    max-width: none;
    height: 100%;
  }
  .top.online2 .top-content .circle {
    width: 82%;
    top: 50vw;
    right: -36%;
  }
  .top.online2 .top-content .circle img {
    width: 100%;
  }
  .top.online2 .top-content .carousel {
    display: none;
  }
  .top.online2 .top-content .ball {
    width: 250vw;
    height: 250vw;
    max-width: 250vw;
    max-height: 250vw;
    top: 67vw;
    left: -102vw;
    transform: translate3d(0, 0, 0);
  }
  .top.online2 .top-content .link {
    top: 73vw;
    right: 15%;
    left: initial;
    z-index: 6;
  }
  .top.online2 .top-content .link a {
    width: 6em;
    height: 6em;
    background-position: -12.5%;
    background-size: cover;
  }
  .top.online2 .top-content .link a:hover,
  .top.online2 .top-content .link a:active {
    background-position: -12.5%;
  }
  .top.online2 .top-content .info-conteiner {
    padding-top: 73vw;
  }
  .top.online2 .top-content .info-conteiner .info {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em 0;
    padding-bottom: 2em;
    padding-right: 5%;
    font-size: 1.5em;
  }
  .top.online2 .top-content .info-conteiner .info div {
    width: calc(50% - 30px);
  }
  .top.online2 .top-content .info-conteiner .info div:first-of-type {
    width: 100%;
  }
  .top.online2 .top-content .info-conteiner .info span {
    padding-left: 55px;
  }
  .top.online2 .top-content .info-conteiner .info .title {
    padding-left: 64px;
  }
  .top.online2 .top-content .info-conteiner .info .title:before {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .top.online2 .top-content .info-conteiner .main-info {
    width: 100%;
    padding-bottom: 3em;
  }
  .top.online2 .top-content .info-conteiner .main-info .customer {
    margin-bottom: 1em;
    font-size: 1em;
    line-height: 1.5;
  }
  .top.online2 .top-content .info-conteiner .main-info .project-name {
    font-size: 1.5em;
  }
  .top.online2 .top-content .info-conteiner .main-info .detail {
    margin-top: 1em;
    font-size: 0.875em;
    line-height: 1.5;
  }
  .notice.online2 .first h2 {
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .notice.online2 .first h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .notice.online2 .first h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .notice.online2 .first span {
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .notice.online2 .first span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .notice.online2 .first span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .notice.online2 .dotted {
    height: 0.3em;
    background-size: contain;
    margin: 2em 0;
  }
  .notice.online2 .second h2 {
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .notice.online2 .second h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .notice.online2 .second h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .notice.online2 .second .check {
    width: 1.5em;
    height: auto;
    margin-top: 0.3em;
    margin-right: 0.4em;
  }
  .notice.online2 .second span {
    width: calc(100% - 1.5em);
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .notice.online2 .second span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .notice.online2 .second span {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .article.online2 {
    padding: 2em 0;
  }
  .article.online2 p {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .article.online2 p {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .article.online2 p {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .article.online2 p + p {
    margin-top: 1em;
  }
  .photo.online2 {
    padding-bottom: 5em;
  }
  .photo.online2 h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .photo.online2 h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .photo.online2 h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .photo.online2 img {
    border: none;
  }
  .photo.online2 .online2PhotoSwiper {
    padding: 0 6%;
    overflow: hidden;
  }
  .online2PhotoSwiper:before,
  .online2PhotoSwiper:after,
  .online2PhotoSwiper .swiper-button-next,
  .online2PhotoSwiper .swiper-button-prev {
    display: none;
  }
  .online2PhotoSwiper .swiper-slide {
    width: 88%;
    height: auto;
  }
  .lecturer.online2 {
    padding: 3em 0;
  }
  .lecturer.online2 h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .lecturer.online2 h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .lecturer.online2 h2 {
    font-size: 1.125em;
  }
}
@media (max-device-width: 960px) {
  .lecturer.online2 .intro {
    margin-top: 2em;
    display: block;
  }
  .lecturer.online2 .intro .name {
    justify-content: center;
    margin-top: 1em;
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .lecturer.online2 .intro .name h3,
  .lecturer.online2 .intro .name span {
    font-size: 20px;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .lecturer.online2 .intro .name h3,
  .lecturer.online2 .intro .name span {
    font-size: 20px;
  }
}
@media (max-device-width: 960px) {
  .lecturer.online2 .intro p {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .lecturer.online2 .intro p {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .lecturer.online2 .intro p {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) {
  .lecturer.online2 .intro p + p {
    margin-top: 0.5em;
  }
  .lecturer.online2 .avatar {
    width: 40%;
    height: auto;
    border: 10px solid #ff4f3e;
    margin: 0 auto;
  }
  .online2.feedback-top {
    padding: 3em 0 0;
  }
  .online2.feedback-top .feedback .content {
    padding: 24px 0;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .online2.feedback-top .feedback .content {
    padding: 12px 0;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .online2.feedback-top .feedback .content {
    padding: 12px 0;
  }
}
@media (max-device-width: 960px) {
  .online2.feedback-top .feedback .title {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 6%;
    font-size: 1.5em;
    font-weight: 500;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .online2.feedback-top .feedback .title {
    margin-bottom: 0;
    font-size: 1.125em;
    line-height: 1.5;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .online2.feedback-top .feedback .title {
    margin-bottom: 0;
    font-size: 1.125em;
    line-height: 1.5;
  }
}
@media (max-device-width: 960px) {
  .online2 .online2FeedbackSwiper:before {
    display: none;
  }
  .online2 .online2FeedbackSwiper .swiper-wrapper {
    flex-wrap: wrap;
    padding: 2em 0 3em;
    transform: translate3d(0, 0, 0) !important;
  }
  .online2 .online2FeedbackSwiper .swiper-slide {
    width: 88%;
    height: auto;
    flex-direction: initial;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: 0 auto;
    padding: 0 6%;
    font-size: 0.88em;
    display: none;
  }
  .online2 .online2FeedbackSwiper .swiper-slide:first-child,
  .online2 .online2FeedbackSwiper .swiper-slide:nth-child(2) {
    display: flex;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .avatar {
    width: 6em;
    height: 6em;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .avatar .bg {
    width: 100%;
    height: 100%;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .avatar .client {
    width: 80%;
    height: 80%;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .info {
    width: calc(100% - 6em);
    padding: 0 10px;
    font-size: 1.2em;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .desc {
    margin-top: 0.5em;
    line-height: 1.3;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .desc p {
    font-weight: 400;
  }
  .online2 .online2FeedbackSwiper .swiper-slide + .swiper-slide {
    margin-top: 3em;
  }
  .logos.online2 .logos-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10vw;
    padding: 0 6%;
  }
  .logos.online2 .logos-content a img {
    margin: 0 auto;
  }
}
@media (max-width: 960px) {
  .online2 {
    font-size: 26px;
  }
  .online2 .container {
    padding: 0 12%;
  }
  .top.online2 {
    background: #3457ff;
  }
  .top.online2 .top-content {
    height: auto;
    padding: 0 12%;
  }
  .top.online2 .top-content .bg {
    height: 95vw;
    z-index: 1;
    position: absolute;
    top: 0;
    right: -20%;
  }
  .top.online2 .top-content .bg img {
    width: auto;
    max-width: none;
    height: 100%;
  }
  .top.online2 .top-content .circle {
    width: 82%;
    top: 50vw;
    right: -36%;
  }
  .top.online2 .top-content .circle img {
    width: 100%;
  }
  .top.online2 .top-content .carousel {
    display: none;
  }
  .top.online2 .top-content .ball {
    width: 250vw;
    height: 250vw;
    max-width: 250vw;
    max-height: 250vw;
    top: 67vw;
    left: -102vw;
    transform: translate3d(0, 0, 0);
  }
  .top.online2 .top-content .link {
    top: 73vw;
    right: 15%;
    left: initial;
    z-index: 6;
  }
  .top.online2 .top-content .link a {
    width: 6em;
    height: 6em;
    background-position: -12.5%;
    background-size: cover;
  }
  .top.online2 .top-content .link a:hover,
  .top.online2 .top-content .link a:active {
    background-position: -12.5%;
  }
  .top.online2 .top-content .info-conteiner {
    padding-top: 73vw;
  }
  .top.online2 .top-content .info-conteiner .info {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em 0;
    padding-bottom: 2em;
    padding-right: 5%;
    font-size: 1.5em;
  }
  .top.online2 .top-content .info-conteiner .info div {
    width: calc(50% - 30px);
  }
  .top.online2 .top-content .info-conteiner .info div:first-of-type {
    width: 100%;
  }
  .top.online2 .top-content .info-conteiner .info span {
    padding-left: 55px;
  }
  .top.online2 .top-content .info-conteiner .info .title {
    padding-left: 64px;
  }
  .top.online2 .top-content .info-conteiner .info .title:before {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .top.online2 .top-content .info-conteiner .main-info {
    width: 100%;
    padding-bottom: 3em;
  }
  .top.online2 .top-content .info-conteiner .main-info .customer {
    margin-bottom: 1em;
    font-size: 1em;
    line-height: 1.5;
  }
  .top.online2 .top-content .info-conteiner .main-info .project-name {
    font-size: 1.5em;
  }
  .top.online2 .top-content .info-conteiner .main-info .detail {
    margin-top: 1em;
    font-size: 0.875em;
    line-height: 1.5;
  }
  .notice.online2 .first h2 {
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .notice.online2 .first h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .notice.online2 .first h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .notice.online2 .first span {
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .notice.online2 .first span {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .notice.online2 .first span {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .notice.online2 .dotted {
    height: 0.3em;
    background-size: contain;
    margin: 2em 0;
  }
  .notice.online2 .second h2 {
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .notice.online2 .second h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .notice.online2 .second h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .notice.online2 .second .check {
    width: 1.5em;
    height: auto;
    margin-top: 0.3em;
    margin-right: 0.4em;
  }
  .notice.online2 .second span {
    width: calc(100% - 1.5em);
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .notice.online2 .second span {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .notice.online2 .second span {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .article.online2 {
    padding: 2em 0;
  }
  .article.online2 p {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .article.online2 p {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .article.online2 p {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .article.online2 p + p {
    margin-top: 1em;
  }
  .photo.online2 {
    padding-bottom: 5em;
  }
  .photo.online2 h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .photo.online2 h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .photo.online2 h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .photo.online2 img {
    border: none;
  }
  .photo.online2 .online2PhotoSwiper {
    padding: 0 6%;
    overflow: hidden;
  }
  .online2PhotoSwiper:before,
  .online2PhotoSwiper:after,
  .online2PhotoSwiper .swiper-button-next,
  .online2PhotoSwiper .swiper-button-prev {
    display: none;
  }
  .online2PhotoSwiper .swiper-slide {
    width: 88%;
    height: auto;
  }
  .lecturer.online2 {
    padding: 3em 0;
  }
  .lecturer.online2 h2 {
    text-align: center;
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .lecturer.online2 h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .lecturer.online2 h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 960px) {
  .lecturer.online2 .intro {
    margin-top: 2em;
    display: block;
  }
  .lecturer.online2 .intro .name {
    justify-content: center;
    margin-top: 1em;
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .lecturer.online2 .intro .name h3,
  .lecturer.online2 .intro .name span {
    font-size: 20px;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .lecturer.online2 .intro .name h3,
  .lecturer.online2 .intro .name span {
    font-size: 20px;
  }
}
@media (max-width: 960px) {
  .lecturer.online2 .intro p {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .lecturer.online2 .intro p {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .lecturer.online2 .intro p {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) {
  .lecturer.online2 .intro p + p {
    margin-top: 0.5em;
  }
  .lecturer.online2 .avatar {
    width: 40%;
    height: auto;
    border: 10px solid #ff4f3e;
    margin: 0 auto;
  }
  .online2.feedback-top {
    padding: 3em 0 0;
  }
  .online2.feedback-top .feedback .content {
    padding: 24px 0;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .online2.feedback-top .feedback .content {
    padding: 12px 0;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .online2.feedback-top .feedback .content {
    padding: 12px 0;
  }
}
@media (max-width: 960px) {
  .online2.feedback-top .feedback .title {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 6%;
    font-size: 1.5em;
    font-weight: 500;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .online2.feedback-top .feedback .title {
    margin-bottom: 0;
    font-size: 1.125em;
    line-height: 1.5;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .online2.feedback-top .feedback .title {
    margin-bottom: 0;
    font-size: 1.125em;
    line-height: 1.5;
  }
}
@media (max-width: 960px) {
  .online2 .online2FeedbackSwiper:before {
    display: none;
  }
  .online2 .online2FeedbackSwiper .swiper-wrapper {
    flex-wrap: wrap;
    padding: 2em 0 3em;
    transform: translate3d(0, 0, 0) !important;
  }
  .online2 .online2FeedbackSwiper .swiper-slide {
    width: 88%;
    height: auto;
    flex-direction: initial;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: 0 auto;
    padding: 0 6%;
    font-size: 0.88em;
    display: none;
  }
  .online2 .online2FeedbackSwiper .swiper-slide:first-child,
  .online2 .online2FeedbackSwiper .swiper-slide:nth-child(2) {
    display: flex;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .avatar {
    width: 6em;
    height: 6em;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .avatar .bg {
    width: 100%;
    height: 100%;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .avatar .client {
    width: 80%;
    height: 80%;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .info {
    width: calc(100% - 6em);
    padding: 0 10px;
    font-size: 1.2em;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .desc {
    margin-top: 0.5em;
    line-height: 1.3;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .desc p {
    font-weight: 400;
  }
  .online2 .online2FeedbackSwiper .swiper-slide + .swiper-slide {
    margin-top: 3em;
  }
  .logos.online2 .logos-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10vw;
    padding: 0 6%;
  }
  .logos.online2 .logos-content a img {
    margin: 0 auto;
  }
}
@media (max-device-width: 600px) {
  .online2 {
    font-size: 42px;
  }
  .top.online2 .top-content .link a,
  .online2 .online2FeedbackSwiper .swiper-slide .avatar {
    width: 4em;
    height: 4em;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .info {
    width: calc(100% - 4em);
  }
}
@media (max-width: 600px) {
  .online2 {
    font-size: 42px;
  }
  .top.online2 .top-content .link a,
  .online2 .online2FeedbackSwiper .swiper-slide .avatar {
    width: 4em;
    height: 4em;
  }
  .online2 .online2FeedbackSwiper .swiper-slide .info {
    width: calc(100% - 4em);
  }
}
@media (max-width: 960px) {
  .online2 {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .online2 {
    font-size: 16px;
  }
}
.products {
  color: #212121;
  font-size: 16px;
}
.products-top.products {
  background-color: #f0f8ff;
  background-image: url('images/bg2.12233a3b.png');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.products-top.products .top-content {
  max-width: 1180px;
  height: 226px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 143px;
  display: flex;
}
.products-top.products .title {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
}
.products-top.products .desc {
  width: 600px;
  text-align: center;
  margin: 0.5em auto 0;
  font-size: 0.88em;
}
.ssl.products .ssl-top {
  background: #cce3fe;
}
.ssl.products .ssl-top .ssl-top-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 93px 143px 32px;
}
.ssl.products .ssl-top .section .main-title {
  font-size: 2em;
  font-weight: 700;
}
.ssl.products .ssl-top .section .title {
  font-weight: 700;
}
.ssl.products .ssl-top .section span {
  width: 100%;
  display: block;
}
.ssl.products .ssl-top .section.highlight {
  padding-left: 2.5em;
  position: relative;
}
.ssl.products .ssl-top .section.highlight:before {
  content: '';
  width: 1.8em;
  height: 1.8em;
  background: url('images/highlight-icon.89721084.svg') center/100% no-repeat;
  position: absolute;
  top: -0.1em;
  left: 0.1em;
}
.ssl.products .ssl-top .section + .section {
  margin-top: 1.5em;
}
.ssl.products .ssl-why {
  background: #cce3fe;
}
.ssl.products .ssl-why .ssl-why-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 143px;
}
.ssl.products .ssl-why .section-1 {
  margin-bottom: 2em;
}
.ssl.products .ssl-why .section-1 .title {
  margin-bottom: 4px;
  font-size: 1.5em;
  font-weight: 500;
}
.ssl.products .ssl-why .section-1 span {
  width: 100%;
  line-height: 1.5;
  display: block;
}
.ssl.products .ssl-why .section-2 {
  line-height: 1.5;
}
.ssl.products .ssl-why .section-2 .row {
  padding-left: 2.5em;
  position: relative;
}
.ssl.products .ssl-why .section-2 .row:before {
  content: '';
  width: 1.8em;
  height: 1.8em;
  background: url('images/highlight-icon.89721084.svg') center/100% no-repeat;
  position: absolute;
  top: -0.1em;
  left: 0.1em;
}
.ssl.products .ssl-why .section-2 .row .title {
  font-weight: 700;
}
.ssl.products .ssl-why .section-2 .row span {
  width: 100%;
  display: block;
}
.ssl.products .ssl-why .section-2 .row + .row {
  margin-top: 1.5em;
}
.ssl.products .twcs-ssl {
  background: #cce3fe;
}
.ssl.products .twcs-ssl .twcs-ssl-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 93px 40px 80px;
}
.ssl.products .twcs-ssl .main-title {
  margin-bottom: 32px;
  padding: 0 40px;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
}
.ssl.products .twcs-ssl .list {
  gap: 24px;
  padding: 0 40px;
  display: flex;
}
.ssl.products .twcs-ssl .ssl-item {
  width: calc(33.3333% - 16px);
  background: #fff;
  border-radius: 16px;
  padding: 24px 0 38px;
  line-height: 1.5;
}
.ssl.products .twcs-ssl .ssl-item img {
  margin: 0 auto;
}
.ssl.products .twcs-ssl .ssl-item span {
  width: 100%;
  text-align: center;
  display: block;
}
.ssl.products .twcs-ssl .ssl-item .info {
  height: 140px;
  margin-bottom: 12px;
  padding: 0 1em;
}
.ssl.products .twcs-ssl .ssl-item .title {
  min-height: 2em;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.5em;
  font-weight: 500;
  display: flex;
}
.ssl.products .twcs-ssl .ssl-item .price {
  padding: 0 38px;
}
.ssl.products .twcs-ssl .ssl-item .price-top {
  color: #349dff;
  text-align: center;
  border-bottom: 1px solid #349dff;
  padding: 4px 0;
  font-size: 0.88em;
}
.ssl.products .twcs-ssl .ssl-item .price-item {
  margin-top: 10px;
}
.ssl.products .twcs-ssl .ssl-item .price-item span:last-of-type {
  font-size: 1.5em;
  font-weight: 700;
}
.ssl.products .twcs-ssl .ssl-item .price-item + .price-item {
  margin-top: 25px;
}
.azure.products {
  background: #cce3fe;
  line-height: 1.5;
}
.azure.products .azure-top .azure-top-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 143px 92px;
}
.azure.products .azure-top .main-title {
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 2em;
  font-weight: 600;
}
.azure.products .azure-top .features {
  margin-top: 2.5em;
}
.azure.products .azure-top .features span {
  width: 100%;
  padding-left: 2.5em;
  display: block;
  position: relative;
}
.azure.products .azure-top .features span:before {
  content: '';
  width: 1.8em;
  height: 1.8em;
  background: url('images/highlight-icon.89721084.svg') center/100% no-repeat;
  position: absolute;
  top: -0.1em;
  left: 0.1em;
}
.azure.products .azure-top .features span + span {
  margin-top: 1em;
}
.azure.products .azure-features .azure-features-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 143px 64px;
}
.azure.products .azure-features .main-title {
  margin-bottom: 0.5em;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 1.5em;
  font-weight: 600;
}
.azure.products .azure-features .main-text {
  margin-bottom: 1.5em;
}
.azure.products .azure-features .features {
  gap: 15px;
  display: flex;
}
.azure.products .azure-features .features div {
  width: calc(20% - 12px);
}
.azure.products .azure-features .features img {
  width: 100%;
}
.azure.products .azure-features .features span {
  width: 100%;
  text-align: center;
  display: block;
}
.azure.products .azure-bottom .azure-bottom-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 143px 50px;
}
.azure.products .azure-bottom .box + .box {
  margin-top: 1.5em;
}
.azure.products .azure-bottom .section-1 {
  padding: 2em 0;
}
.azure.products .azure-bottom .section-1 .main-title {
  margin-bottom: 0.3em;
  font-size: 1.5em;
  font-weight: 500;
}
.azure.products .azure-bottom .section-1 span {
  width: 85%;
  display: block;
}
.azure.products .azure-bottom .section-2 {
  padding: 0 0 2em;
}
.azure.products .azure-bottom .section-2 div {
  padding-left: 2.5em;
  position: relative;
}
.azure.products .azure-bottom .section-2 div:before {
  content: '';
  width: 1.8em;
  height: 1.8em;
  background: url('images/highlight-icon.89721084.svg') center/100% no-repeat;
  position: absolute;
  top: -0.1em;
  left: 0.1em;
}
.azure.products .azure-bottom .section-2 div span {
  width: 100%;
  display: block;
}
.azure.products .azure-bottom .section-2 div .title {
  font-weight: 700;
}
.azure.products .azure-bottom .section-2 div + div {
  margin-top: 1em;
}
.microsoft365.products {
  background: #cce3fe;
  line-height: 1.5;
}
.microsoft365.products .microsoft365-top .microsoft365-top-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 143px 50px;
}
.microsoft365.products .microsoft365-top .main-title {
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 2em;
  font-weight: 700;
}
.microsoft365.products .microsoft365-top span {
  width: 100%;
  display: block;
}
.microsoft365.products .microsoft365-top span:first-of-type {
  margin-bottom: 1em;
}
.microsoft365.products .microsoft365-features-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 143px 40px;
}
.microsoft365.products .microsoft365-features-content .main-title {
  margin-bottom: 1em;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 1.5em;
  font-weight: 700;
}
.microsoft365.products .microsoft365-features-content .features div {
  min-height: 1.5em;
  padding-left: 2.5em;
  position: relative;
}
.microsoft365.products .microsoft365-features-content .features div:before {
  content: '';
  width: 1.8em;
  height: 1.8em;
  background: url('images/highlight-icon.89721084.svg') center/100% no-repeat;
  position: absolute;
  top: -0.1em;
  left: 0.1em;
}
.microsoft365.products .microsoft365-features-content .features div + div {
  margin-top: 1.5em;
}
.microsoft365-scheme .microsoft365-scheme-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 64px;
}
.microsoft365-scheme .main-title {
  margin-bottom: 1.5em;
  padding-left: 40px;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 1.5em;
  font-weight: 700;
}
.microsoft365-scheme .scheme-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 40px;
  display: grid;
}
.microsoft365-scheme .scheme-item {
  height: 100%;
  background: #fff;
  border-radius: 0.5em;
  padding: 0 1em 1.5em;
}
.microsoft365-scheme .scheme-item img {
  margin-bottom: 0.5em;
}
.microsoft365-scheme .scheme-item .title {
  margin-bottom: 0.2em;
  font-size: 1.12em;
  font-weight: 500;
}
.microsoft365-scheme .scheme-item span {
  width: 100%;
  font-size: 0.88em;
  display: block;
}
@media (max-device-width: 960px) {
  .products {
    font-size: 26px;
  }
  .products-top.products {
    background-image: url('images/top-bg-sm.9325a96a.png');
    background-position: 100% 0;
    background-size: contain;
    display: flex;
    overflow: auto;
  }
  .products-top.products .top-content {
    height: auto;
    max-width: none;
    min-height: 220px;
    padding: 0;
  }
  .products-top.products .title {
    padding: 1em 6% 0;
    font-size: 1.25em;
  }
  .products-top.products .desc {
    width: 100%;
    padding: 0.5em 6% 2em;
  }
  .ssl.products .ssl-top .ssl-top-content {
    padding: 1.5em 6%;
  }
  .ssl.products .ssl-top .section .main-title {
    font-size: 1.25em;
    font-weight: 700;
  }
  .ssl.products .ssl-why .ssl-why-content {
    padding: 1.5em 6%;
  }
  .ssl.products .ssl-why .section-1 {
    margin-bottom: 70px;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .ssl.products .ssl-why .section-1 {
    margin-bottom: 40px;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .ssl.products .ssl-why .section-1 {
    margin-bottom: 40px;
  }
}
@media (max-device-width: 960px) {
  .ssl.products .ssl-why .section-1 .title {
    font-size: 1.25em;
    font-weight: 700;
  }
  .ssl.products .ssl-why .section-1 span {
    width: 100%;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content {
    padding: 1.5em 6% 3em;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .main-title {
    margin-bottom: 0.5em;
    padding: 0;
    font-size: 1.25em;
    font-weight: 700;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .list {
    flex-wrap: wrap;
    padding: 0;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item {
    width: 100%;
    border-radius: 32px;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item .title {
    font-size: 1.25em;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item .info {
    height: auto;
    margin-bottom: 0.5em;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item span {
    font-weight: 300;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item + .ssl-item {
    margin-top: 1em;
  }
  .azure.products .azure-top .azure-top-content {
    padding: 3em 6%;
  }
  .azure.products .azure-top .main-title {
    font-size: 1.25em;
    font-weight: 500;
  }
  .azure.products .azure-features .main-title {
    font-size: 1.25em;
  }
  .azure.products .azure-features .azure-features-content {
    padding: 3em 6%;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .azure.products .azure-features .azure-features-content {
    padding-top: 0;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .azure.products .azure-features .azure-features-content {
    padding-top: 0;
  }
}
@media (max-device-width: 960px) {
  .azure.products .azure-features .features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
  }
  .azure.products .azure-features .features div {
    width: calc(33.3333% - 2em);
  }
  .azure.products .azure-features .features img {
    max-width: 16em;
    margin: 0 auto;
  }
  .azure.products .azure-bottom .azure-bottom-content {
    padding: 3em 6%;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .azure.products .azure-bottom .azure-bottom-content {
    padding-bottom: 0;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .azure.products .azure-bottom .azure-bottom-content {
    padding-bottom: 0;
  }
}
@media (max-device-width: 960px) {
  .azure.products .azure-bottom .box + .box {
    margin-top: 3em;
  }
  .azure.products .azure-bottom .section-1 {
    background: none;
    padding: 0 0 2em;
  }
  .azure.products .azure-bottom .section-1 .main-title {
    font-size: 1.25em;
  }
  .azure.products .azure-bottom .section-1 span {
    width: 100%;
  }
  .azure.products .azure-bottom .section-2 {
    border-radius: 1em;
  }
  .azure.products .azure-bottom .section-2 .list {
    flex-wrap: wrap;
    gap: 0;
  }
  .azure.products .azure-bottom .section-2 .list div {
    width: 100%;
    padding: 2em 0;
  }
  .azure.products .azure-bottom .section-2 .list div + div {
    border-top: 4px solid #cce3fe;
  }
  .microsoft365.products .microsoft365-top .microsoft365-top-content {
    padding: 3em 6% 0;
  }
  .microsoft365.products .microsoft365-top .main-title {
    font-size: 1.25em;
    font-weight: 500;
  }
  .microsoft365.products .microsoft365-features-content {
    padding: 3em 6% 0;
  }
  .microsoft365.products .main-title {
    margin-bottom: 1em;
    font-size: 1.25em;
    font-weight: 500;
  }
  .microsoft365.products .microsoft365-scheme .microsoft365-scheme-content {
    padding: 3em 6%;
  }
  .microsoft365.products .microsoft365-scheme .main-title {
    margin-bottom: 0.5em;
    padding: 0;
    font-size: 1.25em;
    font-weight: 500;
  }
  .microsoft365.products .microsoft365-scheme .scheme-list {
    padding: 0;
    display: block;
  }
  .microsoft365.products .microsoft365-scheme .scheme-item {
    padding-bottom: 3em;
  }
  .microsoft365.products .microsoft365-scheme .scheme-item + .scheme-item {
    margin-top: 2em;
  }
  .microsoft365.products .microsoft365-scheme .title {
    font-size: 1.25em;
  }
  .microsoft365.products .microsoft365-scheme span {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .products {
    font-size: 26px;
  }
  .products-top.products {
    background-image: url('images/top-bg-sm.9325a96a.png');
    background-position: 100% 0;
    background-size: contain;
    display: flex;
    overflow: auto;
  }
  .products-top.products .top-content {
    height: auto;
    max-width: none;
    min-height: 220px;
    padding: 0;
  }
  .products-top.products .title {
    padding: 1em 6% 0;
    font-size: 1.25em;
  }
  .products-top.products .desc {
    width: 100%;
    padding: 0.5em 6% 2em;
  }
  .ssl.products .ssl-top .ssl-top-content {
    padding: 1.5em 6%;
  }
  .ssl.products .ssl-top .section .main-title {
    font-size: 1.25em;
    font-weight: 700;
  }
  .ssl.products .ssl-why .ssl-why-content {
    padding: 1.5em 6%;
  }
  .ssl.products .ssl-why .section-1 {
    margin-bottom: 70px;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .ssl.products .ssl-why .section-1 {
    margin-bottom: 40px;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .ssl.products .ssl-why .section-1 {
    margin-bottom: 40px;
  }
}
@media (max-width: 960px) {
  .ssl.products .ssl-why .section-1 .title {
    font-size: 1.25em;
    font-weight: 700;
  }
  .ssl.products .ssl-why .section-1 span {
    width: 100%;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content {
    padding: 1.5em 6% 3em;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .main-title {
    margin-bottom: 0.5em;
    padding: 0;
    font-size: 1.25em;
    font-weight: 700;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .list {
    flex-wrap: wrap;
    padding: 0;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item {
    width: 100%;
    border-radius: 32px;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item .title {
    font-size: 1.25em;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item .info {
    height: auto;
    margin-bottom: 0.5em;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item span {
    font-weight: 300;
  }
  .ssl.products .twcs-ssl .twcs-ssl-content .ssl-item + .ssl-item {
    margin-top: 1em;
  }
  .azure.products .azure-top .azure-top-content {
    padding: 3em 6%;
  }
  .azure.products .azure-top .main-title {
    font-size: 1.25em;
    font-weight: 500;
  }
  .azure.products .azure-features .main-title {
    font-size: 1.25em;
  }
  .azure.products .azure-features .azure-features-content {
    padding: 3em 6%;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .azure.products .azure-features .azure-features-content {
    padding-top: 0;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .azure.products .azure-features .azure-features-content {
    padding-top: 0;
  }
}
@media (max-width: 960px) {
  .azure.products .azure-features .features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
  }
  .azure.products .azure-features .features div {
    width: calc(33.3333% - 2em);
  }
  .azure.products .azure-features .features img {
    max-width: 16em;
    margin: 0 auto;
  }
  .azure.products .azure-bottom .azure-bottom-content {
    padding: 3em 6%;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .azure.products .azure-bottom .azure-bottom-content {
    padding-bottom: 0;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .azure.products .azure-bottom .azure-bottom-content {
    padding-bottom: 0;
  }
}
@media (max-width: 960px) {
  .azure.products .azure-bottom .box + .box {
    margin-top: 3em;
  }
  .azure.products .azure-bottom .section-1 {
    background: none;
    padding: 0 0 2em;
  }
  .azure.products .azure-bottom .section-1 .main-title {
    font-size: 1.25em;
  }
  .azure.products .azure-bottom .section-1 span {
    width: 100%;
  }
  .azure.products .azure-bottom .section-2 {
    border-radius: 1em;
  }
  .azure.products .azure-bottom .section-2 .list {
    flex-wrap: wrap;
    gap: 0;
  }
  .azure.products .azure-bottom .section-2 .list div {
    width: 100%;
    padding: 2em 0;
  }
  .azure.products .azure-bottom .section-2 .list div + div {
    border-top: 4px solid #cce3fe;
  }
  .microsoft365.products .microsoft365-top .microsoft365-top-content {
    padding: 3em 6% 0;
  }
  .microsoft365.products .microsoft365-top .main-title {
    font-size: 1.25em;
    font-weight: 500;
  }
  .microsoft365.products .microsoft365-features-content {
    padding: 3em 6% 0;
  }
  .microsoft365.products .main-title {
    margin-bottom: 1em;
    font-size: 1.25em;
    font-weight: 500;
  }
  .microsoft365.products .microsoft365-scheme .microsoft365-scheme-content {
    padding: 3em 6%;
  }
  .microsoft365.products .microsoft365-scheme .main-title {
    margin-bottom: 0.5em;
    padding: 0;
    font-size: 1.25em;
    font-weight: 500;
  }
  .microsoft365.products .microsoft365-scheme .scheme-list {
    padding: 0;
    display: block;
  }
  .microsoft365.products .microsoft365-scheme .scheme-item {
    padding-bottom: 3em;
  }
  .microsoft365.products .microsoft365-scheme .scheme-item + .scheme-item {
    margin-top: 2em;
  }
  .microsoft365.products .microsoft365-scheme .title {
    font-size: 1.25em;
  }
  .microsoft365.products .microsoft365-scheme span {
    font-size: 1em;
  }
}
@media (max-device-width: 600px) {
  .products {
    font-size: 42px;
  }
  .ssl.products .ssl-top .section .main-title {
    font-size: 1.5em;
  }
  .azure.products .azure-features .features div {
    width: 100%;
  }
  .azure.products .azure-features .features img {
    max-width: 10em;
  }
}
@media (max-width: 600px) {
  .products {
    font-size: 42px;
  }
  .ssl.products .ssl-top .section .main-title {
    font-size: 1.5em;
  }
  .azure.products .azure-features .features div {
    width: 100%;
  }
  .azure.products .azure-features .features img {
    max-width: 10em;
  }
}
@media (max-width: 960px) {
  .products {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .products {
    font-size: 16px;
  }
}
.microsoft365_wrapper {
  max-width: 1180px;
  margin: 40px auto 3.75rem;
  display: flex;
}
.microsoft365_wrapper .swiper {
  padding-bottom: 2.5rem;
}
@media (max-device-width: 1280px) {
  .microsoft365_wrapper {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 1280px) {
  .microsoft365_wrapper {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-device-width: 960px) {
  .microsoft365_wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 960px) {
  .microsoft365_wrapper {
    margin-bottom: 2rem;
  }
}
.microsoft365_wrapper .swiper-slide {
  height: 100% !important;
}
.microsoft365_card {
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 1rem;
  box-shadow: 0 2px 5px #eeeeeed9;
}
.microsoft365_card__title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 24px;
  font-weight: 600;
}
.microsoft365_card__price {
  color: #3457ff;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
}
.microsoft365_card__info {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.microsoft365_card__info span:first-child {
  font-size: 14px;
  font-weight: 600;
}
.microsoft365_card__info span {
  font-size: 12px;
}
.microsoft365_card__link {
  color: #fff;
  text-align: center;
  background-color: #3457ff;
  border-radius: 5px;
  margin: 1rem 0;
  padding: 8px 12px;
  display: block;
}
.microsoft365_card p.spec {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}
.microsoft365_card__list li {
  background-color: #e0effd;
  padding: 5px;
  font-size: 14px;
}
.microsoft365_card__list li:nth-child(2n) {
  background-color: #cce3fe;
}
.microsoft365_card__icon p {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
.training {
  background: #e0effd;
  font-size: 16px;
}
.training h1 {
  color: #212121;
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
}
@media (max-device-width: 600px) {
  .training h1 {
    font-size: 1.125em;
  }
}
@media (max-width: 600px) {
  .training h1 {
    font-size: 1.125em;
  }
}
.training .count_wrap {
  overflow: hidden;
}
.training .count_wrap .num-animate {
  opacity: 0;
}
.training-page.logos.training {
  background-color: #e0effd;
}
.top.training {
  padding-top: 88px;
}
.top.training .top-container {
  max-width: 1280px;
  margin: 0 auto;
}
.top.training .title {
  text-align: center;
}
.top.training .title h1 {
  margin-bottom: 10px;
}
.top.training .title p {
  width: 50%;
  color: #212121;
  margin: 0 auto;
  font-size: 1rem;
}
.top.training .count {
  color: #3457ff;
  width: 792px;
  justify-content: space-between;
  margin: 22px auto 0;
  padding-bottom: 42px;
  font-weight: bold;
  display: flex;
}
.top.training .count #last .num-animate span:last-child {
  font-size: 70px;
  position: static;
  top: auto;
}
@media (max-device-width: 960px) {
  .top.training .count #last .num-animate span:last-child {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .top.training .count #last .num-animate span:last-child {
    font-size: 1em;
  }
}
.top.training .count .num-animate span {
  font-family: Lexend, sans-serif;
  display: inline-block;
}
.top.training .count .num-animate span:last-child {
  font-size: 22px;
  position: absolute;
  top: 5px;
}
.top.training .count div {
  flex-direction: column;
  align-items: center;
  padding: 20px;
  display: flex;
}
.top.training .count div h2 {
  margin-bottom: 8px;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 70px;
  font-weight: 400;
  position: relative;
}
.top.training .count div h2:before {
  content: '+';
  width: 24px;
  height: 24px;
  color: #3457ff;
  font-size: 0.5em;
  line-height: 24px;
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
}
.top.training .count div h2.star:before {
  content: '';
  width: 20%;
  height: 20%;
  background-image: url('images/star.725f506e.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  top: 5%;
}
.feature.training {
  background: linear-gradient(#000000 0% 170px, #3457ff 170px 100%);
  position: relative;
}
.feature.training .bg-top {
  width: 100%;
  background: linear-gradient(#000000 0% 50%, #3457ff 50% 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.feature.training .bg-shape {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.feature.training .bg-shape img {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
}
.feature.training .content {
  height: 770px;
  color: #212121;
  position: relative;
}
.feature.training .man {
  width: 415px;
  z-index: 3;
  position: absolute;
  top: 237px;
  right: 66px;
}
.feature.training .man img {
  width: 100%;
}
.feature.training .mans-talk {
  width: 790px;
  z-index: 1;
  position: absolute;
  top: 207px;
  right: 235px;
}
.feature.training .mans-talk .img-sm {
  display: none;
}
.feature.training .feature-info {
  top: initial;
  z-index: 2;
  width: 640px;
  height: 200px;
  position: absolute;
  bottom: 62%;
  left: 20%;
}
.feature.training .feature-info .shape {
  width: 160px;
  z-index: 1;
  margin-left: -73px;
  display: none;
  position: absolute;
  top: 60px;
  left: 100%;
}
.feature.training .feature-info .shape img {
  width: 100%;
}
.feature.training .feature-info .info-box {
  width: 640px;
  z-index: 2;
  z-index: 0;
  opacity: 0;
  background: #fff;
  border-radius: 48px;
  padding: 40px 20px 20px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-device-width: 1280px) {
  .feature.training .feature-info .info-box {
    left: -10%;
  }
}
@media (max-width: 1280px) {
  .feature.training .feature-info .info-box {
    left: -10%;
  }
}
.feature.training .feature-info .info-box .title {
  margin-bottom: 10px;
  padding: 0 10px;
  font-size: 2em;
  font-weight: 700;
  display: block;
}
.feature.training .feature-info .detail {
  background: #cce3fe;
  border-radius: 29px;
  flex-wrap: wrap;
  padding: 17px;
  display: flex;
}
.feature.training .feature-info .detail span {
  width: 40%;
  color: #212121;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 20px;
  font-size: 0.88em;
  line-height: 24px;
  display: flex;
  position: relative;
}
.feature.training .feature-info .detail span:before {
  content: '';
  width: 2px;
  height: 2px;
  background: #212121;
  border-radius: 50%;
  margin-top: -1.5px;
  position: absolute;
  top: 50%;
  left: 8px;
}
.feature.training .feature-list {
  width: 100%;
  position: absolute;
  top: 650px;
}
.feature.training .feature-list .feature-items {
  width: 900px;
  flex-wrap: wrap;
  margin: 0 auto;
  display: flex;
}
.feature.training .feature-list .feature-items div {
  width: 25%;
  text-align: center;
  margin-bottom: 30px;
}
.feature.training .feature-list .feature-items span {
  color: #fff;
  cursor: pointer;
  border-bottom: 2px solid #000000;
  padding: 0 8px;
}
.feature.training .feature-list .feature-items .active span {
  border-bottom: 2px solid #fff;
  font-weight: 500;
}
.course.training {
  background: linear-gradient(
    #3457ff 0% calc(100% - 170px),
    #000000 calc(100% - 170px) 100%
  );
  padding-top: 40px;
  padding-bottom: 235px;
  position: relative;
}
.course.training .bg-bottom {
  width: 100%;
  z-index: 1;
  background: linear-gradient(#3457ff 0% 50%, #000000 50% 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.course.training .course-list {
  width: calc(100% - 200px);
  color: #212121;
  z-index: 2;
  background: #deefff;
  border: 4px solid #349dff;
  border-radius: 20px;
  margin: 0 auto;
  display: flex;
  position: relative;
  overflow: hidden;
}
.course.training .course-list .header {
  color: #3457ff;
  padding: 15px 0;
  font-size: 0.88em;
}
.course.training .course-list .type {
  width: 230px;
  background: #deefff;
  align-content: stretch;
  padding-left: 45px;
}
.course.training .course-list .type .header {
  padding-bottom: 15px;
  padding-left: 10px;
}
.course.training .course-list .type .list {
  font-size: 1.12em;
}
.course.training .course-list .type .list span {
  border-left: 6px solid #000000;
  padding: 4px 6px;
  display: block;
}
.course.training .course-list .type .list span.active {
  color: #3457ff;
  border-left: 6px solid #3457ff;
  font-weight: bold;
}
.course.training .course-list .type .list span {
  cursor: pointer;
}
.course.training .course-list .type .list span + span {
  margin-top: 20px;
}
.course.training .course-list .type .type-select {
  display: none;
}
.course.training .course-list .course-container {
  width: calc(100% - 230px);
  min-height: 545px;
  background: #cce3fe;
}
.course.training .course-list .course-container .day {
  width: 115px;
}
.course.training .course-list .course-container .course-name {
  width: calc(100% - 115px);
}
.course.training .course-list .course-container .header {
  display: flex;
}
.course.training .course-list .course-container .header .day {
  padding-left: 25px;
}
.course.training .course-list .course-container .list {
  max-height: calc(100% - 35px);
  display: none;
  overflow: auto;
}
.course.training .course-list .course-container .list.show {
  display: block;
}
.course.training .course-list .course-container .course-item {
  display: flex;
  overflow: hidden;
}
.course.training .course-list .course-container .course-item * {
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
}
.course.training .course-list .course-container .course-item .day {
  position: relative;
}
.course.training .course-list .course-container .course-item .day span {
  width: 50px;
  color: #e0effd;
  text-align: center;
  margin-left: -30px;
  font-size: 6.5em;
  line-height: 74px;
  position: absolute;
  top: 14px;
  left: 50%;
}
.course.training .course-list .course-container .course-item .course-name {
  flex: 1;
  padding: 12px 0;
}
.course.training .course-list .course-container .course-item .course-name span {
  color: #212121;
  font-size: 1.5em;
  line-height: 50px;
}
.course.training .course-list .course-container .course-item .more-btn {
  width: 110px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: none;
}
.course.training .course-list .course-container .course-item .more-btn span {
  color: #fff;
  margin-right: 4px;
  font-family:
    Lexend,
    Noto Sans Tc,
    Noto Sans;
  font-size: 0.88em;
}
.course.training .course-list .course-container .course-item:hover {
  background: #3457ff;
}
.course.training .course-list .course-container .course-item:hover .day span {
  font-size: 4.5em;
  top: 0;
}
.course.training
  .course-list
  .course-container
  .course-item:hover
  .course-name
  span {
  color: #fff;
}
.course.training .course-list .course-container .course-item:hover .more-btn {
  display: flex;
}
.course.training .course-list .course-container .course-item:active .more-btn {
  position: relative;
  overflow: hidden;
}
.course.training
  .course-list
  .course-container
  .course-item:active
  .more-btn
  span,
.course.training
  .course-list
  .course-container
  .course-item:active
  .more-btn
  img {
  z-index: 2;
  position: relative;
}
.course.training
  .course-list
  .course-container
  .course-item:active
  .more-btn:before {
  content: '';
  width: 130px;
  height: 130px;
  z-index: 1;
  background: #21212180;
  border-radius: 50%;
  margin-top: -65px;
  position: absolute;
  top: 50%;
  left: 0;
}
.course.training .course-list .course-container .course-item + .course-item {
  border-top: 2px solid #deefff;
}
.text-center {
  text-align: center;
}
.logos.training h2 {
  padding: 62px 0 24px;
}
@media (max-device-width: 600px) {
  .logos.training h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 600px) {
  .logos.training h2 {
    font-size: 1.125em;
  }
}
.logos.training .logos-container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-device-width: 1280px) {
  .logos.training .logos-container {
    padding: 0 20px;
  }
}
@media (max-width: 1280px) {
  .logos.training .logos-container {
    padding: 0 20px;
  }
}
.logos.training .logos-container .grid_set {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 48px;
  display: grid;
}
@media (max-device-width: 600px) {
  .logos.training .logos-container .grid_set {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .logos.training .logos-container .grid_set {
    gap: 20px;
  }
}
.logos.training .logos-container .logo_wrap {
  align-items: center;
  display: flex;
}
.qa.training {
  color: #212121;
}
.qa.training .qa-container {
  max-width: 1280px;
  width: calc(100% - 200px);
  margin: 0 auto;
  padding-bottom: 90px;
}
.qa.training h2 {
  padding: 62px 0 24px;
}
@media (max-device-width: 600px) {
  .qa.training h2 {
    font-size: 1.125em;
  }
}
@media (max-width: 600px) {
  .qa.training h2 {
    font-size: 1.125em;
  }
}
.qa.training .qa-item {
  cursor: pointer;
  background: #cce3fe;
  border: 2px solid #ffffff4d;
  border-radius: 16px;
  padding: 32px 100px 32px 24px;
  position: relative;
}
.qa.training .qa-item + .qa-item {
  margin-top: 12px;
}
.qa.training .title {
  font-size: 1.25em;
  font-weight: bold;
  line-height: 24px;
}
.qa.training .detail {
  padding-top: 16px;
  font-size: 1.12em;
}
.qa.training .qa-item.active {
  background: #fff;
}
.qa.training .qa-item:not(.active) .detail {
  height: 0;
  overflow: hidden;
}
.qa.training .indicator {
  position: absolute;
  top: 38px;
  right: 44px;
}
.qa.training .indicator div {
  width: 33.5px;
  height: 20px;
  position: relative;
}
.qa.training .indicator div:before,
.qa.training .indicator div:after {
  content: '';
  width: 20px;
  height: 4px;
  background: #3457ff;
  position: absolute;
}
.qa.training .indicator div:before {
  top: 8px;
  left: 0;
  transform: rotate(40deg);
}
.qa.training .indicator div:after {
  top: 8px;
  right: 0;
  transform: rotate(140deg);
}
.qa.training .active .indicator div:before {
  transform: rotate(140deg);
}
.qa.training .active .indicator div:after {
  transform: rotate(40deg);
}
@media (max-device-width: 960px) {
  .training {
    font-size: 26px;
  }
  .top.training {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.training {
    padding-top: 2rem;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.training {
    padding-top: 2rem;
  }
}
@media (max-device-width: 960px) {
  .top.training .title h1 {
    width: 70%;
    margin: 30px auto;
    font-size: 1.2em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.training .title h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.training .title h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .top.training .title p {
    width: 88%;
    font-weight: 400;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.training .title p {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.training .title p {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) {
  .top.training .count {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 4em auto;
    padding-bottom: 0;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.training .count {
    margin: 38px auto;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.training .count {
    margin: 38px auto;
  }
}
@media (max-device-width: 960px) {
  .top.training .count div {
    width: 100%;
  }
  .top.training .count div h2 {
    font-weight: 300;
  }
  .top.training .count div h2:before {
    width: 40px;
    height: 40px;
    line-height: 1;
  }
  .top.training .count div + div {
    margin-top: 4em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .top.training .count div + div {
    margin-top: 1.5rem;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .top.training .count div + div {
    margin-top: 1.5rem;
  }
}
@media (max-device-width: 960px) {
  .feature.training {
    width: 92%;
    background: linear-gradient(#000000 0% 20%, #3457ff 20% 100%);
    margin: 0 auto;
  }
  .feature.training .content {
    height: auto;
  }
  .feature.training .bg-shape {
    display: none;
  }
  .feature.training .man {
    width: 47%;
    top: 149px;
    right: 0;
  }
  .feature.training .mans-talk {
    width: 80%;
    top: initial;
    left: initial;
    right: initial;
    margin-left: 5%;
    padding-top: 100px;
    padding-bottom: 30px;
    position: relative;
  }
  .feature.training .mans-talk .img-lg {
    display: none;
  }
  .feature.training .mans-talk .img-sm {
    display: block;
  }
  .feature.training .feature-info {
    width: 100%;
    top: initial;
    bottom: 28%;
    left: 0;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .feature.training .feature-info {
    bottom: 0;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .feature.training .feature-info {
    bottom: 0;
  }
}
@media (max-device-width: 960px) {
  .feature.training .feature-info .info-box {
    width: 66%;
    border-radius: 1em;
    padding: 35px;
    left: 25px;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .feature.training .feature-info .info-box {
    padding: 24px 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .feature.training .feature-info .info-box {
    padding: 24px 1em;
  }
}
@media (max-device-width: 960px) {
  .feature.training .feature-info .info-box .title {
    margin-bottom: 0;
    font-size: 1.125em;
    font-weight: 500;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .feature.training .feature-info .info-box .title {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .feature.training .feature-info .info-box .title {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .feature.training .feature-info .detail,
  .feature.training .feature-info .shape,
  .feature.training .feature-list {
    display: none;
  }
  .course-table {
    padding-bottom: 14em;
  }
  .course.training {
    width: 92%;
    z-index: 3;
    background: #3457ff;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-1px);
  }
  .course.training .bg-bottom {
    bottom: initial;
    top: 100%;
  }
  .course.training .course-list {
    width: 100%;
    background: none;
    border: none;
    border-radius: 0;
    display: block;
  }
  .course.training .course-list .type {
    width: 100%;
    height: auto;
    background: none;
    margin-bottom: 1em;
    padding-left: 0;
    position: relative;
  }
  .course.training .course-list .type .header,
  .course.training .course-list .type .list {
    display: none;
  }
  .course.training .course-list .type .type-select {
    width: 94%;
    text-align: center;
    color: #3457ff;
    appearance: none;
    background: #deefff;
    border: none;
    border-radius: 1em;
    outline: none;
    margin: 0 auto;
    padding: 20px;
    display: block;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .course.training .course-list .type .type-select {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .course.training .course-list .type .type-select {
    font-size: 1em;
  }
}
@media (max-device-width: 960px) {
  .course.training .course-list .type:before {
    content: '';
    width: 36px;
    height: 36px;
    background-image: url('images/drop-down-icon.0b6e803a.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: -18px;
    position: absolute;
    top: 50%;
    right: 8%;
  }
  .course.training .course-list .course-container {
    width: 94%;
    height: auto;
    min-height: 0;
    border: 0.1em solid #349dff;
    border-radius: 1em;
    margin: 0 auto;
    overflow: hidden;
  }
  .course.training .course-list .course-container .header {
    background: #deefff;
    padding: 1em 0 0.3em;
  }
  .course.training .course-list .course-container .header .day {
    width: 3em;
    padding-left: 3%;
  }
  .course.training .course-list .course-container .header .course-name {
    padding-left: 0.5em;
  }
  .course.training .course-list .course-container .course-item {
    align-items: center;
    position: relative;
  }
  .course.training .course-list .course-container .course-item .day {
    width: 3em;
    text-align: center;
  }
  .course.training .course-list .course-container .course-item .day span {
    width: auto;
    color: #3457ff;
    top: initial;
    left: initial;
    margin-left: 0;
    font-size: 2em;
    line-height: 1;
    position: relative;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .course.training .course-list .course-container .course-item .day span {
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .course.training .course-list .course-container .course-item .day span {
    font-size: 1.5em;
  }
}
@media (max-device-width: 960px) {
  .course.training .course-list .course-container .course-item .course-name {
    padding: 1em 1em 1em 0.5em;
  }
  .course.training
    .course-list
    .course-container
    .course-item
    .course-name
    span {
    font-size: 1.125em;
    font-weight: 300;
    line-height: 1.5;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .course.training
    .course-list
    .course-container
    .course-item
    .course-name
    span {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .course.training
    .course-list
    .course-container
    .course-item
    .course-name
    span {
    font-size: 0.875em;
  }
}
@media (max-device-width: 960px) {
  .course.training .course-list .course-container .course-item .more-btn {
    display: none !important;
  }
  .course.training .course-list .course-container .course-item:hover {
    background: #cce3fe;
  }
  .course.training .course-list .course-container .course-item:hover .day span {
    top: initial;
    font-size: 2em;
  }
  .course.training
    .course-list
    .course-container
    .course-item:hover
    .course-name
    span {
    color: #212121;
  }
  .course.training .course-list .course-container .course-item + .course-item {
    border-top: 4px solid #deefff;
  }
  .logos.training h1 {
    padding: 1.5em 0 1em;
  }
  .logos.training img {
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .logos.training img {
    width: 80%;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .logos.training img {
    width: 80%;
  }
}
@media (max-device-width: 960px) {
  .logos.training .logos-container {
    width: 88%;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .logos.training .logos-container {
    width: 100%;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .logos.training .logos-container {
    width: 100%;
  }
}
@media (max-device-width: 960px) {
  .logos.training .logos-container .grid_set {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .qa.training h2 {
    padding: 1.5em 0 1em;
  }
}
@media (max-device-width: 960px) and (max-device-width: 600px) {
  .qa.training h2 {
    padding: 1.75em 0 1em;
  }
}
@media (max-device-width: 960px) and (max-width: 600px) {
  .qa.training h2 {
    padding: 1.75em 0 1em;
  }
}
@media (max-device-width: 960px) {
  .qa.training .title {
    line-height: 1.5;
  }
  .qa.training .indicator {
    top: 2em;
    right: 0.5em;
    transform: scale(0.5);
  }
  .qa.training .indicator div {
    width: 65px;
    height: 30px;
  }
  .qa.training .indicator div:before,
  .qa.training .indicator div:after {
    width: 40px;
    height: 10px;
  }
  .qa.training .qa-container {
    padding-bottom: 3em;
  }
  .qa.training .qa-item {
    border-radius: 2em;
    padding: 2em 4em 2em 2em;
  }
  .qa.training .qa-item + .qa-item {
    margin-top: 20px;
  }
}
@media (max-width: 960px) {
  .training {
    font-size: 26px;
  }
  .top.training {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.training {
    padding-top: 2rem;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.training {
    padding-top: 2rem;
  }
}
@media (max-width: 960px) {
  .top.training .title h1 {
    width: 70%;
    margin: 30px auto;
    font-size: 1.2em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.training .title h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.training .title h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .top.training .title p {
    width: 88%;
    font-weight: 400;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.training .title p {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.training .title p {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) {
  .top.training .count {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 4em auto;
    padding-bottom: 0;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.training .count {
    margin: 38px auto;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.training .count {
    margin: 38px auto;
  }
}
@media (max-width: 960px) {
  .top.training .count div {
    width: 100%;
  }
  .top.training .count div h2 {
    font-weight: 300;
  }
  .top.training .count div h2:before {
    width: 40px;
    height: 40px;
    line-height: 1;
  }
  .top.training .count div + div {
    margin-top: 4em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .top.training .count div + div {
    margin-top: 1.5rem;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .top.training .count div + div {
    margin-top: 1.5rem;
  }
}
@media (max-width: 960px) {
  .feature.training {
    width: 92%;
    background: linear-gradient(#000000 0% 20%, #3457ff 20% 100%);
    margin: 0 auto;
  }
  .feature.training .content {
    height: auto;
  }
  .feature.training .bg-shape {
    display: none;
  }
  .feature.training .man {
    width: 47%;
    top: 149px;
    right: 0;
  }
  .feature.training .mans-talk {
    width: 80%;
    top: initial;
    left: initial;
    right: initial;
    margin-left: 5%;
    padding-top: 100px;
    padding-bottom: 30px;
    position: relative;
  }
  .feature.training .mans-talk .img-lg {
    display: none;
  }
  .feature.training .mans-talk .img-sm {
    display: block;
  }
  .feature.training .feature-info {
    width: 100%;
    top: initial;
    bottom: 28%;
    left: 0;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .feature.training .feature-info {
    bottom: 0;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .feature.training .feature-info {
    bottom: 0;
  }
}
@media (max-width: 960px) {
  .feature.training .feature-info .info-box {
    width: 66%;
    border-radius: 1em;
    padding: 35px;
    left: 25px;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .feature.training .feature-info .info-box {
    padding: 24px 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .feature.training .feature-info .info-box {
    padding: 24px 1em;
  }
}
@media (max-width: 960px) {
  .feature.training .feature-info .info-box .title {
    margin-bottom: 0;
    font-size: 1.125em;
    font-weight: 500;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .feature.training .feature-info .info-box .title {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .feature.training .feature-info .info-box .title {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .feature.training .feature-info .detail,
  .feature.training .feature-info .shape,
  .feature.training .feature-list {
    display: none;
  }
  .course-table {
    padding-bottom: 14em;
  }
  .course.training {
    width: 92%;
    z-index: 3;
    background: #3457ff;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-1px);
  }
  .course.training .bg-bottom {
    bottom: initial;
    top: 100%;
  }
  .course.training .course-list {
    width: 100%;
    background: none;
    border: none;
    border-radius: 0;
    display: block;
  }
  .course.training .course-list .type {
    width: 100%;
    height: auto;
    background: none;
    margin-bottom: 1em;
    padding-left: 0;
    position: relative;
  }
  .course.training .course-list .type .header,
  .course.training .course-list .type .list {
    display: none;
  }
  .course.training .course-list .type .type-select {
    width: 94%;
    text-align: center;
    color: #3457ff;
    appearance: none;
    background: #deefff;
    border: none;
    border-radius: 1em;
    outline: none;
    margin: 0 auto;
    padding: 20px;
    display: block;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .course.training .course-list .type .type-select {
    font-size: 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .course.training .course-list .type .type-select {
    font-size: 1em;
  }
}
@media (max-width: 960px) {
  .course.training .course-list .type:before {
    content: '';
    width: 36px;
    height: 36px;
    background-image: url('images/drop-down-icon.0b6e803a.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: -18px;
    position: absolute;
    top: 50%;
    right: 8%;
  }
  .course.training .course-list .course-container {
    width: 94%;
    height: auto;
    min-height: 0;
    border: 0.1em solid #349dff;
    border-radius: 1em;
    margin: 0 auto;
    overflow: hidden;
  }
  .course.training .course-list .course-container .header {
    background: #deefff;
    padding: 1em 0 0.3em;
  }
  .course.training .course-list .course-container .header .day {
    width: 3em;
    padding-left: 3%;
  }
  .course.training .course-list .course-container .header .course-name {
    padding-left: 0.5em;
  }
  .course.training .course-list .course-container .course-item {
    align-items: center;
    position: relative;
  }
  .course.training .course-list .course-container .course-item .day {
    width: 3em;
    text-align: center;
  }
  .course.training .course-list .course-container .course-item .day span {
    width: auto;
    color: #3457ff;
    top: initial;
    left: initial;
    margin-left: 0;
    font-size: 2em;
    line-height: 1;
    position: relative;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .course.training .course-list .course-container .course-item .day span {
    font-size: 1.5em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .course.training .course-list .course-container .course-item .day span {
    font-size: 1.5em;
  }
}
@media (max-width: 960px) {
  .course.training .course-list .course-container .course-item .course-name {
    padding: 1em 1em 1em 0.5em;
  }
  .course.training
    .course-list
    .course-container
    .course-item
    .course-name
    span {
    font-size: 1.125em;
    font-weight: 300;
    line-height: 1.5;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .course.training
    .course-list
    .course-container
    .course-item
    .course-name
    span {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .course.training
    .course-list
    .course-container
    .course-item
    .course-name
    span {
    font-size: 0.875em;
  }
}
@media (max-width: 960px) {
  .course.training .course-list .course-container .course-item .more-btn {
    display: none !important;
  }
  .course.training .course-list .course-container .course-item:hover {
    background: #cce3fe;
  }
  .course.training .course-list .course-container .course-item:hover .day span {
    top: initial;
    font-size: 2em;
  }
  .course.training
    .course-list
    .course-container
    .course-item:hover
    .course-name
    span {
    color: #212121;
  }
  .course.training .course-list .course-container .course-item + .course-item {
    border-top: 4px solid #deefff;
  }
  .logos.training h1 {
    padding: 1.5em 0 1em;
  }
  .logos.training img {
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .logos.training img {
    width: 80%;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .logos.training img {
    width: 80%;
  }
}
@media (max-width: 960px) {
  .logos.training .logos-container {
    width: 88%;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .logos.training .logos-container {
    width: 100%;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .logos.training .logos-container {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .logos.training .logos-container .grid_set {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .qa.training h2 {
    padding: 1.5em 0 1em;
  }
}
@media (max-width: 960px) and (max-device-width: 600px) {
  .qa.training h2 {
    padding: 1.75em 0 1em;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .qa.training h2 {
    padding: 1.75em 0 1em;
  }
}
@media (max-width: 960px) {
  .qa.training .title {
    line-height: 1.5;
  }
  .qa.training .indicator {
    top: 2em;
    right: 0.5em;
    transform: scale(0.5);
  }
  .qa.training .indicator div {
    width: 65px;
    height: 30px;
  }
  .qa.training .indicator div:before,
  .qa.training .indicator div:after {
    width: 40px;
    height: 10px;
  }
  .qa.training .qa-container {
    padding-bottom: 3em;
  }
  .qa.training .qa-item {
    border-radius: 2em;
    padding: 2em 4em 2em 2em;
  }
  .qa.training .qa-item + .qa-item {
    margin-top: 20px;
  }
}
@media (max-device-width: 600px) {
  .training {
    font-size: 42px;
  }
  .top.training .count div h2 {
    font-size: 2.5em;
  }
  .top.training .count div span {
    font-size: 1em;
  }
  .course-table {
    padding-bottom: 8em;
  }
}
@media (max-device-width: 600px) and (max-device-width: 600px) {
  .course-table {
    padding-bottom: 6em;
  }
}
@media (max-device-width: 600px) and (max-width: 600px) {
  .course-table {
    padding-bottom: 6em;
  }
}
@media (max-device-width: 600px) {
  .qa.training .qa-container {
    width: 88%;
  }
  .qa.training .qa-item {
    padding: 0.75em 3em 0.75em 1.5em;
  }
  .qa.training .qa-item .title {
    font-size: 1em;
  }
  .qa.training .indicator div {
    transform: translateX(20px);
  }
  .qa.training .detail {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .training {
    font-size: 42px;
  }
  .top.training .count div h2 {
    font-size: 2.5em;
  }
  .top.training .count div span {
    font-size: 1em;
  }
  .course-table {
    padding-bottom: 8em;
  }
}
@media (max-width: 600px) and (max-device-width: 600px) {
  .course-table {
    padding-bottom: 6em;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .course-table {
    padding-bottom: 6em;
  }
}
@media (max-width: 600px) {
  .qa.training .qa-container {
    width: 88%;
  }
  .qa.training .qa-item {
    padding: 0.75em 3em 0.75em 1.5em;
  }
  .qa.training .qa-item .title {
    font-size: 1em;
  }
  .qa.training .indicator div {
    transform: translateX(20px);
  }
  .qa.training .detail {
    font-size: 14px;
  }
}
@media (max-width: 960px) {
  .training {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .training {
    font-size: 16px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    Noto Sans TC,
    Noto Sans;
}
html {
  -webkit-text-size-adjust: 100%;
}
html,
body {
  margin: 0;
}
body.menu-on {
  overflow: hidden;
}
.case-gallery.case-slider .case-content .img img {
  width: 100%;
  min-height: 248px;
  object-fit: cover;
}
@media screen and (min-width: 960px) and (max-width: 1280px) {
  .case-gallery.case-slider .case-content {
    min-width: 577px;
  }
}
@media screen and (min-width: 1281px) {
  .case-gallery.case-slider .case-content {
    min-width: 896px;
  }
}
