@charset "utf-8";
/* CSS Document */


/*-----
 alltag use set
---*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	
}
html{
	overflow-x:hidden; 
}
body{
	font-size: 18px;
	line-height: 200%;
	color: #808080;
	font-family: "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	overflow-y: auto;
	overflow-x: hidden;
	background: url("../img/bg_all.png") repeat-y center top;
}
@media all and (max-width: 370px){
	body{
		font-size: 15px;
	}
}
ul,li{
	list-style: none;
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
	cursor:pointer;
}
img, img a{
	border: 0;
}
img{
	max-width: 100%;
	height: auto;
}

/*-----
	logo set
---*/

.logoBorder{
	width: 324px;
	height: 252px;
	background:url("../img/bg_navi_logo.png") no-repeat;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 99994;
	overflow: hidden;
}
.logoBorder img{
	position: absolute;
	right: 35px;
	top: 25px;
}
@media all and (max-width: 1384px){
	.logoBorder{
		width: 250px;
		height: 194.44px;
		background-size: 250px 194.44px;
	}
	.logoBorder img{
		width: 68%;
		height: auto;
		right: 15px;
		top: 8px;
	}
}
@media all and (max-width: 768px){
	.logoBorder{
		width: 200px;
		height: 156px;
		background-size: 200px 156px;
	}
	.logoBorder img{
		width: 65%;
		height: auto;
		right: 15px;
		top: 8px;
	}
}
@media all and (max-width: 480px){
	.logoBorder{
		width: 150px;
		height: 117px;
		background-size: 150px 117px;
	}
	.logoBorder img{
		right: 10px;
		top: 6px;
	}
}

/*-----
  page location set
---*/
.locationBorder{
	width: 52px;
	position: absolute;
	right: 0px;
	top: 500px;
	z-index: 99994;
	background: #a0b167;
	color: #fff;
	font-weight: bold;
	font-size: 1.2em;
	letter-spacing: 3px;
	padding: 16px 8px;
	border-top-left-radius: 22px;
	border-bottom-left-radius: 22px;
}
span.locationTxt{
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr ;
}

/*-----
  navibar set
---*/
.naviBorder{
	position:absolute;
	text-align: center;
	margin-top: 10px;
	width: 100%;
	z-index: 99998;
}
.fat-nav{
	display: block;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}
.fat-nav li{
	display: inline-table;
	margin-right:20px;
	margin-left: 20px;
}
.fat-nav li a{
	font-size: 1.2em;
	font-weight: bold;
	letter-spacing: 3px;
	color:#808080;
	display: block;
	padding:4px 22px;
}
.fat-nav li a:hover{
	background: #deebf4;
	border-radius: 20px;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
	-o-border-radius:20px;
	animation: navi_move 1s ease-out forwards;
	-webkit-animation: navi_move 1s ease-out forwards;
}

@keyframes navi_move{
	0%{ 
		background-color:rgba(222,235,245,0);
	}
	100%{
		background-color:rgba(104,210,226,1);
	}
}

