@charset "UTF-8";
/*
*Default ----------------------------------------------------------------
*/
/* line 3, ../sass/basic.scss */
body {
  font-family: "Roboto", "Noto Sans TC", 微軟正黑體, STHeiti, arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.085rem;
  color: #333333;
}
@media screen and (max-width: 576px) {
  /* line 3, ../sass/basic.scss */
  body {
    font-size: 16px;
  }
}
/* line 13, ../sass/basic.scss */
body.no-scroll {
  overflow-y: hidden;
}

/* line 18, ../sass/basic.scss */
a {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
/* line 20, ../sass/basic.scss */
a:hover, a:active, a:focus {
  outline: none;
  text-decoration: none;
}

/* line 26, ../sass/basic.scss */
p {
  margin-bottom: 1.5rem;
}

/* line 30, ../sass/basic.scss */
h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-family: "Roboto", "Noto Sans TC", 微軟正黑體, STHeiti, arial, sans-serif;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

/* line 37, ../sass/basic.scss */
button, input, select, textarea {
  font-family: "Roboto", "Noto Sans TC", 微軟正黑體, STHeiti, arial, sans-serif;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

/* line 41, ../sass/basic.scss */
select, textarea {
  width: 100%;
  border: 1px solid #ced4da;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: #333333;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* line 48, ../sass/basic.scss */
select.custom-select, textarea.custom-select {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
/* line 51, ../sass/basic.scss */
select:focus, select:hover, textarea:focus, textarea:hover {
  color: #10A0E2;
}

/* line 55, ../sass/basic.scss */
.select-wrapper {
  position: relative;
}
/* line 57, ../sass/basic.scss */
.select-wrapper .iconify {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 1.5rem;
  color: #fff;
}
/* line 64, ../sass/basic.scss */
.select-wrapper .cus-select {
  width: 100%;
  padding: 10px 15px;
  font-size: 1.15rem;
  color: #fff !important;
  font-weight: bold;
  background-color: #10A0E2;
}

/* line 74, ../sass/basic.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 79, ../sass/basic.scss */
.custom-control .custom-control-label {
  cursor: pointer;
}
/* line 81, ../sass/basic.scss */
.custom-control .custom-control-label:before {
  background-color: #A3C2DC;
  border-color: #ced4da;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
/* line 86, ../sass/basic.scss */
.custom-control .custom-control-label:before, .custom-control .custom-control-label:after {
  top: 0.2rem;
}
/* line 92, ../sass/basic.scss */
.custom-control .custom-control-input:checked ~ .custom-control-label:before {
  background-color: #10A0E2;
  border-color: #10A0E2;
}
/* line 98, ../sass/basic.scss */
.custom-control .custom-control-description {
  padding-top: 3px;
}
/* line 102, ../sass/basic.scss */
.custom-control.custom-radio:not(:last-of-type) {
  margin-bottom: 8px;
}
/* line 105, ../sass/basic.scss */
.custom-control.custom-radio .custom-control-label {
  padding-left: 8px;
}
/* line 110, ../sass/basic.scss */
.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
  background: none;
}

/* line 117, ../sass/basic.scss */
::-webkit-selection {
  color: #49C0C8;
  background: #102544;
}

/* line 121, ../sass/basic.scss */
::-moz-selection {
  color: #49C0C8;
  background: #102544;
}

/* line 125, ../sass/basic.scss */
::selection {
  color: #49C0C8;
  background: #102544;
}

/* line 3, ../sass/header.scss */
#header {
  position: relative;
  width: 100%;
  background-color: #10A0E2;
  z-index: 99;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* line 11, ../sass/header.scss */
#header nav .logo {
  display: block;
  font-weight: bold;
}
/* line 14, ../sass/header.scss */
#header nav .logo a {
  display: block;
  color: #fff;
  font-size: 2rem;
}
/* line 21, ../sass/header.scss */
#header nav .navbar-nav li {
  position: relative;
  list-style: none;
}
/* line 26, ../sass/header.scss */
#header nav .menu {
  display: none;
  padding: 0;
  z-index: 99;
  cursor: pointer;
}
/* line 31, ../sass/header.scss */
#header nav .menu .burger {
  position: relative;
  width: 26px;
  height: 40px;
  z-index: 1001;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 38, ../sass/header.scss */
