
@-webkit-keyframes fadeInUp {
	0% { 
		-webkit-transform: translateY(100px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
@keyframes fadeInUp {
	0% { 
		-webkit-transform: translateY(100px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
.active .fadeInUp {

	-webkit-animation: fadeInUp 1s backwards;
    animation: fadeInUp 1s backwards;
}

@-webkit-keyframes fadeInDown {
	0% { 
		-webkit-transform: translateY(-100px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
@keyframes fadeInDown {
	0% { 
		-webkit-transform: translateY(-100px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
.active .fadeInDown {

	-webkit-animation: fadeInDown 1s backwards;
    animation: fadeInDown 1s backwards;
}

@-webkit-keyframes fadeInLeft {
0% {
opacity:0;
-webkit-transform:translateX(-100px);
transform:translateX(-100px)
}
100% {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0)
}
}
@keyframes fadeInLeft {
0% {
opacity:0;
-webkit-transform:translateX(-100px);
transform:translateX(-100px)
}
100% {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0)
}
}
.active .fadeInLeft {
	-webkit-animation: fadeInLeft 1s backwards;
    animation: fadeInLeft 1s backwards;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.active .fadeInRight {

	-webkit-animation: fadeInRight 1s backwards;
    animation: fadeInRight 1s backwards;
}
@-webkit-keyframes zoomIn {
0% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
50% {
opacity:1
}
}
@keyframes zoomIn {
0% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
50% {
opacity:1
}
}
.active .zoomIn {
	-webkit-animation: zoomIn 1s;
	animation: zoomIn 1s
}

.section { overflow: hidden;}
.flexslider {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.flexslider .slides {
	width: 100%;
    height: 100%;
}
.flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden;
    position: relative;
   
    overflow: hidden;
}

.flexslider .slides li .overlay {
}

.flexslider .slides img {
    width: 100%;
    display: block;
}

.flexslider .slides img.topban {
    opacity: 1;
}

.flexslider .slides video {
    width:100%;
    
    display: block;
    
    opacity: 1;
}

@keyframes zoomInOut {
    0% 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.flexslider .slides li.flex-active-slide img.topban {
    animation: zoomInOut 8s infinite;
}

.slides:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.bannertxt {
    position: absolute;
    text-align: center;
    top: 40%;
    z-index: 300;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    font-size: 24px;
    text-shadow: 0px 1px 2px rgb(0 0 0 / 90%);
    padding: 10px;
   
}

.flexslider .slides li img.gsban1 {
    width: 1000px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 3s all;
    -webkit-transition: 3s all;
    transform: translate(-50%, -50%) scale(0.2,0.2);
    max-width: 100%;
    height: auto;
}

.flexslider .slides li.flex-active-slide img.gsban1 {
    width: 1000px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    
    visibility: visible;
    transition: 3s all;
    -webkit-transition: 3s all;
    transform: translate(-50%, -50%) scale(1,1);
    max-width: 90%;
    height: auto;
   animation: fadeInOut 8s backwards;
}
@keyframes fadeInOut {
  0% { opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; }
}


.bannertxt span {
    display: block;
    
    display: block;
    font-weight: bold;
    animation: fadeZoomIn 3s backwards;
    text-shadow: 0px 1px 2px rgb(0 0 0 / 90%);
    
}
.bannertxt2 {
        position: absolute;
    text-align: center;
    top: 40%;
    z-index: 300;
    margin: 0 auto;
    width: 100%;
    color: #fff;
   opacity: 0;
    text-shadow: 0px 1px 2px rgb(0 0 0 / 90%);
    padding: 10px;
   
}
.flexslider .slides li.flex-active-slide .bannertxt2 {

    font-size: 3vmin;
    animation: moveUp 3s backwards;
   
}
.flexslider .slides li.flex-active-slide .bannertxt2 span {
    display: block;
    font-size: 6vmin;
    display: block;
    font-weight: bold;
    
    
    
}
@keyframes moveUp {
  from {
    transform: translateY(0);
    opacity: 0;
  }
  to {
    transform: translateY(-40px);
    opacity: 1;
  }
}
.bannertxt1 {
    position: absolute;
    left: 0;
    text-align: left;
    bottom: 0;
    z-index: 300;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
}

.bannertxt1 span {
    font-size: 14px;
    display: block;
}

.bannerbot {
    margin-top: -6%;
    left: 0;
    z-index: 200;
    
}
.banner-to{transition: all 0.2s linear 0s;-webkit-transition: all 0.2s linear 0s;display: block;font-size: 1em; position: absolute;overflow: hidden;z-index: 9;bottom: 90px;left: 50%;margin-left: -10px;}
.banner-to h4{ width: 20px;height: 30px;border: 2px solid #fff;border-radius: 1em;display: block;overflow: hidden; opacity: 0.7; }
.banner-to strong{ animation: downico 1.5s ease-out infinite;position: relative;display: block;line-height: 30px;width: 3px;height: 5px;background: #fff;margin:10px auto;}
.banner-to:hover h4{border: 2px solid #fdd000; opacity:1;}
.banner-to:hover strong{background: #fdd000;}

@keyframes downico{
	0%{top: 0;opacity: 1;}
	35%{top: 40%;opacity: 0;}
	65%{top: -40%;opacity: 0;}
	100%{top: 0;opacity: 1;}
}
html[xmlns] .slides {
    display: block;
}

* html .slides {
    height: 1%;
}

.no-js .slides > li:first-child {
    display: block;
}

.flex-control-nav {
    position: absolute;
    bottom: 10px;
    z-index: 2;
    width: 100px;
    text-align: center;
    right: 10px;
    display: none;
}

.flex-control-nav li {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 3px;
    *display: inline;
    zoom: 1;
    list-style: none;
}

.flex-control-nav a {
    display: inline-block;
    cursor: pointer;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    float: left;
    text-indent: -2000px;
    background: rgba(0, 0, 0, 0.3);
}

.flex-control-nav .flex-active {
    background: rgba(215, 150, 48, 0.8);
}

.flex-direction-nav {
    *height: 0;
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 10px;
    text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1;
}

.flexslider .flex-direction-nav a {
    position: absolute;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: 25px;
    height: 60px;
    margin: -20px 0 0;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.flexslider .flex-direction-nav a:before {
    left: 0;
    top: 0;
    color: #fff !important;
    text-shadow: none !important;
    font-size: 60px;
    position: relative;
    z-index: 10;
    display: inline-block;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.flexslider .flex-direction-nav a.flex-prev {
    opacity: 0.4 !important;
    left: 0px;
}

.flexslider .flex-direction-nav a.flex-prev:before {
    text-indent: 0px;
    font-family: 'FontAwesome';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f104";
}

.flexslider .flex-direction-nav a.flex-next {
    right: 0px;
    opacity: 0.4;
}

.flexslider .flex-direction-nav a.flex-next:before {
    font-family: 'FontAwesome';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-indent: 0px !important;
    right: 0;
    content: "\f105";
}

.flexslider .slider-text {
    display: table;
    opacity: 0;
    height: 100%;
}

.flexslider .slider-text > .slider-text-inner {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    padding-top: 15%;
}

.flexslider .slider-text > .slider-text-inner h2 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

.flexslider .slider-text > .slider-text-inner p.f-txt {
    font-size: 16px;
    color: #fff;
    padding: 10px 0 20px;
}

.flexslider .slider-text > .slider-text-inner p.f-txt img {
    max-width: 600px;
    max-height: 300px;
}

.flexslider .slider-text > .slider-text-inner p.f-btn a {
    background: #13a0b2;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    padding: 10px 25px;
    z-index: 61;
    border-radius: 3px;
    vertical-align: middle;
    position: relative;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    -o-transition-property: color;
    -ms-transition-property: color;
    transition-property: color;
}

.flexslider .slider-text > .slider-text-inner p.f-btn a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.1);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
}

.flexslider .slider-text > .slider-text-inner p.f-btn a:hover {
    color: #fff!important;
    background: rgba(19,160,178,.5);
}
/*banner end*/


#fh5co-service-list {
    padding: 20px 0 20px;
    overflow: hidden;
}

#fh5co-service-list .item {
    border: 1px #e6d688 solid;
    padding: 10px 0px 30px 0px;
    margin-left: 10px;
    background: #fff;
}

#fh5co-service-list .item:hover {
    box-shadow: inset 0 -1px 0 #f28201, inset 0 -1px 0 #eee, inset 0 1px 0 #eee, inset -1px 0 0 #eee;
}

#fh5co-service-list i {
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
    background-color: #e6d688;
    border-radius: 50%;
    margin: 28px auto;
}

#fh5co-service-list i img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
}

#fh5co-service-list1 i {
    background: #016db7;
    font-size: 50px;
    color: #016db7;
    border: 1px solid #bdc3c7;
    text-align: center;
    width: 130px;
    height: 130px;
    line-height: 130px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.25s linear 0s;
    transform: translate(0px, 0px);
}

#fh5co-service-list .item:hover i {
    background: #f28201;
    color: #fff;
    transition: all 0.25s linear 0s;
    transform: translate3d(0px, -5px, 0px);
}

#fh5co-service-list i:before {
    display: inline-block;
    font-family: "FontAwesome";
    font-weight: normal;
    font-style: normal;
    vertical-align: baseline;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#fh5co-service-list i.icon1:before {
    content: "\f085";
}

#fh5co-service-list i.icon2:before {
    content: "\f12e";
}

#fh5co-service-list i.icon3:before {
    content: "\f0c3";
}

#fh5co-service-list i.icon4:before {
    content: "\f0c0";
}

#fh5co-service-list .item h5 {
    text-align: center;
    font-size: 18px;
    color: #2a333c;
    font-weight: normal;
    margin: 20px 0px 5px 0px;
    word-break: break-all;
}

#fh5co-service-list .item p.desc {
    margin: 0px 20px;
    line-height: 1.6;
    word-wrap: break-all;
    color: #5e7387;
    font-size: 12px;
}

.scrollable {
    overflow: hidden;
}

.scrollable .caroufredsel_wrapper {
}

.scrollable ul {
    padding: 0;
    _margin-left: -5px !important;
    list-style: none;
    width: 10000em;
}

.scrollable ul li {
    padding: 10px;
    margin: 0 10px;
    display: block;
    float: left;
    width: 360px;
    text-align: left;

}

.scrollable ul li p a {
    display: block;
}

.scrollable ul li img {
    display: block;
    height: auto;
    max-width: 100%;
}

.scrollable ul li p {
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-family: "Microsoft YaHei";
}

.scrollable ul li i {
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
    background-color: #e6d688;
    border-radius: 50%;
    margin: 28px auto;
}

.scrollable .cyimg {
border: 1px #ddd solid;
}

.scrollable-item1 {
    border: 1px #ddd solid;
    padding: 10px;
}

.scrollable-item1:hover i {
    background: #f28201;
    color: #fff;
    transition: all 0.25s linear 0s;
    transform: translate3d(0px, -5px, 0px);
}

.scrollable ul li p a:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transition: all 1s ease-out 0s;
    -moz-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
}

.scrollable ul li h1 {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 14px;
    min-height: 14px;
    color: #888;
}

.scrollable ul li h11 {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 14px;
    min-height: 14px;
    color: #6c3204;
}

.scrollable ul li h1 a {
    font-size: 12px;
    font-weight: normal;
    color: #888;
}

.scrollable ul li h1 a:hover {
    text-decoration: none;
}

.scrollable ul li h2 {
    font-size: 18px;
    line-height: 30px;
  
    font-weight: normal;
}

.scrollable-item .scrollable-info {
    padding: 5px;
    min-height: 50px;
    text-align: center;
}

.scrollable-item1 .scrollable-info {
    padding: 5px;
    text-align: center;
}

.scrollable ul li h2 a {
    font-size: 14px;
    font-weight: normal;
}

.scrollable ul li h2 a:hover {
    text-decoration: none;
}

.scrollable .text-intro {
    text-align: left;
    font-size: 13px;
    color: #808080;
    line-height: 1.5;
}

.scrollable .carousel-direction a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: 0;
    top: 40%;
    color: #fff;
    font-size: 22px;
    background-color: #ccc;
    border-radius: 100%;
}

.scrollable .carousel-direction a:hover {
    background-color: #F4A814;
    color: #fff;
}

.scrollable .carousel-direction a.disabled, .scrollable .carousel-direction a.disabled:hover {
    color: #e5e5e5;
    border: 1px solid #e5e5e5;
    background-color: transparent;
}

.scrollable a.carousel-prev {
    left: -15px;
}

.scrollable a.carousel-next {
    right: -15px;
}

.scrollable-3col ul li {
    width: 313px;
    text-align: left;
}

.scrollable-3col ul li p {
    margin-bottom: 15px;
}

.scrollable-3col ul li h2, .scrollable-3col ul li h2 a {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.scrollable-3col .carousel-direction a {
    top: 190px;
}

.scrollable-3col .carousel-direction a:hover {
    background-color: #1a1a1a;
}

.scrollable-inside-page ul li {
    width: 160px;
}

.scrollable-height .carousel-direction a {
    top: 150px;
}

.scrollable-height ul li {
    text-align: left;
}

.full-scrollable ul li {
    width: auto;
    margin: 0;
}

.full-scrollable ul li a {
    position: relative;
    display: block;
}

.full-scrollable .scrollable-image {
    overflow: hidden;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.full-scrollable a:hover .scrollable-image img {
    transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.full-scrollable .scrollable-info {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 20;
    margin-top: -100px;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    _height: expression( (this.parentElement.clientHeight) +'px');
    -webkit-transition: -webkit-transform 0.5s ease-out;
    -moz-transition: -moz-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
}

.full-scrollable .scrollable-info h3 {
    padding: 0 20px;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: normal;
    font-weight: normal;
}

.full-scrollable .scrollable-info .scrollable-summarty {
    padding: 0 10px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
}

.full-scrollable .scrollable-info .icon-detail {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 41px;
    height: 41px;
    background: url(icon-detail.gif) no-repeat;
    -webkit-transition: -webkit-transform 0.5s ease-out;
    -moz-transition: -moz-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
}

.full-scrollable .scrollable-info .icon-detail span {
    display: none;
}

.full-scrollable .opacity-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    cursor: pointer;
    background-color: #F4A814;
    opacity: 0;
    filter: alpha(opacity=0);
    _height: expression( (this.parentElement.clientHeight) +'px');
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.full-scrollable a:hover .scrollable-info {
    opacity: 1;
    filter: alpha(opacity=100);
}

.full-scrollable .scrollable-info:hover .icon-detail {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.full-scrollable a:hover .opacity-overlay {
    display: block;
    filter: alpha(opacity=90);
    opacity: 0.9;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.full-scrollable .carousel-direction {
    text-align: center;
    margin: 20px 0;
    height: 30px;
}

.full-scrollable .carousel-direction a {
    position: static;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 8px;
    font-size: 22px;
}

.full-scrollable .carousel-direction a:hover {
    border-color: #fff;
    color: #fff;
}

.full-scrollable .carousel-direction a.disabled, .full-scrollable .carousel-direction a.disabled:hover {
    color: #ccc;
    cursor: default;
}

.scrollable-text {
    width: 100%;
    height: 25px;
    overflow: hidden;
}

.scrollable-text .carousel-direction a {
    top: 0px;
    display: block;
    width: 30px;
    height: 20px;
    overflow: hidden;
    margin-top: 3px;
    background-color: transparent;
    background-image: url(direction-s.gif);
    background-repeat: no-repeat;
}

.scrollable-text .carousel-direction a.carousel-up {
    background-position: 0 0;
    right: 31px;
}

.scrollable-text .carousel-direction a.carousel-down {
    background-position: -31px 0;
    right: 0;
}

.scrollable-text .carousel-direction a.carousel-up:hover {
    background-position: 0 -20px;
}

.scrollable-text .carousel-direction a.carousel-down:hover {
    background-position: -31px -20px;
}

.scrollable-text .carousel-direction a span {
    display: none;
}

.scrollable-text ul li {
    padding: 0;
    border: none;
    width: 100%;
}

.scrollable-text .article-list-row {
    margin-bottom: 0;
}

.scrollable-text .article-title {
    margin-right: 10px;
}

.scrollable-text .article-list-row li {
    overflow: hidden;
    white-space: nowrap;
}

.scrollable-text .article-list-row li .article-title {
    padding-left: 0;
    background: none;
    line-height: 25px;
}

/* ====== Slideshow & Scrollable ====== */
.carousel-direction a {
    display: block;
    width: 30px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    font-family: simsun;
    text-align: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    cursor: pointer;
    background-color: #999;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.carousel-direction a:hover {
    background-color: #F4A814;
    color: #fff;
    text-decoration: none;
}

.carousel-direction a.disabled, .carousel-direction a.disabled:hover {
    background-color: #dcf2ff;
    color: #ccc;
    cursor: default;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-btn {
    text-align: center;
    margin: 10px 0;
}

.carousel-btn a {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
}

.carousel-btn .selected {
    background: #F4A814;
    cursor: default;
}

.carousel-btn a span {
    display: none;
}

.carousel-btn-fixed {
    width: 100%;
    position: absolute;
    bottom: 15px;
    left: 0;
    margin: 0;
    z-index: 100;
}

.carousel-num {
    position: absolute;
    bottom: 7px;
    right: 10px;
    z-index: 100;
}

.carousel-num a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 22px;
    height: 22px;
    line-height: 22px;
    margin: 0 0 0 5px;
    text-align: center;
    background: #333;
    font-size: 12px;
    color: #fff;
}

.carousel-num a:hover {
    text-decoration: none;
    color: #fff;
}

.carousel-num a.selected {
    background: #998b81;
    cursor: default;
}

.carousel-thumbs {
    text-align: center;
}

.carousel-thumbs a {
    border: 2px solid #ccc;
    margin: 0 3px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.carousel-thumbs a img {
    display: block;
}

.carousel-thumbs a:hover, .carousel-thumbs a.selected {
    border-color: #f60;
}

.carousel {
    position: relative;
}

.carousel-item {
    position: relative;
    float: left;
    display: block;
}

.carousel-item .carousel-img {
    display: block;
}

.carousel-item .carousel-img a[href="javascript:;"] {
    cursor: default;
}

.carousel-item .carousel-img img {
    display: block;
}

.carousel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url(opa70.png);
}

.carousel-info-inner {
    font-size: 13px;
    padding: 8px 10px;
    color: #fff;
}

.carousel-info-inner a, .carousel-info-inner a:hover {
    color: #fff;
}

.carousel-info-inner h3 {
    font-size: 15px;
    line-height: 20px;
    color: #fff;
}

.carousel-info-inner p {
    margin-top: 5px;
}

.responsive-carousel {
    overflow: hidden;
}

.responsive-carousel .carousel-item img {
    width: 100%;
    height: auto !important;
}

.responsive-carousel .carousel-direction {
    display: none;
}

.responsive-carousel:hover .carousel-direction {
    display: block;
}

.responsive-carousel-set .carousel-info-inner h3 {
    font-weight: normal;
}

/* module Íâ¿òÈÝÆ÷
------------------------------------------------------------------------------------------ */
.module-content {
    margin: 40px 0 40px 0;
}

.module-default {
    margin: 0;
    padding: 0;
}

.module-default > .module-divider {
    margin-bottom: 15px;
}

.module {
    margin-bottom: 25px;
}

.module-title-default {
    margin-bottom: 0px;
    overflow: hidden;
}

.module-title-default > .module-title-content {
    padding-top: 5px;
    padding-bottom: 5px;
}

.module-title-default > .module-title-content h3 {
    display: block;
    float: left;
    _display: inline;
    line-height: 20px;
    font-size: 16px;
}

.module-title-default > .module-title-content h3 a {
    display: block;
    color: #fff !important;
}

.module-title-default > .module-title-content span {
    margin-left: 5px;
    float: left;
    line-height: 22px;
    color: #808080;
    font-size: 14px;
}

.module-title-default > .module-title-content span strong {
    font-weight: normal;
    margin-left: 5px;
    color: #808080;
    font-family: Arial, sans-serif;
}

.module-title-default > .module-title-content i {
    display: block;
    float: left;
    _display: inline;
    width: 8px;
    height: 8px;
    overflow: hidden;
    position: relative;
    top: 9px;
    margin-left: 10px;
    background: url(icon-title-d.gif) no-repeat;
}

.module-more-default a {
    color: #949494;
    font-size: 13px;
}

.module-more-default a:hover {
    color: #F4A814;
    text-decoration: none;
}

.module-icon-default {
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left center;
}

.module-divider {
    height: 1px;
    overflow: hidden;
    background-color: #ccc;
    margin-top: 25px;
    clear: both;
}

.module-no-margin, .module-no-margin .module-content p, .module-no-margin .module-content ul, .module-no-margin .module-content ol, .module-no-margin .module-content h1, .module-no-margin .module-content h2, .module-no-margin .module-content h3, .module-no-margin .module-content h4, .module-no-margin .module-content h5, .module-no-margin .module-content h6 {
    margin: 0;
}

.module-hlbg {
}

.module-hlbg > .module-inner {
    background-color: #f6f5f5;
    border: 1px solid #dcdcdc;
}

.module-hlbg-title {
    padding-left: 15px;
    background: #4ba737;
}

.module-hlbg-title h3 {
    font-size: 18px;
    font-weight: normal;
    height: 45px;
    line-height: 45px;
    color: #fff;
}

.module-hlbg-icon {
    padding-left: 28px;
    background-repeat: no-repeat;
    background-position: left center;
}

.module-hlbg-content {
    padding: 10px 15px 20px;
}

.module-hlbg-more {
    text-align: right;
    padding: 0 15px 15px;
}

.module-hlbg-more a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    height: 20px;
    line-height: 20px;
    padding: 1px 8px;
    background-color: #b3b3b3;
    color: #fff;
    font-size: 12px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.module-hlbg-more a:hover {
    background-color: #F4A814;
    color: #fff;
    text-decoration: none;
}

.module-hlbg > .module-divider {
    margin-bottom: 10px;
    margin-top: 10px;
}

.module-title-border {
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 15px;
}

.module-title-border > .module-title-content {
    float: left;
    display: inline;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: -1px;
    border-bottom: 1px solid #4ba737;
}

.module-title-border > .module-title-content h3 {
    float: left;
    font-size: 16px;
    line-height: normal;
}

.module-title-border > .module-title-content span {
    margin-left: 5px;
    float: left;
    line-height: 22px;
    color: #999;
    font-size: 14px;
}

.module-title-border > .module-title-content span strong {
    font-weight: normal;
    margin-left: 5px;
    color: #999;
    font-family: Arial, sans-serif;
}

.module-title-border > .module-more-default {
    margin-top: 5px;
}

.module-title-hl {
    margin-bottom: 20px;
    border-bottom: 1px solid #d6d6d6;
}

.module-title-hl .module-title-content h3 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 22px;
    font-weight: normal;
    color: #F4A814;
    line-height: normal;
}

.module-title-hl > .module-title-content span {
    position: relative;
    top: 13px;
}

.module-title-hl > .module-more-default {
    margin-top: 10px;
}

.module-full-screen > .module-inner {
    padding: 40px 0 40px 0;
}

.module-full-screen > .module-inner .page-width {
    width: auto;
    max-width: 1120px;
    _width: 1120px;
}

.module-full-screen-title {
    margin-bottom: 30px;
    text-align: center;
}

.module-full-screen-title > h2 {
    margin-bottom: 0;
    line-height: normal;
    font-weight: bold;
    color: #37474f;
    font-size: 30px;
    font-size: 3rem;
}

.module-full-screen-title > .module-title-content > h3 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 20px;
    line-height: normal;
    font-weight: normal;
    color: #999;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-full-screen-title > .module-title-content > i {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    display: none;
    position: relative;
    top: -5px;
    width: 180px;
    height: 1px;
    overflow: hidden;
    background-color: #d9d9d9;
}

.module-full-screen-more {
    float: none;
    clear: both;
    margin-top: 30px;
    text-align: center;
}

.module-full-screen-more a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    line-height: 34px;
    padding: 0 35px;
    border: 1px solid #4BA737;
    color: #4BA737;
    transition: all 0.5s ease 0s;
}

.module-full-screen-more a:hover, .module-full-screen-more a:active {
    background-color: #F4A814;
    border-color: #F4A814;
    color: #fff;
    text-decoration: none;
}

.module-divider-full {
    margin: 40px 0 -35px;
    height: 14px;
    overflow: hidden;
    background: url(module-divider-full.png) no-repeat center;
}

.module-full-screen-gray {
    background-color: #f6f5f5;
}

.module-full-screen-hl {
    background: #fcfbf6 url('') no-repeat center;
    color: #fff !important;
}

.module-full-screen-hl a {
    color: #555;
}

.module-full-screen-hl .module-full-screen-title > h2 {
    color: #37474f;
}

.module-full-screen-hl .module-full-screen-title > .module-title-content > h3 {
    color: #999;
}

.module-full-screen-hl .module-full-screen-title > .module-title-content > i {
    background-color: #e5e5e5;
}

.module-full-screen-hl .page-width > .module-full-screen-content {
    color: #fff !important;
}

.module-full-screen-hl .page-width > .module-full-screen-content p {
    color: #fff !important;
}

.module-full-screen-hl .page-width > .module-full-screen-content a {
    color: #fff !important;
}

.module-full-screen-hl .page-width > .module-full-screen-content a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.module-full-screen-hl .module-full-screen-more a {
    color: #68b520;
    border-color: #68b520;
}

.module-full-screen-hl .module-full-screen-more a:hover {
    background-color: #FF9B00;
    border-color: #FF9B00;
    color: #fff;
    text-decoration: none;
}

.module-full-screen-hl .module-divider-full {
    background: url(module-divider-full-white.png) no-repeat center;
}

.module-full-screen-bg-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.module-full-screen-padding-bottom {
    padding-bottom: 70px;
}

.module-full-screen-more-fixed > .module-inner .page-width {
    position: relative;
}

.module-full-screen-more-fixed .module-full-screen-more {
    position: absolute;
    left: 50%;
    z-index: 1000;
    margin-left: -48px;
    margin-top: 20px;
    -webkit-animation: upAndDown 2s infinite;
    animation: upAndDown 2s infinite;
}

.module-full-screen-more-fixed .module-full-screen-more a {
    background-color: transparent;
    padding: 0;
    border: none;
    color: #F4A814;
    font-size: 16px;
    width: 97px;
    height: 97px;
    line-height: 97px;
    background: url(module-full-screen-more-fixed.png) no-repeat 0 0;
}

.module-full-screen-more-fixed .module-full-screen-more a:hover {
    background-color: transparent;
    background-position: 0 -97px;
    color: #fff;
}

.module-full-screen-gray-expand > .module-inner {
}

.module-full-screen-gray-expand-box-t, .module-full-screen-gray-expand-box-b {
    position: relative;
    height: 10px;
}

.module-full-screen-gray-expand-box-t .module-full-screen-gray-expand-bg, .module-full-screen-gray-expand-box-b .module-full-screen-gray-expand-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 20px;
}

.module-full-screen-gray-expand-box-t .module-full-screen-gray-expand-bg {
    top: -10px;
}

.module-full-screen-gray-expand-box-t .module-full-screen-gray-expand-bg {
    background: url(module-full-screen-bg-wave-gray-t.png) no-repeat bottom center;
}

.module-full-screen-gray-expand-box-b .module-full-screen-gray-expand-bg {
    background: url(module-full-screen-bg-wave-gray-b.png) no-repeat bottom center;
}

.module-horizontal {
}

.module-title-horizontal {
    float: left;
    margin-right: 10px;
}

.module-title-horizontal .module-title-content {
    margin-top: 2px;
}

.module-title-horizontal .module-title-content > h3 {
    font-size: 15px;
    margin-top: 2px;
    line-height: normal;
    float: left;
}

.module-title-horizontal .module-title-content img {
    vertical-align: middle;
    position: relative;
    top: 2px;
    float: left;
    margin-right: 5px;
}

.module-horizontal > .modult-inner > .module-content {
    overflow: hidden;
    *zoom: 1;
}

.module-horizontal > .modult-inner > .module-more-horizontal a {
    margin-left: 10px;
    margin-top: 3px;
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    background: url(icom-more.gif) no-repeat center;
}

.module-horizontal > .modult-inner > .module-more-horizontal a span {
    display: none;
}

.module-horizontal-hlbg {
    background-color: #f7f7f7;
}

.module-horizontal-hlbg .modult-inner {
    padding: 5px 10px;
}

.module-section {
    padding: 30px 0;
}

.module-section-title-wrapper {
    margin-bottom: 25px;
}

.module-section-title {
    float: left;
}

.module-section-title h2 {
    display: inline;
    line-height: normal;
    font-size: 28px;
    font-weight: normal;
    color: #1a1a1a;
}

.module-section-title h3 {
    display: inline;
    line-height: normal;
    color: #999;
    font-size: 16px;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
}

.module-section-title em {
    line-height: normal;
    padding: 0 6px;
    color: #999;
    font-size: 16px;
    font-style: normal;
}

.module-section-more {
    float: right;
    margin-top: 10px;
}

.module-section-more a {
    line-height: normal;
    padding: 3px 0;
    font-size: 16px;
    border-bottom: 1px solid #1a1a1a;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.module-section-more a:hover {
    color: #999;
    border-bottom: 1px solid #999;
}

.module-section-gray {
    background-color: #f2f2f2;
}

.module-section > .module-section-inner .page-width {
    width: auto;
    max-width: 1200px;
    _width: 1200px;
}

img, .ylw-img-responsive {
    height: auto;
    max-width: 100%;
}

.box {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    padding:85px 0 0 0;
}

.l {
    float: left;
}

.r {
    float: right;
}

.contenta {
    padding: 30px 0px;
    overflow: hidden;
}

.contental {
    width: 58%;
}

.contental .am-slider-default .am-control-nav {
    width: 120px;
    right: 0;
    bottom: 25px !important;
}

.contental .am-direction-nav {
    display: none;
}

.contental .am-slider-default .am-control-nav {
    bottom: 0;
}

.contental .am-slider-default .am-control-nav li a {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 99px;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.contental .am-slider-default .am-control-nav li a.am-active {
    background: #FF0000;
}

.contental .am-slider-default .am-control-nav li a:hover {
    background: #FF0000;
}

.contentar {
    width: 40%;
    min-height: 500px;
    height:auto;
    padding: 0 0 0 0;
    
}

.contentart {
    width: 100%;
    overflow: hidden;
    padding-bottom: 5px;
    border-bottom: 1px solid #888;
    background: url("../images/xwzxx.jpg") no-repeat left bottom;
}

.contentartl {
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    background: #ec6c00;
    padding: 3px 25px;
}

.contentartr {
    line-height: 40px;
}

.contentarts {
    width: 100%;
    overflow: hidden;
    background: #E6EEF7;
    padding: 0 20px;
}

.contentartst {
    width: 100%;
    overflow: hidden;
    background: url("../images/dwzzbg.jpg") no-repeat left top;
    padding: 0 20px;
}

.contentartsb {
    width: 100%;
    overflow: hidden;
    background: url("../images/cgzsbg.jpg") no-repeat left top;
    padding: 0 20px;
}

.contentartls {
    font-size: 23px;
    font-weight: bold;
    color: #2f5398;
    height: 40px;
    line-height: 40px;
}

.contentartrs {
    line-height: 40px;
}

.contentartrs a {
    font-size: 15px;
    color: #72869d;
}

.contentartr a {
    font-size: 15px;
    color: #72869d;
}

.contentarbtt {
    font-size: 20px;
    color: #333333;
    width: 100%;
    margin: 10px 0;
}

.contentarbtb {
    font-size: 14px;
    color: #666666;
}

.contentarbtb span {
    font-size: 14px;
    color: #8498ad;
}

.contentarbt {
    margin-bottom: 25px;
}

.contentarbtt {
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.contentarbt a:hover .contentarbtt {
    color: #2F5398;
}

.contentarbbl {
    padding-left: 20px;
    background: url("../images/lefd.jpg") no-repeat left center;
    font-size: 14px;
    color: #555;
    line-height: 23px;
}

.contentarbbr {
    font-size: 14px;
    color: #8498ad;
}

.contentarbb ul li {
    width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
}

.contentarbbl {
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.contentarbb ul li a:hover .contentarbbl {
    color: #2F5398;
}

.aboutlink ul {
position: relative;
    display: flex;
    justify-content: space-between;
}

.aboutlink ul li {
    width: 31%;
    padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}
.aboutlink ul li:hover {
transform: translateY(-10px);
}
.aboutlink ul li .content {
    height: 120px;
    background: rgba(215, 150, 48, .8);
    border: 1px solid rgba(200, 200, 200, .2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.aboutlink ul li .content .icon {
    height: 100%;
    padding: 0 45px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.aboutlink ul li .content .icon img {
    width: 64px;
    height: 64px
}

.aboutlink ul li .content .right {
    padding: 0 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.aboutlink ul li .content .right h5 {
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    font-weight: normal
}

.aboutlink ul li .content .right p {
    font-size: 12px;
    line-height: 18px;
    font-family: Arial;
    color: rgba(255, 255, 255, .7);
    text-align: center;
    margin-top: 5px
}

.aboutlink ul li .content .right p br {
    display: none
}

.aboutlink ul li .content .right .arrow-next {
    font-size: 32px;
    color: #fff;
    cursor: pointer
}

.aboutlink>.sd_imgbox {
    position: absolute !important;
    width: 100%
}


.pro-tit {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 3px 0 0;
}

.pro-tit li {
    float: left;
    padding: 0 40px 0 0;
    
    margin-right: 0px;
    font-size: 18px;
    cursor: pointer;
}

.pro-tit li.cur {
    
    font-weight: bold;
    color: #d79630;
    position: relative;
}

.pro-tit li.cur:after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: #d79630;
    position: absolute;
    bottom: 0px;
}

.itempic {
    width: 100%;
}

.itempic img {
    width: 100%;
    max-height: 330px;
}

.entry-set .entry-item .typo-text .entry-title {
    margin-top: -2px;
    _margin-top: -1px;
}

.entry-item {
    position: relative;
    padding: 10px 10px 10px 100px;
    border-top: 1px solid #ddd;
    min-height: 140px;
    height: auto !important;
    _height: 80px;
}

.entry-item:hover {
    background: #f9f9f9;
}

.entry-item .time {
    position: absolute;
    left: 10px;
    top: 25px;
    width: 75px;
    background-color: #f2f2f2;
    text-align: center;
    font-family: Arial;
}

.entry-item .time-day {
    display: block;
    line-height: 50px;
    border-bottom: 1px solid #fff;
    color: #666;
    font-size: 30px;
}

.entry-item .time-date {
    display: block;
    color: #999;
    line-height: 22px;
    font-size: 12px;
}

.entry-item .entry-item {
    padding-left: 80px;
    min-height: 70px;
    height: auto !important;
    _height: 70px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.entry-item .entry-title {
    margin-bottom: 0px;
}

.entry-item .entry-title h2 {
    font-size: 18px;margin:15px 0;
}

.entry-item:hover a {
    color: #d79630;
}

.entry-item .entry-summary {
    height: 50px;
    color: #999;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 3em;
    box-sizing: border-box;
}

.entry-item .time {
    width: 60px;
}

.entry-item .time-day {
    font-size: 25px;
    line-height: 40px;
}

.entry-item .time-date {
    font-size: 11px;
}

#box1 {
    position: relative;
    width: 100%;
    height: 497px;
    border: 1px solid #f2f2f2;
}

#box1 .bigUl {
    width: 100%;
    height: auto;
    overflow: auto;
}

#box1 .bigUl img {
    width: auto;
    display: block;
    height: auto;
}

#box1 .prev {
    position: absolute;
    width: 40px;
    height: 60px;
    background: url(../images/icon-focusimg-btn-png24-20131225.png) -44px -63px no-repeat;
    z-index: 500;
    top: 40%;
    left: 0px;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}

#box1 .next {
    position: absolute;
    width: 40px;
    height: 60px;
    background: url(../images/icon-focusimg-btn-png24-20131225.png) -74px -63px no-repeat;
    z-index: 500;
    top: 40%;
    right: 0px;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}

.bigUl li {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    overflow: hidden;
}

.bigUl li img {
    display: block;
    width: 100%;
    height: auto;
}

.numberUl {
    position: absolute;
    right: 0;
    bottom: 10px;
    z-index: 400;
    display: none;
}

.numberUl li {
    width: 24px;
    height: 13px;
    float: left;
    background: #3b5998;
    opacity: 0.7;
    margin-left: 1px;
}

.numberUl li a {
    display: block;
    width: 24px;
    height: 13px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 13px;
}

#box1 .textUl {
    width: 100%;
    height: 50px;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 300;
}

#box1 .textUl li {
    left: 20px;
    bottom: 10px;
    display: none;
    position: absolute;
}

#box1 .textUl li a {
    font-size: 18px;
    font-family: "Microsoft Yahei";
    color: #fff;
    font-weight: normal;
}

.numberUl li.night a {
    background: yellow;
    color: black;
}

@media only screen and (min-width:1400px) {
}

@media only screen and (max-width:1400px) and (min-width:1200px) {

}

@media only screen and (max-width:1024px) and (min-width:960px) {
#fh5co-hero {
    margin-top: 70px;
}

}