@media all and (max-width: 1384px){
    .hamburger {
	  display: block;
	  width: 60px;
	  height: 60px;
	  z-index: 99999;
	  border-radius: 50%;
	  margin: 10px;
	  position: fixed;
	  cursor: pointer;
	  -webkit-transition-duration: 0.66s;
			  transition-duration: 0.66s;
	  -webkit-transition-timing-function: swing;
			  transition-timing-function: swing;
	  background: #17a1b6;
	}
	.hamburger__icon {
	   width: 30px;
	   height: 4px;
	   background-color: white;
	   border-radius: 2px;
	   position: absolute;
	   top: 28px;
	   left: 15px;
	   -webkit-transition-duration: 0.5s;
			   transition-duration: 0.5s;
	   transiting-timing-function: swing;
	}
	 .hamburger__icon:before, .hamburger__icon:after {
	  width: 30px;
	  height: 4px;
	  background-color: white;
	  border-radius: 2px;
	  content: "";
	  position: absolute;
	  left: 0px;
	  -webkit-transition-duration: 0.5s;
			  transition-duration: 0.5s;
	  -webkit-transition-timing-function: swing;
	  transition-timing-function: swing;
	}
	.hamburger__icon:before, .hamburger__icon:after {
	  position: absolute;
	  content: "";
	}
	.hamburger__icon:before {
	  top: -9px;
	}
	.hamburger__icon:after {
	  top: 9px;
	}
	.hamburger.active .hamburger__icon {
	  background-color: transparent;
	}
	.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
	  background-color: #fff;
	}
	.hamburger.active .hamburger__icon:before {
	  -webkit-transform: translateY(9px) rotate(45deg);
      -ms-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
	}
	.hamburger.active .hamburger__icon:after {
	  -webkit-transform: translateY(-9px) rotate(-45deg);
      -ms-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
	}
	.fat-nav {
	  top: 0;
	  left: 0;
	  z-index: 99993;
	  position: fixed;
	  display: none;
	  width: 100%;
	  height: 100%;
	  background: rgba(23, 161, 182, 0.8);
	  -moz-transform: scale(1.4);
	  -ms-transform: scale(1.4);
	  -webkit-transform: scale(1.4);
	  transform: scale(1.4);
	  -moz-transition-property: -moz-transform;
	  -o-transition-property: -o-transform;
	  -webkit-transition-property: -webkit-transform;
	  transition-property: transform;
	  -moz-transition-duration: 0.4s;
	  -o-transition-duration: 0.4s;
	  -webkit-transition-duration: 0.4s;
	  transition-duration: 0.4s;
	  /*-webkit-overflow-scrolling: touch;*/
	}
	.body_of_active{
		overflow-y: hidden;
	}
	.fat-nav__wrapper {
	  width: 100%;
	  height: 100%;
	  display: table;
	  table-layout: fixed;
	}
	.fat-nav.active {
	  -moz-transform: scale(1);
	  -ms-transform: scale(1);
	  -webkit-transform: scale(1);
	  transform: scale(1);
	}
	.fat-nav ul {
	  display: table-cell;
	  vertical-align: middle;
	  margin: 0;
	  padding: 0;
	}
	.fat-nav li {
	  display:grid;
	  text-align: center;
	  margin: 15px 0;
	  letter-spacing: 1px;
	}
	.fat-nav li, .fat-nav li a {
	  color:#fff;
	}
	.fat-nav li a {
	  text-decoration: none;
	}
	.fat-nav li a:hover{
		border-radius: 0px;
	}
	
}

/*-----
  banner set
---*/

.bannerborder{
	background:url("../img/bg_00.jpg") no-repeat center top;
	position: absolute;
	width: 100%;
	height: 426px;
	top: 0px;
}
.bannerImg{
	position: relative;
	width: 100%;
	max-width: 1024px;
	height: 426px;
	overflow: hidden;
	margin: auto;
}
.bannerRwd{
	display:block;
    width: auto;
    height: 426px;
    overflow:hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size:cover;
}
.bannerTxt{
	position:absolute;
	right: 10px;
	top: 220px;
	text-align: right;
	z-index: 99994;
}
span.bannerSub{
	display: block;
	float: right;
	font-size: 1.61em;
	font-weight: bolder;
	line-height: 120%;
	margin-bottom: 12px;
	color: #17a1b6;
}
span.bannerCont{
	display: block;
	float: right;
	line-height: 120%;
	color: #68d2e2;
	margin-bottom: 35px;
}

@media all and (max-width: 768px){
	.bannerborder{
		height: 700px;
	}
	.bannerImg{
		margin-top: 140px;
	}
	.bannerTxt{
		top: 25px;
		right: 15px;
	}
	/*強制換行*/
	.txt_br{
        content: ' ';
        display: block;
    }
	/*強制隱藏*/
	.txt_none{
        display: none;
    }
}

/*-----
 叫號機 
---*/

.nowNum{
	margin-top: -70px;
	width: auto;
	overflow: hidden;
}
.nowNum_txt{
	margin-top: 12px;
	font-size:1.6em;
	line-height: 160%;
	font-weight: bolder;
	color: #17a1b6;
	text-align: center;
	clear: both;
}
.nowNum_wraming{
	color: #17a1b6;
	text-align: center;
	clear: both;
}
.nowNum_NumBorder{
	margin-left: auto;
	margin-right: auto;
	width: 360px;
	height: 165px;
}
.nowNum_num_v2{
	float: left;
	margin-left: 15px;
	margin-right: 15px;
	font-size: 3.6em;
	font-weight: bolder;
	color:#FF6E71;
	width: 150px;
	text-align: center;
	height: 150px;
	border-radius: 75px;
	background: #fff;
}
.nowNum_num_v2 >span.Num_room{
	float: left;
	font-size:0.35em;
	line-height: 65px;
	width: 150px;
	color: #17a1b6;;
}
span#call_num-1544,span#call_num-1545{
	animation: twinkle 3.5s infinite alternate;
}
.nowNum_num_v2 >span#call_num-1544,.nowNum_num_v2 >span#call_num-1545{
	float: left;
	width: 150px;
}
@keyframes twinkle {
            0%{
                opacity:1;
            }
			80%{
				opacity:1;
			}
			81%{
                opacity:.0.2;
            }
            100%{
                opacity:0;
			}
}
/*內頁叫號機*/
.pageNumBorder{
	width: 290px;
	position: absolute;
	right: -236px;
	top: 660px;
	z-index: 99994;
	background: #dde8b8;
	padding: 16px 8px;
	border-top-left-radius: 22px;
	border-bottom-left-radius: 22px;
	cursor: pointer;
	display: block;
}
.pageNumMove{
	animation: pageNum_move 0.8s ease-in forwards;
}
@keyframes pageNum_move {
            0%{
                right: -235px;
            }
            100%{
                right:0px;
			}
}
.pageNumTxtBorder{
	float: left;
	width: 35px;
	color: #17a1b6;
	font-weight: bold;
	font-size: 1.2em;
	letter-spacing: 3px;
}

