html {
 overflow-y: scroll;
 overflow: -moz-scrollbars-vertical;

}
body {
  background: #f3f3f3;
  font-family: Helvetica,Arial,"Heiti TC",Arial,微軟正黑體;
  color:#4e4e4e;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
  color:#4e4e4e;
}

h1{
  font-size: 36px;
}
h2{
  font-size: 20px;
}
h3, h4{
  font-size: 16px;
}

.title h2 {
  font-size:30px;
  font-weight:normal;
  padding-left:10px;
  padding-bottom:20px;
  background: transparent url("/assets/ckeditor/yoyo/line19.png");
  background-repeat: no-repeat;
  background-position: left bottom;

}

.title h3{
  font-size: 20px;
  color: #787878;
  font-weight: 700;
  line-height: 24px;
  padding-left:10px;
}



A:link,A:visited { text-decoration: none}

a:hover, a:focus {
  color: #c52d2f;
  text-decoration: none
}

hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}

.btn-transparent {
  border: 3px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-transparent:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.mbodybg {
  color:#000;
  margin-top:30px;
  border-radius: 6px;
  padding:15px 35px 60px 35px;
  background-color: rgba(255, 255, 255, .95);
}

p {
  margin:0
}


.form-group {
  margin-bottom: 10px;/*原15px*/
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
}


/*************************
*******Header******
**************************/

.navbar>.container .navbar-brand{
  margin-left: 0;
}

.top-bar {
  padding: 0;
  background: #fff;
  -border-bottom: 1px solid #aaa;
  height: 100px;
  background: transparent url("/assets/images/hbg.jpg");

}

.navbar-brand {
  padding: 0;
  margin:0;
}
.logo {
  width: auto;
  max-width: 100%;
  max-height: 100px;
}
.navbar {
  border-radius: 0;
  margin-bottom: 0;
  height:60px;
  background-color: rgba(255, 255, 255, .7);
  box-shadow: 0px 5px 5px rgba(90, 90, 90, 0.15);
}

/*nav*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-top:-10px;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  body[data-layout-mode=dark] .navmenu a,
  body[data-layout-mode=dark] .navmenu a:focus {
    color: #fff;
  }

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

  .navmenu li:hover>a {
    color: #fff;
    background-color: #080808;
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
    background-color:#080808;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  body[data-layout-mode=dark] .mobile-nav-toggle { color: #fff; }

  .navmenu {
    padding: 0;
    z-index: 9997;
    margin-left:20px;
  }
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    *background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    *box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--accent-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    *color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    *background-color: var(--accent-color);
    *color: var(--contrast-color);
    *transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000;
    position: absolute;
    font-size: 32px;
    top: 35px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: #fff;
    transition: 0.3s;
    margin:20px;
    border-radius: 20px;
    border: #006699 1px solid;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  .mobile-nav-active .navmenu>ul li {
    padding:0;
    margin:0;
  }

  .mobile-nav-active .navmenu a,
  .mobile-nav-active .navmenu a:focus {
    padding:8px 20px;
    margin:0;
  }

}
/* header end */


/*側邊欄*/
.sidebar {
  border-radius: 8px;
  margin:50px 0 20px 0;
  -padding:0;
}

.side-nav {
  padding:0;
  margin:0;
  -margin:10px;
}

.side-nav ul {
  list-style: none;
  width:100%;
  background:#E6EDF5;

}


.side-nav li {
  list-style: none;
  font-size:15px;
  padding:8px 0 8px 10px;
  height:40px;
  border-bottom: 1px dotted #ccc;
  background:#E6EDF5;
}

.side-nav li.active {
  background:#fff;
  border-bottom: 1px dotted #ccc;
  border-left: 2px solid #660000;
}
.sidebar_label {
  font-size:16px;
  font-weight: 700;
  margin:0 auto ;

    background: #86BDFC;
    border-bottom: 5px solid #789DC8;
    color: #FFF;
    padding: 5px 0px;
    text-align: center;

  border-top-left-radius: 8px;
  border-top-right-radius: 8px;

}

.sidebar_bottom {
  margin:0 auto ;

  background: #86BDFC;
  -border-bottom: 5px solid #789DC8;
  color: #FFF;
  padding: 2px 0px;
  text-align: center;

  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
/*側邊欄end*/


#mbody {
  line-height: 160%;
}

#mbody img {
  max-width: 100%;
}