#header nav .menu .burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
/* line 49, ../sass/header.scss */
#header nav .menu .burger span:nth-child(1) {
  top: 12px;
}
/* line 52, ../sass/header.scss */
#header nav .menu .burger span:nth-child(2) {
  top: 19px;
}
/* line 55, ../sass/header.scss */
#header nav .menu .burger span:nth-child(3) {
  top: 26px;
}
/* line 61, ../sass/header.scss */
#header nav .menu .active span {
  background: #064F84;
}
/* line 63, ../sass/header.scss */
#header nav .menu .active span:nth-child(1) {
  top: 21px;
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* line 67, ../sass/header.scss */
#header nav .menu .active span:nth-child(2) {
  opacity: 0;
  left: -200px;
}
/* line 71, ../sass/header.scss */
#header nav .menu .active span:nth-child(3) {
  top: 21px;
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/* line 79, ../sass/header.scss */
#header.fixed {
  position: fixed;
  top: 0;
}
/* line 84, ../sass/header.scss */
#header.fixed nav .logo a {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  /* line 91, ../sass/header.scss */
  #header nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  /* line 95, ../sass/header.scss */
  #header nav .logo a {
    font-size: 2.5rem;
  }
  /* line 101, ../sass/header.scss */
  #header nav .navbar-nav li a {
    position: relative;
    padding: 0 20px;
    font-weight: normal;
    text-align: center;
    color: #fff;
  }
  /* line 107, ../sass/header.scss */
  #header nav .navbar-nav li a:after {
    content: "";
    display: block;
    border-bottom: 1px solid #fff;
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: transform 250ms ease-in-out;
    -moz-transition: transform 250ms ease-in-out;
    -o-transition: transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out;
  }
  /* line 117, ../sass/header.scss */
  #header nav .navbar-nav li:hover a:after, #header nav .navbar-nav li:active a:after, #header nav .navbar-nav li.active a:after {
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -moz-transform: transform-origin(0%, 0%);
    -o-transform: transform-origin(0%, 0%);
    -ms-transform: transform-origin(0%, 0%);
    -webkit-transform: transform-origin(0%, 0%);
    transform: transform-origin(0%, 0%);
  }
  /* line 129, ../sass/header.scss */
  #header.fixed nav .logo a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  /* line 137, ../sass/header.scss */
  #header .offcanvas-collapse {
    position: fixed;
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: rgba(16, 160, 226, 0.97);
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: left, visibility;
  }
  /* line 150, ../sass/header.scss */
  #header .offcanvas-collapse.open {
    left: 0;
    visibility: visible;
    z-index: 999;
  }
  /* line 155, ../sass/header.scss */
  #header .offcanvas-collapse .navbar-nav {
    position: relative;
    padding: 2rem 0;
  }
  /* line 158, ../sass/header.scss */
  #header .offcanvas-collapse .navbar-nav li {
    width: 100%;
  }
  /* line 160, ../sass/header.scss */
  #header .offcanvas-collapse .navbar-nav li a {
    padding: 0.75rem 0.25rem;
    font-size: 18px;
    color: #fff;
    text-align: center;
  }
  /* line 165, ../sass/header.scss */
  #header .offcanvas-collapse .navbar-nav li a.nav-link {
    font-weight: 500;
    letter-spacing: 0.5rem;
  }
  /* line 173, ../sass/header.scss */
  #header .menu {
    display: block !important;
  }
}

/* line 3, ../sass/footer.scss */
#footer {
  position: relative;
  font-size: 0.95rem;
}
/* line 6, ../sass/footer.scss */
#footer p {
  margin-bottom: 0;
}
/* line 9, ../sass/footer.scss */
#footer .copyright {
  font-weight: 200;
  font-size: 0.85rem;
  padding: 5px 0;
  margin-bottom: 0;
  color: #fff;
  background-color: #6ACBEE;
  text-align: center;
}
/* line 17, ../sass/footer.scss */
#footer .copyright a {
  display: inline-block;
  padding-right: 8px;
  color: #fff;
}
/* line 21, ../sass/footer.scss */
#footer .copyright a:last-of-type {
  padding-right: 0;
}
/* line 24, ../sass/footer.scss */
#footer .copyright a.elink {
  color: #f4c51c;
  font-weight: normal;
}

