@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;700&display=swap');

html{
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-family: 'Noto Sans TC', sans-serif, '微軟正黑體';
    background-color: white;
    position: relative;
    font-size: 1em;
    font-weight: 500;
}

section{
   font-family:'Noto Serif TC';
}

/* 整體 scrollbar（寬度、高度）*/
::-webkit-scrollbar {
  width: 7px;
  height: 10px;
}

/* scrollbar 軌道 */
::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 4px;
}

/* scrollbar 滑塊 */
::-webkit-scrollbar-thumb {
  background: #DB7F8E;
  border-radius: 0px;
  opacity: 0.8;
  transition: background 0.2s;
  cursor: pointer;
  border-radius: 10px;
}

/* hover 時滑塊變色 */
::-webkit-scrollbar-thumb:hover {
  background: #604D53;
}

[v-cloak]{
    display: none;
}

.center{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----- 滑線開始 ----- */
.hover-line::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 25px;
  height: 1px;
  background-color:#604D53;
  transition: all 0.3s ease;
  transform-origin: left;
  z-index: 1;
  opacity: 0;
}
.hover-line:hover::before {
   transform: translateY(-50%) scaleX(1);
   opacity: 1;
}
.hover-line:hover {
  transform: translateX(25px);
}
/* ----- 滑線結束 ----- */

/* ----- 漢堡選單開始 ----- */

header .hamburger {
    width: 32px;
    height: 26px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 24px;
}

header .hamburger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

header .hamburger.is-active span{
   background: #DB7F8E;
}

header .hamburger span:nth-of-type(1) {
    top: 2px;
}

header .hamburger span:nth-of-type(2) {
    top: 10px;
}

header .hamburger span:nth-of-type(3) {
    top: 20px;
}

.hamburger.menuOpen span:nth-of-type(1) {
    top: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background: #DB7F8E;
}

.hamburger.menuOpen span:nth-of-type(2) {
    width: 0;
    right: 0
}

.hamburger.menuOpen span:nth-of-type(3) {
    top: 8px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    background: #DB7F8E;
}

/* ----- 漢堡選單結束 ----- */

/* ----- Header 開始 ----- */

.header{
  position: fixed;
  width: 100%;
  background-color: transparent;
  transition: all .3s;
  z-index: 50;
  color: #fff;
  min-height: 86px;
}

.header.is-active{
  background-color: #fff;
  color: #604D53;
   box-shadow: 0px 3px 3px #00000014;
}

.logo img{
  width: 200px;
  height: 62px;
  transition: opacity 0.3s ease;
}

.search{
    position: absolute;
    right: 65px;
    top: 24px;
}

.search img{
  width: 25px;
  height: 25px;
}

.logo img.default ,.search img.default{
  display: block;
}

.logo img.active , .search img.active{
  display: none;
}

.header.is-active .logo img.default  ,.header.is-active .search img.default{
    display: none;
}

.header.is-active .logo img.active , .header.is-active .search img.active{
   display: block;
}

.menu{
  display: flex;
  height: 100%;
}

.menu > li{
  color: #fff;
  width: 152px;
  height: 100%;
  transition: color .2s;
}

.menu >li.is-active{
  color: #604D53;
}

.menu >li:hover , .menu >li.is-active:hover , .menus>li:hover{
  color: #DB7F8E;
}

.menu > li > a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.blogpost {
  max-width: 480px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 35px; 
}

.blogpost > li {
  flex: 0 0 65px; 
  white-space: nowrap; 
}

.consult {
    padding: 6px 13px;
    background-color: #DB7F8E;
    border-radius: 18px;
    color: #fff;
}

.mobile-nav {
  overflow: scroll;
  z-index:49;
  height: 100%;
  border-top:1px solid #00000029;
  box-shadow:0 1px 3px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  color: #3E3A39;  
  background-color: #F6F4F4;
  -webkit-transition: visibility .3s,-webkit-transform .3s; 
  transition: visibility .3s,-webkit-transform .3s;
  transition: transform .3s,visibility .3s; 
  transition: all .3s;
}
.mobile-nav.is-active {
  -webkit-transform: translateX(0);
   transform: translateX(0);
   visibility: visible;
   opacity: 1;
   z-index: 40;
}

.mobile-nav .nav-item .nav-items{
  width: 100%;
  font-size: 18px;
  color: #604D53;
    opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
  border-bottom: 1px solid #BFA0A6;
}

