@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans TC", "Arial", sans-serif, "微軟正黑體";
  font-size: 16px;
  color: #5A5A5A;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

.w-1920 {
  max-width: 1920px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

a,
a:hover {
  text-decoration: none;
}

.checkout-btn {
  outline: 1px solid #333333;
  padding: 6px 10px;
  border-radius: 20px;
  color: #333333;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) {
  .checkout-btn {
    padding: 8px 20px;
  }
}
.checkout-btn::before {
  content: "";
  position: absolute;
  background-color: #053C7E;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all ease-in-out 0.3s;
}
.checkout-btn:hover {
  outline: none;
  color: #ffffff;
  transition: all ease-in-out 0.3s;
}
.checkout-btn:hover::before {
  width: 100%;
  transition: all ease-in-out 0.3s;
}

.page a {
  color: #aaaaaa;
  padding: 3px;
  margin: 3px;
}

.page a.active {
  text-decoration: underline;
}

.mainBtn {
  background-color: #053C7E;
  border-radius: 2rem;
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  width: 180px;
  display: block;
}

.bg-main {
  background-color: #053C7E;
}

.text-sub {
  color: #60B2DB;
}

.text-main {
  color: #053C7E;
}

.text-lightBlack {
  color: #5A5A5A;
}

.text-darkBlack {
  color: #333333;
}

.text-white {
  color: #ffffff;
}

.text-nav {
  color: #666666;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-32 {
  font-size: 32px;
}

.fs-48 {
  font-size: 48px;
}

.w-1920 {
  max-width: 1920px;
  margin: 0 auto;
}

.mb-1rem {
  margin-bottom: 1rem;
}

.mb-2rem {
  margin-bottom: 2rem;
}

.mb-3rem {
  margin-bottom: 3rem;
}

.mb-4rem {
  margin-bottom: 4rem;
}

.mainbg {
  background-color: #EAEFF3;
}
@media (min-width: 992px) {
  .mainbg {
    background-color: transparent;
  }
}

.subbg {
  background-color: #D7E2EA;
}

.mainBtn {
  color: var(--white);
  background-color: #053C7E;
}

.mainBtn:hover {
  color: var(--white);
}

.margin-r-s {
  margin-right: 0;
}
@media (min-width: 992px) {
  .margin-r-s {
    margin-right: -1.5rem;
  }
}

.margin-l-s {
  margin-left: 0;
}
@media (min-width: 992px) {
  .margin-l-s {
    margin-left: -1.5rem;
  }
}

.gotop {
  position: fixed;
  right: 1%;
  bottom: 90px;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 998;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background-color: #60B2DB;
  border: 1px solid #60B2DB;
  transition: all 0.5s;
  animation: 2s arrowTop ease-out infinite;
}

@keyframes arrowTop {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20%);
  }
  60% {
    transform: translateY(-10%);
  }
}
/* 手機漢堡選單 */
.menu-icon__cheeckbox {
  display: none;
}

.menu-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 65px;
  height: 65px;
  cursor: pointer;
  display: block;
  background-color: #053C7E;
  margin-bottom: 0;
  z-index: 1001;
}
@media (min-width: 1200px) {
  .menu-icon {
    display: none;
  }
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 12px;
}

.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background-color: var(--white);
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
  top: 0;
}
.menu-icon span:last-of-type {
  bottom: 0;
}

.menu-icon__cheeckbox:checked ~ .menu-icon div span:first-of-type {
  transform: rotate(45deg);
  top: 4px;
}

.menu-icon__cheeckbox:checked ~ .menu-icon div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}

/* 手機漢堡選單end */
/* 主選單開始 */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  min-height: 64px;
  background: var(--white);
  z-index: 100;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
  .navbar {
    min-height: 70px;
    border-top: 3px solid #60B2DB;
  }
}

.navbar-header {
  width: 100%;
}
.navbar-header .navbar-collapse {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .navbar-header .navbar-collapse {
    flex-direction: row;
    flex: 0 0 calc(100% - 220px);
    width: calc(100% - 220px);
    height: auto;
    opacity: 1;
    visibility: visible;
    position: relative;
  }
}
@media (min-width: 992px) {
  .navbar-header .navbar-collapse ul {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .navbar-header .navbar-collapse ul {
    padding: 0 1.6rem;
  }
}

#menu-link:checked ~ .navbar-collapse {
  opacity: 1;
  top: 64px;
  visibility: visible;
}

