@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap");
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
header,
footer,
menu,
nav,
main,
aside,
article,
p,
a,
ul,
ol,
li,
table,
tr,
td,
th,
input,
button,
form,
img,
div,
span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
  list-style: none;
  text-decoration: none;
  font-family: "Red Hat Text", "Noto Sans TC", "微軟正黑體";
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

.blank {
  min-height: 100vh;
  /* 滿版高度 */
  display: flex;
  flex-direction: column;
}

img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

main,
section {
  width: 100%;
  flex: 1;
  /* 撐開內容區 */
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
  line-height: 1.5em;
}

h6 {
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  line-height: 1.3em;
  word-break: break-all;
  overflow-wrap: break-word;
  margin-bottom: 5px;
}

a.line {
  text-decoration: underline;
  font-weight: 700;
}

a {
  text-decoration: none;
  font-weight: normal;
  color: inherit;
}

a:hover {
  color: #708293;
}

.fcwhite {
  color: #fff;
}

.fcblack {
  color: #000;
}

.fclightgreen {
  color: #00a3ad;
}

.fcdarkblue {
  color: #002e5b;
}

.fcbrown {
  color: #603813;
}

.fcgray {
  color: #708293;
}

.fcdarkpurple {
  color: #273460;
}

.bgdarkblue {
  background-color: #002e5b;
}

.bglightblue {
  background-color: #2b5088;
}

.bglightgray {
  background-color: #f6f6f6;
}

.bgwhite {
  background-color: #fff;
}

.title-center {
  margin: 20px 0;
  text-align: center;
  padding: 0 10px;
}
.title-center h3,
.title-center h5 {
  margin-bottom: 10px;
  color: #002e5b;
}
.title-center p {
  margin: 10px;
}

.title-pic {
  width: auto;
  align-items: center;
  max-height: 60px;
}

.link-btn {
  width: 100%;
  height: auto;
  font-size: 16px;
  display: flex;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
  gap: 20px;
  white-space: nowrap;
}

.link-btn-left {
  text-align: left;
  justify-content: start;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 30px auto;
  text-align: center;
  padding: 20px 0;
}
.pagination ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.pagination ul li {
  display: inline;
}
.pagination ul a {
  margin: 0 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000;
  float: left;
  padding: 8px 10px;
  text-decoration: none;
  line-height: 1.5em;
}
.pagination ul a.active {
  background-color: #00a3ad;
  color: #fff;
  font-weight: 700;
}
.pagination ul li:hover a {
  background-color: #00a3ad;
  color: #fff;
  font-weight: 700;
}

.container .breadcrumb {
  padding: 20px 0 0 20px;
}
.container .breadcrumb .breadcrumb-item.active a {
  color: #00a3ad;
}

.breadcrumbRight {
  padding: 0 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 1px solid #00a3ad;
}
.breadcrumbRight .breadcrumb {
  margin: 0;
  text-align: end;
}

hr {
  opacity: 1;
  border: 1px solid #708293;
}

