@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=League+Spartan&family=Noto+Sans+TC:wght@100;400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", sans-serif;
}

/*反白樣式*/
::-moz-selection {
  background: #ff9900;
  color: #fff;
}
::selection {
  background: #ff9900;
  color: #fff;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 0.4rem;
  background: #eee;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5rem;
}

a {
  text-decoration: none;
}

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

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    top: 0vh;
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    top: -100vh;
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pc-menu {
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 1.5rem;
  z-index: 999;
  transition: all 0.3s;
}
.pc-menu .menu {
  display: flex;
  transition: 0.5s;
  position: relative;
}
.pc-menu .menu .left,
.pc-menu .menu .right {
  display: flex;
}
.pc-menu .menu .left > li,
.pc-menu .menu .right > li {
  text-align: center;
  padding: 0rem 0.5rem;
}
.pc-menu .menu .left > li > a,
.pc-menu .menu .right > li > a {
  color: #eee;
  font-size: 1.15rem;
  transition: 0.8s;
  line-height: 1;
}
.pc-menu .menu .left > li > a:hover,
.pc-menu .menu .right > li > a:hover {
  color: #ff9900;
}
.pc-menu .menu .left > li span,
.pc-menu .menu .right > li span {
  font-size: 0.85rem;
  font-family: "League Spartan", sans-serif;
}
.pc-menu .menu .left {
  position: relative;
  right: 0%;
  transition: 0.5s;
}
.pc-menu .menu .right {
  position: relative;
  right: 0%;
  transition: 0.5s;
}
.pc-menu .menu .center-logo {
  position: absolute;
  top: 350px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  transition: 0.5s;
  line-height: 1;
}
.pc-menu .menu .center-logo h1 {
  font-size: 3rem;
  transition: 0.5s;
  margin: 0;
  padding: 0;
}
.pc-menu .menu .center-logo p {
  font-size: 2rem;
  transition: 0.5s;
}
.pc-menu .menu .center-logo p span {
  font-size: 2.15rem;
  transition: 0.5s;
  font-family: "League Spartan", sans-serif;
}
.pc-menu .menu.static .left {
  right: 15%;
}
.pc-menu .menu.static .right {
  right: -15%;
}
.pc-menu .menu.static .center-logo {
  top: 30px;
  left: 50%;
}
.pc-menu .menu.static .center-logo h1 {
  font-size: 2rem;
  padding: 0;
  margin: 0;
}
.pc-menu .menu.static .center-logo p {
  font-size: 1rem;
}
.pc-menu .menu.static .center-logo p span {
  font-size: 1.05rem;
}
@media (max-width: 1280px) {
  .pc-menu {
    display: none;
  }
}

.service-menu,
.charge-menu,
.example-menu,
.knowledge-menu {
  display: none;
}

.service-dropdown:hover .service-menu,
.charge-dropdown:hover .charge-menu,
.example-dropdown:hover .example-menu,
.knowledge-dropdown:hover .knowledge-menu {
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 99;
  padding: 0.5rem 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
}
.service-dropdown:hover .service-menu li,
.charge-dropdown:hover .charge-menu li,
.example-dropdown:hover .example-menu li,
.knowledge-dropdown:hover .knowledge-menu li {
  padding: 0.5rem 0;
  text-align: center;
}
.service-dropdown:hover .service-menu li a,
.charge-dropdown:hover .charge-menu li a,
.example-dropdown:hover .example-menu li a,
.knowledge-dropdown:hover .knowledge-menu li a {
  padding: 0.5rem 2rem;
  color: #fff;
  transition: 0.3s;
}
.service-dropdown:hover .service-menu li a:hover,
.charge-dropdown:hover .charge-menu li a:hover,
.example-dropdown:hover .example-menu li a:hover,
.knowledge-dropdown:hover .knowledge-menu li a:hover {
  color: #ff9900;
  background: transparent;
}

.mobile-menu .mobile-menu-logo {
  display: none;
  position: fixed;
  height: auto;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(102, 102, 102, 0.8);
}
@media (max-width: 1280px) {
  .mobile-menu .mobile-menu-logo {
    display: initial;
  }
}
.mobile-menu .mobile-menu-logo a {
  padding-top: 0.5rem;
  display: block;
  text-align: center;
  color: #fff;
}
.mobile-menu .mobile-menu-logo a h1 {
  line-height: 0.6;
  font-size: 1rem;
}
.mobile-menu .mobile-menu-logo a p {
  line-height: 1.2;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.mobile-menu .mobile-menu-logo a p span {
  font-size: 1rem;
}
.mobile-menu #menu-icon-shape {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 9991;
  transition: all 0.5s ease;
  display: none;
}
.mobile-menu #menu-icon-shape #menu-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu #menu-icon-shape #menu-icon #top,
.mobile-menu #menu-icon-shape #menu-icon #middle,
.mobile-menu #menu-icon-shape #menu-icon #bottom {
  width: 100%;
  height: 4px;
  background: #fff;
  transition: all 0.35s ease;
}
.mobile-menu #menu-icon-shape #menu-icon #middle {
  margin: 4px 0;
}
.mobile-menu #menu-icon-shape #menu-icon #top.active {
  transform: translateY(8px) translateX(0) rotate(45deg);
}
.mobile-menu #menu-icon-shape #menu-icon #middle.active {
  opacity: 0;
}
.mobile-menu #menu-icon-shape #menu-icon #bottom.active {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}
@media (max-width: 1280px) {
  .mobile-menu #menu-icon-shape {
    display: initial;
  }
}
.mobile-menu #top-nav,
.mobile-menu #service-nav,
.mobile-menu #charge-nav,
.mobile-menu #example-nav,
.mobile-menu #knowledge-nav {
  width: 0%;
  height: calc(100% - 71.97px);
  position: fixed;
  top: 71.97px;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 30px;
  background: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  transition: visibility 0.2s, width 0.3s ease;
}
.mobile-menu #top-nav .nav-title,
.mobile-menu #service-nav .nav-title,
.mobile-menu #charge-nav .nav-title,
.mobile-menu #example-nav .nav-title,
.mobile-menu #knowledge-nav .nav-title {
  width: 60%;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.mobile-menu #top-nav li,
.mobile-menu #service-nav li,
.mobile-menu #charge-nav li,
.mobile-menu #example-nav li,
.mobile-menu #knowledge-nav li {
  display: flex;
  align-items: center;
  opacity: 0;
  padding: 0.8rem 0;
  transition: 0.3s;
}
.mobile-menu #top-nav li a,
.mobile-menu #service-nav li a,
.mobile-menu #charge-nav li a,
.mobile-menu #example-nav li a,
.mobile-menu #knowledge-nav li a {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.mobile-menu #top-nav li a span,
.mobile-menu #service-nav li a span,
.mobile-menu #charge-nav li a span,
.mobile-menu #example-nav li a span,
.mobile-menu #knowledge-nav li a span {
  font-size: 0.5rem;
}
.mobile-menu #top-nav li img,
.mobile-menu #service-nav li img,
.mobile-menu #charge-nav li img,
.mobile-menu #example-nav li img,
.mobile-menu #knowledge-nav li img {
  width: 30px;
  height: 30px;
}
.mobile-menu #top-nav.active,
.mobile-menu #service-nav.active,
.mobile-menu #charge-nav.active,
.mobile-menu #example-nav.active,
.mobile-menu #knowledge-nav.active {
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.mobile-menu #top-nav.active li,
.mobile-menu #service-nav.active li,
.mobile-menu #charge-nav.active li,
.mobile-menu #example-nav.active li,
.mobile-menu #knowledge-nav.active li {
  opacity: 1;
}
.mobile-menu #top-nav #service-nav-list,
.mobile-menu #service-nav #service-nav-list,
.mobile-menu #charge-nav #service-nav-list,
.mobile-menu #example-nav #service-nav-list,
.mobile-menu #knowledge-nav #service-nav-list {
  display: flex;
  justify-content: space-between;
}
.mobile-menu #top-nav #service-nav-list ul,
.mobile-menu #service-nav #service-nav-list ul,
.mobile-menu #charge-nav #service-nav-list ul,
.mobile-menu #example-nav #service-nav-list ul,
.mobile-menu #knowledge-nav #service-nav-list ul {
  padding: 0 1rem;
}