@media (min-width: 1200px) {
.container {
    width: 1000px;
}
}

@media (min-width: 928px) {
 #mbody .container,
 #mainnav .container,
 #header .container {
   width:960px;
   padding:0;

 }
}

@media (min-width: 768px) {

 #header .container {
   padding:0;
 }

.navbar>.container .navbar-brand{
  margin-left: 0;
}


}

@media (max-width: 767px) {

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-top: 0;
  padding-bottom: 0;
  background-color: #c4deef;
}

 #header .container {
   padding:0;
 }

.navbar-toggle {
   margin-right: 25px;
}

.navbar-fixed-top .container {
    padding:0;
    margin:0;
}

.navbar-nav>li{
  margin-left: 25px;
  padding-top: 11px;
  font-size:18px;
  text-shadow: 0 0 4px #fff;
}


.logo {
  -max-width:385px;
  height:100px;
  -background: transparent url("/assets/images/logo_s2019.jpg");
  background-repeat: no-repeat;
}


}




#middle {
  background: #f2f2f2;
}



#contact-info {
    -background: #ffffff;
    -border: 1px solid #cecece;
    -border-radius: 6px;
    display: block;
    margin: 20px auto 20px;
    -padding: 10px 30px 30px 30px;
    -width: 330px;

}

.contact-info i{
  width: 60px;
  height: 60px;
  font-size: 40px;
  line-height: 60px;
  color: #fff;
  background: #000;
  text-align: center;
  border-radius: 10px;

}


.contact-info{
  color:#000;
}



.gmap-area {
  background-image: url("/assets/images/map.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 0;
}

.gmap{
    border: 2px solid #f6f5f0;
    height: 350px;
    max-width: 700px;
    box-shadow: 0px 0px 3px 3px #e7e4dc;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.gmap-area address h5{
  font-weight: 700;
  /* font-size: 16px; */
}
.map-content {
padding-left:20px;
}

#contact-page{
  padding-top: 0;
}

#contact-page .contact-form
.form-group label {
  color: #4E4E4E;
  font-size: 16px;
  font-weight: 300;
}
/*
.form-group .form-control {
  padding: 7px 12px;
  border-color:#f2f2f2;
  box-shadow: none;
}
*/


#contact-page .contact-wrap {
  margin-top: 20px;
}






/***********************
********* Footer ******
*/

#footer {
  margin-top:20px;
  padding: 10px 0 10px 0;
  color: #fff;
  -background: #4e4e4e;
  background-color: rgba(0, 0, 0, .8);
}

footer a {
  color:#ACD6FF;
}

#footer a:hover {
  color: #c52d2f;
}

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

#footer ul > li {
  display: inline-block;
  margin-left: 15px;
}




blockquote {
border:#C0C4DD;
border-style:dotted;
border-top-width:1px;
border-right-width:1px;
border-bottom-width:1px;
border-left-width:1px;
border-left: 4px solid #90B3DB;
border-radius: 5px;
background-color:#F5F5F5;
background-position: middle left;
background-repeat: no-repeat;
padding: 10px;
}


pre {
 background-color: #F9F9F9;
 border: 1px dashed #555555;
 color: black;
 padding: 10px;
 margin:8px 15px 8px 15px;
}




/*============================*/
/***樣式a****/
h2.label_1txt {
color:#660000;
font-size:20px;
font-weight: bold;
padding:8px 0 0 7px;
margin:0 0 0 0;
}