.nav li {
  flex: 0 0 100%;
}
@media (min-width: 1200px) {
  .nav li {
    flex: 0 0 auto;
  }
  .nav li:not(:last-child) a::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #eaeaea;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.nav li a {
  color: #5A5A5A;
  padding: 0.8rem 1rem;
  position: relative;
  font-weight: 500;
  display: block;
  text-align: center;
  transition: all 0.3s ease-in;
}
@media (min-width: 992px) {
  .nav li a {
    padding: 1.3rem 1rem;
  }
}
.nav li a span {
  color: #F83D02;
}
.nav li a:hover {
  color: #60B2DB;
}
.nav li a.active {
  position: relative;
  color: #60B2DB;
}
.nav li a.active::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #60B2DB;
}

.logo {
  width: 180px;
  padding: 10px 5px;
}
.logo a {
  width: 100%;
  height: 100%;
  display: block;
}

footer {
  background-color: #2a2a2a;
  padding: 3rem 0 1rem;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
}
footer ul li {
  flex: 0 0 50%;
  width: 50%;
  margin-bottom: 12px;
}
footer ul a {
  font-weight: 300;
  color: #ffffff;
}
footer ul a:hover {
  color: #ffffff;
}
footer .text {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 300;
}
footer .text h5 {
  font-size: 1rem;
}
footer a {
  color: var(--white);
}
footer a:hover {
  text-decoration: underline;
  color: var(--white);
}
footer .copy {
  padding: 1rem 0 0;
  border-top: 1px solid #5a5a5a;
}
footer .copy .photonic a {
  color: #ffffff;
}
footer .copy .photonic .item a {
  color: #ffffff;
}
footer .photonic {
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0.6;
}
footer .photonic .item:not(:first-child)::before {
  content: "/";
  padding: 5px;
}

.home-slider {
  margin-top: 60px;
  position: relative;
  display: none;
  line-height: 0;
}
@media (min-width: 1200px) {
  .home-slider {
    margin-top: 70px;
    display: block;
  }
}
.home-slider .item a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .home-slider .item a {
    padding-bottom: 18%;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.home-slider-m {
  display: block;
  margin-top: 60px;
  overflow: hidden;
  position: relative;
  line-height: 0;
}
@media (min-width: 1200px) {
  .home-slider-m {
    display: none;
  }
}
.home-slider-m .item {
  width: 100%;
}
.home-slider-m .item a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 108%;
}

.home-service-bank, .home-service-car {
  background: url(/public/frontEndPackage/images/home_bg.png) no-repeat center/cover;
  padding: 3rem 0;
}

.textbox {
  padding: 0 0;
}
@media (min-width: 992px) {
  .textbox {
    padding: 3rem;
  }
}
.textbox .name {
  color: #60B2DB;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  display: inline-block;
}
.textbox .title {
  color: #053C7E;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.textbox .title::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #60B2DB;
  position: absolute;
  left: 0;
  bottom: 0;
}
.textbox .stitle {
  font-size: 1rem;
  color: var(--white);
  background-color: #60B2DB;
  display: inline-block;
  border-radius: 1rem 1rem 0 0;
  padding: 0.5rem 1.2rem;
}
.textbox ul {
  margin-bottom: 1rem;
}

.home-service-pro {
  max-width: 1920px;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  padding: 3rem 0;
}
.home-service-pro .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.home-service-pro .name {
  color: #FFE500;
}
.home-service-pro .title, .home-service-pro .text {
  color: var(--white);
}

