/*====================================
# 主色調
==================================== */

:root {
  --main: #4712df;
  --Color2: #222124;
  --Color3: #efefef;
  --Color4: #a09da4;
  --Color5: #ff7146;
  --Color6: #ffbc3d;
  scroll-padding-top: 3rem;
  /* 錨點位移 */
}

/*====================================
# 共同設定
==================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-family: 'Roboto', 'Noto Sans TC', Arial, '微軟正黑體', '新細明體', Helvetica, sans-serif;
}

p {
  color: #fff;
  font-size: 21px;
}

ul,
ol {
  color: var(--Color3);
  font-size: 18px;
}

strong {
  font-weight: 800;
}

section {
  position: relative;
  padding: 3rem 1rem;
  z-index: 1;
}

::selection {
  color: var(--Color2);
  background-color: #ced2ff;
}
a{
  word-break: break-word;
}
a:hover {
  color: #ff7146;
  text-decoration: none;
}

hr {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.InnerPage {
  background: url(../img/deco-5.svg) no-repeat 0% 10% fixed;
  background-color: var(--Color2);
}

@media (max-width:768px) {
  .InnerPage {
    background: url(../img/deco-5.svg) no-repeat 0% 100% fixed;
    background-color: var(--Color2);
  }
}

.main-title,
.main-title-w {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem -0.2rem 2rem 0;
  letter-spacing: 0.2rem;
}

.main-title::before,
.main-title-w::before {
  position: absolute;
  content: url(../img/deco.png);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  z-index: -1;
}

.main-title-w {
  color: #fff;
}

.second-title {
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/*  */
.tab-content {
  background-color: var(--Color2);
  border: 1px solid var(--Color3);
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 0.5em;
}

/* link */
.btn-main {
  text-align: center;
  display: block;
}

.btn-main .textInner {
  font-size: 1.8rem;
  display: block;
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1);
  letter-spacing: 3px;
}

.btn-main .textInner:nth-child(2) {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.btn-main a:hover .textInner,
.btn-main a:focus .textInner {
  transform: translateY(-120%);
}

.btn-main a i {
  padding-left: 15px;
}

.btn-main a {
  overflow: hidden;
  position: relative;
  display: inline-block;
  border-radius: 0.5em;
  background-color: var(--main);
  padding: 8px 80px 9px;
  text-align: center;
  font-weight: 500;
  margin: 4rem auto;
  color: #fff;
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-main-w a {
  color: var(--Color2);
  background-color: var(--Color5);
}

.a-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.go-back {
  position: absolute;
  font-size: 28px;
  z-index: 10;
  transform: translate(-200%, -20%);
}

.go-back a {
  color: #121212;
  transition: all 0.2s ease-in-out;
}

.go-back a:hover {
  color: var(--main-color);
}

@media (max-width:576px) {
  .go-back {
    display: none;
  }
}
/* share-btn */
.info-icon {
    padding: 1rem 0 1.5rem;
}

.icon-box {
  position: relative;
    margin-right: 5px;
    display: inline-block;
    background-color: var(--Color5);
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: transform .2s cubic-bezier(0, 3, 0.8, 1.5);
}

.icon-box:hover {
    color: #fff !important;
    transform: scale(1.05);
}

/* =======================================
  # 固定背景
========================================= */

.fix-wrapper {
  position: relative;
  width: 100%;
  z-index: -2;
}

.skbg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: var(--main);
  z-index: -1;
}

.skbg-base {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin-left: -200px;
  width: 580px;
  opacity: 0.5;
  background: linear-gradient(30deg, rgba(3, 1, 36, 0) 0%, rgba(3, 1, 36, 0.25) 50%, rgba(3, 1, 36, 0.7) 100%);
  transform: skewX(45deg);
}

@media (max-width:991px) {
  .skbg-base {
    margin-left: -700px;
  }
}

/*====================================
# sec-foreword
==================================== */
.sec-foreword {
  color: #fff;
  padding: 0 0 2em;
}

.sec-foreword .fwd-box {
  background-color: var(--Color2);
  margin: 0.5rem;
  padding: 1.5rem;
  border-radius: 0.5em;
}

.fwd-box ul li {
  list-style-image: url(../img/deco-xs.png);
}

.sec-foreword .b-box {
  border: 2px solid var(--Color3);
  border-radius: 0.5em;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: url(../img/deco-2.svg) no-repeat 79% 10% fixed;
  min-height: 320px;
}

@media (max-width:1200px) {
  .sec-foreword .b-box {
    min-height: 390px;
  }
}

@media (max-width:991px) {
  .sec-foreword .b-box {
    background: none;
    min-height: 60px;
  }
}

.sec-foreword h1 {
  font-size: 55px;
}

.sec-foreword h2 {
  text-align: center;
  margin: 1rem 0 2rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--Color5);
  position: relative;
}

.sec-foreword h1::after,
.sec-foreword h2::before {
  content: '';
  position: absolute;
  height: 2px;
  background-color: var(--Color3);
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
}