.pageNumBorder span.pageNumTxt{
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr ;
}

.page_nowNum_num{
	margin-left: 15px;
	float: left;
	font-size: 2.8em;
	font-weight: bolder;
	color:#FF6E71;
	width: 100px;
	text-align: center;
	height: 100px;
	border-radius: 50px;
	background: #fff;
}
.page_nowNum_num >span.Num_room{
	float: left;
	font-size:0.35em;
	line-height: 45px;
	width: 100px;
	color: #17a1b6;;
}
/*-----
  首頁臉書社群 set
---*/
.iconBorder{
	position: relative;
	width: auto;
	margin: auto;
	text-align: center;
}
.iconBorder ul{
	margin-top: 30px;
}
.iconBorder li{
	margin-left: 25px;
	margin-right: 25px;
	display: inline-table;
}
.iconBorder li:hover{
	animation: icon_move 0.3s ease-in forwards;
}
@keyframes icon_move {
            0%{
                opacity:1;
			}
            100%{
                opacity:0.6;
			}
}
@media all and (max-width: 375px){
	.iconBorder li{
		margin-left: 12px;
		margin-right: 12px;
	}
}

/*-----
  門診表 set
---*/
.timeTableBorder{
	width: 100%;
	font-family: "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}
table.timeTable{
	width: 100%;
	font-size: 1.2em;
	border-collapse: collapse;
}
table.timeTable tr td{
	border: 1px #e4e4e4 solid;
}
table.timeTable td{
	padding: 8px;
}
.greenPiont{
	font-size: 2em;
	font-weight: bolder;
	color: #98B685;
}
.bluePiont{
	font-size: 2em;
	font-weight: bolder;
	color: #35A1CC;
}
@media all and (max-width: 1025px){
	table.timeTable{
		width: 98%;
		font-size: 1em;
		margin: auto;
		line-height: 110%;
	}
}
	
/*-----
  index news set
---*/

.newsItemsBorder{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap:wrap;
}
.newsDate{
	width: 20%;
	line-height: 135%;
}
.date_bg{
	padding: 2px 4px;
	margin: auto 8px;
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 62%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 62%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 62%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.newsMain{
	width: 80%;
}
.newsSub{
	width: 100%;
	font-size: 1.2em;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.newsTxt{
	line-height: 135%;
}
.newsBtn{
	width: 100%;
}
/*內頁消息*/
.news_date{
	margin-top: 8px;
}
.news_sub{
	margin-top: 2px;
	font-weight: bold;
	line-height: 130%;
}

/*-----
  儀器設備
---*/
.cardImg{
	width: 100%;
}
.cardImg img{
	max-width: 100%;
	height: auto;
}
/*-----
  最新消息頁 編輯器預設值
---*/
.newsCont{
	float: left;
	width: 100%;
}
.newsCont p{
	float: left;
	width: 100%;
}
.newsCont img{
	max-width: 100%;
}
.newsCont ul li{
	list-style: disc;
}
.newsCont table{
	max-width: 100%;
}

/*-----
  頁次
---*/
.pagination{
	position:relative;
	width:100%;
	padding: 2px;
}
	
.pagination ul{
	display:inline-table;
	text-align: center; /*Set to “right" to right align pagination interface*/
}
.pagination li{
list-style-type: none;
display:inline-table;
border: 1px solid #d6d5d5;
border-radius:4px;
margin-left:3px;
margin-right:3px;
}
.pagination li.noneBorder{
	border:none;
	background: none;
}
.pagination li.noneBorder:hover{
	background: none;
}
.pagination li a{
padding: 2px 12px;
text-decoration: none;
display:block;
}

.pagination li:hover{
	background:#FFEDED;
}

.pagination a.currentpage{
color: #fff !important;
font-weight: bold;
background:#dce8b8;
cursor: default;
}

.pagination a.disablelink, .pagination a.disablelink:hover{
cursor: default;
color: #929292;
font-weight: normal !important;
}

.pagination a.prevnext{
font-weight: bold;
}