.home-service-house {
  background: linear-gradient(179deg, #E2ECF1 8.49%, #D7E3EA 32.49%, #D1DFE7 98.66%);
}
.home-service-house .content {
  max-width: 1920px;
  margin: auto;
}
.home-service-house .content .img {
  padding-bottom: 60%;
  background-size: cover;
  width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  .home-service-house .content .img {
    padding-bottom: 30%;
    flex: 0 0 50%;
    width: 50%;
  }
}
.home-service-house .content .textbox {
  align-content: center;
}
@media (min-width: 992px) {
  .home-service-house .content .textbox {
    flex: 0 0 50%;
    width: 50%;
  }
}

.home-mov {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}
@media (min-width: 992px) {
  .home-mov {
    padding-bottom: 45%;
  }
}
.home-mov iframe {
  position: absolute;
  height: 100%;
  width: 100%;
}

.home-case {
  padding: 3rem 0 2rem;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .home-case {
    padding: 4rem 0;
  }
}
.home-case .title {
  text-align: center;
  color: var(--white);
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
}
.home-case .title::before {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #60B2DB;
  position: absolute;
  bottom: 0;
}
.home-case .item .head {
  width: 120px;
  height: 120px;
  margin: 0.5rem auto;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  background-color: #053C7E;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.home-case .item .head .name {
  font-size: 1rem;
  margin-bottom: 5px;
}
.home-case .item .head .price {
  font-size: 1rem;
  margin-bottom: 0;
}
.home-case .item .cont {
  background-color: var(--white);
  border-radius: 5px;
  padding: 1.5rem 1rem 1rem;
  margin: -1.5rem 1rem 0 1rem;
}
.home-case .slick-next {
  right: 0;
}
@media (min-width: 992px) {
  .home-case .slick-next {
    right: -25px;
  }
}
.home-case .slick-next::before {
  content: "\f285";
  font-family: "bootstrap-icons";
  font-size: 2rem;
}
.home-case .slick-prev {
  left: -15px;
}
@media (min-width: 992px) {
  .home-case .slick-prev {
    left: -25px;
  }
}
.home-case .slick-prev::before {
  content: "\f284";
  font-family: "bootstrap-icons";
  font-size: 2rem;
}

.page-head {
  margin-top: 64px;
}
@media (min-width: 992px) {
  .page-head {
    margin-top: 72px;
  }
}

.page-top {
  max-width: 1920px;
  margin: 65px auto 0;
}
@media (min-width: 992px) {
  .page-top {
    padding-bottom: 30%;
    margin: 70px auto 0;
  }
}
@media (min-width: 1200px) {
  .page-top {
    padding-bottom: 18%;
  }
}
.page-top .img {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: 77% 65%;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 992px) {
  .page-top .img {
    position: absolute;
    height: 100%;
  }
}
.page-top .textbox {
  position: relative;
  padding: 2rem 1rem;
}
@media (min-width: 992px) {
  .page-top .textbox {
    padding: 4rem 3rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
}
.page-top .title {
  padding-bottom: 0;
}
.page-top .title::before {
  display: none;
}
.page-top .tag {
  color: #60B2DB;
}

.brandBox {
  border-bottom: 1px solid #eaeaea;
  font-size: 0.8rem;
  padding: 0.6rem;
}
.brandBox ul {
  display: flex;
  padding-left: 1.5rem;
  position: relative;
}
.brandBox ul::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #60B2DB;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.brandBox ul li, .brandBox ul li:last-child a {
  color: #60B2DB;
}
.brandBox ul li > a {
  color: #5A5A5A;
}
.brandBox ul li > a::after {
  content: "-";
  padding: 0 3px;
}
.brandBox ul li:last-child > a::after {
  content: "";
}

.contact {
  background-color: #EAEFF3;
  padding: 3rem 0;
}
.contact .title {
  color: #053C7E;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact .item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.contact .item .name {
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  .contact .item .name {
    flex: 0 0 90px;
  }
}
.contact .item .cont-title {
  width: 90px;
}
@media (min-width: 992px) {
  .contact .item .form-control, .contact .item .cont {
    flex: 0 0 calc(100% - 90px);
    width: calc(100% - 90px);
  }
}
.contact .item .form-check {
  margin-right: 5px;
}
.contact .item .form-check-input {
  width: 15px;
  height: 15px;
}
.contact .cerify-code-panel {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .contact .verify-code {
    width: calc(50% - 15px) !important;
    margin-right: 15px;
    order: 1;
  }
}
@media (min-width: 992px) {
  .contact .verify-code-area {
    width: 50% !important;
  }
}
.contact .varify-input-code {
  height: 38px;
}
.contact .verify-input-area {
  width: 90%;
}
.contact .text-red {
  color: #F83D02;
  font-size: 14px;
}

.carloan .img {
  background-position: 0% 35%;
}
.carloan .title {
  color: var(--white);
}
.carloan .textbox {
  background-color: #083f7a;
  color: var(--white);
}
@media (min-width: 992px) {
  .carloan .textbox {
    background-color: transparent;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
}

.house_mark {
  background-color: #F83D02;
  color: var(--white);
  padding: 0.2rem 1rem;
  border-radius: 2rem;
}

.house_mark span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff129;
}

.houseloan .img {
  background-position: 50% right;
}

.subtitle {
  position: relative;
  padding-left: 1rem;
  color: #053C7E;
  font-size: 1.4rem;
}
.subtitle::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #60B2DB;
  position: absolute;
  left: 0;
  top: 0;
}

