.whyBox .row .col-12 img{
	 width: 52px;
	 height: 52px;
 }
.navbar-brand{
	margin-right: 0;
}
.find-show{
	display: none;
	padding-left: 10px;
}
.find-box{
	border: none;
	border-radius: 30px;
	background-color: #fff;
	padding: 0 10px;
	display: flex;
	align-items: center;
}
.find-box input{
	background: none;
	border: none;
	width: 100px;
	outline: none;
}
.display-style .find-box .iconsousuo{
	color: #000;
}
.display-style .iconsousuo{
	color: #fff;
	margin-left: 10px;
}
.display-style{
	display: flex;
	align-items: center;
}
.show-pc a,.show-phone a{
	color: #fff;
}
.navbar{
	padding: 0rem 0rem ;
}
.navbar .nav-item{
	padding: 0.5rem 0rem;
}
.pow-box{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}
.search-wrapper {
    /* position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top:50%;
    left:50%; */
    margin-right: 10px;
}
.search-wrapper.active {}

.search-wrapper .input-holder {
    overflow: hidden;
    height: 34px;
    background: rgba(255,255,255,0);
    border-radius:6px;
    position: relative;
    /* width:31px; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	margin-left: 10px;
}
.search-wrapper.active .input-holder {
    border-radius: 50px;
    width:138px;
    border: 1px solid #BFBFBF;
    background: #ffffff;
    -webkit-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	margin-left: 10px;
}

.search-wrapper .input-holder .search-input {
    width:100%;
    padding:0px 70px 0 20px;
    opacity: 0;
    position: absolute;
    top:0px;
    left:0px;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border:none;
    outline:none;
    font-family:"Open Sans", Arial, Verdana;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color:#000000;
    -webkit-transform: translate(0, 60px);
    -moz-transform: translate(0, 60px);
    transform: translate(0, 60px);
    -webkit-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);

    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.search-wrapper.active .input-holder .search-input {
    opacity: 1;
    -webkit-transform: translate(0, 7px);
    -moz-transform: translate(0, 7px);
    transform: translate(0, 7px);
}

.search-wrapper .input-holder .search-icon {
    width:30px;
    height:30px;
    border:none;
    border-radius:6px;
    background: #FFF;
    padding:0px;
    outline:none;
    position: relative;
    z-index: 2;
    float:right;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder .search-icon {
    width: 30px;
    height:30px;
    /* margin: 10px; */
    border-radius: 30px;
}
.search-wrapper .input-holder .search-icon span {
    width:22px;
    height:22px;
    display: inline-block;
    vertical-align: middle;
    position:relative;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    -moz-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);

}
.search-wrapper.active .input-holder .search-icon span {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.search-wrapper .input-holder .search-icon span::before, .search-wrapper .input-holder .search-icon span::after {
    position: absolute;
    content:'';
}
.search-wrapper .input-holder .search-icon span::before {
    width: 2px;
    height: 11px;
    left: 9px;
    top: 12px;
    border-radius: 2px;
    background: #916A48;
}
.search-wrapper .input-holder .search-icon span::after {
    width: 14px;
    height: 14px;
    left: 3px;
    top: -3px;
    border-radius: 16px;
    border: 2px solid #916A48;
}

.search-wrapper .close {
    position: absolute;
    z-index: 1;
    top:24px;
    right:20px;
    width:25px;
    height:25px;
    cursor: pointer;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -moz-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.search-wrapper.active .close {
    right:-50px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.search-wrapper .close::before, .search-wrapper .close::after {
    position:absolute;
    content:'';
    background: #000;
    border-radius: 2px;
}
.search-wrapper .close::before {
    width: 5px;
    height: 25px;
    left: 10px;
    top: 0px;
}
.search-wrapper .close::after {
    width: 25px;
    height: 5px;
    left: 0px;
    top: 10px;
}
.search-wrapper .result-container {
    width: 100%;
    position: absolute;
    top:80px;
    left:0px;
    text-align: center;
    font-family: "Open Sans", Arial, Verdana;
    font-size: 14px;
    display:none;
    color:#B7B7B7;
}


@media screen and (max-width: 560px) {
    .search-wrapper.active .input-holder {width:200px;}
}
/* header.css ----- footer.css */
header,header iframe{
    width: 100%;
    height: 78px;
    background-color: rgba(255, 255, 255, 0);
}
footer,footer iframe{
    width: 100%;
    /*height: 902px;*/
}
/* header.css */
.lang{
    color: #ffffff;
}
.lang span{
    padding: 0 5px;
}
.lang-img{
    margin-right: 10px;
	display: block;
}
.lang-box{
    display: flex;
    align-items: center;

}
.btn-buy {
    color: #fff;
    background-color:#000000;
    border-color:#000000;
    border-radius: 45px;
  }

  .btn-buy:hover {
    color: #fff;
    background-color:#000000;
    border-color: #000000;
  }

  .btn-buy:focus, .btn-buy.focus {
    color: #fff;
    background-color:  #000000;
    border-color: #000000;
    /* box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); */
  }

  .btn-buy.disabled, .btn-buy:disabled {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
  }
  .more a{
      color: #000000;
      text-decoration: none;
  }
  .more a:focus{
      color: #916A48;

  }


  .aboutCard .card-title,.aboutCard .more a,.aboutCard .more a:focus{
    color: #ffffff;
}
.whyBox p{
    color: #272727;
}
.contentTitle{
    color: #333333;
}
.products .col-12{
	padding-left: 10px;
	padding-right: 10px;
}
.productsBox p{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.video-col{
    position: relative;
    cursor:pointer;
}
.video-text{
    position: absolute;
    bottom: 0;
}
.page-link{
    border: none;
    color: #999999;
}
.page-link i{
    color: #000000;
}
.page-item.active .page-link{
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
}
.breadcrumb{
    background-color: transparent;
}
.breadcrumb-item a{
    color: #916A48;
    text-decoration: none;
}
.alert-light{
    background-color: #F7F9FA;
    margin: 2% 0;
}
.alert-light i{
   position: absolute;
   right: 20px;
}
.productBanner{
    position: relative;
}

.productCenter{
    color: #ffffff;
}
.productsBox a{
    color: #000000;
}
.productsBox .active{
    font-weight: bold;
}
.btn-dark{
    color: #ffffff !important;
    background-color: #000000 !important;
}
.proNav_box .nav{
    background: linear-gradient(0deg, #292C2E, #222426);
}
/* .proNav_box .nav li .active{
    color: #916A48;
} */
.proNav_box .nav-link{
    color: #FFFFFF;
}
.proNav_box .buy{
    background-color: #ffffff;
    color: #000000;
}
.proNav_box .buy-item{
    display: flex;
    align-items: center;
    margin-right: 20%;
}
.proDetail_text_title{
    width: 100%;
    border-bottom: 1px solid #EEEEEE;
}
.proDetail_text_title p{
    border-bottom: 3px solid #000000;
    margin: 0;
}
.proDetail_text .footer-menu ul{
    margin-top: 32px;
}
.proDetail_text .footer-menu li{
    color: #999999;
    list-style-type: none;
    margin-bottom: 20px;
}
.down{
    align-items: center;
    color: #242628;
}
.down i{
    color:  #916A48;
    margin-right: 13px;
}
.issue_box li{
    text-align: center;
}
.issue_box .btn-link{
    color: #000000;
    text-decoration: none;
}
.issue_box .btn:focus, .btn.focus{
    box-shadow: none;
}
.issue_box .iconyoujiantou{
    float: right;
}
.issue_box .btn:focus, .iconyoujiantou{
    transform: rotate(90deg);
    transition:all 1s
}
.issue_box .btn:focus, .collapsed .iconyoujiantou {
    transform: none;
}
.news_herf  .nav-link{
    color: #000000 !important;
}
.news_herf .nav .active{
    background-color: #fff;
    color: #916A48 !important;
}
.news_herf .nav_box{
    background-color: #ffffff;
    padding: 20px;
    height: 100%;
}
.nav_news_list{
    background-color: #fff;
    padding: 20px;
}
.media-body{
    color: #666666;
}

.media-body h6{
    color: #333333;
    font-weight: bold;
}
.media{
    border-bottom: 1px solid #E5E5E5;
}
.media span{
    color: #999999;
}
.contact_box .container{
    background: #fff;
}
.contact_title{
    text-align: center;
}
.activityBox .container{
    background: #fff;
    padding: 48px 20px;
}
.activityBox .container p{
    text-align: center;
}
.activity_time{
    color: #999999;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 16px;
}
.headerNav{
    margin: 0 auto;
}
.headerNavBar .navbar-light .navbar-nav .nav-link{
    color: #fff;
}
@media screen and (max-width: 900px){
	.banner-box {
		width: 100%;
		float: left;
		position: relative;
		overflow: hidden;
	}
	.timezhou .swiper-slide .remark{
		font-size: 13px !important;
		line-height: 22px!important;
	}
}
.banner-arrow div:hover {
	background-color: #4a4a4a;
}
.banner-top {
	padding-top: 3.730928444707274%;
}
.banner-title {
	padding: 5px 0;
}
.banner-title h1 {
	text-align: center;
	letter-spacing: 5px;
	font-size: 45px;
	font-family: "Microsoft YaHei", 微软雅黑, MicrosoftJhengHei, 华文细黑, STHeiti, MingLiu;
	font-weight: normal;
	color: rgb(68, 68, 68);
	padding-bottom: 14px;
}
.banner-text {
	text-align: center;
}
.banner-text p {
	font: 15px/1.5 'Helvetica Neue', 'Helvetica', 'STHeitiSC-Light', "Hiragino Sans GB", Arial, "Microsoft YaHei", "å¾®è½¯é›…é»‘", "STHeiti", "WenQuanYi Micro Hei", 'PingFang SC', SimSun, sans-serif;
	-webkit-font-smoothing: antialiased;
	margin: 0;
	color: rgb(68, 68, 68);
}
.banner-top-one {
	padding-top: 3.311649911295092%;
}
.banner-button {
	width: 100%;
	vertical-align: middle;
	text-align: center;
}
.banner-button a {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	height: auto;
	width: auto;
	line-height: 100%;
	padding: 15px 32px;
	position: relative;
}
.banner-button-btn {
	color: #fff;
	font-weight: 400;
	margin: 0;
	line-height: 1.8em;
	font-size: 16px;
	font-family: 'Helvetica Neue', 'Helvetica', 'STHeitiSC-Light', "Hiragino Sans GB", Arial, "Microsoft YaHei", "微软雅黑", "STHeiti", "WenQuanYi Micro Hei", 'PingFang SC', SimSun, sans-serif;
	-webkit-font-smoothing: antialiased;
	background-color: #69ca72!important;
	border-radius: 100px;
}
.banner-button-btn {
	background: #cedad0;
	display: inline-block;
	-webkit-transition: border-color .4s, color .4s;
	-moz-transition: border-color .4s, color .4s;
	transition: border-color .4s, color .4s;
	border: 0;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	color: #fff;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.banner-button-btn, .banner-button-btn::before {
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, .3, 1);
	-moz-transition-timing-function: cubic-bezier(0.2, 1, .3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, .3, 1);
}
.banner-button-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	background: #1a7c29;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.7, 1, 1);
	-moz-transform: scale3d(0.7, 1, 1);
	-ms-transform: scale3d(0.7, 1, 1);
	-o-transform: scale3d(0.7, 1, 1);
	transform: scale3d(0.7, 1, 1);
	-webkit-transition: -webkit-transform .4s, opacity .4s;
	-moz-transition: -moz-transform .4s, opacity .4s;
	transition: transform .4s, opacity .4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, .3, 1);
	-moz-transition-timing-function: cubic-bezier(0.2, 1, .3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, .3, 1);
}
.banner-button-btn:hover::before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.newsDetail-ct{
    border: 1px solid #E5E5E5;
}
.newsDetail-ct .card-title{
    color: #C6C6C6;
}
.newsDetail-ct .card-subtitle{
    color: #333333;
}
.newsDetail-ct .card-text{
    color: #999999;
}
.service_box{
    text-align: center;
}
.service_box .row{
    margin: 0;
}
.service_box p:nth-child(1){
    display: flex;
    align-items: center;
    justify-content: center;
}
.service_box_row .card{
    background-color: #fff;
}
.service_box_row .card .card-text{
    color: #333333;
    font-weight: bold;
}
.service_box_row .card .service_tel{
    color: #999999;
}
.service_box_row .card .service_tel span{
    color: #333333;
}
.service_box_row .card .service_time{
    color: #333333;
}
.service_box_row .card .service_tel a{
    background: #A18269;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
}
.service_text .footer-title{
    font-weight: bold;
}
.service_text{
    width: 100%;
    background: #ffffff;
}
.service_text p{
    text-align: center;
	font-weight: 700;
}
.service_text{
   color: #333;
}
.submit_box form{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iconrequired{
    color: #FF0000;
}
.submit_box input,.submit_box textarea{
    background-color: #F7F9FA;
    border: none;
}
.submit_hint{
    width: 30% !important;
}
.upload{
    display: flex;
    align-items: center;
}
.upload p{
    margin: 0;
    color: #999;
}
.code a{
    color: #333;
    text-decoration: none;
}
.success_submit{
    text-align: center;
}
h5{
    text-align: center;
}

.line{
    background: #fff;
}
.about_box h2{
    text-align: center;
}
.course_box{
    /* position: relative; */
	background: url(../images/pc/ing-guwm-fzlc.png) no-repeat;
	background-size: 100% 100%;
	padding-top: 20px;
}

.contact_row div{
    text-align: center;
}
.cooperation_box .mt-0{
    display: flex;
    align-items: center;
    justify-content: start;
}
.cooperation_box .mt-0 .line{
    background: #916A48;
    margin: 0;
    margin-right: 10px;
}
.example{
    position: relative;
}
.coo_choose p{
   text-align: center;
   margin: 40px auto;
   color: #000;
       overflow: hidden;
       text-overflow: ellipsis;
       white-space: nowrap;
	   /* font-size: 15px; */
 }
 .coo_choose div:nth-child(1) div,.example_box div:nth-child(2) div{
     text-align: center;
 }
 .dropdown-box{
     width: 96%;
     background: #ffffff;
     position: absolute;
     left: 0;
	 right: 0;
	 margin: auto;
     display: block;
     padding: 0 2%;
     border-top: 1px solid #F0F1F2;
     margin-top: 0.5rem;
	 overflow: hidden;
	 box-sizing: border-box;
 }
 .dropdown-box .media{
     border-bottom: 1px solid #fff;
     display: flex;
     align-items: flex-start;
 }
 .dropdown-box h5{
     text-align: left;
 }
 .dropdown-box .hint-span{
     background: #f2f2f2;
 }
 .course_info h3,.infos .year{
     font-weight: bold !important;
 }
 .form-control{
     color: #000 !important;
 }
 .contact_box .contactRow{
	 padding: 90px 0 70px 0!important;
 }
 .contact_box .row p{
     font-weight: bold;
 }
 .pro_items img{
     /*border:1px dashed #000000;*/
 }
 .newItem{
	 position: relative;
 }
 .newItem .dropdown-menu{
		opacity: 0;
	 transition: all 0.3s;

 }
/* .newItem:hover .dropdown-menu{
    opacity: 1;
   display: block;
} */
 .newItem .dropdown-menu{
	 position: absolute;
	 /* transform: translateX(-40px); */
	 left: -15px;
	 background-color: #fff;
	 text-align: center;
	 border: none;
     display: none;
	 border-radius: 0;
	 min-width:110px;
	 margin-top: 0;
 }
 .newItem .dropdown-menu a{
	 color: #303233;
	 padding: 4px 0;
	 display: inline-block;
 }
 .newItem .dropdown-menu a:hover{
	 text-decoration: none;
	 color: #f0ad4e;
 }
.divider{
    width: 1px;
    height: 160px;
    background: #F0F1F2;
}
.backTop{
	position: fixed;
	bottom: 100px;
	right: 100px;
	width: 40px;
	height: 40px;
	z-index: 10000;
	cursor: pointer;
}
.ltn__footer-area .links{
    background-color: #272829;
    padding-bottom: 8px;
}
.ltn__footer-area .links>div{
    display: flex;
}
.ltn__footer-area .links  .links_item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}
.ltn__footer-area .links  .links_item a{
    margin: 0 4px;
}
.ltn__footer-area .links p{
    margin-bottom: 0;
    color: #999;
    font-size: 15px;
}