/*左a*/
.label_1a_l {
float:left;
background-image: url(/assets/ckeditor/yoyo/label_1_main.png);
background-position: 0px 0px;
background-repeat: no-repeat;
height: 37px;
width:32px;
}
/*左b*/
.label_1b_l {
float:left;
background-image: url(/assets/ckeditor/yoyo/label_1_main.png);
background-position: 0px -37px;
background-repeat: no-repeat;
height: 37px;
width:32px;
}
/*左c*/
.label_1c_l {
float:left;
height: 37px;
width:32px;
background-image: url(/assets/ckeditor/yoyo/label_1_main.png);
background-position: 0px -74px;
background-repeat: no-repeat;
}
/*左d*/
.label_1d_l {
float:left;
height: 37px;
width:32px;
background-image: url(/assets/ckeditor/yoyo/label_1_main.png);
background-position: 0px -111px;
background-repeat: no-repeat;
}

/*中間*/
.label_1a_m , .label_1b_m , .label_1c_m , .label_1d_m {
float:left;
height: 37px;
background-image: url(/assets/ckeditor/yoyo/label_1_main.png);
background-position: 0px -147px;
background-repeat: repeat-x;
min-width: 80px;
}
/*右方*/
.label_1a_r, .label_1b_r, .label_1c_r, .label_1d_r {
float:left;
height: 37px;
width:15px;
background-image: url(/assets/ckeditor/yoyo/label_1_main.png);
background-position: 0px -184px;
background-repeat: no-repeat;
}


code {
    background-color: #ECECEC;
    border: 1px solid #D9D9D9;
    color: #DD1144;
    padding: 3px 3px 1px 3px;
    margin: 0 2px 0 2px;
    font-size: 90%;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

/*goto top*/
#top {
 font-size: 16px;
 font-weight: bold;
 color: #FFF;
 text-decoration: none;
 cursor: pointer;
 background-color: #6BACE2;
 padding: 10px;
 width: 50px;
 text-align: center;
 border-radius: 10px 10px 0 0;
 position: fixed;
 right: 50px;
 bottom: 0;
 display: none;
}


.bs-wizard {margin-top: 10px;}

/*Form Wizard*/
.bs-wizard {border-bottom: solid 1px #e0e0e0; padding: 0 0 10px 0;}
.bs-wizard > .bs-wizard-step {padding: 0; position: relative;}
.bs-wizard > .bs-wizard-step + .bs-wizard-step {}
.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {color: #595959; font-size: 16px; margin-bottom: 5px;}
.bs-wizard > .bs-wizard-step .bs-wizard-info {color: #999; font-size: 14px;}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot {position: absolute; width: 30px; height: 30px; display: block; background: #fbe8aa; top: 45px; left: 50%; margin-top: -15px; margin-left: -15px; border-radius: 50%;}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {content: ' '; width: 14px; height: 14px; background: #fbbd19; border-radius: 50px; position: absolute; top: 8px; left: 8px; }
.bs-wizard > .bs-wizard-step > .progress {position: relative; border-radius: 0px; height: 8px; box-shadow: none; margin: 20px 0;}
.bs-wizard > .bs-wizard-step > .progress > .progress-bar {width:0px; box-shadow: none; background: #fbe8aa;}
.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {width:100%;}
.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {width:50%;}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {width:0%;}
.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {width: 100%;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {background-color: #f5f5f5;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {opacity: 0;}
.bs-wizard > .bs-wizard-step:first-child  > .progress {left: 50%; width: 50%;}
.bs-wizard > .bs-wizard-step:last-child  > .progress {width: 50%;}
.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot{ pointer-events: none; }



.table1 {
  margin-bottom:15px;
  border: 1px solid #bbb;
  background-color:#fff;
}

.table1 td {
  padding:3px 5px;
  border: 1px solid #ddd;
}

/*override bootstrap*/
.carousel-control-next, .carousel-control-prev {
  width: 60px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 40px;
  height: 40px;
}

.formobile {
  display:none;
}
@media (max-width: 576px) {
  .formobile {
  display:inline;
  }
}