.search-wrapper {
  border-left: 1px solid #eaeaea;
  width: 100%;
  padding-left: 0.5rem;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .search-wrapper {
    width: auto;
  }
}
.search-wrapper input, .search-wrapper input:focus {
  border: none;
  outline: none;
}
.search-wrapper .searchBtn {
  padding: 5px;
  width: 30px;
}

.sharebox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.sharebox .date {
  color: #757575;
  font-size: 15px;
}
.sharebox .shareList {
  flex: 0 0 100%;
  width: 100%;
  order: 1;
}
@media (min-width: 992px) {
  .sharebox .shareList {
    flex: 0 0 80%;
    width: 80%;
    order: 0;
  }
}
.sharebox .shareMenu {
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .sharebox .shareMenu {
    flex: 0 0 19%;
    width: 19%;
  }
}
.sharebox h3.title {
  width: 100%;
}

.share_item {
  display: flex;
  flex-wrap: wrap;
}
.share_item .item {
  flex: 0 0 98%;
  width: 98%;
  margin: 0 1% 1.5rem;
}
@media (min-width: 992px) {
  .share_item .item {
    flex: 0 0 48%;
    width: 48%;
  }
}
@media (min-width: 1200px) {
  .share_item .item {
    flex: 0 0 31.33%;
    width: 31.33%;
  }
}
.share_item a {
  color: #5A5A5A;
}
.share_item .img {
  width: 100%;
  margin-bottom: 5px;
}
.share_item .img img {
  width: 100%;
}
.share_item .date {
  text-align: right;
  color: #757575;
  font-size: 15px;
  display: block;
}
.share_item .name {
  color: #053C7E;
  font-size: 1.125rem;
  margin-top: 0.5rem;
}
.share_item .cont {
  font-size: 15px;
}

.category {
  display: none;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.category li a {
  display: block;
  width: 100%;
  color: #5A5A5A;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eaeaea;
}
.category li:last-child a {
  border-bottom: none;
}
@media (min-width: 992px) {
  .category {
    display: block;
  }
}

.category_title, .all-btn {
  background-color: #053C7E;
  color: var(--white);
  padding: 10px 15px;
}

.all-btn:hover {
  color: var(--white);
}

.page {
  width: 100%;
}
.page ul {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}
.page ul li.active a {
  color: #60B2DB;
}
.page a {
  text-align: center;
  display: block;
}
.page .prev, .page .next {
  margin: 0 5px;
}

.casebox {
  background-color: #EAEFF3;
  padding: 2rem 0 0;
}

.case_items li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.case_items li:last-child {
  border-bottom: none;
}
.case_items .img {
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  .case_items .img {
    flex: 0 0 40%;
  }
}
.case_items .img img {
  width: 100%;
}
.case_items .text {
  flex: 0 0 100%;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .case_items .text {
    flex: 0 0 60%;
    padding: 1rem 2rem;
  }
}
.case_items .text .title {
  color: #053C7E;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}
.case_items .text .title span {
  color: #60B2DB;
  font-size: 1rem;
  margin-left: 5px;
}
.case_items .text .name {
  color: #60B2DB;
}
@media (min-width: 992px) {
  .case_items li:nth-child(even) .img {
    order: 1;
  }
}/*# sourceMappingURL=all.css.map */