/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Microsoft JhengHei", "Raleway", sans-serif;
  color: #333;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #fff;
  border: 1px solid #2383c4;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #2383c4;
  line-height: 0;
  font-weight: 700;
}

.back-to-top:hover,
.back-to-top i:hover {
  background: #8bc4ea;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #f7fbfe;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}


#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;

}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #555555;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #3498db;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #3498db;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #4aa3df;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 18px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3498db;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
  font-size: 18px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  font-size: 18px;
  justify-content: flex-start;
}

.navbar-mobile .dropdown ul a::before {
  content: '。\00A0';
  color: #3498db;
}

.navbar-mobile .dropdown ul a i {
  font-size: 18px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  margin-top: 100px;  
}

#hero h1 {
  margin-bottom: 1.8rem;
  font-size: 37px;
  font-weight: 700;
  line-height: 56px;
  color: #2383c4;
  text-align: justify;
}

#hero h2 {
  color: #484848;
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 1.8;
  text-align: justify;
  text-indent: 2em;
}

.mark {
  font-weight: bold;
  background: -webkit-linear-gradient(transparent 60%, #ffebe7 60%, #FAE3CF 100%, transparent 100%);
}

#hero .btn-get-started {

  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
}

#hero .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    margin-top: 15px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 80%;
    margin: 50px auto 20px auto;
  }

  #hero h1{
    text-align: center;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
    margin: 50px auto 20px auto;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 90%;
    margin-top: 100px;
  }
  #hero .hero-img{
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 575px) {
  section{
    margin-bottom: unset;
  }
}

.section-bg {
  background-color: #f7fbfe;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #3498db;
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content h2 {
  font-weight: 600;
  font-size: 26px;
}

.about .about-tit{
  border-left: 8px solid #1977cc;
  color: #1977cc;
  font-weight: bold;
  font-size: 22px;
  text-align: left;
  margin: 5px 0;
}
.about .row .thereof{
  color: #222;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  text-indent: 2em;
}



.about .btn-get-started {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
}

.about .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}


/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.service  .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

@media(max-width: 570px){
  .service h2{
    padding-bottom: 20px;
  }
}

.service  .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}


.service  .icon-box:hover::before {
  background: #e1f0fa;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.service  .icon {
  margin-bottom: 10px;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #3498db;
  transition: all 0.3s ease-in-out;
}

.service  .icon i {
  font-size: 36px;
  line-height: 1.1;
  color: #fff;
}

.service .icon-box hr{
  border: 1px double #4c9fd6;
}

.service .row .title {
  font-weight: 700;
  font-size: 24px;
  color: #222;
}

.service  .description{
  font-size: 20px;
  color: #4c9fd6;
  font-weight: 600;
}


.service ul li {
  font-size: 17px;
  line-height: 28px;
  margin-top: 15px;
  margin-bottom: 0;
  color: #222;
  text-align: justify;
}

/* .service .icon-box:hover ul li,
.service .icon-box:hover ul li::before,
.service .icon-box:hover .title,
.service .icon-box:hover .description {
  color: #fff;
} */
.service  .icon-box:hover .icon {
  background: #fff;
}
.service  .icon-box:hover .icon i {
  color: #4c9fd6;
}


.service ul{
  list-style: none;
  padding-left: unset;
}
.service ul li::before{
  content: '\2055\00A0';
  color: #4c9fd6;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .content {
  padding: 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #3498db;
  float: left;
  line-height: 0;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}



/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news .card{
  border: unset;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  background: #fff;
  min-height: 300px;
}

@media (max-width: 570px) {
  .news .card{
    padding: 15px;
	min-height: unset;
  }
  .news table thead th{
    font-size: 18px;
  }
  .news table tbody td{
    font-size: 16px;
  }
  .news h2{
    padding-bottom: 20px;
  }
}

.news table thead{
  border-bottom: #4aa3df 2px solid;
}
.news table thead th{
  text-align: center;
  color: #2383C4;
  font-size: 20px;
}
.news table tbody .tit{
  text-align: center;
  color: #222;
  font-size: 16px;
}
.news table tbody td{
  color: #222;
  font-size: 17px;
  cursor: pointer;
}
.news table tbody td:hover{
  font-weight: 600;
}

