@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;400;500;700&family=Open+Sans:ital,wght@0,500;1,800&display=swap");
/*-------------------------------------------*\
  iehack.scss

  Use
  @include hack($IE-ver),目前使用IE10以上
\*-------------------------------------------*/
/*-------------------------------------------------------------------------------*/
/*    helpers                                                                                   */
/*-------------------------------------------------------------------------------*/
.layoutContent {
  padding: 1.75rem;
  line-height: 1.5;
  color: #202020;
  font-family: "Microsoft Jhenghei", "微軟正黑體", "Trebuchet MS", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.layoutContent::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 813px) {
  .layoutContent {
    padding: 0;
  }
}

.w_line {
  margin: 1.5rem 0;
}
.w_line_s1 {
  border-bottom: 1px solid #bbb9b9;
}
.w_line_s2 {
  border-bottom: 1px dashed #b7b4b4;
}

/*-------------------------------------------------------------------------------*/
/*    Grid                                                                                        */
/*-------------------------------------------------------------------------------*/
.w_row {
  margin: 1rem 0;
  text-align: center;
}
.w_row::after {
  content: "";
  display: table;
  clear: both;
}
.w_row_inside {
  margin: 0 -1.75rem;
}
.w_row_inside::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 813px) {
  .w_row_inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.w_row img {
  text-align: center;
  vertical-align: bottom;
}

.w_half {
  margin: 0 0.5rem;
}
.w_half + .w_half {
  margin-top: 1rem;
}
@media (min-width: 813px) {
  .w_half {
    width: calc(50% - 3.5rem);
    margin: 0 1.75rem;
  }
  .w_half + .w_half {
    margin-top: 0;
  }
  .w_half-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.w_half_baseline {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.w_third {
  margin: 0 0.5rem;
}
@media (min-width: 813px) {
  .w_third {
    width: calc(33.3333333333% - 3.5rem);
    margin: 0 1.75rem 0.75rem;
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
}
.w_third_img {
  margin-bottom: 1rem;
}

@media print {
  .w_half {
    width: calc(50% - 1rem);
    margin: 0 0.5rem;
  }
  .w_half + .w_half {
    margin-top: 0;
  }
  .w_half-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .w_third {
    width: calc(33.3333333333% - 1rem);
    margin: 0 0.5rem;
  }
}
/*-------------------------------------------------------------------------------*/
/*    title 標題樣式                                                             */
/*-------------------------------------------------------------------------------*/
.w_tit_h1, .w_tit_h2, .w_tit_h3, .w_tit_h4 {
  color: #202020;
  line-height: 1.2;
  font-size: 1.875em;
  font-family: sans-serif, "Noto Sans TC";
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.w_tit_h1 {
  font-size: 2.125em;
  font-weight: bold;
}

.w_tit_h2 {
  font-size: 1.875em;
}
.w_tit_h2 span {
  display: block;
  position: relative;
}
.w_tit_h2 span:before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  content: "";
  display: block;
  width: 0.45rem;
  height: 1em;
  background: #7d0000;
}
.w_tit_h2 span p {
  display: inline-block;
  padding-left: 1.5rem;
}

.w_tit_h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 1.75em;
}
.w_tit_h3 .w_tit_sortnum {
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 0.525em;
  font-weight: bold;
  padding-top: 0.25rem;
}
.w_tit_h3 .w_tit_sortnum:after {
  position: absolute;
  top: 1.25rem;
  left: calc(50% - 7.5px);
  content: "";
  width: 15px;
  height: 3px;
  background: #7d0000;
}
.w_tit_h3 .w_tit_sorttxt {
  padding-left: 1rem;
}

.w_tit_h4 {
  font-size: 1.5em;
}
.w_tit_h4 span {
  position: relative;
}
.w_tit_h4 span:before {
  position: absolute;
  top: 0px;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../images/wcm/w_tit_bg.svg) no-repeat;
}
.w_tit_h4 span p {
  display: inline-block;
  padding-left: 2rem;
}

/*-------------------------------------------------------------------------------*/
/*    SubList                                                                                  */
/*-------------------------------------------------------------------------------*/
.w_sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 1.5rem 0;
  counter-reset: num;
}
@media (min-width: 576px) {
  .w_sublist {
    margin: 1.5rem -1.25rem;
  }
}

.w_sublist li {
  width: 100%;
  margin: 0.75rem 0;
}
.w_sublist li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  counter-increment: num;
  min-height: 3rem;
  padding: 3.25rem 2rem 2.25rem;
  color: white;
  font-size: 1.5em;
  background: url(../../images/wcm/w_sublist_bg.svg) no-repeat bottom -4rem right, #080404;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.w_sublist li a:before {
  content: "0" counter(num);
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5em;
  color: #941d27;
  margin-right: 0.5rem;
  line-height: 1;
}
.w_sublist li a:after {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 5.5rem;
  width: 5rem;
  height: 1px;
  background: #757575;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.w_sublist li a:hover, .w_sublist li a:focus {
  font-weight: bold;
  -webkit-transform: translatey(-10px);
      -ms-transform: translatey(-10px);
          transform: translatey(-10px);
  background: url(../../images/wcm/w_sublist_bg.svg) no-repeat bottom -4rem right, #7d0000;
  -webkit-box-shadow: 0 10px 20px rgba(89, 12, 21, 0.35);
          box-shadow: 0 10px 20px rgba(89, 12, 21, 0.35);
}
.w_sublist li a:hover:before, .w_sublist li a:focus:before {
  color: #3e0513;
}
.w_sublist li a:focus {
  outline: 3px dotted #bfa6ff;
}
.w_sublist li a i {
  padding-left: 0.5rem;
}
@media (min-width: 576px) {
  .w_sublist li {
    width: calc(49.5% - 2.5rem);
    margin: 1.25rem;
  }
  .w_sublist li a {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 813px) {
  .w_sublist li {
    width: calc(33% - 2.5rem);
  }
}

/*-------------------------------------------------------------------------------*/
/*    Text                                                                                        */
/*-------------------------------------------------------------------------------*/
.w_txt {
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.75;
}
.w_txt ol {
  list-style-type: decimal;
}
.w_txt ul {
  list-style-type: disc;
}
.w_txt ul {
  padding: 0.25rem 0;
  padding-left: 1rem;
  word-wrap: break-word;
  word-break: break-all;
}
.w_txt ul li {
  position: relative;
  padding-left: 0.5rem;
  list-style-type: none;
  line-height: 1.5;
}
.w_txt ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #941d27;
}
.w_txt ul > ul > li {
  list-style-type: inherit;
}
.w_txt ul > ul > li:before {
  display: none;
}
.w_txt ul > ul > ul {
  list-style-type: circle;
}
.w_txt ul > ol > li {
  list-style-type: inherit;
}
.w_txt ul > ol > li:before {
  display: none;
}
.w_txt ol {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
}
.w_txt ol > li {
  list-style-type: inherit;
}
.w_txt ol > li:before {
  display: none;
}
.w_txt ol > ul > li {
  list-style-type: inherit;
}
.w_txt ol > ul > li:before {
  display: none;
}
.w_txt ol > ul > ul {
  list-style-type: circle;
}
.w_txt a {
  color: #975f14;
  padding: 0.25rem;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}