@media only screen and (max-width:959px) and (min-width:768px) {
#fh5co-hero {
    margin-top: 70px;
}
    .topbar-lt {
        display: none;
    }

    #top-panel .howto {
        padding: 0px 3%;
        width: 94%;
        float: none;
    }

    #top-panel .hours {
        padding: 0px 3%;
        width: 94%;
        float: none;
    }

    #top-panel .howto {
        margin-bottom: 25px;
    }

    #top-panel .howto .steps {
        padding: 6px 0px;
    }

    #top-panel .howto .span2 {
        padding: 0px 0px 10px;
        width: 100%;
        float: none;
    }

    .header {
    }

    .header .inner {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .logo {
    }

    .topbar {
        background: rgb(51, 51, 51);
        height: auto;
        overflow: hidden;
    }

    #mobile-nav {
        text-align: center;
        display: block;
    }

    #mobile-home img {
        max-height: 80px;
    }

    .sub-nav a.active i {
        display: none;
    }

    #slidebanner {
        height: auto;
    }

    #slideshow li img {
        width: 100%;
        height: auto;
        min-height: inherit;
    }

    #sliderbox {
        max-width: 960px;
    }

    #slidebanner {
        width: 960px;
        height: 255px;
        margin-left: -480px;
    }

    #slideshow li {
        width: 960px;
        height: 255px;
    }

    #slideshow li img {
        width: 960px;
        height: 255px;
    }

    .contentar {
        width: 100%;
        float: none;
        padding: 20px;
        height: auto;
    }

    .contental {
        width: 100%;
        float: none;
        padding: 20px;
        height: auto;
    }
}