.news .news_btn{
  border: 1px solid #2383C4;
  border-radius: 5px;
  padding: 5px 10px;
  color: #4aa3df;
  background: #fff;
  margin: 5px;
}
.news .news_btn:hover{
  background: #2383C4;
  color: #fff;
  border-color: #2383C4;
}

.news hr{
	border: 1px dotted #ccc;
}


/**model*/
.news .modal .modal-header{
  background: #4c9fd6;
}

.news .modal .modal-header .modal-title{
  font-size: 24px;
  color:#fff;
}

.news .modal .modal-body{
  font-size: 18px;
}
.news .modal .modal-body .main-icon{
  border-left: 6px solid #4c9fd6;
  padding-left: 10px;
  color: #222;
}
.news .modal .modal-body .news-date{
  font-size: 16px;
}
.news .modal .modal-body .news-subject{
  font-weight: 600;
  font-size: 22px;
}
.news .modal p{
  margin-top: 20px;
}
.news .modal .modal-footer{
  justify-content: center;
  border: unset;
}
.news .modal .btn{
  background: #4c9fd6;
  color: #fff;
}

/*--------------------------------------------------------------
# clinicHours
--------------------------------------------------------------*/
.clinicHours p{
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 570px){
  .clinicHours p {
    font-size: 16px;
  }
  .clinicHours table{
    margin-top: 20px;
  }
}

.clinicHours table{
  border-radius: 5px;
  border-color: #fff;
  border-collapse: separate;
}

.clinicHours table thead{
  height: 2rem;
}

.clinicHours table tr th,
.clinicHours .tableTitle{
  text-align: center;
  background: #2383C4;
  font-size: 20px;
  color:#fff;
  font-weight: 600;
  vertical-align: middle;
}

.clinicHours table tbody tr td{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  background: #e9f4fb;
  vertical-align: middle;
}

/*左上*/
tr:last-child th:first-child{
  border-top-left-radius: 10px;
}
/*左下*/
tr:last-child td:first-child{
  border-bottom-left-radius: 10px;
}
/*右上*/
tr:first-child th:last-child{
  border-top-right-radius: 10px;
}
/*右下 */
tr:last-child td:last-child{
  border-bottom-right-radius: 10px;
}

.clinicHours .badge{
  background-color: #f0735d;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
}

.clinicHours .point{
  color: #2383C4;
  border-radius: 5px;
  font-size: 26px;
}

.clinicHours .remark{
  border-radius: 10px;
  background: #ffebe7;
  padding: 15px;
  font-size: 18px;
  color: #222;
}
.clinicHours .remark h5{
  color:#f0735d;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .testimonial-item {
  box-sizing: content-box;
  padding: 25px 20px 25px 105px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  width: 100%;
}

.team .testimonial-item .testimonial-img {
  width: 130px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -30px;
}

.team .testimonial-item h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.team .testimonial-item h4 {
  font-size: 17px;
  color: #999;
  margin-bottom: 25px;
}

.team .testimonial-item p,
.team .testimonial-item ul li {
  margin: 10px auto;
  font-size: 17px;
}
.team .testimonial-item p .badge{
  background: #2383C4;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .team .testimonial-item {
    padding: 20px;
    margin: 15px;
  }

  .team .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
  background: #4691C0;
  padding-bottom: 60px;
  background-repeat: round; 
  background: url(../img/footer.svg);
  margin-bottom: 0;
}
.contact .map{
  margin-bottom: 30px;
}
@media (max-width: 570px) {
  .contact h2{
    margin-bottom: 25px;
  }
  .contact,
  .section-title{
    padding-bottom: 0;
    margin-bottom: unset;
  }
  .contact .map{
    margin-bottom: unset;
  }
}


.contact .section-title h2{
  font-size: 28px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222222;
}

.contact .map iframe{
  border-radius: 7px;
}

.contact .info {
  color: #444444;
  font-size: 18px;
  line-height: 24px;
}

.contact .info iconify-icon,
.contact .info i {
  font-size: 24px;
  color: #3498db;
}

.contact p a{
  color:#222;
}
.contact p a:hover{
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #4691C0;
  padding-top: 10px;
  padding-bottom: 15px;
  color: #fff;
  font-size: 16px;  
}
@media (max-width: 570px) {
  #footer {
    padding-top: 120px;
    margin-top: -100px;
    font-size: 70%;
  }
}


