img{
  max-width: 100%;
}
a,a:hover,a:focus{
  text-decoration:none;
}

.navbar{
  background-color: #fff;
}
.navbar .container{
  position: relative;
}
.navbar-brand{
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 220px;
}
.navbar-right{
  margin-right: 0;
}
.navbar-nav>li:nth-child(-n+6)>a::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #ffac71;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 992px){
  .navbar-nav>li:nth-child(-n+6)>a:hover::after{
    width: 100%;
  }
}
.navbar-search {
  position: absolute;
  right: 0;
}
.navbar-nav,
.navbar-header .attr-nav{
  margin-top: 38px;
}
.attr-nav a{
  display: block;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 992px) {
  /* 控制漢堡顯示(導覽列提早隱藏) 
  --------請不要更動以下內容----------*/
  .navbar-header {
      float: none;
  }
  .navbar-toggle{
      display: block;
  }
  .navbar-collapse {
      border-top: 1px solid transparent;
      -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
              box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .navbar-collapse.collapse {
      display: none!important;
  }
  .navbar-right{
      float: none !important;
  }
  .navbar-nav>li {
      float: none;
  }
  .navbar-nav>li>a {
      padding-top: 10px;
      padding-bottom: 10px;
  }
  .navbar-text {
      float: none;
      margin: 15px 0;
  }
  .navbar-collapse.collapse.in { 
      display: block!important;
  }
  .collapsing {
      overflow: hidden!important;
  }
  /* 控制漢堡顯示(導覽列提早隱藏)
  ---------請不要更動以上內容-------- END */

  .navbar-brand{
    padding-left: 15px;
  }
  .navbar-nav{
    margin-top: 0;
  }
  .navbar-header .attr-nav{
    margin-top: 24px;
  }
  .navbar-default .navbar-toggle{
    padding: 8px 14px;
    margin-top: 24px;
    margin-right: 45px;
  }
}


/* 輪播 */
.carousel-control{
  z-index: 3;
}
.carousel-control:hover{
  color: #ffac71;
}
.carousel-control.right,
.carousel-control.left{
  background-image: -webkit-gradient(linear,left top, right top,color-stop(0, rgba(0,0,0,.0)),to(rgba(0,0,0,0)));
  background-image: linear-gradient(to right,rgba(0,0,0,.0) 0,rgba(0,0,0,0) 100%)
}


/* 首頁產品 */
.homeProducts{
  padding-top: 22vw;
  margin-top: -22vw;
  position: relative;
}
.homeProducts::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 22vw;
  background-image: url(../../images/Banner.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}
@media (max-width:1200px){
  .homeProducts{
    padding-top: 21vw;
  }
}
.homeProductBox{
  background-color: rgb(251, 249, 243);
  padding-bottom: 80px;
}

.homeTitle{
  text-align: center;
  padding-top: 80px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  font-size: 25px;
  font-weight: bold;
  position: relative;
}
.homeTitle::after{
  content: '..............';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 18px;
  letter-spacing: 2px;
}
.homeTitle .bigText{
  font-size: 36px;
  color: #171c61;
}
.homeTitle .text{
  position: relative;
  z-index: 0;
}
.homeTitle .text::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(251, 249, 243);
  z-index: -1;
}
.homeTitle .text::after{
  content: '';
  line-height: 36px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-80%, -55%);
          transform: translate(-80%, -55%);
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 3px solid #ffac71;
  z-index: -2;
}
@media (max-width:768px){
  .homeTitle{
    padding-top: 50px;
    padding-bottom: 45px;
    margin-bottom: 30px;
    font-weight: 400;
  }
  
}