@media only screen and (max-width:767px) {

.section {
	padding: 0px 0;

}
.nav:before {

   background:none;

}
.aboutlink ul {
    
    display: block;
   
}
.aboutlink ul li {
    width: 100%;
padding: 5px 0;
}
.aboutlink ul li .content {
        height: 80px
    }

    .aboutlink ul li .content .icon {
        padding: 0 20px
    }

    .aboutlink ul li .content .icon img {
        width: 48px;
        height: 48px
    }

    .aboutlink ul li .content .right {
        padding: 0 20px
    }

    .aboutlink ul li .content .right h5 {
        font-size: 16px;
        line-height: 22px
    }

    .aboutlink ul li .content .right .arrow-next {
        font-size: 24px
    }

       .bannertxt,.bannertxt span {
    }

    .flexslider .flex-direction-nav a.flex-prev {
        opacity: 0.4 !important;
        left: 10px;
    }

    .flexslider .flex-direction-nav a.flex-next {
        right: 10px;
        opacity: 0.4;
    }

    .scrollable ul li {
        width: 260px;
    }

    #fh5co-hero {
        margin-top: 0px;
    }

    .flexslider .slides > li {
    width:100%;
    height: 400px; 
    overflow: hidden;
}


.flexslider .slides img {
   width: 100%;
    height: 100%; 
    object-fit: cover; 
}