#top-nav #ser,
#top-nav #list,
#top-nav #case,
#top-nav #know {
  display: flex;
  flex-direction: row !important;
}
#top-nav li a {
  padding-left: 2rem;
  margin: 0 0 !important;
}

.back-top-menu-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 10px;
  left: 10px;
}
.back-top-menu-button img {
  width: 30px;
  height: 30px;
}

.banner {
  background: url(../img/banner.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.banner .mobile-center-logo {
  display: none;
}
@media (max-width: 1280px) {
  .banner .mobile-center-logo {
    display: initial;
    text-align: center;
    position: absolute !important;
    top: 25%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
  .banner .mobile-center-logo a {
    color: #fff;
  }
  .banner .mobile-center-logo a h1 {
    transform: scale(1);
    font-size: 3rem;
    opacity: 1;
    transition: all 0.3s;
  }
  .banner .mobile-center-logo a p {
    transform: scale(1);
    font-size: 1.8rem;
    opacity: 1;
    transition: all 0.3s;
  }
}
.banner .phone {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  opacity: 1;
  font-size: 2rem;
  color: #fff !important;
  transition: 0.3s;
  z-index: 9;
  text-align: center;
}
@media (max-width: 768px) {
  .banner .phone i {
    display: block;
    font-size: 2rem;
  }
}
.banner .phone span {
  color: #fff !important;
}
@media (max-width: 768px) {
  .banner .phone {
    text-align: center;
    font-size: 2.3rem;
  }
}
@media (max-width: 450px) {
  .banner .phone {
    text-align: center;
    font-size: 1.3rem;
  }
}

.page-banner {
  height: 60vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1280px) {
  .page-banner {
    height: 33vh;
  }
}
.page-banner .section-title {
  padding-top: 2rem;
}
.page-banner .section-title h2 {
  color: #fff;
}
.page-banner .section-title h2 a {
  font-size: 2.5rem;
  color: #fff;
  transition: 0.3s;
}
.page-banner .section-title h2 a:hover {
  color: #aaa;
}
.page-banner .section-title .scroll-icon {
  margin: 0;
  padding: 0;
}
@media (max-width: 1280px) {
  .page-banner .section-title .scroll-icon {
    display: none;
  }
}
.page-banner nav .breadcrumb {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}
@media (max-width: 1280px) {
  .page-banner nav .breadcrumb {
    display: none;
  }
}
.page-banner nav .breadcrumb .breadcrumb-item {
  color: red;
}
.page-banner nav .breadcrumb .breadcrumb-item a {
  color: #fff;
}
.page-banner nav .breadcrumb .breadcrumb-item a:hover {
  color: red;
}
.page-banner nav .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.page-banner > span {
  position: absolute;
  z-index: 1;
  bottom: 40%;
  left: 100px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10rem;
  line-height: 1;
  font-family: "League Spartan", sans-serif;
}
@media (max-width: 1280px) {
  .page-banner > span {
    bottom: 68%;
    font-size: 5rem;
  }
}
@media (max-width: 1024px) {
  .page-banner > span {
    top: 26%;
    font-size: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.section-title {
  text-align: center;
}
.section-title h2 {
  font-size: 3.5rem;
  color: #fff;
}
.section-title p {
  font-size: 1rem;
  color: #fff;
}
.section-title .scroll-icon {
  padding-top: 1rem;
}
@media (max-width: 450px) {
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-title p {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .section-title .scroll-icon {
    padding-top: 0;
  }
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  background: #000;
  padding-top: 10rem;
  position: relative;
}
@media (max-width: 1280px) {
  .about {
    padding-top: 6rem;
  }
}
@media (max-width: 450px) {
  .about {
    padding-top: 3rem;
    height: 200vw;
  }
}
.about .about-bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: -10rem;
  left: 0;
}
@media (max-width: 1280px) {
  .about .about-bg {
    top: 0rem;
  }
}
.about .about-bg img {
  width: 110%;
  height: auto;
}
@media (max-width: 1440px) {
  .about .about-bg img {
    width: 120%;
  }
}
@media (max-width: 1024px) {
  .about .about-bg img {
    width: 120%;
    height: 200vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about .about-content {
  padding-top: 5rem;
  max-width: 60%;
  max-height: 70vh;
}
@media (max-width: 450px) {
  .about .about-content {
    padding-top: 1rem;
    max-width: 90%;
  }
}
.about .about-content h3 {
  color: #fff;
  font-size: 2rem;
}
.about .about-content p {
  padding-top: 1rem;
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 450px) {
  .about .about-content h3 {
    color: #fff;
    font-size: 1.5rem;
  }
  .about .about-content p {
    padding-top: 0rem;
    font-size: 1rem;
  }
}
.about .about-btn {
  padding-top: 5rem;
}
.about .about-btn .more-btn {
  background: #eee;
  padding: 0.5rem 3rem;
  border-radius: 3rem;
  color: #000;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 450px) {
  .about .about-btn {
    padding-top: 1rem;
  }
  .about .about-btn .more-btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

.service {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding-top: 10rem;
  background: radial-gradient(#ff9900, #f7ca43);
  animation: fadeIn 1 1s ease-out;
}
@media (max-width: 1440px) {
  .service {
    padding-top: 0rem;
  }
}
@media (max-width: 450px) {
  .service {
    height: 200vw;
  }
}
.service .light {
  position: absolute;
  width: 0px;
  opacity: 0.75;
  background-color: white;
  box-shadow: #e9f1f1 0px 0px 20px 2px;
  opacity: 0;
  top: 100vh;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}
.service .x1 {
  animation: floatUp 4s infinite linear;
  transform: scale(1);
}
.service .x2 {
  animation: floatUp 7s infinite linear;
  transform: scale(1.6);
  left: 15%;
}
.service .x3 {
  animation: floatUp 2.5s infinite linear;
  transform: scale(0.5);
  left: -15%;
}
.service .x4 {
  animation: floatUp 4.5s infinite linear;
  transform: scale(1.2);
  left: -34%;
}
.service .x5 {
  animation: floatUp 8s infinite linear;
  transform: scale(2.2);
  left: -57%;
}
.service .x6 {
  animation: floatUp 3s infinite linear;
  transform: scale(0.8);
  left: -81%;
}
.service .x7 {
  animation: floatUp 5.3s infinite linear;
  transform: scale(3.2);
  left: 37%;
}
.service .x8 {
  animation: floatUp 4.7s infinite linear;
  transform: scale(1.7);
  left: 62%;
}
.service .x9 {
  animation: floatUp 4.1s infinite linear;
  transform: scale(0.9);
  left: 85%;
}
.service .service-content {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .service .service-content {
    align-items: unset;
  }
}
.service .service-content .service-img {
  position: relative;
  flex: 1;
  height: 100vh;
}
@media (max-width: 1440px) {
  .service .service-content .service-img {
    padding-top: 10rem;
  }
}
@media (max-width: 1024px) {
  .service .service-content .service-img {
    position: absolute;
    bottom: 0px;
    left: 20%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .service .service-content .service-img {
    left: 30%;
  }
}
@media (max-width: 450px) {
  .service .service-content .service-img {
    left: -25px;
  }
}
.service .service-content .service-img img {
  padding-top: 3rem;
  position: absolute;
  bottom: 150px;
  width: 85%;
}
@media (max-width: 1440px) {
  .service .service-content .service-img img {
    width: 110%;
    bottom: 0px;
  }
}
@media (max-width: 1280px) {
  .service .service-content .service-img img {
    width: 110%;
  }
}
@media (max-width: 1024px) {
  .service .service-content .service-img img {
    position: initial;
    width: 70%;
  }
}
@media (max-width: 768px) {
  .service .service-content .service-img img {
    width: 55%;
  }
}
@media (max-width: 450px) {
  .service .service-content .service-img img {
    width: 85%;
  }
}
.service .service-content .service-img .service-text {
  position: absolute;
  bottom: 120px;
  left: 5%;
}
@media (max-width: 1440px) {
  .service .service-content .service-img .service-text {
    bottom: 0px;
    left: 10%;
  }
}
@media (max-width: 1280px) {
  .service .service-content .service-img .service-text {
    left: 10%;
  }
}
@media (max-width: 1024px) {
  .service .service-content .service-img .service-text {
    left: 5%;
  }
}
@media (max-width: 768px) {
  .service .service-content .service-img .service-text {
    left: -2%;
  }
}
@media (max-width: 450px) {
  .service .service-content .service-img .service-text {
    left: 14%;
  }
}
.service .service-content .service-img .service-text span {
  color: #fff;
  font-size: 12rem;
  font-weight: 600;
  opacity: 0.5;
}
@media (max-width: 1440px) {
  .service .service-content .service-img .service-text span {
    font-size: 8rem;
  }
}
@media (max-width: 1280px) {
  .service .service-content .service-img .service-text span {
    font-size: 7rem;
  }
}
@media (max-width: 1024px) {
  .service .service-content .service-img .service-text span {
    font-size: 8rem;
  }
}
@media (max-width: 768px) {
  .service .service-content .service-img .service-text span {
    font-size: 5rem;
  }
}
@media (max-width: 450px) {
  .service .service-content .service-img .service-text span {
    font-size: 4.6rem;
  }
}
.service .service-content .service-carousel {
  flex: 1;
  padding-top: 3rem;
  text-align: center;
}
@media (max-width: 1440px) {
  .service .service-content .service-carousel {
    padding-top: 13rem;
  }
}
@media (max-width: 450px) {
  .service .service-content .service-carousel {
    padding-top: 6rem;
  }
}
.service .service-content .service-carousel .service_swiper {
  width: 600px;
  height: 450px;
}
@media (max-width: 1440px) {
  .service .service-content .service-carousel .service_swiper {
    width: 410px;
    height: 400px;
  }
}
@media (max-width: 450px) {
  .service .service-content .service-carousel .service_swiper {
    padding-top: 30px;
    width: 300px;
    height: 250px;
  }
}
.service .service-content .service-carousel .service_swiper .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1280px) {
  .service .service-content .service-carousel .service_swiper .swiper-scrollbar {
    top: 5%;
  }
}
.service .service-content .service-carousel .service_swiper .swiper-scrollbar-drag {
  background: rgba(255, 255, 255, 0.8);
}
.service .service-content .service-carousel .service_swiper .swiper-slide {
  padding: 2rem 0;
  text-align: center;
  color: #fff;
  background: transparent;
}
.service .service-content .service-carousel .service_swiper .swiper-slide h4 {
  font-size: 3rem;
  padding: 1rem 0;
}
.service .service-content .service-carousel .service_swiper .swiper-slide p {
  font-size: 1.2rem;
  padding-top: 1rem;
  padding-bottom: 5rem;
  line-height: 1.5;
}
.service .service-content .service-carousel .service_swiper .swiper-slide .service-more-btn {
  padding: 1rem 3rem;
  margin-top: 3rem;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3rem;
  transition: 0.3s;
}
.service .service-content .service-carousel .service_swiper .swiper-slide .service-more-btn:hover {
  background-color: #fff;
  color: #ff9900;
}
@media (max-width: 450px) {
  .service .service-content .service-carousel .service_swiper .swiper-slide {
    padding: 0;
  }
  .service .service-content .service-carousel .service_swiper .swiper-slide h4 {
    font-size: 1.5rem;
    padding: 1rem 0;
  }
  .service .service-content .service-carousel .service_swiper .swiper-slide p {
    font-size: 1rem;
    padding-top: 0rem;
    padding-bottom: 0.5rem;
    line-height: 1.5;
  }
  .service .service-content .service-carousel .service_swiper .swiper-slide .service-more-btn {
    padding: 0.8rem 2rem;
    margin-top: 1rem;
  }
}

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.step .step-content {
  position: relative;
  width: 100vw;
  display: flex;
}
@media (max-width: 1024px) {
  .step .step-content {
    display: none;
  }
}
.step .step-content #p01 {
  background: url(../img/step/step01.jpg);
  background-size: cover;
  background-position: left;
}
.step .step-content #p02 {
  background: url(../img/step/step02.jpg);
  background-size: cover;
  background-position: left;
}
.step .step-content #p03 {
  background: url(../img/step/step03.jpg);
  background-size: cover;
  background-position: center;
}
.step .step-content #p04 {
  background: url(../img/step/step04.jpg);
  background-size: cover;
  background-position: center;
}
.step .step-content #p05 {
  background: url(../img/step/step05.jpg);
  background-size: cover;
  background-position: center;
}
.step .step-content #p06 {
  background: url(../img/step/step06.jpg);
  background-size: cover;
  background-position: center;
}
.step .step-content .panel {
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: #fff;
  flex: 1;
  margin: 0;
  position: relative;
  transition: flex 0.7s ease-in;
}
.step .step-content .panel h3 {
  font-size: 2.5rem;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  margin: 0;
  opacity: 0;
  z-index: 9;
  text-shadow: 0 0 5px #000;
}
.step .step-content .panel .panel-text {
  font-size: 1.5rem;
  text-align: center;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%);
  z-index: 996;
  color: #eee;
  opacity: 0;
}
.step .step-content .panel .panel-text p {
  text-shadow: 0 0 5px #000;
}
.step .step-content .panel .step-number {
  font-size: 10rem;
  font-style: italic;
  font-weight: 600;
  position: absolute;
  top: 75%;
  left: 20%;
  transition: left 0.3s;
  z-index: 997;
  color: #ddd;
  text-shadow: 0 0 5px #000;
}
.step .step-content .panel.active {
  flex: 5;
}
.step .step-content .panel.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}
.step .step-content .panel.active .panel-text {
  opacity: 1;
  transition: opacity 0.9s ease-in 0.4s;
}
.step .step-content .panel.active .step-number {
  left: 80%;
  color: #ff9900;
}
.step .step-mask {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  width: 50%;
  top: 0;
  bottom: 0;
  left: 0%;
  transition: left 0.7s;
  overflow: hidden;
  padding-top: 10rem;
}
.step .step-mask .step-title {
  position: relative;
}
.step .step-mask .step-title h3 {
  text-align: center;
  color: #eee;
  font-size: 3.5rem;
  margin-bottom: 0;
  text-shadow: 0 0 5px #000;
}
.step .step-mask .step-title P {
  text-align: center;
  color: #eee;
  font-size: 1rem;
  padding-top: 2rem;
  text-shadow: 0 0 5px #000;
}
.step .step-mask .scroll-icon {
  text-align: center;
}

.mobile-step-content {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-step-content {
    display: initial;
  }
}
.mobile-step-content .swiper-slide {
  height: 100vh;
  background-size: cover;
}
.mobile-step-content .swiper-slide .section-title {
  padding-top: 6rem;
}
.mobile-step-content .swiper-slide .section-title h2,
.mobile-step-content .swiper-slide .section-title p {
  color: #000;
}
.mobile-step-content .swiper-slide .under-text {
  height: 80vh;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(340deg, rgba(0, 0, 0, 0.7) 72%, transparent 20%);
  background-repeat: no-repeat;
  background-position: 0 300px;
  padding-top: 15rem;
  text-align: center;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mobile-step-content .swiper-slide .under-text > span {
  font-size: 10rem;
}
.mobile-step-content .swiper-slide .under-text h3 {
  font-size: 2.5rem;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.3s;
  transition-delay: 0.6s;
}
.mobile-step-content .swiper-slide .under-text p {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.3s;
  transition-delay: 0.7s;
}
@media (max-width: 450px) {
  .mobile-step-content .swiper-slide .under-text {
    padding-bottom: 8rem;
  }
  .mobile-step-content .swiper-slide .under-text > span {
    font-size: 6rem;
  }
  .mobile-step-content .swiper-slide .under-text h3 {
    font-size: 2.5rem;
  }
}
.mobile-step-content .swiper-slide-active .under-text {
  background-position: 0 0px;
}
.mobile-step-content .swiper-slide-active .under-text h3,
.mobile-step-content .swiper-slide-active .under-text p {
  opacity: 1;
  transform: translateY(0px);
}
.mobile-step-content .section-title {
  padding-top: 1rem;
}
.mobile-step-content .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translatex(-50%);
  z-index: 1;
  width: auto !important;
}
.mobile-step-content .swiper-pagination-bullet {
  border-radius: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  line-height: 30px;
  font-size: 12px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
  margin-right: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-step-content .swiper-pagination-bullet-active {
  background: #fff;
  width: 20px;
  border-radius: 10px;
}

.teams {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  overflow: hidden;
  background: #6f7286;
  padding-top: 10rem;
}
@media (max-width: 1550px) {
  .teams {
    height: 100vh;
  }
}
@media (max-width: 1024px) {
  .teams {
    padding-top: 0;
    height: 100vh;
  }
}
@media (max-width: 1024px) {
  .teams .section-title {
    width: 100%;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%) !important;
    padding: 0;
    z-index: 5;
  }
  .teams .section-title h2 {
    font-size: 2rem;
  }
}
.teams .pc-teams-content {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .teams .pc-teams-content {
    display: none;
  }
}
.teams .pc-teams-content .swiper-horizontal > .swiper-pagination-progressbar,
.teams .pc-teams-content .swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: 99.5%;
}
.teams .pc-teams-content .swiper-pagination-progressbar-fill {
  background: #ff9900;
}
.teams .pc-teams-content .swiper-slide {
  display: flex;
  align-items: center;
  background: content-box linear-gradient(#6f7286, #5a5869);
}
.teams .pc-teams-content .swiper-slide .teams-text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 5rem;
}
.teams .pc-teams-content .swiper-slide .teams-text .name {
  color: #fff;
}
.teams .pc-teams-content .swiper-slide .teams-text .name > span {
  display: block;
  text-align: center;
  transform: translateY(-10rem);
  opacity: 0;
  transition: 1s;
}
.teams .pc-teams-content .swiper-slide .teams-text .name > span:first-child {
  font-size: 3rem;
}
.teams .pc-teams-content .swiper-slide .teams-text .name > span:last-child {
  font-size: 2rem;
}
.teams .pc-teams-content .swiper-slide .teams-text .expertise {
  width: 50%;
  text-align: center;
  color: #fff;
  margin-top: 5rem;
  transform: translateY(10rem);
  opacity: 0;
  transition: 1s;
}
@media (max-width: 1024px) {
  .teams .pc-teams-content .swiper-slide .teams-text .expertise {
    width: 100%;
  }
}
.teams .pc-teams-content .swiper-slide .teams-text .expertise > span {
  font-size: 2rem;
}
.teams .pc-teams-content .swiper-slide .teams-text .expertise > p {
  text-align: center;
}
@media (max-width: 1024px) {
  .teams .pc-teams-content .swiper-slide .teams-text .expertise > p {
    width: 90%;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.teams .pc-teams-content .swiper-slide .teams-text > span {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  color: #49495f;
  font-size: 5rem;
}
@media (max-width: 1536px) {
  .teams .pc-teams-content .swiper-slide .teams-text > span {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .teams .pc-teams-content .swiper-slide .teams-text > span {
    font-size: 2rem;
  }
}
.teams .pc-teams-content .swiper-slide .teams-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .teams .pc-teams-content .swiper-slide .teams-img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
@media (max-width: 1024px) and (max-width: 450px) {
  .teams .pc-teams-content .swiper-slide .teams-img {
    top: 55%;
  }
}
.teams .pc-teams-content .swiper-slide .teams-img img {
  width: 60%;
  position: absolute;
  left: 40%;
  transform: translateX(20%);
  opacity: 0;
  transition: 1s;
}
@media (max-width: 1024px) {
  .teams .pc-teams-content .swiper-slide .teams-img img {
    width: 75%;
    position: initial;
    transform: translateX(0%);
  }
}
@media (max-width: 768px) {
  .teams .pc-teams-content .swiper-slide .teams-img img {
    width: 60%;
  }
}
@media (max-width: 450px) {
  .teams .pc-teams-content .swiper-slide .teams-img img {
    width: 70%;
  }
}
.teams .pc-teams-content .swiper-slide-active .teams-text .name {
  color: #fff;
}
.teams .pc-teams-content .swiper-slide-active .teams-text .name > span {
  transform: translateY(0rem);
  opacity: 1;
}
@media (max-width: 1024px) {
  .teams .pc-teams-content .swiper-slide-active .teams-text .name > span {
    transform: translateY(18.5rem);
  }
}
@media (max-width: 450px) {
  .teams .pc-teams-content .swiper-slide-active .teams-text .name > span {
    transform: translateY(12rem);
  }
}
.teams .pc-teams-content .swiper-slide-active .teams-text .expertise {
  transform: translateY(0rem);
  opacity: 1;
}
@media (max-width: 1024px) {
  .teams .pc-teams-content .swiper-slide-active .teams-text .expertise {
    transform: translateY(0rem);
  }
}
.teams .pc-teams-content .swiper-slide-active .teams-img img {
  transform: translateX(-50%);
  opacity: 1;
}
@media (max-width: 1024px) {
  .teams .pc-teams-content .swiper-slide-active .teams-img img {
    transform: translateX(0%);
  }
}
.teams .m-teams-content {
  width: 100%;
  height: 100%;
  display: none;
}
@media (max-width: 1024px) {
  .teams .m-teams-content {
    display: initial;
  }
}
.teams .m-teams-content .swiper-horizontal > .swiper-pagination-progressbar,
.teams .m-teams-content .swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: 99.5%;
}
.teams .m-teams-content .swiper-pagination-progressbar-fill {
  background: #ff9900;
}
.teams .m-teams-content .swiper-slide {
  margin-top: 5rem;
  display: flex;
  align-items: flex-start;
  background: content-box linear-gradient(#6f7286, #5a5869);
}
.teams .m-teams-content .swiper-slide .teams-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 5rem;
  position: relative;
}
.teams .m-teams-content .swiper-slide .teams-text .name {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.teams .m-teams-content .swiper-slide .teams-text .name > span {
  display: block;
  text-align: center;
  transform: translateY(-10rem);
  opacity: 0;
  transition: 1s;
}
.teams .m-teams-content .swiper-slide .teams-text .name > span:first-child {
  font-size: 2rem;
}
.teams .m-teams-content .swiper-slide .teams-text .name > span:last-child {
  font-size: 1.6rem;
}
.teams .m-teams-content .swiper-slide .teams-text img {
  flex: 1;
  max-width: 70%;
  transform: translateX(0%);
  opacity: 0;
  transition: 1s;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.teams .m-teams-content .swiper-slide .teams-text .expertise {
  flex: 1;
  width: 100%;
  text-align: center;
  color: #fff;
  transform: translateY(10rem);
  opacity: 0;
  transition: 1s;
}
.teams .m-teams-content .swiper-slide .teams-text .expertise > span {
  font-size: 2rem;
}
.teams .m-teams-content .swiper-slide .teams-text .expertise > p {
  width: 90%;
  margin: 0 auto;
  font-size: 0.9rem;
}
.teams .m-teams-content .swiper-slide .teams-text > span {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  color: #49495f;
  font-size: 2rem;
}
.teams .m-teams-content .swiper-slide-active .teams-text .name {
  color: #fff;
}
.teams .m-teams-content .swiper-slide-active .teams-text .name > span {
  transform: translateY(0rem);
  opacity: 1;
}
.teams .m-teams-content .swiper-slide-active .teams-text img {
  transform: translateX(0%);
  opacity: 1;
}
.teams .m-teams-content .swiper-slide-active .teams-text .expertise {
  transform: translateY(0rem);
  opacity: 1;
}

.news {
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  background: transparent;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.news::before {
  content: " ";
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/example.jpg) center 0 no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .news {
    padding-top: 0;
    background: #ddd;
  }
}
.news .section-title {
  text-align: center;
}
@media (max-width: 1024px) {
  .news .section-title {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 6;
    background: linear-gradient(-15deg, transparent 60px, rgb(221, 221, 221) 0) right, linear-gradient(15deg, transparent 60px, rgb(221, 221, 221) 0) left;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .news .section-title .text {
    position: relative;
    top: -25px;
  }
}
.news .section-title h2 {
  font-size: 3rem;
  color: #fff;
  font-weight: 100;
}
@media (max-width: 1024px) {
  .news .section-title h2 {
    font-size: 2rem;
    color: #000;
  }
}
.news .section-title p {
  font-size: 1rem;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 1024px) {
  .news .section-title p {
    color: #000;
  }
}
.news .news-content {
  padding: 1.5rem 3rem;
}
@media (max-width: 1280px) {
  .news .news-content {
    padding: 0rem 3rem;
  }
}
@media (max-width: 1024px) {
  .news .news-content {
    display: none;
  }
}
.news .news-content .swiper {
  overflow: visible;
}
.news .news-content .news-swiper {
  height: 400px;
  padding: 35px 0;
}
.news .news-content .news-swiper .swiper-slide {
  height: 330px;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1.5rem;
  background: #fff;
  box-shadow: 0rem 0rem 2rem 0.3rem rgba(0, 0, 0, 0.3);
}
.news .news-content .news-swiper .swiper-slide img {
  display: block;
  min-width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-content .news-swiper .swiper-slide .news-info {
  padding: 1rem;
}
.news .mobile-news-content {
  display: none;
}
@media (max-width: 1024px) {
  .news .mobile-news-content {
    display: initial;
  }
}
.news .mobile-news-content a {
  padding: 1rem 0;
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.4s ease;
  transition-delay: 0.2s;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news .mobile-news-content p {
  padding: 1rem 0;
  font-size: 1rem;
  color: #fff;
  transition: all 0.4s ease;
  transition-delay: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .mobile-news-content .news-swiper-container {
  background: #fff;
  position: relative;
  max-width: 100%;
}
.news .mobile-news-content .news-swiper-container .swiper-wrapper {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
  top: 0;
}
.news .mobile-news-content .slider-item {
  width: 100%;
  height: 100vh;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  opacity: 0;
}
.news .mobile-news-content .slider-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  width: 90%;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%) !important;
  background-color: rgba(102, 102, 102, 0.5);
  padding: 32px;
  transition: 0.4s;
}
.news .mobile-news-content .slider-item-content > * {
  opacity: 0;
  transform: translateY(20px);
}
.news .mobile-news-content .swiper-slide-active .slider-item-content > * {
  transform: translateY(0px);
  opacity: 1;
}
.news .mobile-news-content .slider-image-wrapper {
  height: 90%;
  width: 100%;
  overflow: hidden;
}
.news .mobile-news-content .slider-image-wrapper .slider-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
}
.news .mobile-news-content .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translatex(-50%);
  z-index: 1;
  width: auto !important;
}
.news .mobile-news-content .swiper-pagination-bullet {
  border-radius: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  line-height: 30px;
  font-size: 12px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
  margin-right: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.news .mobile-news-content .swiper-pagination-bullet-active {
  background: #fff;
  width: 20px;
  border-radius: 10px;
}
.news .news-btn {
  text-align: center;
}
@media (max-width: 1280px) {
  .news .news-btn {
    padding-top: 0rem;
  }
}
.news .news-btn .more-btn {
  position: relative;
  top: 50px;
  background: #fff;
  padding: 0.5rem 3rem;
  border-radius: 3rem;
  color: #000;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 450px) {
  .news .news-btn {
    padding-top: 2rem;
  }
  .news .news-btn .more-btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

.online {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 10rem;
  height: 100vh;
  max-width: 100%;
  background: url(../img/online.jpg);
  background-position: center;
  background-size: cover;
}
@media (max-width: 450px) {
  .online {
    height: 65vh;
  }
}
.online .online-content {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  padding-top: 5rem;
}
@media (max-width: 1280px) {
  .online .online-content {
    display: none;
  }
}
.online .online-content .online-box {
  padding: 0 1.5rem;
}
.online .online-content .online-box a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: rgba(35, 149, 241, 0.5);
  border-radius: 50%;
  width: 200px;
  height: 200px;
}
.online .online-content .online-box a i {
  font-size: 3rem;
}
.online .online-content .online-box a span {
  padding-top: 1rem;
  font-size: 1.5rem;
}
.online .mobile-online-content {
  display: none;
}
@media (max-width: 1280px) {
  .online .mobile-online-content {
    display: initial;
    text-align: center;
    padding-top: 1rem;
  }
  .online .mobile-online-content .online-box {
    padding: 0.3rem 1rem;
  }
  .online .mobile-online-content .online-box a {
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
    background: rgba(0, 136, 255, 0.5);
    font-size: 1rem;
  }
}
@media (max-width: 450px) {
  .online .mobile-online-content {
    padding-top: 1rem;
  }
}
.online > span {
  text-align: center;
  padding-top: 5rem;
  font-size: 6rem;
  color: rgba(35, 149, 241, 0.5);
}
@media (max-width: 1280px) {
  .online > span {
    padding-top: 1rem;
    font-size: 2rem;
  }
}

.phone-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../img/phone_bg2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
}

.pc-phone-title {
  text-align: center;
}
@media (max-width: 1280px) {
  .pc-phone-title {
    display: none;
  }
}
.pc-phone-title h2 {
  color: #000;
  font-size: 3.5rem;
  font-weight: 400;
}
.pc-phone-title p {
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
}

.mobile-phone-title {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
@media (max-width: 1280px) {
  .mobile-phone-title {
    display: initial;
  }
}
.mobile-phone-title h2 {
  color: #000;
  font-size: 2.3rem;
}
.mobile-phone-title p {
  color: #000;
  font-size: 1rem;
}

.pc-phone-content {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}
@media (max-width: 1280px) {
  .pc-phone-content {
    display: none;
  }
}
.pc-phone-content .phone-box {
  padding: 0rem 2rem;
}
.pc-phone-content .phone-box h4 {
  color: #0088ff;
  border: 1px solid #0088ff;
  padding: 0.3rem 0.7rem;
  font-size: 1.3rem;
}
.pc-phone-content .phone-box div {
  padding: 0.3rem 0;
}
.pc-phone-content .phone-box div span {
  color: #0088ff;
  font-size: 1.2rem;
  border: 1px solid #0088ff;
  padding: 0rem 0.3rem;
}
.pc-phone-content .phone-box div a {
  color: #0088ff;
  font-size: 1.2rem;
  padding: 0rem 0.5rem;
  transition: 0.3s;
}
.pc-phone-content .phone-box div a:hover {
  color: #0033ff;
}

.mobile-phone-content {
  display: none;
}
@media (max-width: 1280px) {
  .mobile-phone-content {
    display: initial;
  }
}
.mobile-phone-content .accordion {
  background: transparent;
}
.mobile-phone-content .accordion .accordion-item {
  border: none;
  margin: 0.5rem 0;
  background: transparent;
}
.mobile-phone-content .accordion .accordion-item .accordion-header {
  padding: 0 1rem;
  background: transparent;
}
.mobile-phone-content .accordion .accordion-item .accordion-header .accordion-button {
  color: #0088ff;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  border: 1px solid #0088ff;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
}
.mobile-phone-content .accordion .accordion-item .accordion-body {
  text-align: center;
}
.mobile-phone-content .accordion .accordion-item .accordion-body > div {
  color: #fff;
  background: rgba(0, 136, 255, 0.4);
  margin: 0.5rem auto;
  padding: 0.5rem;
  font-size: 1.5rem;
  border-radius: 10px;
}
.mobile-phone-content .accordion .accordion-item .accordion-body > div a {
  color: #fff;
  margin: 0 0.5rem;
}
.mobile-phone-content .accordion-button:not(.collapsed) {
  color: red;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
}
.mobile-phone-content .accordion-button:focus {
  box-shadow: none;
}

.pc-phon-slogan {
  text-align: center;
  padding-top: 3rem;
}
@media (max-width: 1280px) {
  .pc-phon-slogan {
    display: none;
  }
}
.pc-phon-slogan P {
  font-size: 1.2rem;
}
.pc-phon-slogan P span {
  color: red;
}
.pc-phon-slogan > span {
  font-size: 5rem;
  line-height: 1;
  font-weight: 600;
  color: rgba(0, 136, 255, 0.4);
}

.mobile-phone-slogan {
  display: none;
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 1280px) {
  .mobile-phone-slogan {
    display: initial;
  }
}
.mobile-phone-slogan > p > span {
  color: red;
}
.mobile-phone-slogan > span {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 600;
  color: rgba(0, 136, 255, 0.4);
}

.info {
  background: #1f1b1c;
  color: #ccc;
}
@media (max-width: 1280px) {
  .info {
    display: none;
  }
}
.info .info-content {
  display: flex;
}
.info .info-box-1,
.info .info-box-2,
.info .info-box-3,
.info .info-box-4 {
  display: flex;
  padding: 3rem 0rem;
}
.info .info-box-1 h5,
.info .info-box-2 h5,
.info .info-box-3 h5,
.info .info-box-4 h5 {
  color: #ff9900;
  padding-left: 1rem;
}
.info .info-box-1 p a,
.info .info-box-2 p a,
.info .info-box-3 p a,
.info .info-box-4 p a {
  color: #ff9900;
  transition: all 0.3s;
}
.info .info-box-1 p a:hover,
.info .info-box-2 p a:hover,
.info .info-box-3 p a:hover,
.info .info-box-4 p a:hover {
  color: #fff;
}
.info .info-box-1 {
  max-width: 25%;
  flex-direction: column;
  align-items: center;
}
.info .info-box-1 .info-box-title {
  display: flex;
  color: #ff9900;
}
.info .info-box-1 .info-box-title img {
  width: 200px;
  height: 65px;
  margin-right: 25px;
}
.info .info-box-1 .info-box-title .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
}
.info .info-box-1 .info-box-title .footer-logo span {
  font-size: 0.85rem;
}
.info .info-box-1 p {
  width: 80%;
  padding-top: 1rem;
  font-size: 1rem;
}
.info .info-box-2 {
  width: 30%;
}
.info .info-box-3 {
  width: 25%;
}
.info .info-box-2,
.info .info-box-3 {
  flex-direction: column;
  padding-left: 3rem;
}
.info .info-box-2 .info-list,
.info .info-box-3 .info-list {
  display: flex;
}
.info .info-box-2 .info-list ul li,
.info .info-box-3 .info-list ul li {
  padding: 0.2rem 1rem;
}
.info .info-box-2 .info-list ul li a,
.info .info-box-3 .info-list ul li a {
  color: #ccc;
  font-size: 1rem;
  transition: 0.3s;
}
.info .info-box-2 .info-list ul li a:hover,
.info .info-box-3 .info-list ul li a:hover {
  color: #ff9900;
}
.info .info-box-4 {
  width: 20%;
  flex-direction: column;
  align-items: center;
}
.info .info-box-4 img {
  max-width: 100%;
  margin-bottom: 1rem;
}
.info .info-box-4 p {
  color: #ff9900;
  line-height: 1;
  font-size: 1.5rem;
}
.info .info-box-4 p:last-child {
  font-size: 2.15rem;
}

.copyright {
  font-size: 0.8rem;
  color: #fff;
  background-color: #333;
  text-align: center;
  padding: 1.5rem 0;
}
.copyright img {
  margin: 0 1rem;
  width: 70px;
}
.copyright .mobile-copyright-title {
  display: none;
}
@media (max-width: 1280px) {
  .copyright .mobile-copyright-title {
    display: initial;
  }
}
.copyright .mobile-copyright-title span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fix-icon {
  position: fixed;
  right: 15px;
  z-index: 998;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  padding-top: 3px;
  transition: all 0.5s;
  box-shadow: 0px 3px 5px #666;
}
.fix-icon img {
  padding-top: 10px;
}

.back-to-top {
  background: #fdbe33;
  bottom: -50px;
}
.back-to-top:hover {
  color: #fdbe33;
  background: #ddd;
}
@media (max-width: 450px) {
  .back-to-top:hover {
    background: #fdbe33;
    color: #ddd;
  }
}

.message-btn {
  background: rgb(28, 79, 156);
  bottom: -50px;
  left: 15px;
}

.phone-btn {
  background: rgb(16, 116, 36);
  bottom: 80px;
  left: 15px;
}
.phone-btn img {
  padding-top: 7px;
}

.line-btn {
  background: #00c300;
  bottom: 140px;
  left: 15px;
}

.yt-btn {
  background: #ff0000;
  bottom: 200px;
  left: 15px;
}

.tiktok-btn {
  background: #000000;
  bottom: 260px;
  left: 15px;
}

.fb-btn {
  background: #1877f2;
  bottom: 320px;
  left: 15px;
}

.ig-btn {
  background: #e1306c;
  bottom: 380px;
  left: 15px;
}

.twitter-btn {
  background: #1da1f2;
  bottom: 420px;
  left: 15px;
}

.line-btn,
.yt-btn,
.tiktok-btn,
.fb-btn,
.ig-btn,
.twitter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-btn i,
.yt-btn i,
.tiktok-btn i,
.fb-btn i,
.ig-btn i,
.twitter-btn i {
  color: #fff;
  font-size: 24px;
}

.back-btn {
  background: rgb(156, 28, 28);
  bottom: 100px;
}
.back-btn:hover {
  background: rgb(78, 28, 28);
}

.teams-title {
  padding: 1rem;
  font-size: 2.5rem;
  position: relative;
}
.teams-title::before {
  content: "";
  width: 5rem;
  height: 0.2rem;
  background-color: #000;
  position: absolute;
  left: 50%;
  bottom: -3%;
  transform: translateX(-50%);
}

.about-page-content {
  background: url(../img/aboutpage.jpg);
  background-position: center;
  background-size: 35%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.about-page-content .about-text h2 {
  font-size: 1.62rem;
  border-left: 2px solid #000;
  padding-left: 1rem;
}
@media (max-width: 450px) {
  .about-page-content .about-text h2 {
    font-size: 1.8rem;
    border-left: none;
    padding-left: 0rem;
  }
}
.about-page-content .about-text h4 {
  font-size: 1.2rem;
  padding: 0.5rem 0;
}
@media (max-width: 450px) {
  .about-page-content .about-text h4 {
    font-size: 1.5rem;
    padding: 0.5rem 0;
  }
}
.about-page-content .about-text p {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5rem 0;
}
.about-page-content .pc-teams {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 3rem;
}
@media (max-width: 1024px) {
  .about-page-content .pc-teams {
    display: none;
  }
}
.about-page-content .pc-teams .team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-page-content .pc-teams .team-box img {
  width: 100%;
  cursor: pointer;
}
.about-page-content .pc-teams .team-box span {
  margin: 0.3rem 0;
}
.about-page-content .pc-teams .team-box .name {
  font-size: 1.5rem;
}
.about-page-content .pc-teams .team-box .job {
  font-size: 1.2rem;
}
.about-page-content .pc-teams .team-box .school {
  font-size: 0.8rem;
}
.about-page-content .m-teams {
  width: 95%;
  margin: 0 auto;
  display: none;
}
@media (max-width: 1024px) {
  .about-page-content .m-teams {
    display: flex;
  }
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide img {
  max-width: 80%;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide .name {
  margin-top: 1rem;
  text-align: center;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide .name span {
  display: block;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide .name span:first-child {
  font-size: 2.5rem;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide .name span:last-child {
  font-size: 1.5rem;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide .school,
.about-page-content .m-teams .swiper-wrapper .swiper-slide .resume,
.about-page-content .m-teams .swiper-wrapper .swiper-slide .expertise {
  margin-top: 1rem;
  text-align: center;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide .school span,
.about-page-content .m-teams .swiper-wrapper .swiper-slide .resume span,
.about-page-content .m-teams .swiper-wrapper .swiper-slide .expertise span {
  display: block;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide .school span:first-child,
.about-page-content .m-teams .swiper-wrapper .swiper-slide .resume span:first-child,
.about-page-content .m-teams .swiper-wrapper .swiper-slide .expertise span:first-child {
  font-size: 1.5rem;
}
.about-page-content .m-teams .swiper-wrapper .swiper-slide .school p,
.about-page-content .m-teams .swiper-wrapper .swiper-slide .resume p,
.about-page-content .m-teams .swiper-wrapper .swiper-slide .expertise p {
  text-align: left;
}
.about-page-content .m-teams .swiper-button-prev,
.about-page-content .m-teams .swiper-button-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  top: 40%;
  background-color: #fff;
  box-shadow: 0.1rem 0.1rem 1rem #aaa;
  opacity: 0.3;
}
.about-page-content .m-teams .swiper-button-prev::after {
  font-size: 1.5rem;
  color: #333;
}
.about-page-content .m-teams .swiper-button-next::after {
  font-size: 1.5rem;
  color: #333;
}
.about-page-content > img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  top: 150px;
  max-width: 90%;
}
@media (max-width: 1280px) {
  .about-page-content > img {
    display: none;
  }
}

.hockey {
  max-width: 90%;
  margin: 0 auto;
}
.hockey .swiper-slide img {
  max-width: 100%;
  border-radius: 30px;
}

.full-bg {
  height: 100vh;
  background: linear-gradient(to right, #5b596a, #7a8099);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9991;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  transition: 0.5s;
}
.full-bg .btn-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.full-bg .content {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
.full-bg .content .teams-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  font-size: 1.2rem;
  padding: 2rem 0;
}
.full-bg .content .teams-text .name {
  color: #fff;
  margin: 1rem 0;
}
@media (max-width: 1550px) {
  .full-bg .content .teams-text .name {
    margin: 0.3rem 0;
  }
}
.full-bg .content .teams-text .name span:first-child {
  font-size: 3rem;
  margin-right: 1rem;
}
.full-bg .content .teams-text .name span:last-child {
  font-size: 1.8rem;
}
.full-bg .content .teams-text .school,
.full-bg .content .teams-text .exp,
.full-bg .content .teams-text .expertise {
  color: #fff;
  margin: 1rem 0;
}
@media (max-width: 1550px) {
  .full-bg .content .teams-text .school,
  .full-bg .content .teams-text .exp,
  .full-bg .content .teams-text .expertise {
    margin: 0.3rem 0;
  }
}
.full-bg .content .teams-text .school span,
.full-bg .content .teams-text .exp span,
.full-bg .content .teams-text .expertise span {
  display: block;
}
.full-bg .content .teams-text .school span:first-child,
.full-bg .content .teams-text .exp span:first-child,
.full-bg .content .teams-text .expertise span:first-child {
  font-size: 1.8rem;
}
.full-bg .content .teams-text > span {
  position: absolute;
  left: 50%;
  bottom: 2%;
  z-index: -1;
  transform: translateX(-50%);
  font-size: 5rem;
  letter-spacing: 0.5rem;
  color: #49495f;
}
@media (max-width: 1550px) {
  .full-bg .content .teams-text > span {
    font-size: 4rem;
    bottom: 1%;
  }
}
@media (max-width: 1280px) {
  .full-bg .content .teams-text > span {
    font-size: 3.5rem;
    bottom: 0;
  }
}
.full-bg .content .teams-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-bg .content .teams-img img {
  max-width: 80%;
}
@media (max-width: 1550px) {
  .full-bg .content .teams-img img {
    max-width: 70%;
  }
}

#team1,
#team2,
#team3,
#team4,
#team5,
#team6,
#team7,
#team8,
#team9,
#team10,
#team11,
#team12,
#team13,
#team14,
#team15 {
  top: -300%;
}

.equipment-page-content {
  padding: 3rem 10rem 10rem 10rem;
}
.equipment-page-content h2 {
  text-align: center;
  font-size: 2.5rem;
}
@media (max-width: 450px) {
  .equipment-page-content h2 {
    padding-top: 2rem;
    font-size: 1.5rem;
  }
}
.equipment-page-content h3 {
  padding: 3rem 0;
  text-align: center;
  color: #0088ff;
}
.equipment-page-content > p {
  text-align: center;
  padding: 0 2rem;
}
.equipment-page-content .equipment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 3rem;
}
.equipment-page-content .equipment-list .item-box {
  padding: 2rem;
  text-align: center;
  border-radius: 3%;
  box-shadow: 0rem 0rem 1.5rem 0.1rem rgba(0, 0, 0, 0.2);
}
.equipment-page-content .equipment-list .item-box img {
  max-width: 100%;
}
.equipment-page-content .equipment-list .item-box p {
  text-align: left;
}
.equipment-page-content .m-equipment-list {
  display: none;
}
.equipment-page-content .m-equipment-list .swiper {
  width: 100%;
  height: 100%;
}
.equipment-page-content .m-equipment-list .swiper-slide {
  height: 650px;
  padding: 2rem 10rem;
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.equipment-page-content .m-equipment-list .item-box {
  height: 550px;
  padding: 2rem 5rem;
  text-align: center;
  border-radius: 3%;
  box-shadow: 0rem 0rem 1.5rem 0.1rem rgba(0, 0, 0, 0.2);
}
.equipment-page-content .m-equipment-list .item-box img {
  max-width: 100%;
}
.equipment-page-content .m-equipment-list .item-box p {
  text-align: left;
}
@media (max-width: 1280px) {
  .equipment-page-content {
    padding: 0;
  }
  .equipment-page-content .equipment-list {
    display: none;
  }
  .equipment-page-content .m-equipment-list {
    display: flex;
  }
}
@media (max-width: 450px) {
  .equipment-page-content .m-equipment-list .swiper-slide {
    padding: 2rem 1rem;
  }
  .equipment-page-content .m-equipment-list .item-box {
    padding: 2rem;
  }
}

.charge-table {
  background: url(../img/charge-bg.jpg);
}
.charge-table h2 {
  text-align: center;
  padding: 1.5rem;
  color: #0088ff;
}
.charge-table p {
  width: 90%;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 1rem;
}
.charge-table table {
  border-spacing: 0.6rem;
  border-collapse: separate;
}
.charge-table table th,
.charge-table table td {
  font-weight: 400;
  border-radius: 15px;
  padding: 1rem;
  border: none;
  box-shadow: 0rem 0.2rem 0.3rem 0.1rem rgba(0, 0, 0, 0.2);
}
.charge-table table thead {
  background: #c2e3f2;
}
.charge-table table thead th {
  text-align: center;
}
.charge-table table thead th:nth-child(1) {
  width: 15%;
}
.charge-table table thead th:nth-child(2) {
  width: 35%;
}
.charge-table table thead th:nth-child(3) {
  width: 28%;
}
.charge-table table thead th:nth-child(4) {
  width: 12%;
}
.charge-table table thead th:nth-child(5) {
  width: 10%;
}
.charge-table table tbody tr:nth-child(n) {
  background: #dbffdc;
}
.charge-table table tbody tr:nth-child(2n) {
  background: #ffedd4;
}
.charge-table table tbody td:nth-child(1),
.charge-table table tbody td:nth-child(4),
.charge-table table tbody td:nth-child(5) {
  text-align: center;
}
@media (max-width: 1280px) {
  .charge-table table {
    display: none;
  }
}
.charge-table .accordion {
  display: none;
}
.charge-table .accordion .accordion-item {
  border: none;
  margin: 0.5rem 0;
}
.charge-table .accordion .accordion-item:nth-child(2n) .accordion-header {
  background: #ddd;
}
.charge-table .accordion .accordion-item .accordion-header {
  padding: 0rem;
  background: #aaa;
}
.charge-table .accordion .accordion-item .accordion-header .accordion-button {
  width: 100%;
  margin: 0 auto;
  background: transparent;
  padding: 1rem 3rem;
  font-size: 1.2rem;
}
.charge-table .accordion .accordion-item .accordion-body {
  text-align: center;
}
.charge-table .accordion .accordion-item .accordion-body .list-box {
  text-align: left;
  background: #ffbb00;
  border-radius: 10px;
  margin: 1rem 0;
  box-shadow: 0rem 0.1rem 0.2rem 0.1rem #ccc;
}
.charge-table .accordion .accordion-item .accordion-body .list-box h5 {
  font-weight: 600;
  padding-left: 1rem;
  padding-top: 1rem;
}
.charge-table .accordion .accordion-item .accordion-body .list-box p {
  padding: 0;
  margin: 0;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
.charge-table .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #ffbb00;
  background-color: #000;
}
.charge-table .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
@media (max-width: 1280px) {
  .charge-table .accordion {
    display: initial;
  }
}

.service-page {
  overflow: hidden;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.service-page .service-bg {
  width: 100%;
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: -1;
}
.service-page .service-bg img {
  filter: blur(5px);
  opacity: 0.2;
  width: 40%;
}
.service-page .service-content {
  padding: 3rem;
  width: 100%;
}
.service-page .service-content h2 {
  text-align: left;
  font-size: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.service-page .service-content h2:first-child {
  text-align: center;
}
.service-page .service-content p,
.service-page .service-content li {
  font-size: 1rem;
  padding: 0.5rem 0;
  line-height: 2;
}
@media (max-width: 1280px) {
  .service-page .service-bg {
    top: 0%;
    left: 50%;
    transform: translateX(-50%) !important;
  }
  .service-page .service-bg img {
    width: 100%;
  }
  .service-page .service-content {
    padding: 3rem 2rem;
  }
}
@media (max-width: 450px) {
  .service-page .service-bg {
    left: 50%;
    transform: translateX(-50%) !important;
  }
  .service-page .service-bg img {
    width: 130%;
  }
}

.example-title {
  position: relative;
  text-align: center;
  color: red;
  padding-top: 3rem;
}
.example-title::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 90px;
  background-color: red;
  bottom: -18%;
  left: 50%;
  transform: translateX(-50%);
}

.example-content {
  padding: 3rem 10rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.example-content .example-box {
  max-width: 100%;
}
.example-content .example-box .box-img {
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 450px) {
  .example-content .example-box .box-img {
    border-radius: 0;
  }
}
.example-content .example-box .box-img img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.example-content .example-box .box-img img:hover {
  transform: scale(1.2);
}
.example-content .example-box .box-text {
  padding: 1rem;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  top: -10%;
  background: #fff;
  box-shadow: 0rem 0rem 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
@media (max-width: 450px) {
  .example-content .example-box .box-text {
    border-radius: 0;
  }
}
.example-content .example-box .box-text a {
  color: #000;
  font-size: 1.3rem;
}
@media (max-width: 1280px) {
  .example-content {
    padding: 3rem;
  }
}
@media (max-width: 450px) {
  .example-content {
    padding: 0rem;
  }
  .example-content .example-box .box-img img {
    max-height: 230px;
  }
  .example-content .example-box .box-text {
    margin: 0;
  }
}

.pagination {
  justify-content: center;
}
.pagination .page-item {
  margin: 0 1rem;
}
.pagination .page-item .page-link {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 1rem;
  color: #666;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-item .page-link.action {
  background: #ddd;
}

.other-content {
  padding-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 0rem;
}
.other-content .other-box {
  position: relative;
}
.other-content .other-box .box-img {
  width: 100%;
  max-height: 330px;
  overflow: hidden;
  position: relative;
}
.other-content .other-box .box-img:hover img {
  transform: scale(1.2);
  filter: brightness(30%);
}
.other-content .other-box .box-img:hover span {
  font-size: 2.5rem;
}
.other-content .other-box .box-img img {
  width: 100%;
  max-height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.other-content .other-box .box-img span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.3s;
}
@media (max-width: 450px) {
  .other-content .other-box .box-img img {
    max-height: 200px;
  }
}

.template-page {
  max-width: 85%;
  margin: 0 auto;
  padding: 3rem;
}
.template-page .title > span {
  color: red;
  font-size: 1.2rem;
}
.template-page .title h2 {
  padding: 1rem 0;
  border-bottom: 1px solid #000;
}
.template-page .content {
  display: flex;
  flex-wrap: nowrap;
}
.template-page .content .content-text {
  flex: 2;
  padding: 3rem 3rem 0rem 0rem;
  line-height: 2;
  font-size: 1rem;
}
.template-page .content .content-img {
  flex: 1;
  padding-top: 3rem;
}
.template-page .content .content-img img {
  border-radius: 20px;
  max-width: 100%;
}
@media (max-width: 1280px) {
  .template-page {
    max-width: 100%;
    padding: 0;
  }
  .template-page .content {
    flex-direction: column-reverse;
  }
  .template-page .content .content-text {
    max-width: 85%;
    margin: 0 auto;
    padding: 0rem;
  }
  .template-page .content .content-img {
    padding-top: 0;
    padding-bottom: 3rem;
  }
  .template-page .content .content-img img {
    box-shadow: none;
    border-radius: 0;
  }
  .template-page .title {
    padding: 1rem 2rem;
  }
  .template-page .title h2 {
    border-bottom: none;
  }
}

.text-main {
  color: #ff9900;
}

.time span,
.time i {
  color: #aaa;
}

.inner-page-title {
  margin: 20px 0;
}

.inner-page-phone {
  font-size: 20px;
  text-align: center;
  text-decoration: underline;
  font-style: italic;
  margin: 20px auto;
}
.inner-page-phone span {
  color: #666;
  background-color: #ccc;
}

.inner-page-line-btn {
  font-size: 30px;
  color: #fff;
  background: #00c300;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.3s;
}
.inner-page-line-btn:hover {
  color: #fff;
  background: #00a300;
}

.inner-page-link {
  transition: all 0.3s;
}
.inner-page-link:hover {
  color: #ff0000;
}

.page-phone-link {
  color: #ff9900;
  transition: all 0.3s;
}
.page-phone-link:hover {
  color: #ff0000;
}

.video-page {
  background: #222;
}

.media-index {
  width: 90%;
  background: #222;
  padding: 100px 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
  gap: 30px;
}
@media (max-width: 1024px) {
  .media-index {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 30;
  }
}
@media (max-width: 1024px) {
  .media-index .yt-box {
    margin-bottom: 30px;
  }
}
.media-index .yt-box img {
  min-width: 100%;
  max-width: 100%;
}
.media-index .yt-box h3 {
  font-size: 20px;
  margin-top: 10px;
  color: #ff9900;
}

.video {
  width: 100%;
  height: 100vh;
  background: url(../img/online.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .video {
    height: 130vh;
  }
}
.video .section-title .text h2,
.video .section-title .text p {
  color: #fff;
}

.video-content {
  padding: 1.5rem 3rem;
}
@media (max-width: 1280px) {
  .video-content {
    padding: 0rem 3rem;
  }
}
.video-content .video-swiper {
  height: 430px;
  padding: 35px 0;
}
@media (max-width: 1024px) {
  .video-content .video-swiper {
    height: 100vh;
  }
}
.video-content .video-swiper .swiper-slide {
  height: 350px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 450px) {
  .video-content .video-swiper .swiper-slide {
    height: calc((100% - 30px) / 3) !important;
  }
}
.video-content .video-swiper .swiper-slide .yt-box {
  width: 100%;
}
.video-content .video-swiper .swiper-slide .yt-box img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 2px #333;
}
.video-content .video-swiper .swiper-slide .yt-box h3 {
  font-size: 18px;
  text-shadow: 0px 0px 5px #fff;
  text-align: left;
  color: #000;
  margin-top: 10px;
}

.video-btn {
  text-align: center;
}
@media (max-width: 1280px) {
  .video-btn {
    padding-top: 0rem;
  }
}
.video-btn .more-btn {
  position: relative;
  top: 50px;
  background: #fff;
  padding: 0.5rem 3rem;
  border-radius: 3rem;
  color: #000;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 450px) {
  .video-btn {
    padding-top: 2rem;
  }
  .video-btn .more-btn {
    top: 0;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

.button-img-transition {
  transition: opacity 0.3s ease;
}/*# sourceMappingURL=main.css.map */