.productItem{
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 40px;
  -webkit-box-shadow: 0 3px 4.5px 0.3px rgba(0, 0, 0, 0.24);
          box-shadow: 0 3px 4.5px 0.3px rgba(0, 0, 0, 0.24);
}
.productImg{
  overflow: hidden;
}
.productImg img{
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.productImg a:hover img{
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.productTitle{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding-top: 20px;
  padding-right: 15px;
  padding-bottom: 20px;
  padding-left: 15px;
}
@media (max-width:768px){
  .productTitle{
    font-weight: 400;
  }
}



.homeAbout{
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.homeAbout::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  padding-top: 22vw;
  background-image: url(../../images/Banner.png);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.aboutImg{
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  z-index: 2;
  margin: auto;
}
.homeAbout .homeTitle .text::before{
  background-color: #fff;
}
.homeAbout .aboutText{
  font-size: 18px;
}
.aboutBtn{
  text-align: right;
  margin-top: 15px;
}
.aboutBtn a{
  display: inline-block;
  padding: 5px 20px;
  background-color: #ffac71;
  color: #171c61;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.aboutBtn a:hover{
  color: #fff;
}


.homeLaunchProducts{
  padding-bottom: 150px;
}
.homeLaunchProducts .homeTitle .text::before{
  background-color: #fff;
}
.launchPD{
  margin-bottom: 10px;
}

.B_Prod_Slide4 h3,
.B_Prod_Slide4 .mask,
.B_Prod_Slide4 .info{
  display: none;
}
.B_Prod_Slide4 .controls{
  margin-bottom: 20px;
}
.B_Prod_Slide4 .btn-success{
  background-color: transparent;
  color: #ffac71;
  font-size: 22px;
  border: none;
  margin: 0;
}
.B_Prod_Slide4 .btn-success:hover,
.B_Prod_Slide4 .btn-success:focus,
B_Prod_Slide4 .btn-success:active{
  background-color: transparent;
  color: #171c61;
  -webkit-box-shadow: inset 0 3px 5px transparent;
          box-shadow: inset 0 3px 5px transparent;
}

.col-item{
  margin-bottom: 20px;
}
.footer-list{
  background-color: #fbf9f3;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 1.8;
}
.footer-list i{
  width: 18px;
  margin-right: 5px;
  position: relative;
  color: #171c61;
}
.footer-list i:before{
  position: relative;
}
.footerLogo img{
  max-width: 106px;
}
.footerTitle{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #171c61;
  margin-bottom: 10px;
}
.footerInfo >*{
  display: inline-block;
}
.footerInfo >div+div{
  margin-left: 15px;
}
.footerAddr{
  font-size: 14px;
  font-weight: initial;
  padding-left: 15px;
  color: #000;
}
footer{
  background-color: #171c61;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-top: 10px;
  padding-bottom: 5px;
  position: relative;
}
footer::after{
  content: '';
  width: 100%;
  height: 1px;
  background-color: #a0a0a0;
  position: absolute;
  top: 7px;
  left: 0;
}
footer .cop{
  font-size: 12px;
}
@media (max-width:768px){
  .footer-list{
    text-align: center;
  }
  .footerTitle{
    margin-bottom: 0;
  }
  .footerInfo >*,.footerAddr{
    display: block;
    text-align: left;
  }
  .footerInfo >div+div{
    margin-left: 0;
  }
  .footerAddr{
    display: block;
    padding-left: 0;
  }
}

.topBanner{
  background-color: #ffac71;
  padding: 85px 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .5) inset;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .5) inset;
  background-image: url(../../images/pageBanner.png);
  background-repeat: no-repeat;
  background-position: top left;
}
.topBanner .container{
  text-align: center;
}
.topBanner p{
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  display: inline-block;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
  background-color: rgb(29, 44, 98);
  margin: 0;
  border: 1px solid #fff;
  border-radius: 49%;
}

#LinkContainer, ul.breadcrumb, .nav_cate_current, .categoriesbar, .aside-title, .newsbar,.breadcrumb{
  background-color: #fff;
  border-radius: 0;
  border-bottom: 1px solid #d8d8d8;
}
ol.breadcrumb li a,.breadcrumb>li+li:before{
  color: #000;
}
aside .nav li a:hover,
aside .nav li a.topic{
  background-color: #ffd2b2;
  color: #000;
}

/* 獨立頁設定 */
.article-content{
  padding-top: 50px;
  padding-bottom: 50px;
}
.article-content .Pro_content p,
.arti-news p,
.article-content .Pro_content2 p{
  text-align: left;
  letter-spacing: 0;
  line-height: 1.8;
}


/* 最新消息 */
.news_icon01, .news_icon02, .news_icon03{
  margin-bottom: 0;
}
.news_date, .news_sort, .news_author{
  color: #808080;
}
.caption p{
  padding-top: 0;
}
p.news_info{
  padding-top: 15px;
  margin-bottom: 20px;
}
.newslist img.news_pic{
  margin-bottom: 0;
}
#LinkContainer {
	display: none;
}
.thumbnail {
	border: 1px solid #dadada;
}
.news-wrapper .col-xs-12.col-sm-12.col-md-12.col-lg-12{
	float: none;
	width: 100%; 
	padding-right: 10px;
	padding-left: 10px;
}
.news-wrapper .text-center{
  text-align: center;
  clear:both;
}
.newslist img.news_pic{
	width: 100%;
	float: left;
	padding: 2%;
}
.newslist{
  overflow:hidden;
  padding: 15px;
  border-radius: 10px;
}
.newslist.thumbnail .caption{
  overflow: auto;
}
.news_more{
  background-color: #ffac71;
  color: #171c61;
  border-color: #ffac71;
}
.news_more:hover, .news_more:focus{
  opacity: .8;
  background-color: #ffac71;
  border-color: #ffac71;
  color: #171c61;
}
@media screen and (min-width: 480px) {
  .news-wrapper .col-xs-12.col-sm-12.col-md-12.col-lg-12 {
    float: left;
    width: 50%;
	}
}
@media screen and (min-width: 1200px) {
  .news-wrapper .col-xs-12.col-sm-12.col-md-12.col-lg-12 {
		float: left;
		width: 25%; 
	}
}
/* 最新消息詳述頁 */
.news-wrapper .row>p{
  padding-left: 15px;
  padding-right: 15px;
}



/* 國際證照 */
.CertificateDownload .img-box{
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 15px;
  margin-bottom: 15px;
}
.CertificateDownload .img-box >p,
.CertificateDownload .img-box >a{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-top: 15px;
}


/* 聯絡我們 */
.panel-title2{
  font-size: 16px;
  line-height: 1.8;
}
.panel-title2 .label{
  font-size: 18px;
}