.flexslider .slides img.topban {
   
       width: 100%;
    height: 100%; 
    object-fit: cover; 
}

.flexslider .slides video {
      width: 100%;
    height: 100%; 
    object-fit: cover; 
}
}

.h-h2 {
    margin-bottom: 0;
    line-height: normal;
    font-weight: bold;
    color: #004298;
    font-size: 30px;
    font-size: 3rem;
}

.m-shu, .fuwu .m-shu, .huanjing .m-shu, .kehu .m-shu, .team .m-shu {
    margin-bottom: 45px;
}

.kehu, .case, .team, .youshi, .news {
    padding: 45px 0 25px 0;
}

.fuwu-bg, .kehu-bg, .team-bg {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.kehu-bg {
    background-image: url(kehu-bg.jpg);
}

.col-lg-20 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 1200px) {
    .col-lg-20 {
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-20 {
        width: 20%;
    }
}

@media (min-width: 701px) and (max-width: 1023px) {
#fh5co-hero {
    margin-top: 70px;
}
    .fudong {
        padding-top: 8%;
    }
}

.kehu figure a {
    margin-bottom: 30px;
    color: #FFF;
    display: block;
}

.kehu div.row, .case div.row {
    margin-bottom: 10px;
}

.kehu figure a p {
    display: none;
}