.w_txt a:hover, .w_txt a:focus {
  color: black;
  background-color: rgba(242, 201, 159, 0.25);
  text-decoration: underline;
}
.w_txt hr {
  border: 0;
  border-bottom: 1px solid #bbb9b9;
}
.w_txt table {
  width: 100%;
  margin: 0.5em 0;
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}
.w_txt table caption {
  padding: 0.5rem;
  color: #b21d23;
}
.w_txt table th, .w_txt table td {
  padding: 0.35rem;
  border: 1px solid #941d27;
  text-align: center;
  vertical-align: middle;
  word-break: break-all;
  word-wrap: break-word;
}
.w_txt table th {
  color: white;
  background-color: #7d0000;
}

.w_txt_bg {
  padding: 1.5rem 1rem;
  background-color: rgba(225, 225, 224, 0.5);
}

.w_txt_column2 {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media (min-width: 576px) {
  .w_txt_column2 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

.w_photo::after {
  content: "";
  display: table;
  clear: both;
}
.w_photo img {
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .w_photo img {
    min-width: 35%;
    max-width: 50%;
  }
  .w_photo_right img {
    float: right;
    margin-left: 0.5rem;
  }
  .w_photo_left img {
    float: left;
    margin-right: 0.5rem;
  }
}

.w_table_even th, .w_table_even td {
  border: 0px !important;
}
.w_table_even tr:nth-child(even) {
  background-color: white;
}
.w_table_even tr:nth-child(odd) {
  background-color: #f3f3f2;
}

.w_table_theme1 table caption {
  color: #00c5ab;
}
.w_table_theme1 table th, .w_table_theme1 table td {
  border: 1px solid #1fffe1;
}
.w_table_theme1 table th {
  background-color: #00c5ab;
}
.w_table_theme1.w_table_even tr:nth-child(even) {
  background-color: white;
}
.w_table_theme1.w_table_even tr:nth-child(odd) {
  background-color: #f3f3f2;
}

.w_table_theme2 table caption {
  color: #23b858;
}
.w_table_theme2 table th, .w_table_theme2 table td {
  border: 1px solid #55df86;
}
.w_table_theme2 table th {
  background-color: #23b858;
}
.w_table_theme2.w_table_even tr:nth-child(even) {
  background-color: white;
}
.w_table_theme2.w_table_even tr:nth-child(odd) {
  background-color: #f3f3f2;
}

.w_table_theme3 table caption {
  color: #edb800;
}
.w_table_theme3 table th, .w_table_theme3 table td {
  border: 1px solid #ffd647;
}
.w_table_theme3 table th {
  background-color: #edb800;
}
.w_table_theme3.w_table_even tr:nth-child(even) {
  background-color: white;
}
.w_table_theme3.w_table_even tr:nth-child(odd) {
  background-color: #f3f3f2;
}

.w_table_theme4 table caption {
  color: #ff8d1e;
}
.w_table_theme4 table th, .w_table_theme4 table td {
  border: 1px solid #ffba77;
}
.w_table_theme4 table th {
  background-color: #ff8d1e;
}
.w_table_theme4.w_table_even tr:nth-child(even) {
  background-color: white;
}
.w_table_theme4.w_table_even tr:nth-child(odd) {
  background-color: #f3f3f2;
}

.w_table_theme5 table caption {
  color: #ff6085;
}
.w_table_theme5 table th, .w_table_theme5 table td {
  border: 1px solid #ffb9c9;
}
.w_table_theme5 table th {
  background-color: #ff6085;
}
.w_table_theme5.w_table_even tr:nth-child(even) {
  background-color: white;
}
.w_table_theme5.w_table_even tr:nth-child(odd) {
  background-color: #f3f3f2;
}

.w_table_theme6 table caption {
  color: #8841a2;
}
.w_table_theme6 table th, .w_table_theme6 table td {
  border: 1px solid #b175c8;
}
.w_table_theme6 table th {
  background-color: #8841a2;
}
.w_table_theme6.w_table_even tr:nth-child(even) {
  background-color: white;
}
.w_table_theme6.w_table_even tr:nth-child(odd) {
  background-color: #f3f3f2;
}

.w_table_theme7 table caption {
  color: #5e71d7;
}
.w_table_theme7 table th, .w_table_theme7 table td {
  border: 1px solid #a5b0e9;
}
.w_table_theme7 table th {
  background-color: #5e71d7;
}
.w_table_theme7.w_table_even tr:nth-child(even) {
  background-color: white;
}
.w_table_theme7.w_table_even tr:nth-child(odd) {
  background-color: #f3f3f2;
}

.w_table_rwd table {
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.w_table_rwd table thead tr {
  background-color: transparent !important;
}
.w_table_rwd table th {
  display: none;
}
.w_table_rwd table tr {
  border-bottom: 1rem solid white;
}
.w_table_rwd table tr:nth-child(even) {
  background-color: #f3f3f2;
}
.w_table_rwd table tr:nth-child(odd) {
  background-color: #f3f3f2;
}
.w_table_rwd table td {
  display: block;
  text-align: left;
  border: none;
  padding: 0.125rem 0.75rem;
}
.w_table_rwd table td:before {
  content: attr(data-th) " ";
  font-weight: bold;
  color: #7d0000;
  margin-right: 0.5rem;
  display: block;
}
.w_table_rwd table td:first-child {
  padding-top: 0.5rem;
}
.w_table_rwd table td:last-child {
  padding-bottom: 0.5rem;
}
@media (min-width: 813px) {
  .w_table_rwd table {
    -webkit-box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
  }
  .w_table_rwd table th, .w_table_rwd table td, .w_table_rwd table tr {
    border: 0px !important;
  }
  .w_table_rwd table th {
    display: table-cell;
  }
  .w_table_rwd table tr:nth-child(even) {
    background-color: white;
  }
  .w_table_rwd table tr:nth-child(odd) {
    background-color: #f3f3f2;
  }
  .w_table_rwd table td {
    display: table-cell;
    text-align: center;
    border: 1px solid #c01c27;
  }
  .w_table_rwd table td:before {
    display: none;
  }
}

.w_table_rwd_thnodata table td:first-child {
  color: white;
  background: #7d0000;
  padding-bottom: 0.5rem;
}
.w_table_rwd_thnodata table td:first-child:before {
  content: " ";
  margin: 0;
}
@media (min-width: 813px) {
  .w_table_rwd_thnodata table td:first-child {
    color: unset;
    color: black;
    background: transparent;
  }
}

@media print {
  .w_txt_column2 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }

  .w_photo img {
    min-width: 35%;
    max-width: 50%;
  }
  .w_photo_right img {
    float: right;
    margin-left: 0.5rem;
  }
  .w_photo_left img {
    float: left;
    margin-right: 0.5rem;
  }
}
/*-------------------------------------------------------------------------------*/
/*    Video                                                                                      */
/*-------------------------------------------------------------------------------*/
.w_video {
  width: 100%;
  max-width: 540px;
  margin: 0.5rem auto;
}
.w_video .templateLongText {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.w_video .templateLongText iframe, .w_video .templateLongText object, .w_video .templateLongText embed, .w_video .templateLongText video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------------------------------------------*/
/*    btn 按鈕樣式                                                               */
/*-------------------------------------------------------------------------------*/
.w_btn {
  padding: 1rem 0;
  text-align: center;
}
.w_btn::after {
  content: "";
  display: table;
  clear: both;
}
.w_btn a {
  border-radius: 5px;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-align: center;
  margin: 0.25rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.w_btn a:focus {
  outline: 1px dotted #b21d23;
}
.w_btn p {
  display: inline-block;
}

.w_btn_s1 a {
  border: 2px solid #b21d23;
  color: white;
  background: #b21d23;
}
.w_btn_s1 a:hover, .w_btn_s1 a:focus {
  background: #86161a;
  border: 2px solid #86161a;
}

.w_btn_s2 a {
  border: 2px solid #b21d23;
  color: #b21d23;
}
.w_btn_s2 a:hover, .w_btn_s2 a:focus {
  color: white;
  background: #86161a;
  border: 2px solid #86161a;
}

.w_sitemap_inner {
  margin-top: 2rem;
}
.w_sitemap_inner a {
  display: block;
}
.w_sitemap_inner a:hover, .w_sitemap_inner a:focus {
  color: #c01c27;
  padding-left: 1rem;
  -webkit-transition: padding 0.5s ease;
  -o-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}
@media (min-width: 576px) {
  .w_sitemap_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}

.site_tit1 {
  font-size: 1.125em;
  font-weight: bold;
  border-bottom: 1px solid #b21d23;
}
.site_tit1 a {
  padding: 0.5rem 0;
  color: #7d0000;
}

.site_item2 {
  margin-top: 0.5rem;
}
.site_item2 a {
  padding: 0.125rem 0;
  color: #202020;
}
.site_item2 a:hover, .site_item2 a:focus {
  padding-left: 1rem;
  -webkit-transition: padding 0.5s ease;
  -o-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}

@media (min-width: 576px) {
  .site_item1 {
    width: 50%;
    padding: 1rem 0.75rem 0;
  }

  .site_item2 ul {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1rem;
  }
}
@media (min-width: 992px) {
  .site_item1 {
    width: 33.3333333333%;
    padding: 1rem 0.75rem 0;
  }
}
@media (min-width: 1200px) {
  .site_item1 {
    width: 25%;
    padding: 1rem 0.75rem 0;
  }
}
@media print {
  .w_sitemap_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .site_item1 {
    width: 50%;
    padding: 1rem 0.75rem 0;
  }

  .site_item2 ul {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1rem;
  }
}
/*-------------------------------------------------------------------------------*/
/*    大事紀                                                                     */
/*-------------------------------------------------------------------------------*/
.timeline_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-left: 3px solid #afacac;
}
.timeline_col:before {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: none repeat scroll 0% 0% white;
  border: 3px solid #941d27;
  z-index: 1;
}
.timeline_col:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #d4d3d3;
  -webkit-transition: 0.75s ease-in-out;
  -o-transition: 0.75s ease-in-out;
  transition: 0.75s ease-in-out;
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
}
.timeline_col:hover:after {
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 0.3;
}
.timeline_tit {
  z-index: 1;
  font-size: 1.875em;
  line-height: 1.2;
  color: #202020;
  width: 100%;
  padding: 0.5rem 0 1rem;
}
.timeline_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.timeline_img {
  z-index: 1;
}
.timeline_img img {
  -webkit-box-shadow: 0px 15px 20px -10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 15px 20px -10px rgba(0, 0, 0, 0.25);
}
.timeline_txt {
  z-index: 1;
  line-height: 1.5;
  padding: 1rem 0;
}

@media (min-width: 813px) {
  .timeline_col {
    padding-bottom: 3rem;
  }

  .timeline_content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .timeline_img {
    width: 50%;
    min-width: 320px;
  }

  .timeline_txt {
    width: 100%;
    padding: 1rem;
  }

  .timeline_img + .timeline_txt {
    width: 50%;
    padding-left: 3rem;
  }

  .col-even .timeline_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .col-even .timeline_txt {
    padding-left: 1rem;
    padding-right: 3rem;
  }
}
/*-------------------------------------------------------------------------------*/
/*    飛航-歷史沿革                                                              */
/*-------------------------------------------------------------------------------*/
.w_history_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.w_history_odd, .w_history_even {
  border-left: 3px solid #afacac;
}
.w_history_content {
  position: relative;
  padding: 0.75rem 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 2.5rem;
  margin-right: 1rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .w_history_content {
    margin-top: 0;
    margin-bottom: -1.5rem;
  }
}
.w_history_content:before {
  content: "";
  position: absolute;
  left: calc(0px - 2.5rem - 16px);
  bottom: 1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 5px solid #941d27;
  background: white;
  z-index: 5;
}
.w_history_content:after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: 1rem;
  /* @include triangle(30px,$bg_odd,left); */
}
.w_history_content:hover, .w_history_content:focus {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}
.w_history_content:hover:before, .w_history_content:focus:before {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #941d27;
}
.w_history_tit {
  color: #541016;
  font-size: 1.875em;
  font-weight: bold;
  padding-bottom: 0.5rem;
}

.w_history_even > div {
  background: rgba(0, 0, 0, 0.5);
}
.w_history_even > div:before {
  border: 5px solid #975f14;
}
.w_history_even > div:hover:before, .w_history_even > div:focus:before {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #975f14;
}
.w_history_even .w_history_tit {
  color: #844f23;
}
@media (min-width: 992px) {
  .w_history_odd, .w_history_even {
    width: 50%;
  }
  .w_history_odd {
    margin-left: calc(50% - 3px);
  }
  .w_history_even {
    border-left: 0px;
    border-right: 3px solid #afacac;
  }
  .w_history_even > div {
    margin-left: 1rem;
    margin-right: 2.5rem;
    background: rgba(0, 0, 0, 0.5);
  }
  .w_history_even > div:before {
    left: auto;
    right: calc(0px - 2.5rem - 16px);
  }
  .w_history_even > div:after {
    left: auto;
    right: -30px;
  }
}

/*-------------------------------------------------------------------------------*/
/*    STEP樣式                                                             */
/*-------------------------------------------------------------------------------*/
.stepstyle01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stepstyle01 .stepstyle_span {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  min-height: 34px;
  color: white;
  text-align: center;
  background: #7d0000;
  border-radius: 100px;
  margin: 0.5rem 0;
}
.stepstyle01 .stepstyle_p {
  display: inline-block;
  width: 100%;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media (min-width: 813px) {
  .stepstyle01 {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 0.75rem 0;
  }
  .stepstyle01 .stepstyle_span {
    margin: 0;
  }
  .stepstyle01 .stepstyle_p {
    padding-top: 0.25rem;
    margin: 0 0 0 0.75rem;
  }
}

/*-------------------------------------------------------------------------------*/
/*    w_busline                                                             */
/*-------------------------------------------------------------------------------*/
div[class^=w_busline] {
  display: inline-block;
}
div[class^=w_busline] a {
  position: relative;
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  margin: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
div[class^=w_busline] a:before {
  content: "\f207";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  position: absolute;
  left: 0.75rem;
}

.w_busline-red a {
  color: #c01c27 !important;
  border-color: #c01c27;
}
.w_busline-red a:hover, .w_busline-red a:focus {
  color: white !important;
  background: #c01c27;
}

.w_busline-orange a {
  color: #ff9422 !important;
  border-color: #ff9422;
}
.w_busline-orange a:hover, .w_busline-orange a:focus {
  color: white !important;
  background: #ff9422;
}

.w_busline-green a {
  color: #009688 !important;
  border-color: #009688;
}
.w_busline-green a:hover, .w_busline-green a:focus {
  color: white !important;
  background: #009688;
}