.sec-foreword h1::after {
  bottom: -10px;
}

.sec-foreword h2::before {
  top: -40px;
}

.sec-foreword p {
  text-align: center;
}

.sec-foreword .b-box p {
  font-size: 18px;
}

.sec-foreword h4 {
  text-align: center;
  color: #ffc476;
  font-size: 35px;
}

.sec-foreword h5 {
  text-align: center;
  font-size: 26px;
}




/*====================================
# sec-traffic
==================================== */
.sec-traffic {
  position: relative;
  color: var(--Color3);
}

.sec-traffic::before {
  content: '';
  background: url(../img/deco-3.svg) bottom left no-repeat;
  background-size: contain;
  position: absolute;
  width: 600px;
  height: 857px;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec-traffic .img-box {
  border-radius: 0.5em;
  border: 2px solid var(--Color2);
}

.sec-traffic .trf-box {
  padding: 30px;
  background: linear-gradient(45deg, var(--Color2) 39%, #2a2831 40%, var(--Color2) 100%);
  border-radius: 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec-traffic .trfc-box {
  border: 2px solid var(--Color3);
  border-radius: 0.5em;
  margin: 0;
}

.sec-traffic .img-box-sm {
  padding-right: 0;
  padding-left: 0;
}

.sec-traffic .btn-map {
  color: var(--Color5);
}

.sec-traffic .btn-map:hover {
  color: var(--Color6);
}

.sec-traffic .btn-main {
  text-align: left;
}

.sec-traffic .btn-main a {
  margin: 0.5rem 0;
  padding: 8px 60px 9px;
}

.sec-traffic h3 {
  font-weight: 600;
  line-height: 1.5;
  font-size: 30px;
}

.sec-traffic h4 {
  margin-top: 15px;
  margin-left: 27px;
}

.sec-traffic span {
  font-size: 22px;
}

.metro,
.bus {
  position: relative;
}

.metro h4::before {
  content: url(../img/icon/metro.svg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: auto;
  text-align: center;
  vertical-align: bottom;
  margin-left: 10px;
  margin-top: 12px;
}


.bus h4::before {
  content: url(../img/icon/bus.svg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: auto;
  text-align: center;
  vertical-align: bottom;
  margin-left: 10px;
  margin-top: 12px;
}

@media (max-width:992px) {
  .sec-traffic .img-box-sm {
    background-color: var(--Color2);
    border-radius: 0.5em;
  }

  .sec-traffic .trf-box {
    margin: 10px 0;
    text-align: center;
  }

  .sec-traffic .btn-main {
    text-align: center;
  }

  .sec-traffic::before {
    width: 200px;
    height: 355px;
  }
}

/*====================================
# sec-job
==================================== */
.sec-job {
  margin: 0 3rem 2rem;
  padding: 1.5rem 0.5rem;
  background-color: rgba(34, 33, 36, 0.9);
  border-radius: 0.5em;
}

@media (max-width: 767px) {
  .sec-job {
    margin: 1rem;
  }
}

.sec-job .job-box {
  background-color: #fff;
  border-radius: 0.5em;
  padding: 1.5rem;
}

@media (max-width: 1245px) {
  .sec-job .job-box {
    min-height: 250px;
  }
}

@media (max-width: 992px) {
  .sec-job .job-box {
    min-height: 380px;
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .sec-job .job-box {
    min-height: 450px;
  }
}

@media (max-width: 576px) {
  .sec-job .job-box {
    min-height: 600px;
  }
}

.carousel-inner {
  border-radius: 0.5em;
}

.carousel-item {
  position: relative;
}

.carousel-job .carousel-indicators {
  bottom: -3.5rem;
  right: 0;
  left: 0;
  margin: 0;
}

.carousel-job .carousel-indicators li {
  width: 20px;
  height: 20px;
  background-color: var(--Color3);
  margin-right: 5px;
  margin-left: 5px;
  border-radius: 100%;
}

.job-list {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.job-list li {
  position: relative;
  color: #45446E;
}

.job-list li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: var(--main);
  left: -15px;
  top: 13px;
}

.sec-job .btn-main {
  margin-top: 2.5rem;
}

.sec-job .btn-main a {
  margin-bottom: 0;
}

.sec-job .btn-main p {
  padding: 15px 50px;
  font-size: 22px;
}

@media (max-width: 767px) {
  .sec-job .btn-main a {
    padding: 8px 40px 9px;
  }
}

/*====================================
    sec-partner
==================================== */

.sec-partner {
  margin: 0 3rem 2rem;
  padding: 1.5rem 0.5rem;
  background-color: #fff;
  border-radius: 0.5em;
}

@media (max-width: 767px) {
  .sec-partner {
    margin: 1rem;
  }
}

.sec-partner hr {
  border-top: 1px solid var(--Color3);
}

.sec-partner .level-title {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.3rem;
  padding: 20px 0 0;
}

.partner-img {
  position: relative;
}

.partner-img img {
  transition: .3s ease;
}

.partner-img:hover img {
  transform: scale(1.1);
}