/* line 3, ../sass/button.scss */
.btn {
  min-width: 150px;
  padding: 7px 20px;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: ease-in-out 0.35s;
  -moz-transition: ease-in-out 0.35s;
  -o-transition: ease-in-out 0.35s;
  transition: ease-in-out 0.35s;
  z-index: 2;
}
/* line 14, ../sass/button.scss */
.btn.btn-sm {
  min-width: auto;
  padding: 5px 15px;
}
/* line 18, ../sass/button.scss */
.btn:hover {
  text-decoration: none;
  outline: none;
}
/* line 22, ../sass/button.scss */
.btn:active {
  -moz-transform: scale(0.96);
  -o-transform: scale(0.96);
  -ms-transform: scale(0.96);
  -webkit-transform: scale(0.96);
  transform: scale(0.96);
}

/* 主要：確認/執行鍵 */
/* line 27, ../sass/button.scss */
.btn-primary, .btn-primary.disabled {
  background-color: #10A0E2;
  border-color: #10A0E2;
}
/* line 30, ../sass/button.scss */
.btn-primary:hover, .btn-primary:active, .btn-primary.disabled:hover, .btn-primary.disabled:active {
  background-color: #064F84;
  border-color: #064F84;
}

/* line 35, ../sass/button.scss */
.btn-primary.disabled {
  cursor: not-allowed;
}

/* 次要：取消/返回鍵 */
/* line 39, ../sass/button.scss */
.btn-light {
  background-color: rgba(153, 153, 153, 0.05);
  border-color: #A3C2DC;
  color: #999;
}
/* line 43, ../sass/button.scss */
.btn-light:hover, .btn-light:active {
  background-color: rgba(153, 153, 153, 0.1);
  border-color: rgba(153, 153, 153, 0.1);
  color: #333333;
}