#footer .credits {
  font-size: 15px;
  padding-top: 5px;
  color: #fff;
}

#footer .footer-links a {
  color: #fff;
  padding-left: 16px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #fff;
}

#footer .manage{
  border: 1px solid #fff;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
}

#footer .manage:hover{
  background: #e9f4fb;
  color:#2383c4;
  font-weight: bold;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #3498db;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-container{
  background: #fff;
  border-radius: 10px;
  padding-top: 25px;
  margin: auto -35px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media(max-width: 570px) {
	.portfolio .portfolio-container {
		margin: unset;
	}
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 150px;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: hsla(204, 70%, 63%, 0.8);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
  height: 100%;
  width: 100%;
  display: block;
  object-fit:cover;  

}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  align-items: center;
  justify-content: center;
}


.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 40px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;

}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  cursor: pointer;
}


/*--------------------------------------------------------------
# Health Us
--------------------------------------------------------------*/
.health .content h2 {
  font-weight: 600;
  font-size: 26px;
}

.health .news_btn{
  border: 1px solid #2383C4;
  border-radius: 5px;
  padding: 5px 10px;
  color: #4aa3df;
  background: #fff;
  margin: 5px;
}
.health .news_btn:hover{
  background: #2383C4;
  color: #fff;
  border-color: #2383C4;
}

.info-box-date {
	background: #1977cc;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	padding: 3px 10px;
	margin-top: -15px;
	margin-left: -13px;
	position: relative;
	width: 120px;
	text-align: center;

}

.info-box-tit {
	font-size: 20px;
	font-weight: bold;
	margin: 5px 0;
	height: 60px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	color: #666;
}

.list-box {
	border-width: 1px;
}

.list-box:hover {
	border: 1px solid #76b5ee;
	cursor: pointer;
}

.list-img-box {
	height: 200px;
	width: auto;
	display: flex;
}
@media (max-width:915px){
	.list-img-box {
		height: 150px;
		width: auto;
		display: flex;
	}
}
@media (max-width:766px){
	.list-img-box {
		height: 260px;
		width: auto;
		display: flex;
	}
}

.list-img-box img {
	width: 100%;
	object-fit: cover;
}

#lblNewsContent, #lblEncyclopediaContent{
	width: 100%;
	padding: 0 10px;
	word-wrap: break-word;
}
#lblNewsContent img, #lblEncyclopediaContent img{
	max-width: 100%;
}
@media (max-width:570px){
	#lblNewsContent img, #lblEncyclopediaContent img {
		width: 100% !important;
	}
	.health .article-body img {
		width: 100%;
	}
}

.health .article-body span{
	font-size: 16px;
}
.health .article-body h1 {
	font-size: 2.5rem;
}
.health .article-body h2 {
	font-size: 2.25rem;
}
.health .article-body h3 {
	font-size: 2rem;
}
.health .article-body h4 {
	font-size: 1.75rem;
}
.health .article-body h5 {
	font-size: 1.5rem;
}


/*detail*/
.health .news-detail {
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	padding: 20px;
	outline: none;
}

.health .back-btn {
	display: inline-block;
	background: #1977cc;
	padding: 3px 15px;
	color: #fff;
	border-radius: 5px;
	transition: all ease-in-out 0.4s;
	font-size: 16px;
	box-shadow: 0px 1px 3px #ccc;
  cursor: pointer;
}

.health .news-detail{
  box-shadow: 0px 1px 3px #ccc;
}

.health #detail h4,
.health #detail .source{
  color:#1977cc;
}

.health #detail blockquote {
	padding-left: 10px;
	border-left: 6px solid #4aa3df;
}


/*--------------------------------------------------------------
# Health Us
--------------------------------------------------------------*/
.breadcrumbs{
  padding: 10px 0;
	background-color: #f1f7fd;
  width: 100%;
  margin-top: 100px; 
  margin-bottom: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs h2 {
	font-size: 24px;
	font-weight: 300;
	margin: 0;
}

@media (max-width: 992px) {
	.breadcrumbs h2 {
		margin: 0 0 10px 0;
	}
  .breadcrumbs{
    margin-top: 100px;
  }
  .about h2, .health h2{
    margin: 20px auto;
  }
}

.breadcrumbs ol li + li {
	padding-left: 10px;
}

.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #6c757d;
	content: "/";
}

@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}