.mobile-nav.is-active .nav-item>li:nth-child(1) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.is-active .nav-item>li:nth-child(2) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.is-active .nav-item>li:nth-child(3) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.is-active .nav-item>li:nth-child(4) {
  transition-delay: 0.8s;
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.is-active .nav-item>li:nth-child(5) {
  transition-delay: 1s;
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav .nav-item .nav-items a{
  display: block;
  width: 100%;
  height: 70px;
  padding: 22px 45px;
  position: relative;
}

.mb-dropdown {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 40px;
    top: 50%;
    display: block;
    transform: translateY(-50%);
    z-index: 20;
}

.mb-dropdown::before {
    content: "";
    background-color: #DB7F8E;
    width: 20px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    transition: transform 0.4s ease;
}

.mb-dropdown::after {
    content: "";
    background-color: #DB7F8E;
    width: 20px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    transform: rotate(90deg);
    transition: transform 0.4s ease;
}

.mb-dropdown.on::after {
    transform: rotate(0deg);
}

.mb-list-1 >li{
  font-size: 16px;
  height: 50px;
  color: #604D53;
  text-align: center;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-enter-active,
.slide-leave-active {
  transition: max-height 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
}
.slide-enter-from,
.slide-leave-to {
  max-height: 0;
  opacity: 0;
}
.slide-enter-to,
.slide-leave-from {
  max-height: 500px; 
  opacity: 1;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}
.fade-enter-to, .fade-leave-from {
  opacity: 1;
}


.mb-icon{
  width: 45px;
  height: 45px;
}

.mb-icon img{
  padding: 12px;
  background-color: #9DA2A5;
  border-radius: 50%;
}

.v-enter-active,
.v-leave-active {
  transition: all 0.3s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
  transform: translateY(20px);
}

.modal-outer{
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 50;
  height: 100vh;
  width: 100%;
  background-color: rgba(0,0,0,0.4);
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 33px; /* 相當於 0.75rem */
  background-color: #ffffff;
  border: 1px solid #707070;
  width: 90%;
  max-width: 950px;
  font-family:'Noto Serif TC';
}

.modal-header {
  padding-top: 40px;   /* 0.75rem */
  padding-bottom: 24px;
  text-align: center;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.modal-body h6 {
  font-size: 24px;
  color: #604D53;
  margin-bottom: 10px;
  padding-top: 80x;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 80%;
  padding-bottom: 80px;
}

.search-wrapper input[type="search"] {
  padding: 12px 0px 12px 40px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  width: 100%;
  background-color: #E6DCDE;
  transition: border-color 0.2s ease;
}

.search-wrapper input[type="search"]:focus{
  padding: 12px;
  border: 1px solid #BFA0A6;
}

.search-wrapper {
  position: relative;
  width: 66%;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.search-wrapper:focus-within .search-icon {
  display: none;
}

.search-bar button {
  background-color: #DB7F8E;
  color: #FFFFFF;
  border: none;
  padding: 12px 26px;
  font-size: 20px;
  border-radius: 28px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-bar button:hover {
  background-color: #B9606E;
}

/* ----- Header 結束 ----- */

/* ----- Footer 開始 ----- */


/* ----- Footer 結束 ----- */

/* ----- 首頁開始 ----- */
.bg1{
  background-image: url(../img/bg/首頁bg1.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

.text-Serif{
   font-family:'Noto Serif TC';
}

.hot-hover{
  color: #D5C5C8;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  transition: all .3s;
}

.hot-hover:hover{
  font-size: 24px;
  color: #604D53;
}

.hot-hover.active{
  font-size: 24px;
  color: #604D53;
}

.hot-hover.active::after{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #604D53;
  border-radius: 50%;
  left: -18px;
  top:10px
}

.slide-up-enter-active, .slide-up-leave-active {
  transition: opacity 0.2s ease;
}
.slide-up-enter-from, .slide-up-leave-to {
  opacity: 0;
}

.viewMoreBtn{
  border-radius: 30px 0 30px 0;
  padding: 10px 20px;
  transition: all .3s;
}

.viewMoreBtn.btn1{
  display: flex;
  gap: 5px;
  background-color: #D5C5C8;
  font-size: 14px;
  color: #604D53;
  font-family:'Noto Serif TC';
  letter-spacing:0.1em;
}

.viewMoreBtn.btn2{
  display: flex;
  gap: 5px;
  background-color: #DB7F8E;
  font-size: 14px;
  color: #fff;
  font-family:'Noto Serif TC';
  letter-spacing:0.1em;
}

.viewMoreBtn.btn1:hover{
  color: #DB7F8E;
}

.viewMoreBtn.btn2:hover{
    background-color: #B9606E;
}

.bg2{
  background-image: url(../img/bg/首頁bg2.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 414px;
  font-family:'Noto Serif TC';
  letter-spacing: 0.1em;
  font-weight: 400;
}

.bg3{
  background-image: url(../img/bg/首頁bg3.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 708px;
  font-family:'Noto Serif TC';
  letter-spacing: 0.1em;
  font-weight: 400;
}

.text-over{
  max-height: 184px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-over1{
  max-height: 490px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-over2{
  max-height: 116px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 116px;
}

.medical-hober{
  position: relative;
  overflow: hidden;
}

.medical-hober img{
  height:275px !important;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.medical-hober:hover img{
  transform: scale(1.05);
}

.view-more {
  position: absolute;
  bottom: -60px;
  height:40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  background-color: #DB7F8E;
  color: white;
  text-decoration: none;
  transition: bottom 0.3s ease;
}

.view-more img{
  width: 38px;
}

.medical-hober:hover .view-more {
  bottom: 0;
}

.Link-btn{
  padding: 17px 30px;
  gap:20px;
  border-radius: 10px;
  box-shadow: 0 0 5px #00000033;
  font-size: 20px;
  color: #604D53;
  min-width: 260px;
  touch-action: manipulation;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  position: relative;       
  overflow: hidden;
}
.Link-btn:before
 {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
  pointer-events: none;
 }
.Link-btn:hover,
.Link-btn:active,
.Link-btn:focus {
    background-color: #D5C5C8;
    color: #2B2B29;
    transition: all 0.3s;
}
.Link-btn:hover:before,
.Link-btn:active:before,
.Link-btn:focus:before {
    transform: skewX(-45deg) translateX(18em);
    transition: all 0.5s ease-in-out;
}

.HotTopics1-img{
    width:662px;
    height:430px;
}

.title-main {
    overflow-wrap: break-word;
}

.title-main img {
    margin: 10px 0;
}

.title-main a {
    color: #0000EE;
}

.title-main a:hover{
    color:#551A8B;
}

.title-main a:active{
    color:#FF0000;
}
.table-item a {
    color: #7A7A7A !important;
}
.Medicals {
    padding-left: 50px;
}
/* ----- 首頁結束 ----- */
/* ----- 診所資訊開始 ----- */
.bg4 {
    background-image: url(../img/banner/banner1.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
    font-family: 'Noto Serif TC';
    letter-spacing: 0.1em;
    font-weight: 400;
    position: relative;
}

.foliage{
  position: absolute;
  right: -45%;
  bottom: 0;
}

.docker-card{
  position: relative;
  min-width: 480px;
  min-height: 465px;
  background: linear-gradient(
  to bottom,
  #FCECEF 0%,
  #FCECEF 70%,
  #fff 100%
);
  border-radius: 180px 0 180px 0;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.docker-card .doctor{
  position: absolute;
  top:-75px;
  left: 15%;
  width: 350px;
  height: 525px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.docker-card .doctors{
  transition: transform 0.5s ease, filter 0.5s ease;
}

.docker-card:hover .doctor {
  transform: scale(1.05) translateY(-5px);
  filter: brightness(1.1) saturate(1.1);
  transform: translateY(-20px);
}

.docker-card:hover .doctors {
  transform: scale(1.05) translateY(-5px);
  filter: brightness(1.1) saturate(1.1);
  transform: translateY(-20px);
}

.docker-btn {
  opacity: 0;
  transition: all .3s; 
}

.docker-card:hover .docker-btn{
  opacity: 1;
}

.doctors{
  width: 350px;
  height: 521px;
  margin-top: -120px;
}

.first-bold:first-child {
    font-weight: 700;
    color: #604D53;
}
/* ----- 診所資訊結束 ----- */
/* ----- 院長資訊開始 ----- */
.bg5 {
    background-image: url(../img/bg/院長資訊.png);
}

.publication{
  display: flex;
  color: #604D53;
  font-size: 16px;
  font-family:'Noto Serif TC';
  font-weight: 500;
  gap:4px
}

/* ----- 院長資訊結束 ----- */


/* ----- 醫學美容開始 ----- */

.MedicalIcon{
  position: absolute;
  top:35%;
  right: -8%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
}

.MedicalIcon.whiteCircle{
  background-color: #fff;
  border-radius: 50%;
}

.MedicalIcon.whiteCircle::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 18px); 
  height: calc(100% + 18px);
  border: 1px solid white;
  border-radius: 50%;
}

.card:hover .MedicalIcon.whiteCircle{
  animation: glow 0.8s infinite alternate;
}

.MedicalIcons{
  position: absolute;
  top:40%;
  left: -8%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
}

.MedicalIcons.RedCircle{
  background-color: #DB7F8E;
  border-radius: 50%;
}

.MedicalIcons.RedCircle::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 18px); 
  height: calc(100% + 18px);
  border: 1px solid #DB7F8E;
  border-radius: 50%;
}

.card1:hover .MedicalIcons.RedCircle{
  animation: glows 0.8s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px #fff, 0 0 10px #DB7F8E, 0 0 20px #DB7F8E;
    border-color: #fff;
  }
  to {
    box-shadow: 0 0 10px #fff, 0 0 20px #DB7F8E, 0 0 30px #DB7F8E;
    border-color: #DB7F8E;
  }
}
@keyframes glows {
  from {
    box-shadow: 0 0 5px #DB7F8E, 0 0 10px #fff, 0 0 20px #fff;
    border-color: #DB7F8E;
  }
  to {
    box-shadow: 0 0 10px #DB7F8E, 0 0 20px #fff, 0 0 30px #fff;
    border-color: #fff;
  }
}

.MedicalIcon img{
  width: 55px;
  height: 55px;
}

.MedicalIcons img{
  width: 55px;
  height: 55px;
}

/* ----- 醫學美容結束 ----- */

/* ----- Blog開始 ----- */

.bg6{
  background-image: url(../img/bg/首頁bg3.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 500px;
  font-family:'Noto Serif TC';
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
}

.blog-search-bar{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.blog-search-wrapper {
  position: relative;
  width: 66%;
}

.searchs{
  width: 100%;
  background-color: #fff;
   padding: 13px 68px;
   border-radius: 28px;
   flex: 1;
   box-shadow: 0 2px 6px #0000001A;
   color: #9DA2A5;
   outline: none;
}

.search-icons {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
    pointer-events: none;
}

.blog-search-bar button {
  background-color: #DB7F8E;
  color: #FFFFFF;
  border: none;
  padding: 12px 26px;
  font-size: 20px;
  border-radius: 28px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-search-bar button:hover {
  background-color: #B9606E;
}

.searchs:focus{
  border: 1px solid #BFA0A6;
}

.blog-card{
  display: flex;
  flex-direction: column;
  max-width: 420px;
  border: 1px solid #BFA0A6;
  transition: all .3s;
  overflow: hidden;
}

.blog-card .blog-container{
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap:15px;
}

.blog-container > p{
  color: #9DA2A5;
  font-size: 1em;
}

.blog-container > span{
  color: #9DA2A5;
  font-size: 0.875em;
}

.blog-card img {
  max-height: 240px;
  transition: transform 0.3s ease;
  display: block;     
  overflow: hidden;     
}

.blog-card:hover img{
  transform: scale(1.05);
}

.blogList{
  background-color: #DB7F8E;
  color: #fff;
}

.Article{
    position: absolute;
    width: 20px;
    height: 20px;
    right: 30px;
    top: 50%;
    display: block;
    transform: translateY(-50%);
    z-index: 20;
}

.Article::before {
    content: "";
    background-color: #fff;
    width: 20px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    transition: transform 0.4s ease;
}

.Article::after {
    content: "";
    background-color: #fff;
    width: 20px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    transform: rotate(90deg);
    transition: transform 0.4s ease;
}

.toggleUl{
  position: absolute;
  left: 0;
  top:100%;
  z-index: 10;
  background-color: white;
  padding: 0 20px;
  width: 100%;
}

.Article.on::after {
    transform: rotate(0deg);
}

.title-main > h1, .title-main > h2, .title-main > h3, .title-main > h4 {
    color: #DB7F8E;
    font-weight: 700 !important;
    margin: 10px 0;
}
.title-main > h1{
    font-size:32px;
}
.title-main > h2 {
    font-size: 24px;
}
.title-main > h3 {
    font-size: 18px;
}
.title-main > h4 {
    font-size: 16px;
}
.names {
    display: inline-block;
    white-space: nowrap;
}
.name {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
/* ----- Blog結束 ----- */
/* -----熱門文章開始----- */
.popular-articles {
    color: #604D53;
    font-size: 28px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.popular-articles::before,
.popular-articles::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;       
  height: 0.5px;      
  background-color: #604D53;
  margin: 0 4%;
}

.popular-articles::before {
  left: -70px;       
  transform: translateY(-50%);
}

.popular-articles::after {
  right: -70px;
  transform: translateY(-50%);
}

.popular-card img{
    max-height:190px;
}
/* -----熱門文章結束----- */
/* -----立即諮詢開始----- */
.bg7 {
    background-image: url(../img/banner/banner2.png);
    background-repeat: no-repeat;
    background-position: center 60%;
    width: 100%;
    height: 500px;
    font-family: 'Noto Serif TC';
    letter-spacing: 0.1em;
    font-weight: 500;
    position: relative;
}

.comment-text{
    min-height: 72px;
}

.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-next, .google-prev {
  width: 50px;             
  height: 50px;           
  background-size: cover;   
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;   
  position: static;    
}

.google-prev {
    background-image: url('../img/btn-arrow/swiper-left.png');
    z-index: 10;
    transition: all .3s;
}

.google-next {
  background-image: url('../img/btn-arrow/swiper-right.png');
  z-index: 10;
  transition: all .3s;
}

.google-prev:hover {
    background-image: url('../img/btn-arrow/sw-hover-left.svg'); 
  }
  
.google-next:hover {
  background-image: url('../img/btn-arrow/sw-hover-right.svg'); 
}

input[type="radio"]{
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-size: 100% auto;
  box-sizing: border-box;
  border: 1px solid #9DA2A5;
  position: relative;
}

input[type="radio"]:checked {
  border-color: #DB7F8E;
}

input[type="radio"]:checked::before{
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin: 2px;
  background-color: #DB7F8E;
}

/* -----立即諮詢結束----- */

/* -----文章摘要----- */
.table-container {
    background-color: #f9f9f9;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    display: table;
    margin-bottom: 1em;
    padding: 10px 20px 10px 10px;
    position: relative;
    width: auto;
}

.table-title {
    font-size: 20px;
    color: #7A7A7A;
    letter-spacing: 0.07em;
    padding-bottom: 6px;
    font-weight: 600;
}

.table-item {
  list-style: none;
  padding-left: 0;
  counter-reset: section; /* 第一層計數器 */
}

.table-item li {
  counter-increment: section;
  color: #9f9f9f;
  font-weight: 600;
  font-size: 16px;
}

.table-item li a::before {
  content: counters(section, ".") ". "; /* 自動生成 1, 1.1, 1.2 */
  font-weight: bold;
  margin-right: 4px;
  color: #9f9f9f;
}

/* 巢狀 ul 重置計數器 */
.table-item li ul {
  counter-reset: subsection; /* 第二層計數器 */
  padding-left: 20px; /* 可以縮排 */
}

.table-item li ul li {
  counter-increment: subsection;
}

.table-item li ul li a::before {
  content: counters(section, ".") "." counters(subsection, ".") "."; 
  /* 生成 1.1, 1.2, 2.1 這種 */
  font-weight: bold;
  margin-right: 4px;
  color: #9f9f9f;
}


.table-item li a:hover{
    text-decoration: underline;
}

.closeBanner {
    padding: 11px 70px;
    background-color: #DB7F8E;
    color:#fff;
    font-size:18px;
    border-radius:28px;
    cursor:pointer;
    margin-bottom:45px;
    margin-top:20px;
}

.banner-text{
   font-size:24px;
   color:#604D53
}

/* media */
@media(max-width:1650px) {
    .foliage{
    right: -40%;
  }
}

@media(max-width:1550px){
  .foliage{
    right: -30%;
  }
}

@media(max-width:1280px){
    .Link-btn{
      padding: 20px 30px;
  }
  .foliage{
    right: -15%;
    width: 200px;
  }
  .MedicalIcon{
   position: absolute;
   top:90%;
   right: 45%;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 13px;
   max-width: 67px;
   max-height: 67px;
}
.MedicalIcon.whiteCircle::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 13px); 
  height: calc(100% + 13px);
  border: 1px solid white;
  border-radius: 50%;
}
  .MedicalIcon img , .MedicalIcons img{
    width: 40px;
    height: 40px;
}
.MedicalIcons{
  position: absolute;
  top:90%;
  left: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px;
  max-width: 67px;
  max-height: 67px;
}
.MedicalIcons.RedCircle::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 13px); 
  height: calc(100% + 13px);
  border: 1px solid #DB7F8E;
  border-radius: 50%;
}
.blog-container > p{
  font-size: 0.875em;
}
.blog-container > span{
  font-size: 0.75em;
}
.popular-articles::before,
.popular-articles::after {
  width: 40%;
  margin: 0 5%;       
}
.Medicals{
    padding-left:0px;
}
.docker-card .doctor{
    left: 25%;
}
}

@media(max-width:1024px){
  .Link-btn{
    padding: 10px 15px;
  }
  .foliage{
    display: none;
  }
}

@media (max-width:768px){
    .HotTopics1-img {
        width: 662px;
        height: auto;
    }

  .closeBanner {
    padding: 11px 30px;
    margin-bottom:20px;
    margin-top:20px;
    font-size:16px;
}

.banner-text{
   font-size:20px;
}
  .header{
    min-height: 64px;
  }

  .logo img{
    width: 148px;
    height: 46px;
  }
  .bg2{
    height: 283px;
     background-position: 72% center;
  } 
  .bg3{
    height: auto;
  } 
  .bg4{
    height: 300px;
    background-position: 20% 60%;
  }
  .bg6{
    height: auto;
    background-position:10% 40%;
  }
  .bg7{
     height: 300px;
     background-size: cover;
  }
  .text-over{
    max-height: 180px;
    -webkit-line-clamp: 8;
  }
  .text-over2{
    min-height: 106px;
    max-height: 106px;
  }
  .Link-btn{
    font-size: 14px;
    padding: 8px;
    gap:10px;
     min-width: 100px;
  }
  .Link-btn img{
    width: 15px;
  }
  .modal-header {
  padding-top: 30px;   
  }
  .modal-header button img{
    width: 20px;
  }
  .modal-body h6 {
    font-size: 16px;
    color: #604D53;
    margin-bottom: 10px;
    padding-top: 40x;
 }
 .search-bar{
    padding-bottom: 30px;
 } 
 .search-bar  button{
   font-size: 14px;
 }
 .docker-card{
  min-width: auto;
  min-height: 335px;
 }
 .docker-card .doctor {
    position: absolute;
    top: -30px;
    left: 20%;
    width: 220px;
    height:350px;
    transition: transform 0.5s ease, filter 0.5s ease;
}
 .doctors{
   margin-top: -35px;
 }
 .docker-card .doctors{
    width: 220px;
    height:350px;
 }

.docker-btn{
  display: none;
}
.publication{
  font-size: 14px;
}
  .MedicalIcon{
   position: absolute;
   top:85%;
   right: 40%;
   padding: 13px;
   max-width: 67px;
   max-height: 67px;
}

.MedicalIcons{
  position: absolute;
  top:85%;
  left: 45%;
  padding: 13px;
  max-width: 67px;
  max-height: 67px;
}
.searchs{
  padding: 8px 46px;
}

.search-icons{
  width: 20px;
  height: 20px;
}
.blog-search-bar button{
  padding: 8px 17px;
  font-size: 14px;
}
.blog-search-wrapper{
  width: 70%;
}
.popular-articles::before,
.popular-articles::after {
  width: 25%;
  margin: 0 20%;       
}
.search-wrapper input[type="search"] {
    padding: 12px 0px 12px 40px;
}
.search-bar button {
    padding: 5px 12px;
    font-size: 14px;
}
.search-bar {
  width: 100%;
}
}

@media (max-width: 480px) {
  .modal {
    width: 390px;
    max-width: 100%;
  }
  .foliage{
    display: block;
    width: 100px;
    right: 0;
    bottom: 50%;
  }
  .HotTopics1-img {
      max-height: 350px;
  }
.medical-hober img{
   height:210px;
}
.week-btn{
    padding:4px 6px ;
  }
}

@media (max-width:400px){
  .modal {
    width: 360px;
    max-width: 100%;
  }
  .Link-btn{
    font-size: 14px;
    padding: 8px;
    gap:5px;
    min-width: 100px;
  }
  .week-btn{
    padding:4px 4px ;
  }
  .tracking-widest{
    letter-spacing: 0.05em;
  }
  .foliage{
    width: 80px;
    right: 0;
    bottom: 48%;
  }
}

@media(max-height:1000px){
  .left-link{
    top:78%;
  }
}