/* 次要：選項/執行鍵 */
/* line 50, ../sass/button.scss */
.btn-outline {
  position: relative;
  background-color: transparent;
  border-color: #10A0E2;
  color: #10A0E2;
  border-width: 2px;
  overflow: hidden;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
/* line 58, ../sass/button.scss */
.btn-outline:before {
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 42px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background-color: #10A0E2;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
/* line 71, ../sass/button.scss */
.btn-outline:hover, .btn-outline:active {
  background-color: transparent;
  border-color: #6ACBEE;
  color: #fff;
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
}
/* line 76, ../sass/button.scss */
.btn-outline:hover:before, .btn-outline:active:before {
  width: 100%;
}

/* line 4, ../sass/content.scss */
#gutters {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0 solid #10A0E2;
  z-index: 1000;
  pointer-events: none;
  -webkit-transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 15, ../sass/content.scss */
#page {
  width: 100%;
  overflow-x: hidden;
}

/* line 19, ../sass/content.scss */
.img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* line 24, ../sass/content.scss */
.img:before {
  content: "";
  display: block;
  padding-bottom: 66.67%;
}

/* line 30, ../sass/content.scss */
section {
  position: relative;
  padding-top: 1.5rem;
}

/* line 36, ../sass/content.scss */
#main section#info {
  padding: 40px 0;
}
/* line 39, ../sass/content.scss */
#main section#info .text ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 44, ../sass/content.scss */
#main section#info .text ul.info li {
  padding-bottom: 15px;
  list-style: none;
}
/* line 47, ../sass/content.scss */
#main section#info .text ul.info li span {
  position: absolute;
}
/* line 49, ../sass/content.scss */
#main section#info .text ul.info li span .iconify {
  text-align: center;
  font-size: 1.75rem;
  color: #6ACBEE;
}
/* line 55, ../sass/content.scss */
#main section#info .text ul.info li p {
  position: relative;
  padding-left: 40px;
  margin-bottom: 0;
  color: #333333;
}
/* line 60, ../sass/content.scss */
#main section#info .text ul.info li p a {
  color: #333333;
  font-size: 1.05rem;
}
/* line 68, ../sass/content.scss */
#main section#info .text ul.keyword li {
  display: inline-block;
}
/* line 70, ../sass/content.scss */
#main section#info .text ul.keyword li a {
  font-size: 0.95rem;
  color: #333333;
}
/* line 75, ../sass/content.scss */
#main section#info .text ul.keyword li:not(:last-of-type):after {
  content: "|";
  display: inline-block;
  padding-right: 3px;
  color: #999;
}
/* line 81, ../sass/content.scss */
#main section#info .text ul.keyword li:not(:last-of-type) a {
  padding-right: 8px;
}
/* line 88, ../sass/content.scss */
#main section#info .text h1 {
  font-weight: bold;
  color: #10A0E2;
}
/* line 92, ../sass/content.scss */
#main section#info .text .phone {
  display: block;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #064F84;
}
/* line 97, ../sass/content.scss */
#main section#info .text .phone .ps {
  display: block;
  font-size: 1rem;
  color: #10A0E2;
}
/* line 104, ../sass/content.scss */
#main section#info #map {
  position: relative;
  height: 400px;
}
@media screen and (max-width: 767px) {
  /* line 109, ../sass/content.scss */
  #main section#info .text {
    margin-bottom: 30px;
  }
  /* line 112, ../sass/content.scss */
  #main section#info #map {
    height: 250px;
  }
}
/* line 118, ../sass/content.scss */
#main .title-set {
  position: relative;
  text-align: center;
}
/* line 121, ../sass/content.scss */
#main .title-set .title {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 12px;
  letter-spacing: 0.5rem;
  font-weight: normal;
}
/* line 127, ../sass/content.scss */
#main .title-set .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 60px;
  height: 3px;
  background-color: #6ACBEE;
  text-align: center;
}
/* line 141, ../sass/content.scss */
#main .breadcrumb {
  padding: 40px 0 50px;
  margin: 0;
  background: transparent;
}
/* line 146, ../sass/content.scss */
#main .breadcrumb li:before {
  padding-right: 0.15rem;
  color: #064F84;
}
/* line 150, ../sass/content.scss */
#main .breadcrumb li a {
  color: #999;
  font-size: 0.85rem;
}
/* line 155, ../sass/content.scss */
#main .breadcrumb li.active a {
  color: #064F84;
}
@media screen and (max-width: 576px) {
  /* line 141, ../sass/content.scss */
  #main .breadcrumb {
    padding: 30px 0;
  }
}
/* line 164, ../sass/content.scss */
#main .pagination {
  margin-top: 1.5rem;
  margin-bottom: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
/* line 168, ../sass/content.scss */
#main .pagination li {
  counter-increment: pagination;
}
/* line 170, ../sass/content.scss */
#main .pagination li a {
  position: relative;
  color: #999;
  background-color: transparent;
  border: none;
  font-size: 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
/* line 177, ../sass/content.scss */
#main .pagination li a:after {
  content: "";
  display: block;
  border-bottom: solid 2px;
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out;
  -o-transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
}
/* line 184, ../sass/content.scss */
#main .pagination li a.rotate {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
/* line 189, ../sass/content.scss */
#main .pagination li:hover a, #main .pagination li:active a, #main .pagination li.active a {
  color: #10A0E2;
}
/* line 191, ../sass/content.scss */
#main .pagination li:hover a:after, #main .pagination li:active a:after, #main .pagination li.active a:after {
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -moz-transform: transform-origin(0%, 50%);
  -o-transform: transform-origin(0%, 50%);
  -ms-transform: transform-origin(0%, 50%);
  -webkit-transform: transform-origin(0%, 50%);
  transform: transform-origin(0%, 50%);
}
/* line 198, ../sass/content.scss */
#main .pagination li.active a {
  font-weight: bold;
}
/* line 203, ../sass/content.scss */
#main .pagination li:first-child a, #main .pagination li:last-child a {
  display: inline-block;
}
/* line 207, ../sass/content.scss */
#main .pagination li:nth-child(2) {
  counter-reset: pagination;
}
/* line 210, ../sass/content.scss */
#main .pagination li:nth-last-child(2) {
  display: inline-block;
}
/* line 212, ../sass/content.scss */
#main .pagination li:nth-last-child(2) a {
  display: inline-block;
}
/* line 218, ../sass/content.scss */
#main .more {
  font-size: 0.95rem;
}