.articlecontent {
  margin: 0 auto;
  padding: 10px 30px 35px;
}
.articlecontent img {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.articlecontent iframe {
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 992px) {
  .articlecontent {
    padding: 40px;
  }
  .articlecontent img {
    max-width: 1000px !important;
    max-height: 100% !important;
  }
  .articlecontent iframe {
    width: 100% !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 576px) {
  .grid-sm-1 {
    width: 8.3333333333%;
  }
  .grid-sm-2 {
    width: 16.6666666667%;
  }
  .grid-sm-3 {
    width: 25%;
  }
  .grid-sm-4 {
    width: 33.3333333333%;
  }
  .grid-sm-5 {
    width: 41.6666666667%;
  }
  .grid-sm-6 {
    width: 50%;
  }
  .grid-sm-7 {
    width: 58.3333333333%;
  }
  .grid-sm-8 {
    width: 66.6666666667%;
  }
  .grid-sm-9 {
    width: 75%;
  }
  .grid-sm-10 {
    width: 83.3333333333%;
  }
  .grid-sm-11 {
    width: 91.6666666667%;
  }
  .grid-sm-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-1 {
    width: 8.3333333333%;
  }
  .grid-2 {
    width: 16.6666666667%;
  }
  .grid-3 {
    width: 25%;
  }
  .grid-4 {
    width: 33.3333333333%;
  }
  .grid-5 {
    width: 41.6666666667%;
  }
  .grid-6 {
    width: 50%;
  }
  .grid-7 {
    width: 58.3333333333%;
  }
  .grid-8 {
    width: 66.6666666667%;
  }
  .grid-9 {
    width: 75%;
  }
  .grid-10 {
    width: 83.3333333333%;
  }
  .grid-11 {
    width: 91.6666666667%;
  }
  .grid-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .grid-md-1 {
    width: 8.3333333333%;
  }
  .grid-md-2 {
    width: 16.6666666667%;
  }
  .grid-md-3 {
    width: 25%;
  }
  .grid-md-4 {
    width: 33.3333333333%;
  }
  .grid-md-5 {
    width: 41.6666666667%;
  }
  .grid-md-6 {
    width: 50%;
  }
  .grid-md-7 {
    width: 58.3333333333%;
  }
  .grid-md-8 {
    width: 66.6666666667%;
  }
  .grid-md-9 {
    width: 75%;
  }
  .grid-md-10 {
    width: 83.3333333333%;
  }
  .grid-md-11 {
    width: 91.6666666667%;
  }
  .grid-md-12 {
    width: 100%;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
    line-height: 2em;
  }
  h6 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
    line-height: 1.5em;
  }
  .title-pic {
    max-height: 80px;
  }
  .link-btn {
    font-size: 20px;
  }
  .link-btn-left {
    font-size: 16px;
  }
  .breadcrumbRight {
    justify-content: space-around;
  }
}
@media only screen and (min-width: 992px) {
  .grid-lg-1 {
    width: 8.3333333333%;
  }
  .grid-lg-2 {
    width: 16.6666666667%;
  }
  .grid-lg-3 {
    width: 25%;
  }
  .grid-lg-4 {
    width: 33.3333333333%;
  }
  .grid-lg-5 {
    width: 41.6666666667%;
  }
  .grid-lg-6 {
    width: 50%;
  }
  .grid-lg-7 {
    width: 58.3333333333%;
  }
  .grid-lg-8 {
    width: 66.6666666667%;
  }
  .grid-lg-9 {
    width: 75%;
  }
  .grid-lg-10 {
    width: 83.3333333333%;
  }
  .grid-lg-11 {
    width: 91.6666666667%;
  }
  .grid-lg-12 {
    width: 100%;
  }
  .container {
    margin-left: 150px;
  }
  .container .breadcrumb {
    padding-left: 50px;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
  .breadcrumbRight .breadcrumb {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .grid-xl-1 {
    width: 8.3333333333%;
  }
  .grid-xl-2 {
    width: 16.6666666667%;
  }
  .grid-xl-3 {
    width: 25%;
  }
  .grid-xl-4 {
    width: 33.3333333333%;
  }
  .grid-xl-5 {
    width: 41.6666666667%;
  }
  .grid-xl-6 {
    width: 50%;
  }
  .grid-xl-7 {
    width: 58.3333333333%;
  }
  .grid-xl-8 {
    width: 66.6666666667%;
  }
  .grid-xl-9 {
    width: 75%;
  }
  .grid-xl-10 {
    width: 83.3333333333%;
  }
  .grid-xl-11 {
    width: 91.6666666667%;
  }
  .grid-xl-12 {
    width: 100%;
  }
  .container {
    margin-left: 250px;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1900px) {
  .grid-xxl-1 {
    width: 8.3333333333%;
  }
  .grid-xxl-2 {
    width: 16.6666666667%;
  }
  .grid-xxl-3 {
    width: 25%;
  }
  .grid-xxl-4 {
    width: 33.3333333333%;
  }
  .grid-xxl-5 {
    width: 41.6666666667%;
  }
  .grid-xxl-6 {
    width: 50%;
  }
  .grid-xxl-7 {
    width: 58.3333333333%;
  }
  .grid-xxl-8 {
    width: 66.6666666667%;
  }
  .grid-xxl-9 {
    width: 75%;
  }
  .grid-xxl-10 {
    width: 83.3333333333%;
  }
  .grid-xxl-11 {
    width: 91.6666666667%;
  }
  .grid-xxl-12 {
    width: 100%;
  }
  .container {
    margin-left: 400px;
  }
}
div.carouselSlide .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
div.carouselSlide .carousel-control-prev-icon,
div.carouselSlide .carousel-control-next-icon {
  background-color: #000;
  color: #FFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .aboutSec {
  width: 100%;
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
main .aboutSec .contentBox {
  padding: 30px;
}
main .aboutSec .contentBox .content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  vertical-align: middle;
  margin: 15px 0;
}
main .aboutSec .contentBox .content .iconBox {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
main .aboutSec .contentBox .content .iconBox img {
  width: 100px;
  height: auto;
}
main .aboutSec .contentBox .content .textBox {
  display: flex;
  flex-wrap: wrap;
  vertical-align: middle;
  padding-right: 15px;
}
main .aboutSec .contentBox .content .textBox h5 {
  font-weight: 400;
  color: #00a3ad;
}
main .aboutSec .contentBox .content .textBox p {
  color: #4d4d4d;
}
main .contentsSec .contentBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2em auto;
  margin-bottom: 0;
}
main .contentsSec .contentBox .textBox:nth-of-type(1),
main .contentsSec .contentBox .textBox:nth-of-type(3) {
  background-color: #f2fafb;
}
main .contentsSec .contentBox .textBox:nth-of-type(2),
main .contentsSec .contentBox .textBox:nth-of-type(4) {
  background-color: #ccedef;
}
main .contentsSec .contentBox .textBox {
  padding-bottom: 20px;
}
main .contentsSec .contentBox .textBox img {
  width: 100%;
  height: auto;
}
main .contentsSec .contentBox .textBox .text {
  text-align: center;
}
main .contentsSec .contentBox .textBox .text h4 {
  color: #00a3ad;
  margin: 15px 0;
}
main .contentsSec .contentBox .textBox .text p {
  margin: 5px 0;
}
main .doctorSec {
  background-image: url(../images/doctor-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}
main .doctorSec .content .textBox {
  padding: 30px 44px;
}
main .doctorSec .content .textBox img {
  margin-bottom: 20px;
}
main .doctorSec .content .textBox h3 {
  font-weight: normal;
  font-size: 28px;
}
main .doctorSec .content .textBox h3 span {
  font-size: 18px;
}
main .doctorSec .content .textBox h5 {
  font-weight: normal;
  color: #00a3ad;
  line-height: 1.5em;
  margin: 1em 0;
}
main .ourteamSec {
  width: 100%;
  padding: 30px 0;
  margin-bottom: 50px;
}
main .ourteamSec .contentOwl {
  padding: 10px 40px 20px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
main .ourteamSec .contentOwl .picBox {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
main .ourteamSec .contentOwl .picBox .boximg4x5 {
  border-radius: 5%;
}
main .ourteamSec .contentOwl .picBox h6 {
  margin: 10px 0;
}
main .ourteamSec .contentOwl .owl-carousel {
  position: relative;
  overflow: visible;
}
main .ourteamSec .contentOwl .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
}
main .ourteamSec .contentOwl .owl-nav .owl-prev,
main .ourteamSec .contentOwl .owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ccedef;
  color: #00a3ad;
  font-size: 20px;
  border-radius: 50%;
}
main .ourteamSec .contentOwl .owl-nav .owl-next {
  right: 0;
}
main .ourteamSec .contentOwl .owl-nav .owl-prev:hover,
main .ourteamSec .contentOwl .owl-nav .owl-next:hover {
  color: #ccedef;
  background-color: #00a3ad;
}
main .ourteamSec .contentOwl .owl-carousel .owl-item {
  max-width: 400px;
}
main .ourteamSec .contentOwl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  flex-direction: row !important;
  position: relative;
}
main .ourteamSec .contentOwl .owl-dots .owl-dot {
  display: inline-block;
}
main .ourteamSec .contentOwl .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #999;
  display: block;
  border-radius: 50%;
}
main .ourteamSec .contentOwl .owl-dots .owl-dot.active span {
  background: #333;
}
main .newSec {
  background-image: url(../images/new-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
main .newSec .picBox img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
main .newSec .contentBox {
  padding: 30px 45px;
  margin: 0 auto;
  max-width: 600px;
}
main .newSec .contentBox .content {
  margin: 20px 0;
  width: 100%;
  opacity: 1;
}
main .newSec .contentBox .content .textBox h5 {
  margin-bottom: 5px;
  line-height: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
main .newSec .contentBox .content .textBox p {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: #666666;
}
main .newSec .contentBox .content .textBox .time {
  font-size: 14px;
}
main .newSec hr {
  margin: 0;
  border-color: #000;
}
main .newSec .link-btn {
  color: #00a3ad;
  line-height: 50px;
  margin: 20px 0 0 10px;
  font-size: 20px;
}
main .newSec .link-btn i {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: none;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  background-color: #00a3ad;
  color: #fff;
}
main .newSec .link-btn i:hover {
  color: #00a3ad;
  background-color: #fff;
}
main .scheduleSec {
  padding: 30px 25px 40px;
}
main .scheduleSec .content {
  overflow-x: auto;
  /* 允許水平滾動 */
  margin-top: 20px;
}
main .scheduleSec .content .title-center img {
  max-width: 130px;
}
main .scheduleSec .content table {
  width: 100%;
  min-width: 700px;
  /* 設定最小寬度，避免表格太窄 */
  border-collapse: separate;
  /* 必須用 separate 才能看到圓角 */
  border-spacing: 0;
  /* 去掉格子間距 */
  border-radius: 10px;
  overflow: hidden;
  /* 防止內容溢出圓角 */
  background-color: #fff;
  text-align: center;
  border: 2px solid #00a3ad;
  margin: 20px 0;
  /* 讓最右邊格子不再畫右邊框 */
}
main .scheduleSec .content table th {
  background-color: #00a3ad;
  color: white;
}
main .scheduleSec .content table td {
  font-weight: 600;
  color: #00a3ad;
}
main .scheduleSec .content table th,
main .scheduleSec .content table td {
  padding: 15px;
  border-right: 1px solid #00a3ad;
  /* 右邊框 */
  border-bottom: 1px solid #00a3ad;
  /* 下邊框 */
}
main .scheduleSec .content table td:first-child,
main .scheduleSec .content table th:first-child {
  width: 180px;
  /* 可自行調整 */
  white-space: nowrap;
  /* 不換行，保持緊湊 */
}
main .scheduleSec .content table td:last-child,
main .scheduleSec .content table th:last-child {
  border-right: none;
}
main .scheduleSec .content table tfoot td {
  text-align: center;
  padding: 12px;
  border: none;
  border-bottom-left-radius: 12px;
  /* 左下圓角 */
  border-bottom-right-radius: 12px;
  /* 右下圓角 */
  color: #666666;
}
main .rowpicSec .nonePic1,
main .rowpicSec .nonePic2 {
  display: none;
}

.contactBottom {
  padding: 32px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  background-color: #f0f0f0;
}
.contactBottom .contLeft {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactBottom .contLeft img {
  width: 50%;
  max-width: 250px;
  height: auto;
}
.contactBottom .contCenter img {
  margin: 10px 0;
}
.contactBottom .contCenter p {
  line-height: 2em;
  margin: 10px 0;
  color: #00a3ad;
  display: flex;
}
.contactBottom .contCenter p span {
  display: inline-flex;
  align-items: center;
  width: 7em;
  white-space: nowrap;
}
.contactBottom .contCenter p i {
  text-align: center;
  width: 1.5em;
}
.contactBottom .contCenter p a {
  color: #000;
}
.contactBottom .contRight {
  padding: 10px;
}
.contactBottom .contRight iframe {
  border-radius: 40px;
}

footer {
  background-color: #00a3ad;
  color: #fff;
  line-height: 3em;
  text-align: center;
  font-size: 14px;
}

aside {
  display: flex;
  position: fixed;
  flex-direction: column;
  right: 0;
  bottom: 100px;
  text-align: center;
  align-items: center;
  overflow: hidden;
  padding: 0.5em 0;
  width: 50px;
  border-radius: 10px;
  transform: scale(0.7);
  z-index: 99;
}
aside a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
  cursor: pointer;
  margin: 10px 0;
}
aside .asideBottom {
  margin-top: 5px;
  transition: opacity 0.3s ease;
  opacity: 1;
}
aside .asideBottom a {
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}
aside .asideBottom.hidden {
  opacity: 0;
  pointer-events: none;
}

main .aboutPage .contentBox {
  margin: 0 auto;
  max-width: 600px;
}
main .aboutPage .contentBox h3 {
  margin: 20px 0;
  color: #005257;
  font-size: 28px;
}
main .aboutPage .contentBox .aboutus {
  margin: 0 auto;
}
main .aboutPage .contentBox .aboutus .textBox {
  margin: 20px 0 40px;
}
main .aboutPage .contentBox .aboutus .textBox hr {
  border: 1px solid #005257;
  width: 3em;
}
main .aboutPage .contentBox .aboutus .textBox p {
  color: #666666;
  line-height: 2em;
}
main .aboutPage .contentBox .aboutus .picBox {
  position: relative;
}
main .aboutPage .contentBox .aboutus .picBox img {
  border-radius: 80px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
main .aboutPage .contentBox .aboutus .picBox::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid #00a3ad;
  border-radius: 80px;
}
main .aboutPage .contentBox .contactus {
  margin: 70px auto 20px;
  padding: 30px 20px;
  background-color: #e5f6f7;
  position: relative;
}
main .aboutPage .contentBox .contactus h3 {
  text-align: center;
  margin: 30px 0;
}
main .aboutPage .contentBox .contactus .flexBox h5 {
  margin: 20px 0;
  color: #333;
}
main .aboutPage .contentBox .contactus .flexBox .textBox {
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  max-width: 250px;
  margin: 0 auto;
}
main .aboutPage .contentBox .contactus::after {
  content: "";
  position: absolute;
  background-color: #00a3ad;
  top: 10px;
  right: -10px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
}
main .aboutPage .contentBox .traffic {
  margin: 20px auto;
  padding: 40px 0;
}
main .aboutPage .contentBox .traffic .mapBox {
  margin: 10px 0;
}
main .aboutPage .contentBox .traffic .mapBox iframe {
  border-radius: 40px;
}
main .aboutPage .contentBox .traffic h6 {
  font-weight: 400;
}
main .aboutPage .contentBox .traffic h5 {
  color: #009ea8;
  line-height: 2em;
}

main .albumPage .contentBox {
  width: 100%;
  padding: 20px 0;
}
main .albumPage .contentBox .textBox {
  margin: 0 auto;
}
main .albumPage .contentBox .rowBox {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
main .albumPage .contentBox .rowBox .picBox {
  padding: 30px 40px;
  background-color: #fff;
  box-shadow: 0px 0px 8px #dddddd;
  margin: 0 auto;
  border-radius: 10px;
}
main .albumPage .contentBox .rowBox .picBox .text {
  text-align: center;
  max-height: 200px;
  overflow-y: hidden;
  text-align: left;
}
main .albumPage .contentBox .rowBox .picBox .text h5 {
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .albumPage .contentBox .rowBox .picBox .text p {
  margin: 5px 0;
  color: gray;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .albumPage .contentBox .rowBox .picBox a:hover h5,
main .albumPage .contentBox .rowBox .picBox a:hover p {
  color: #00a3ad;
}

main .photoPage .contentBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
main .photoPage .contentBox .title {
  margin: 0 auto 20px;
  padding: 0 20px 30px;
  max-width: 900px;
  border-bottom: 1px solid #666666;
}
main .photoPage .contentBox .title h3 {
  margin: 15px 0;
}
main .photoPage .contentBox .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  max-width: 900px;
  margin: 10px auto 30px;
}
main .photoPage .contentBox .content .picBox {
  padding: 10px;
}

main .newalbumPage .contentBox {
  position: relative;
  width: 100%;
  padding: 20px 0;
}
main .newalbumPage .contentBox .rowBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
  margin-bottom: 0;
  row-gap: 25px;
}
main .newalbumPage .contentBox .rowBox .content {
  padding: 0 10px;
  max-width: 400px;
}
main .newalbumPage .contentBox .rowBox .content .boximg1x1,
main .newalbumPage .contentBox .rowBox .content .boximg4x5 {
  border-radius: 5%;
}
main .newalbumPage .contentBox .rowBox .content .textBox {
  max-height: 200px;
  text-align: left;
  padding: 0 10px;
}
main .newalbumPage .contentBox .rowBox .content .textBox h5 {
  margin: 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
main .newalbumPage .contentBox .rowBox .content .textBox p {
  color: #666666;
}
main .newalbumPage .contentBox .rowBox .content .textBox .longtext {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  max-height: 3em;
  margin: 0;
}
main .newalbumPage .contentBox .rowBox .content .textBox .time {
  margin: 10px 0;
}
main .newalbumPage .contentBox .rowBox .content .textBox .more::first-letter {
  vertical-align: middle;
}
main .newalbumPage .contentBox .rowBox .content .shareBox h5 {
  color: #00a3ad;
}
main .newalbumPage .contentBox .rowBox .content .shareBox .longtext {
  color: #000;
}
main .newalbumPage .contentBox .rowBox .content a {
  font-weight: 400;
}
main .newalbumPage .contentBox .rowBox .content:hover h5,
main .newalbumPage .contentBox .rowBox .content:hover .more {
  color: #009ea8;
}

main .articlePage .articleBox {
  margin: 10px auto;
}
main .articlePage .articleBox .articlecontent {
  max-width: 900px;
}

main .articlepicPage .articleBox {
  margin: 40px auto 20px;
}
main .articlepicPage .articleBox .picBox {
  position: relative;
  display: flex;
  align-items: flex-start;
  text-align: center;
  padding: 0;
}
main .articlepicPage .articleBox .picBox img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
main .articlepicPage .articleBox .picBox::after {
  content: "";
  position: absolute;
  border: 1px solid #009ea8;
  top: -10px;
  right: 10px;
  width: 100%;
  aspect-ratio: 1/1;
}
main .articlepicPage .articlecontent {
  margin: 10px auto;
}

main .productPage .product-container {
  margin: 30px auto;
  overflow: hidden;
}
main .productPage .product-container .product-sidebar {
  margin: 1em;
  padding: 10px;
  padding-left: 0;
}
main .productPage .product-container .product-sidebar hr {
  width: 9em;
  border: 1px solid #4974a5;
  opacity: 1;
}
main .productPage .product-container .product-sidebar h3 {
  margin: 0.5em 0;
}
main .productPage .product-container .product-sidebar ul li {
  line-height: 2em;
  padding: 10px;
  cursor: pointer;
}
main .productPage .product-container .product-sidebar ul li .dropdown-content {
  display: none;
}
main .productPage .product-container .product-sidebar ul li.filter-btn:hover,
main .productPage .product-container .product-sidebar ul .active {
  background-color: #00a3ad;
  color: #fff;
  font-weight: 700;
}
main .productPage .product-container .product-sidebar ul li.filter-btn:hover a {
  color: #fff;
}
main .productPage .product-container .product-sidebar ul .dropdown-toggle:hover ul {
  display: block;
}
main .productPage .product-container .product-sidebar ul li.dropdown-toggle::after {
  content: none;
  /* 或刪除整個這段 */
}
main .productPage .product-container .row {
  display: flex;
  justify-content: start;
}
main .productPage .product-container .row .product-item {
  margin: 0;
  padding: 0 5px;
}
main .productPage .product-container .row .product-item .image-wrapper {
  position: relative;
  overflow: hidden;
}
main .productPage .product-container .row .product-item .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* 按鈕樣式 */
}
main .productPage .product-container .row .product-item .image-wrapper .overlay .detail-btn {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
}
main .productPage .product-container .row .product-item .image-wrapper .overlay .detail-btn:hover {
  color: #fff;
  background-color: #00a3ad;
  font-weight: 600;
}
main .productPage .product-container .row .product-item .image-wrapper:hover .overlay,
main .productPage .product-container .row .product-item .image-wrapper:active .overlay {
  opacity: 1;
}
main .productPage .product-container .row .product-card:hover {
  background-color: transparent;
}
main .productPage .product-container .row .product-card:hover h5,
main .productPage .product-container .row .product-card:hover p {
  color: #4974a5;
}
main .productPage .product-container .row .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  width: 100%;
  font-size: 16px;
}
main .productPage .product-container .row .card-des {
  padding: 0 5px;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 0.875rem;
  color: #666666;
}
main .productPage .product-container .row .price {
  font-weight: normal;
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 17px;
  line-height: 1.5em;
}
main .productPage .product-container .row .price span {
  font-size: 15px;
}
main .productPage .product-container .row .price .onSale {
  color: #f11717;
}
main .productPage .product-container .row .price:has(.onSale:not(:empty)) .default {
  text-decoration: line-through;
}
main .productPage .product-container .row-gap-5 {
  row-gap: 3rem;
}

.more {
  font-size: 18px;
}

.more::first-letter {
  vertical-align: middle;
}

@media only screen and (min-width: 768px) {
  aside {
    right: 10px;
    transform: scale(1);
  }
  div.carouselSlide .carousel-control-prev-icon,
  div.carouselSlide .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
  main .aboutSec .contentBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 750px;
  }
  main .aboutSec .contentBox .content {
    justify-content: space-evenly;
  }
  main .aboutSec .contentBox .content .textBox br {
    display: none;
  }
  main .contentsSec .contentBox {
    display: flex;
  }
  main .contentsSec .contentBox .textBox .text p {
    font-size: 17px;
  }
  main .ourteamSec .contentOwl {
    padding: 20px 50px;
  }
  main .ourteamSec .contentOwl .picBox {
    width: 90%;
  }
  footer {
    font-size: 16px;
  }
  main .albumPage .contentBox .rowBox {
    justify-content: flex-start;
  }
  main .albumPage .contentBox .rowBox .picBox {
    margin: 10px;
    flex: 0 0 calc(50% - 20px);
    /* 兩欄布局，扣掉間距 */
  }
  main .albumPage .contentBox .rowBox img {
    margin-bottom: 1em;
  }
  main .newalbumPage .contentBox .rowBox {
    justify-content: space-between;
  }
  main .newalbumPage .contentBox .rowBox .content {
    padding: 0 20px;
  }
  main .productPage .product-container {
    display: block;
  }
  main .productPage .product-container .product-sidebar {
    max-width: 400px;
  }
  main .productPage .product-container .row {
    justify-content: space-between;
  }
  main .productPage .product-container .row .product-item {
    padding: 0 20px;
  }
  main .productPage .product-container .row .title {
    font-size: 18px;
  }
  main .productPage .product-container .row .price {
    line-height: 1.5em;
  }
  main .productPage .product-container .row .price span {
    font-size: 18px;
  }
  .more {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  main .aboutSec {
    display: flex;
  }
  main .aboutSec .contentBox {
    padding-left: 0;
    align-items: center;
  }
  main .aboutSec .contentBox .content .iconBox {
    align-items: center;
  }
  main .contentsSec {
    background-size: 40%;
  }
  main .contentsSec .contentBox {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 0;
  }
  main .doctorSec .content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  main .doctorSec .content .textBox {
    padding: 50px;
    padding-right: 20px;
  }
  main .ourteamSec .contentOwl {
    max-width: 1400px;
  }
  main .newSec {
    display: flex;
  }
  main .newSec .contentBox {
    margin: 0;
    padding-left: 0;
    padding-right: 60px;
  }
  main .scheduleSec .content {
    width: 70%;
    margin: 30px auto;
  }
  main .rowpicSec {
    display: flex;
    flex-wrap: nowrap;
  }
  main .rowpicSec img {
    width: 50vw;
  }
  main .rowpicSec img.nonePic1 {
    display: inline;
    width: 50vw;
  }
  main .albumPage .contentBox .textBox {
    max-width: 1200px;
  }
  main .albumPage .contentBox .rowBox {
    max-width: 1400px;
  }
  main .albumPage .contentBox .rowBox .picBox {
    margin: 20px;
    flex: 0 0 calc(33.333% - 40px);
    /* 兩欄布局，扣掉間距 */
  }
  main .newalbumPage .contentBox .rowBox {
    justify-content: space-evenly;
  }
  main .articlepicPage .articleBox {
    display: flex;
    justify-content: center;
    max-width: 1300px;
  }
  main .articlepicPage .articleBox .articlecontent {
    padding: 0 20px 20px;
    margin: 0 10px;
  }
  main .articlepicPage .articleBox .picBox {
    padding: 0;
  }
  main .productPage .product-container {
    display: flex;
  }
  main .productPage .product-container .product-sidebar {
    max-width: 250px;
  }
  main .productPage .product-container .row {
    justify-content: start;
  }
  main .productPage .product-container .row .product-item {
    padding: 0 20px;
  }
  main .productPage .product-container .row .price br {
    display: none;
  }
}
@media only screen and (min-width: 1400px) {
  main .aboutSec .contentBox .content .textBox h5 {
    font-size: 24px;
  }
  main .aboutSec .contentBox .content .textBox p {
    font-size: 18px;
  }
  main .doctorSec .content {
    display: flex;
  }
  main .doctorSec .content .textBox {
    margin-right: 0;
  }
  main .doctorSec .content .textBox p {
    font-size: 18px;
  }
  main .doctorSec .content .picBox img {
    max-width: 850px;
  }
  main .newSec {
    align-items: center;
  }
  main .newSec .contentBox {
    padding-right: 65px;
  }
  main .rowpicSec img,
  main .rowpicSec img.nonePic1 {
    width: 33.3333333333vw;
  }
  main .rowpicSec img.nonePic2 {
    display: inline;
    width: 33.3333333333vw;
  }
  main .aboutPage .contentBox {
    max-width: 1300px;
  }
  main .aboutPage .contentBox .aboutus {
    display: flex;
    justify-content: space-around;
  }
  main .aboutPage .contentBox .aboutus .textBox {
    max-width: 700px;
  }
  main .aboutPage .contentBox .contactus .flexBox {
    display: flex;
    justify-content: space-around;
  }
  main .aboutPage .contentBox .contactus .flexBox .textBox {
    margin: 0;
  }
  main .aboutPage .contentBox .traffic h3 {
    margin-left: 40px;
  }
  main .aboutPage .contentBox .traffic .rowBox {
    display: flex;
    justify-content: space-around;
  }
  .contactBottom {
    gap: 20px;
  }
  .contactBottom .contCenter {
    max-width: 400px;
  }
  main .productPage .product-list {
    gap: 10px;
  }
  main .productPage .product-container .row {
    gap: 0;
    row-gap: 3rem;
  }
}/*# sourceMappingURL=style.css.map */