@media (min-width: 1200px) {
    .kehu div.xg {
        height: 296px;
        overflow: hidden;
    }
}

@media (min-width: 999px) {
    .kehu figure a {
        position: relative;
    }

    .kehu figure a p {
        cursor: pointer;
        display: block;
        position: absolute;
        width: 204px;
        height: auto;
        background-color: #004298;
        top: 0px;
        line-height: 118px;
        text-align: center;
        vertical-align: middle;
        font-size: 16px;
        opacity: 0;
        filter: Alpha(Opacity=0);
    }

    .kehu figure a:hover p {
        display: block;
        opacity: 1;
        filter: Alpha(Opacity=1);
    }
}

@media (min-width: 999px) and (max-width: 1199px) {
#fh5co-hero {
    margin-top: 70px;
}
    .kehu figure a p {
        left: 4px;
    }
}

.khml a {
    margin-bottom: 10px !important;
}

.khml a h4 {
    color: #393;
    margin-top: 30px;
    margin-bottom: 0;
}

.kehu figure img {
    border: 1px solid #eee !important;
}

.case .m-shu {
    color: #999;
    margin-bottom: 35px;
    line-height: 28px;
}

.case .m-shu p {
    margin-top: 15px;
    color: #ccc;
}

.case .m-shu p a {
    color: #333;
    margin: 0 3px;
}

.case .m-shu p a:hover {
    color: #393;
}

.case h3 {
    padding: 20px 0 26px 0;
    margin: 0 auto;
}

.case h3 a {
    font-size: 16px;
    font-weight: bold;
}

.case h3 small, .case h3 small a {
    color: #999;
    font-size: 14px;
    font-weight: normal;
}

.case a.pic-link {
    max-width: 360px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 999px) {
    .case a.pic-link, .tj-case a.pic-link {
        position: relative;
        display: block;
    }

    .case-hover {
        cursor: pointer;
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0);
        background-image: url(../images/on-hover.png);
        background-repeat: repeat;
        opacity: 0;
        filter: Alpha(Opacity=0);
        z-index: 96;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

    .case-hover:hover {
        opacity: 1;
        filter: Alpha(Opacity=1);
    }

    .case-hover * {
        filter: inherit;
    }

    .case-hover {
        cursor: pointer;
    }

    .case-hover:hover .hover-link, .tj-case figure div:hover .hover-link, .pic-link:hover .hover-link {
        background-image: url(../images/hover-link.png);
        background-repeat: no-repeat;
        background-position: center center;
    }

    .hover-link {
        width: 44px;
        height: 44px;
        top: 50%;
        left: 50%;
        margin-left: -22px;
        margin-top: -22px;
        position: absolute;
        display: block;
    }
}

@media (max-width: 1200px) {
.xnav {
	position: static;

	
}
    .col-lg-20 {
        width: 50%;
        float: left;
    }
}