/* line 222, ../sass/content.scss */
.gototop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 89;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
/* line 230, ../sass/content.scss */
.gototop a {
  min-width: auto;
  font-size: 0.85rem;
}
/* line 233, ../sass/content.scss */
.gototop a .iconify {
  font-size: 1.5rem;
}
/* line 237, ../sass/content.scss */
.gototop.active {
  opacity: 0.75;
}
/* line 240, ../sass/content.scss */
.gototop:hover, .gototop:active {
  opacity: 1;
}
@media screen and (max-width: 576px) {
  /* line 222, ../sass/content.scss */
  .gototop {
    right: 15px;
    bottom: 50px;
  }
}

/* line 249, ../sass/content.scss */
.hp-txt {
  font-size: 0.85rem;
  color: #999;
}

/* line 12, ../sass/news.scss */
.text section:not(#news) .context-bg {
  padding-bottom: 40px;
  border-bottom: 1px solid #064F84;
}
/* line 18, ../sass/news.scss */
.text #news .news-list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
/* line 22, ../sass/news.scss */
.text #news .news-list li {
  position: relative;
  border-bottom: 1px dashed rgba(6, 79, 132, 0.5);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
/* line 26, ../sass/news.scss */
.text #news .news-list li .date {
  position: absolute;
  top: 16px;
  color: #6ACBEE;
  font-size: 0.9rem;
  letter-spacing: 0.025rem;
  font-family: "Roboto", "微軟正黑體", STHeiti, arial, sans-serif;
}
/* line 34, ../sass/news.scss */
.text #news .news-list li .news-title {
  display: block;
  position: relative;
  padding: 15px 90px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333333;
  overflow: hidden;
}
/* line 42, ../sass/news.scss */
.text #news .news-list li .news-title .more {
  display: block;
  position: absolute;
  top: 9px;
  right: -16px;
  color: #10A0E2;
}
/* line 48, ../sass/news.scss */
.text #news .news-list li .news-title .more .iconify {
  margin-left: 2px;
}
/* line 54, ../sass/news.scss */
.text #news .news-list li:hover .news-title {
  color: #10A0E2;
}
@media screen and (min-width: 992px) {
  /* line 61, ../sass/news.scss */
  .text #news .news-list li .news-title {
    padding-left: 120px;
  }
}
/* line 69, ../sass/news.scss */
.text #news .context-bg .news-title .date {
  display: block;
  margin-bottom: 10px;
  color: #6ACBEE;
}
/* line 74, ../sass/news.scss */
.text #news .context-bg .news-title .title {
  color: #064F84;
  text-align: left;
  letter-spacing: 0.05rem;
  margin-bottom: 30px;
}
/* line 81, ../sass/news.scss */
.text #news .context-bg .border-tb {
  padding: 30px 0;
  border-top: 1px solid #064F84;
  border-bottom: 1px solid #064F84;
}
/* line 86, ../sass/news.scss */
.text #news .context-bg .act-btns {
  padding: 0;
  margin: 0;
  margin-top: 30px;
  text-align: center;
}
/* line 91, ../sass/news.scss */
.text #news .context-bg .act-btns li {
  display: inline-block;
  padding: 0 0.5rem;
  list-style: none;
}
/* line 95, ../sass/news.scss */
.text #news .context-bg .act-btns li .btn {
  min-width: auto;
  font-size: 0.85rem;
}
@media screen and (max-width: 576px) {
  /* line 105, ../sass/news.scss */
  .text #news .context-bg .act-btns li {
    padding: 0;
  }
}
/* line 112, ../sass/news.scss */
.text .link {
  color: #6ACBEE;
  font-size: 0.85rem;
}
