@import url("https://fonts.googleapis.com/css2?family=Lalezar&family=Noto+Sans+TC:wght@100..900&display=swap");
body {
  font-family: "Inter", serif;
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 46px;
  }
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
a:hover {
  color: #052070;
}

input, button {
  background-color: transparent;
  border: 0;
  outline: none;
}

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

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.3s;
}
.header > .container {
  padding: 1vw 20px;
}
.header_logo {
  width: 300px;
}
.header_info {
  gap: 40px;
}
.header_info_item {
  gap: 17px;
}
.header_info_icon {
  width: 31px;
}
.header_info_text > p {
  margin: 0;
  font-size: 14px;
}
.header_info_link {
  border-radius: 100px;
  background: linear-gradient(150deg, #642FF5 0%, #427AFF 100%);
  gap: 5px;
  padding: 3px 7px 3px 3px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 5px;
}
.header_info_link > img {
  width: 20px;
}
.header_info_link > span {
  font-size: 12px;
  color: #fff;
}
.header.scroll {
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .header > .container {
    padding: 0.5vw 20px;
  }
  .header_logo {
    width: 250px;
  }
  .header_info_text > p {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    height: 46px;
    background-color: #fff;
  }
  .header > .container {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .header_logo {
    height: 26px;
    width: auto;
  }
}

.main {
  overflow: hidden;
}

.banner {
  position: relative;
  z-index: 0;
  margin-bottom: 100px;
}
.banner_pic {
  width: 54%;
  padding-bottom: 29.7%;
  position: absolute;
  top: 15%;
  right: 8.4%;
  z-index: -1;
}
.banner_swiper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner_swiper_item {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner_swiper_item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner_swiper_arrow {
  position: absolute;
  bottom: 13%;
  z-index: 20;
  cursor: pointer;
}
.banner_swiper_arrow > svg {
  width: 43px;
  height: 43px;
}
.banner_swiper_arrow > svg rect {
  transition: 0.3s;
}
.banner_swiper_arrow.banner-prev {
  right: 56%;
}
.banner_swiper_arrow.banner-next {
  right: 9.5%;
}
.banner_swiper_arrow:hover > svg rect {
  fill: #FFB042;
}
.banner_text {
  position: absolute;
  top: 34.64%;
  left: 12.66%;
}
.banner_text_link {
  width: 173px;
  height: 58px;
  border-radius: 100px;
  background: linear-gradient(to right, #FFB42A 0%, #F95020 48%, #FF250D 100%);
  box-shadow: 4px 4px 8px rgba(255, 213, 131, 0.88), inset 3px 4px 3px rgba(255, 255, 255, 0.23);
}
.banner_text_link > span {
  font-size: 22px;
  font-weight: 700;
  margin-right: 5px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.banner_text_link > svg {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}
.banner_text_link > svg rect, .banner_text_link > svg path {
  transition: 0.3s;
}
.banner_text_link:hover > svg {
  transform: translateX(10px);
}
.banner_text_link:hover > svg rect {
  fill: #fff;
}
.banner_text_link:hover > svg path {
  fill: #F95020;
}
.banner_title {
  position: relative;
  margin: 0;
}
.banner_title > span {
  font-weight: 700;
  font-size: 62px;
  line-height: 1.4;
  font-weight: 700;
  display: block;
  letter-spacing: 0.05em;
}
.banner_title_border {
  color: transparent;
  -webkit-text-stroke: 7px #fff;
}
.banner_title_gradient {
  background: linear-gradient(to bottom, #0E0B71 0%, #5EBFFB 95%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.banner_title-bottom {
  margin-left: 170px;
  margin-bottom: 30px;
}
.banner_arrow {
  position: absolute;
  width: 35.63%;
  bottom: 0;
  right: 7.86%;
  transform: translateY(50%);
}
@media screen and (max-width: 1600px) {
  .banner_text {
    top: 32%;
  }
  .banner_title > span {
    font-size: 56px;
  }
  .banner_title-bottom {
    margin-left: 130px;
  }
}
@media screen and (max-width: 1199px) {
  .banner_text {
    top: 28%;
    left: 11.5%;
  }
  .banner_title > span {
    font-size: 48px;
  }
  .banner_title-bottom {
    margin-left: 120px;
  }
  .banner_swiper_arrow.banner-prev {
    right: 54%;
  }
}
@media screen and (max-width: 991px) {
  .banner_pic {
    width: 100%;
    padding-bottom: 63.47%;
    position: relative;
    top: 0;
    right: 0;
    z-index: 0;
  }
  .banner_pic::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #FFDF8E 0%, transparent 100%);
    top: 0;
    left: 0;
    z-index: 5;
    opacity: 0.5;
  }
  .banner_text {
    top: 50%;
    left: 50%;
    width: -moz-fit-content;
    width: fit-content;
    transform: translate(-50%, -50%);
  }
  .banner_swiper_arrow {
    bottom: 50%;
    transform: translateY(50%);
  }
  .banner_swiper_arrow.banner-prev {
    right: inherit;
    left: 10px;
  }
  .banner_swiper_arrow.banner-next {
    right: 10px;
  }
  .banner_title > span {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .banner_title > span {
    font-size: 28px;
    letter-spacing: 0.1em;
  }
  .banner_title_border {
    -webkit-text-stroke: 5px #fff;
  }
  .banner_title-bottom {
    margin-left: 80px;
    margin-bottom: 0;
  }
  .banner_swiper_arrow > svg {
    width: 28px;
    height: 28px;
  }
}

.about {
  padding-bottom: 100px;
  position: relative;
  z-index: 0;
}
.about_top {
  margin-bottom: 110px;
}
.about_top_pic {
  width: 40%;
}
.about_top_pic_main {
  position: relative;
  width: 100%;
  padding-bottom: 92%;
  z-index: 0;
}
.about_top_pic_main > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.about_top_pic_main::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #61817C 0%, #779AD5 100%);
  transform: rotate(5deg) translate(6%, 4%);
  z-index: -1;
}
.about_top_text {
  width: 60%;
  padding-left: 130px;
}
.about_top_text_tab {
  border-bottom: 1px solid #B6B6B6;
  margin-bottom: 13px;
}
.about_top_text_tab .nav-item {
  width: 33.3333%;
}
.about_top_text_tab .nav-link {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  padding: 0 0 20px;
  transition: 0.3s;
  border: 0;
  color: #292929;
  position: relative;
}
.about_top_text_tab .nav-link.active, .about_top_text_tab .nav-link:hover {
  color: #052070;
  transform: scale(1.2);
  background-color: transparent;
}
.about_top_text_tab .nav-link.active::after, .about_top_text_tab .nav-link:hover::after {
  opacity: 1;
}
.about_top_text_tab .nav-link::after {
  position: absolute;
  content: "";
  width: 83.3333333333%;
  height: 5px;
  background-color: #FFB042;
  bottom: 10%;
  left: 50%;
  transition: 0.3s;
  opacity: 0;
  transform: translate(-50%, 50%);
}
.about_top_text_tabContent .tab-pane > p {
  font-size: 23px;
  margin-bottom: 35px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.about_feat {
  margin-left: -12px;
  margin-right: -12px;
}
.about_feat > div {
  padding-left: 12px;
  padding-right: 12px;
}
.about_feat_item {
  padding: 15px;
  background-color: #4C8699;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
}
.about_feat_icon {
  width: 40px;
  margin-right: 10px;
}
.about_feat_title {
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
.about_feat_content {
  margin: 10px 0 0;
  font-size: 20px;
  color: #fff;
  text-align: justify;
}
.about_bottom .row {
  margin-left: -18px;
  margin-right: -18px;
}
.about_bottom .row > div {
  padding-left: 18px;
  padding-right: 18px;
}
.about_bottom_item {
  display: block;
  padding-top: 90px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.about_bottom_item:hover {
  color: #000;
  box-shadow: 0 4px 20px rgba(98, 139, 235, 0.44);
}
.about_bottom_item:hover .about_bottom_text {
  top: calc(100% - 170px);
  height: 170px;
}
.about_bottom_item:hover .about_bottom_pic {
  transform: translateY(-90px);
}
.about_bottom_item:hover .about_bottom_intro {
  position: static;
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.about_bottom_text {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 15px;
  transition: 0.3s;
  z-index: 5;
}
.about_bottom_text h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.about_bottom_pic {
  position: relative;
  width: 100%;
  padding-bottom: 108%;
  transition: 0.3s;
}
.about_bottom_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_bottom_tag {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 15px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  border-radius: 100px;
  color: #fff;
}
.about_bottom_tag.bg-red {
  background-color: #FF5555;
}
.about_bottom_tag.bg-blue {
  background-color: #55A2FF;
}
.about_bottom_tag.bg-green {
  background-color: #84BD2E;
}
.about_bottom_tag.bg-purple {
  background-color: #C771CC;
}
.about_bottom_intro {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  position: absolute;
  margin: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  margin-top: 8px;
}
.about_title {
  position: absolute;
  width: 6.76%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .about_top_text {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .about_bottom .row {
    margin-left: -6px;
    margin-right: -6px;
  }
  .about_bottom .row > div {
    padding-left: 6px;
    padding-right: 6px;
  }
  .about_bottom_item {
    margin-bottom: 15px;
    padding-top: 70px;
  }
  .about_bottom_tag {
    font-size: 12px;
    padding: 3px 8px;
    margin-bottom: 8px;
  }
  .about_bottom_text {
    height: 70px;
  }
  .about_bottom_text h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .about_top_text_tab .nav-link {
    font-size: 18px;
    padding-bottom: 14px;
  }
  .about_top_text_tab .nav-link::after {
    height: 3px;
  }
  .about_top_text_tabContent .tab-pane > p {
    font-size: 16px;
    margin-bottom: 13px;
  }
  .about_feat {
    margin-left: -4px;
    margin-right: -4px;
  }
  .about_feat > div {
    padding-left: 4px;
    padding-right: 4px;
  }
  .about_feat_icon {
    width: 24px;
  }
  .about_feat_title {
    font-size: 16px;
  }
  .about_feat_content {
    font-size: 16px;
  }
}

.news {
  background-color: #F3F3F3;
  padding-bottom: 85px;
}
.news_title {
  background: linear-gradient(to right, #F7C679 0%, #FFBA7E 100%);
  padding: 45px 0;
  margin-bottom: 65px;
}
.news_title .title-common {
  color: #292929;
}
.news_title .title-common::before {
  background-image: url(../img/news-title-1.svg);
}
.news_title .title-common::after {
  background-image: url(../img/news-title-2.svg);
}
.news .row {
  margin-left: -122px;
  margin-right: -122px;
}
.news .row > div {
  padding-left: 122px;
  padding-right: 122px;
}
.news_subtitle {
  position: relative;
  z-index: 0;
  margin-bottom: 5px;
}
.news_subtitle h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 13px;
  line-height: 1;
  font-size: 32px;
  font-weight: 900;
  color: #292929;
  background-color: #F3F3F3;
}
.news_subtitle::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #FFB042;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.news_item {
  display: flex;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid #626262;
}
.news_item:last-child {
  border: 0;
}
.news_time {
  width: 75px;
}
.news_time_date {
  width: 75px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 6px;
}
.news_time_month {
  text-align: center;
  margin: 0;
  color: #383838;
  font-weight: 500;
}
.news_text {
  width: calc(100% - 75px);
  padding-left: 20px;
}
.news_text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news_text p {
  font-size: 20px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news_main.latest .news_time_date {
  background-color: #3C6090;
}
.news_main.hr .news_time_date {
  background-color: #DF7D7D;
}
@media screen and (max-width: 767px) {
  .news {
    padding-bottom: 47px;
  }
  .news_title {
    padding: 20px 0;
    margin-bottom: 25px;
  }
  .news_subtitle h3 {
    font-size: 20px;
  }
  .news_subtitle::after {
    height: 2px;
  }
  .news_item {
    padding: 12px 0;
  }
  .news_time {
    width: 65px;
  }
  .news_time_date {
    width: 65px;
    height: 50px;
    font-size: 26px;
  }
  .news_time_month {
    font-size: 14px;
  }
  .news_text {
    width: calc(100% - 65px);
    padding-left: 10px;
  }
  .news_text h4 {
    font-size: 16px;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
  }
  .news_text p {
    display: none;
  }
}

.title-common {
  font-size: 43px;
  font-weight: 900;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.title-common::before {
  position: absolute;
  content: "";
  width: 66px;
  height: 26px;
  top: 50%;
  right: calc(100% + 10px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.title-common::after {
  position: absolute;
  content: "";
  width: 66px;
  height: 26px;
  top: 50%;
  left: calc(100% + 10px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .title-common {
    font-size: 20px;
  }
  .title-common::before, .title-common::after {
    width: 42px;
    height: 17px;
  }
}

.join {
  padding: 77px 0 50px;
  background-image: url(../img/join-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 4px solid #FF9A2E;
}
.join .title-common {
  color: #052070;
  margin-bottom: 60px;
}
.join .title-common::before {
  background-image: url(../img/join-title-1.svg);
}
.join .title-common::after {
  background-image: url(../img/join-title-2.svg);
}
.join_104 {
  width: 256px;
  height: 72px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #FF7800 0%, #FF7800 48%, #FF250D 100%);
  box-shadow: 4px 4px 8px rgba(255, 213, 131, 0.88), inset 3px 4px 3px rgba(255, 255, 255, 0.33);
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}
.join_104 > img {
  width: 62px;
}
.join_104 > h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.join_company {
  text-align: center;
  font-size: 32px;
  margin-bottom: 23px;
  font-weight: 700;
}
.join_item {
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
  padding: 20px 30px;
}
.join_item_text {
  width: calc(100% - 20px);
}
.join_item_text h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.join_item_text ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.join_item_text ul li {
  font-size: 20px;
  padding-right: 25px;
  position: relative;
}
.join_item_text ul li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.join_item_text ul li:last-child {
  padding-right: 0;
}
.join_item_text ul li:last-child::after {
  display: none;
}
.join_item_arrow {
  width: 20px;
}
.join_more {
  text-align: center;
  color: #052070;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.join_main {
  position: relative;
}
.join .row {
  margin-left: -121px;
  margin-right: -121px;
}
.join .row > div {
  padding-left: 121px;
  padding-right: 121px;
}
@media screen and (max-width: 1199px) {
  .join > .container {
    max-width: inherit;
  }
  .join .row {
    margin-left: -20px;
    margin-right: -20px;
  }
  .join .row > div {
    padding-left: 20px;
    padding-right: 20px;
  }
  .join_104 {
    position: static;
    margin: 0 auto 28px;
    transform: none;
  }
}
@media screen and (max-width: 991px) {
  .join_main {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .join {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  .join .title-common {
    margin-bottom: 33px;
  }
  .join_104 {
    width: 189px;
    height: 53px;
  }
  .join_104 > img {
    width: 49px;
  }
  .join_104 > h3 {
    font-size: 20px;
  }
  .join_company {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .join_item {
    margin-bottom: 10px;
    padding: 10px;
  }
  .join_item_text h5 {
    font-size: 16px;
  }
  .join_item_text ul li {
    font-size: 14px;
  }
  .join_more {
    font-size: 16px;
  }
  .join_main {
    margin-bottom: 30px;
  }
}

.contact {
  padding: 60px 0 80px;
}
.contact_title {
  font-size: 43px;
  font-weight: 700;
  margin: 0;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #052070;
  margin-bottom: 20px;
}
.contact_title::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 5px;
  background-color: #FFB042;
  top: 50%;
  left: calc(100% + 12px);
}
.contact_text {
  width: 45%;
  padding-right: 45px;
}
.contact_text p {
  font-size: 20px;
  margin-bottom: 70px;
}
.contact_text a {
  width: 147px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(30deg, #642FF5 0%, #427AFF 100%);
  box-shadow: 0 2px 4px rgb(120, 192, 255), inset 3px 4px 4px rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.contact_info {
  width: 55%;
}
.contact_info_map {
  width: 50%;
  padding-bottom: 37%;
  position: relative;
  margin-right: 30px;
}
.contact_info_map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact_info_phone {
  width: calc(50% - 32px);
  border-left: 2px solid #2F32E3;
  padding-left: 25px;
  height: 100%;
}
.contact_info_phone_item {
  margin-bottom: 60px;
}
.contact_info_phone_item:last-child {
  margin-bottom: 0;
}
.contact_info_phone_item h3 {
  font-size: 20px;
  color: #6B6B6B;
  margin-bottom: 12px;
  font-weight: 700;
}
.contact_info_phone_item p {
  padding: 15px 20px;
  background-color: #F7F7F7;
  margin: 0;
  font-size: 18px;
}
@media screen and (max-width: 1199px) {
  .contact > .container {
    max-width: inherit;
  }
  .contact_text, .contact_info {
    width: 100%;
  }
  .contact_text {
    margin-bottom: 80px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact_title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .contact_title::after {
    height: 3px;
  }
  .contact_text {
    margin-bottom: 20px;
  }
  .contact_text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .contact_text a {
    width: 130px;
    height: 39px;
    font-size: 16px;
  }
  .contact_info_map {
    width: 100%;
    padding-bottom: 74%;
    margin-right: 0;
    margin-bottom: 18px;
  }
  .contact_info_phone {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
  .contact_info_phone_item {
    margin-bottom: 18px;
  }
  .contact_info_phone_item h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .contact_info_phone_item p {
    padding: 15px 20px;
    font-size: 16px;
  }
}

.footer_top {
  padding: 58px 0 75px;
  background-image: url(../img/footer-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer_logo {
  max-width: 330px;
  width: 100%;
}
.footer_text p {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 13px;
  text-align: center;
  font-family: "Noto Sans TC", serif;
}
.footer_text a {
  background: linear-gradient(30deg, #642FF5 0%, #427AFF 100%);
  padding: 7px 25px;
  border-radius: 100px;
  color: #fff;
  display: flex;
  margin: 0 auto;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
.footer_text a:hover {
  transform: scale(1.2);
}
.footer_contact_inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.footer_contact h3 {
  font-size: 20px;
  font-family: "Work Sans", serif;
  color: #052070;
  margin-bottom: 15px;
  font-weight: 700;
}
.footer_contact form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 265px;
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 100px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
}
.footer_contact form input {
  width: calc(100% - 20px);
}
.footer_contact form input::-moz-placeholder {
  color: #B3B3B3;
}
.footer_contact form input::placeholder {
  color: #B3B3B3;
}
.footer_contact form button {
  padding: 0;
  width: 20px;
}
.footer_contact form button > img {
  width: 100%;
}
.footer_copyright {
  font-size: 14px;
  margin: 0;
  color: #1B1F26;
  text-align: center;
  padding: 13px 0;
  background-color: #7E8BB5;
}
@media screen and (max-width: 991px) {
  .footer_logo {
    display: block;
    margin: 0 auto 30px;
  }
  .footer_text {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */