/*头部*/
.head {
    width: 100%;
    height: 80px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
	top: 0;
	left: 0;
    z-index: 99;
    background-color: #fff;
    transition: all 0.3s ease-out 0s;
	
}
.head-s {
   /* height: 60px;*/
}
.head .logo {
	display: block;
	float: left;
	margin-right: 50px;
	padding: 10px 50px;
	line-height: 60px;
    transition: all 0.3s ease-out 0s;
}
.head-s .logo {
    padding: 0 30px;
}
.head .logo img {
	height: 70px;
}
.head .nav {
	float: right;
	padding: 0px 40px;
    transition: all 0.3s ease-out 0s;
}
.head-s .nav {
    padding: 0 20px;
}
.head .nav li {
	float: left;
    padding: 20px 0.5px;
    line-height: 20px;
    position: relative;
    transition: all 0.3s ease-out 0s;
}
.head-s .nav li {
    padding: 10px 0.5px;
}
.head .nav li>a {
	display: block;
    padding: 10px 30px;
	font-size: 14px;
    transition: all ease-out .3s;
}
.head .nav li.active>a,
.head .nav li:hover>a{
	color: #fff;
    background: #abcd08;
}
.head .nav li .subnav {
	width: 210px;
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.3);
	border-top: 3px solid #abcd08;
    opacity: 0;
    visibility: hidden;
	position: absolute;
	top: 90px;
	left: -40px;
    transition: all 0.3s ease-out 0s
}
.head .nav li:hover .subnav {
	display: block;
	opacity: 1;
	visibility: visible;
	top: 80px;
}
.head-s .nav li:hover .subnav {
    top: 60px;
}
.head .nav li .subnav a {
	height: 49px;
	display: block;
	padding: 0 30px;
	line-height: 48px;
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
    transition: all 0.2s ease-out 0s;
}
.head .nav li .subnav a i {
	opacity: 0;
	float: right;
    transition: all 0.2s ease-out 0s;
}
.head .nav li .subnav a:hover {
	text-indent: 10px;
    background: #f1f1f1;
    color: #333;
}
.head .nav li .subnav a:hover i {
	opacity: 1;
}
/*底部*/
.footer {
	width: 100%;
	position: fixed;
	bottom: 0;
	padding: 5px 0;
	background: #fff;
	border-top: 1px solid #eee;
}
.footer .p {
	float: right;
	line-height: 30px;
	margin-right: 100px;
}
.footer .share {
	float: right;
	margin-right: 20px;
}
.footer .share li {
	float: left;
	width: 60px;
	text-align: center;
    border-right: 1px solid #eee;
    line-height: 30px;
}
.footer .share li a {
    display: block;
    width: 30px;
    height: 30px;
    margin: auto;
}
.footer .share li a img {
    width: 60%;
}
.footer .share li:last-child {
	border-right: none;
}
/*内容*/
.content {
    background-color: #fff;
}
.content .section {
	background-color: #fcfcfc;
	
	background-size: cover;
	background-position: top center;
}
#fp-nav.right {
	right: 20px;
}
#fp-nav ul li a span {
	display: none;
}
#fp-nav ul li {
	width: 12px;
	height: 3px;
	margin: 0 0 10px 0;
}
#fp-nav ul li a {
	border: 1px solid #dddddd;
	background: transparent;
	transition: all 0.3s ease-out 0s;
}
#fp-nav ul li a.active {
	background-color: #ABCD08;
    border: 1px solid #ABCD08;
}
#fp-nav ul li a:hover {
	background-color: #ABCD08;
    border: 1px solid #ABCD08;
}
.section .mask {
	/*background: #222325;*/
    opacity: 0.7;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section .main {
	position: relative;
}
.sec-title {
	text-align: center;
    padding-bottom: 3%;
}
.sec-title .p1 {
    font-size: 26px;
    color: #333;
}
.sec-title .p2 {
    color: #656565;
}
/*第一屏*/
.section1 .bx-wrapper {
	height: 100%;
    width: 100%;
}
.section1 .bx-viewport {
	height: 100% !important;
}
.section1 .slider li {
	width: 100%;
	height: 100%;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section1 .slider li>a {
	width: 100%;
    height: 100%;
    display: table;
	display:none;
}
.section1 .slider li .wrap {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.section1 .slider li .txt {
	width: 35%;
    float: left;
    margin-left: 150px;
    text-align: left;
}
.section1 .slider li .txt .p1 {
	font-size: 42px;
    line-height: 60px;
    height: 90px;
    color: #000;
    padding-bottom: 30px;
	font-weight:bold;
}
.section1 .slider li .txt .p1::before {
	position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    background: #ABCD08;
    margin-top: 76px;
}
.section1 .slider li .txt .p2 {
    font-size: 18px;
    height: 80px;
    line-height: 20px;
    transition-delay: 0.2s;
    width: auto;
    color: #000;
    padding: 20px 0;
    overflow: hidden;
}
.section1 .slider li .txt div {
	transform: translateY(25px);
    transition: all ease-out .3s;
    opacity: 0;
}
.section1 .slider li.active .txt div {
    transform: translateY(0px);
    opacity: 1;
}
.section1 .slider li .arrowdown {
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 100px;
	left: 50%;
	margin-left: -15px;
	background: url(../images/arrowdown.png) no-repeat;
	background-size: 100%;
	-webkit-animation: fadeInUp 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s infinite alternate;
}
.section1 .bx-wrapper .bx-pager {
	bottom: 50px;
}
.section1 .bx-wrapper .bx-pager.bx-default-pager a,
.section2 .bx-wrapper .bx-pager.bx-default-pager a,
.section5 .bx-wrapper .bx-pager.bx-default-pager a {
	margin: 0px 1px;
    border-radius: 0px;
    width: 50px;
    height: 3px;
    transition: all ease-out .3s;
    border: 1px solid #dddddd;
    background: transparent;
}
.section1 .bx-wrapper .bx-pager.bx-default-pager a.active, 
.section1 .bx-wrapper .bx-pager.bx-default-pager a:focus, 
.section1 .bx-wrapper .bx-pager.bx-default-pager a:hover,
.section2 .bx-wrapper .bx-pager.bx-default-pager a.active, 
.section2 .bx-wrapper .bx-pager.bx-default-pager a:focus, 
.section2 .bx-wrapper .bx-pager.bx-default-pager a:hover,
.section5 .bx-wrapper .bx-pager.bx-default-pager a.active, 
.section5 .bx-wrapper .bx-pager.bx-default-pager a:focus, 
.section5 .bx-wrapper .bx-pager.bx-default-pager a:hover {
    border: 1px solid #ABCD08;
    background-color: #ABCD08;
}
.section1 .bx-wrapper .bx-controls-direction a,
.section2 .bx-wrapper .bx-controls-direction a,
.section5 .bx-wrapper .bx-controls-direction a {
	width: 40px;
	height: 40px;
	margin-top: -20px;
	transition: all ease-out .3s;
}
.section1 .bx-wrapper .bx-prev,
.section2 .bx-wrapper .bx-prev,
.section5 .bx-wrapper .bx-prev {
	left: 20px;
	background: url(../images/pager01.png) no-repeat;
}
.section1 .bx-wrapper .bx-next,
.section2 .bx-wrapper .bx-next,
.section5 .bx-wrapper .bx-next {
	right: 20px;
	background: url(../images/pager01.png) no-repeat -40px 0;
}
.section1 .bx-wrapper .bx-prev:hover,
.section2 .bx-wrapper .bx-prev:hover,
.section5 .bx-wrapper .bx-prev:hover {
	background: #ABCD08 url(../images/pager02.png) no-repeat;
}
.section1 .bx-wrapper .bx-next:hover,
.section2 .bx-wrapper .bx-next:hover,
.section5 .bx-wrapper .bx-next:hover {
	/*background: url(../images/pager02.png) no-repeat -40px 0;*/
}
/*第二屏*/
.project-item img {
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.project-item:hover img {
	transform: scale(1.2, 1.2);
}
.project-item .txt {
	height: 80px;
	width: 100%;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    background: #f1f1f1;
    position: relative;
}
.project-item .txt::after {
    width: 0%;
    height: 80px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    background-color: #ABCD08;
}
.project-item:hover .txt::after {
	width: 100%;
}
.project-item .txt .wrap {
    position: absolute;
    left: 0;
    top: 0;
    height: 80px;
    width: 100%;
    z-index: 1;
}
.project-item .txt .p1 {
	font-size: 14px;
    color: #666;
    padding: 30px 0px 5px;
    transition: all ease-out .3s;
}
.project-item:hover .txt .p1 {
    color: #fff;
}
.project-item:hover .txt .p2 {
    color: #fff;
}
.project-item .txt .p2 {
	color: #7B7B7B;
	font-size:14px;
}
.section2 .bx-wrapper .bx-pager {
	bottom: -9%;
}
.btn-more {
	display: block;
    width: 360px;
	height: 50px;
    font-size: 16px;
    line-height: 50px;
    border: #ddd 1px solid;
    margin: 3% auto;
    color: #333;
    text-align: center;
    text-indent: 0px;
    transition: all ease-out .3s;
}
.btn-more i {
	display: inline-block;
	opacity: 0;
    text-indent: 0px;
    transition: all ease-out .3s;
}
.btn-more:hover i {
	opacity: 1;
    text-indent: 18px;
}
.btn-more:hover {
	border-color: #ABCD08;
    text-indent: 0px;
    text-align: center;
    background-color: #ABCD08;
    color: #fff;
}
/*第三屏*/
.section3-list li {
	padding: 0 20px;
	position: relative;
}
.section3-list .item {
	display: block;
	text-align: center;
	padding-top: 30px;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.section3-list .item img {
    margin: 0 auto;
}
.section3-list .item:hover {
    transform: translateY(-30px);
}
.section3-list li::before {
    width: 0px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    font-size: 30px;
    top: 0px;
    left: 20px;
    color: #222;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    text-align: left;
}

.section3-list li.l1::before {
    content: "01";
}
.section3-list li.l2::before {
    content: "02";
}
.section3-list li.l3::before {
    content: "03";
}
.section3-list li:hover::before {
    width: 35px;
    height: 1px;
    background-color: #fff;
    color: #ABCD08;
}
.section3-list .item .txt {
	margin-top: 20px;
}
.section3-list .item .txt .p1 {
	color: #333;
    height: 50px;
    font-size: 16px;
    line-height: 40px;
    transition: all ease-out .2s;
}
.section3-list .item .txt .p2 {
    color: #848484;
    font-size: 13px;
    line-height: 24px;
    height: 50px;
    overflow: hidden;
    width: 100%;
}
.section3-list .item:hover .txt .p1 {
    color: #fe8300!important;
}
/*第四屏*/
.section4-img {
	float: left;
	width: 50%;
	height: 100%;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section4-right {
	float: right;
	width: 50%;
	padding-top: 15%;
	
}
.section4-right .sec-title::after {
	position: inherit;
    content: "";
    height: 1px;
    background: #474747;
    margin: 28px 48% 0;
    width: 4%;
    float: right;
}
.section4-right .txt {
    width: 60%;
    max-height: 108px;
    line-height: 26px;
    margin: 20px auto 40px;
    font-size: 13px;
    color: #848484;
    overflow: hidden;
}
.section4-right .btn-more {
	width: 30%;
}
/*第五屏*/
.section5 .mask {
  /*  background: url(../images/opa5.png);*/
}
.section5 .slider dl dt img {
	width: 100px;
    height: 100px;
    display: block;
    margin: 10px auto 24px auto;
    border-radius: 50%;
}
.section5 .slider dl dt::after {
	position: absolute;
    content: "";
    width: 1px;
    height: 36px;
    background: #333;
    left: 50%;
    margin: 60px 0;
}
.section5 .slider dl dd.d1 {
	color: #474747;
    font-size: 24px;
    text-align: center;
}
.section5 .slider dl dd.d2 {
	color: #a5a5a5;
    text-align: center;
    margin-bottom: 30px;
}
.section5 .slider .p {
    background: #F1F1F1;
    padding: 36px;
    border-radius: 8px;
    width: 60%;
    height: 122px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 24px;
    overflow: hidden;
}
/*第六屏*/
.section6 .sec-title {
	padding-bottom: 5%;
}
.section6-left .img::after {
    content: "";
	position: absolute;
	top: 20px;
	right: -25px;
    width: 76px;
    height: 2px;
    background: #ABCD08;
	display:none
}
.section6-left .p1 {
    height: 30px;
    line-height: 30px;
    margin-bottom: 5px;
    overflow: hidden;
    font-size: 16px;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.section6-left .date {
	color: #868686;
}
.section6-left .p2 {
    line-height: 22px;
    color: #a7a7a7;
    height: 42px;
    overflow: hidden;
    margin-top: 20px;
}
.section6-left .btn-more {
    width: 120px;
    height: 30px;
    line-height: 30px;
    margin: 30px 0 0 0;
    font-size: 12px;
}
.section6-left:hover .p1 {
    color: #ABCD08;
}
.section6-left:hover .btn-more {
	border-color: #ABCD08;
    text-indent: 0px;
    text-align: center;
    background-color: #ABCD08;
    color: #fff;
}
.section6-right {
	margin-top: -10px;
}
.section6-right li {
	height: 38px;
	line-height: 38px;
	margin-bottom: 2px;
	position: relative;
}
.section6-right li .date {
	float: left;
	padding: 0 20px;
    color: #757575;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.section6-right li .p {
	float: left;
	width: 68%;
    height: 38px;
    color: #666;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.section6-right li a {
    width: 100%;
	position: absolute;
	z-index: 1;
}
.section6-right li:hover .date,
.section6-right li:hover .p {
	color: #fff;
}
.section6-right li::after {
	width: 100%;
    height: 0px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    background-color: #ABCD08;
}
.section6-right li:hover::after {
    height: 38px;
}
/*第七屏*/
.section7 .mauto {
	max-width: 920px;
	padding: 0 10px;
}
.section7-list li {
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transform: translateY(0px);

}
.section7-list li:hover {
	box-shadow: 0px 10px 26px rgba(0, 0, 0, .2);
    background-color: #fff;
    transform: translateY(-10px);
	color:#fe8300;
}
/*第八屏*/
.section8 .mask {
    background: #f8f8f8;
}
.section8 .sec-title {
	text-align: left;
}
.section8-left {
    margin-left: 10%;
}
.section8-left dl dt {
    color: #ABCD08;
    line-height: 24px;
    margin-bottom: 25px;
    font-size: 16px;
}
.section8-left p {
	line-height: 24px;
    font-size: 13px;
    height: 24px;
}
.section8-left .list {
	margin-top: 30px;
}
.section8-left .list a {
	float: left;
	width: 30px;
	height: 30px;
	margin-right: 10px;
    background: #484848;
    border-radius: 50%;
    line-height: 26px;
    text-align: center;
}
.section8-left .list a img {
    width: 60%;
}
.section8-right {
	background: #fff;
	padding: 40px 20%;
    margin-left: 10%;
}
.section8-right li {
    border-bottom: 1px solid #dddddd;
    padding-top: 5px;
}
.section8-right li .inputtext {
    margin-bottom: 5px;
    color: #444;
    width: 100%;
    height: 40px;
    line-height: 20px;
    padding: 10px 0 10px 20px;
    font-size: 14px;
}
.section8-right li .inputtext1{width: 50%;margin-bottom: 5px;
    color: #444;
   
    height: 40px;
    line-height: 20px;
    padding: 10px 0 10px 20px;
    font-size: 14px;}
.section8-right li .textarea {
	height: 80px;
    overflow: hidden;
}
.section8-right li .inputsub {
    width: 100%;
    margin-top: 10px;
    padding: 8px 0;
    color: #fff;
	background-color: #ABCD08;
    font-size: 16px;
    cursor: pointer;
}
.section3-list li,
.section4-right .txt,
.section4-right .btn-more,
.section6-left,
.section6-right,
.section7-list,
.section8-left,
.section8-right,
.vbhidden {
	visibility: hidden;
}
/*内页*/
.content1 {
    padding-bottom: 200px;
    position: relative;
	background-color:#f8f8f8;
}
.content2 {
  /*  padding-top: 80px;*/
}
.project-wrap {
    margin-left: -5px;
    margin-right: -5px;
}
.project-wrap li {
    padding: 0 5px;
    margin-bottom: 20px;
}
.project-menu {
    text-align: center;
    margin: 50px 0;
}
.project-menu a {
    display: inline-block;
    /*margin: 0 5px;*/
    padding: 8px 30px;
    color: #999;
    border: 1px solid #ddd;
    transition: all 0.3s ease-out 0s;
}
.project-menu a.active,.project-menu a:hover {
    background: #ABCD08;
    color: #fff;
    border: 1px solid #ABCD08;
}
.top-bg-wrap {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.top-bg {
    background-color: #39383E;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 300px;
    animation: mymove 20s;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.content1 .sec-title {
    padding-top: 80px;
}
.about-main .box1-right {
    padding-left: 5%;
}
.about-main {
    color: #aaa;
    line-height: 24px;
    font-size: 13px;
    padding: 0 10px;
}
.about-main .ttl {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}
.about-main .box3-list {
    margin-left: -20px;
    margin-right: -20px;
}
.about-main .box3-list li {
    padding: 0 20px;
    margin-bottom: 30px;
}
.about-main .box3-list li img {
    width: 100%;
}
.about-main .box3-list li .p {
    margin-top: 20px;
    height: 120px;
    overflow: hidden;
}
hr {
    height: 1px;
    margin: 20px 0;
    border: none;
    border-top: 1px dotted #ddd;
}
.team-list {
    margin-left: -3%;
    margin-right: -3%;
}
.team-list li {
    padding: 0 3%;
}
.team-list li img {
    width: 100%;
}
.team-list li .img:hover .wrap {
    transform: translate(0, -50px);
}
.team-list li .wrap {
    height: 50px;
    width: 100%;
    background: #fff;
    position: absolute;
    bottom: -50px;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transform: translate(0, 0px);
}
.team-list li .wrap div {
    width: 14px;
    height: 14px;
    margin: 18px auto;
    position: relative;
}
.team-list li .wrap span {
    display: block;
    position: absolute;
    background: #ABCD08;
}
.team-list li .wrap span.s1 {
    width: 14px;
    height: 2px;
    top: 6px;
}
.team-list li .wrap span.s2 {
    width: 2px;
    height: 14px;
    left: 6px;
}
.team-list li .txt {
    line-height: 24px;
}
.team-list li .txt .p {
    line-height: 20px;
    max-height: 60px;
    margin-top: 10px;
    overflow: hidden;
}
.team-list li:hover .txt .fz18 {
    color: #fe8300;
}
.about-list1 {
    margin: 60px 0 20px;
}
.about-list1 li {
    float: left;
    width: 25%;
    padding: 15px 0;
    text-align: center;
    border-right: #ddd 1px solid;
    font-size: 12px;
}
.about-list1 li span {
    display: block;
    font-size: 34px;
    color: #ABCD08;
}
.news-menu {
    margin: 10px 0 20px;
}
.about-list1 li:last-child {
    border-right: none;
}
.news-list li {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}
.news-list li img {
    padding-right: 50px;
}
.news-list li .txt .p1 {
    height: 25px;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.news-list li .txt .date {
    color: #868686;
}
.news-list li .txt .p2 {
    line-height: 22px;
    color: #a7a7a7;
    height: 42px;
    overflow: hidden;
    margin-top: 17px;
}
.news-list li .txt .btn {
    width: 122px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    margin-top: 25px;
    color: #ddd;
    border: 1px solid #ddd;
    position: relative;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.news-list li .txt .btn span {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 2;
}
.news-list li .txt .btn::after {
    width: 0%;
    height: 30px;
    position: absolute;
    content: "";
    bottom: 1px;
    left: 1px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    background-color: #ABCD08;
    color: #fff;
}
.news-list li:hover .txt .btn::after {
    width: 100%;
}
.news-list li:hover .txt .btn {
    color: #fff;
}
.news-list li:hover .txt .p1 {
    color: #ABCD08;
}
.service-list li {
    padding: 0 20px;
    margin-bottom: 100px;
    text-align: center;
}
.service-list li img {
    transition: all 0.6s ease;
    vertical-align: auto;
}
.service-list li:hover img {
    /*transform: translateY(-10px);
    -webkit-transform: translateY(-10px);*/
}
.service-list li .txt {
    margin-top: 20px;   
}
.service-list li .txt .p1 {
    color: #333;
    height: 50px;
    font-size: 16px;
    line-height: 40px;
    transition: all ease-out .2s;
}
.service-list li .txt .p2 {
    color: #848484;
    font-size: 13px;
    line-height: 24px;
    height: 50px;
    overflow: hidden;
}
.service-list li:hover .txt .p1 {
    color: #ABCD08;
}
.prodetail {
    padding: 0 50px;
}
.prodetail-right {
    padding-left: 50px;
}
.prodetail-left .txt .p1 {
    color: #666666;
    font-size: 26px;
    position: relative;
	padding-bottom:20px;
}
.prodetail-left .txt .p1::after {
    position: absolute;
    content: "";
    top: 12px;
    left: -50px;
    width: 30px;
    height: 3px;
    background: #ABCD08;
}
.prodetail-left .txt .p2 {
    color: #656565;
}
.prodetail-left .txt .p3 {
    font-size: 13px;
    line-height: 24px;
    margin: 30px 0;
}
.prodetail-btn {
    float: left;
    color: #B0B0B0;
    background-color: #333;
    padding: 5px 10px;
    margin-bottom: 20px;
    font-size: 13px;
    transition: all 0.3s 0s;
}
.prodetail-btn:hover {
    color: #474747;
    background: #ABCD08;
}
.prodetail-left-list {
    margin-left: -5px;
    margin-right: -5px;
}
.prodetail-left-list li {
    padding: 0 5px;
    margin-bottom: 15px;
}
.prodetail-left-list li .p1 {
    color: #A5A5A5;
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.prodetail-left-list li:hover .p1 {
    color: #ABCD08;
}
.prodetail-left-list li .p2 {
    color: #505050;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.teamd-main {
    padding-left: 50px;
}
.teamd-main .p1 {
    font-size: 30px;
    line-height: 32px;
    color: #fff;
}
.teamd-main .p2 {
    color: #f1f1f1;
    font-size: 14px;
}
/*弹窗*/
.online-lx {
    width: 180px;
    background: url(../images/opa8.png);
    position: fixed;
    right: -200px;
    bottom: 40px;
}
.online-lx .top {
    color: #fff;
    background: #ABCD08;
    padding: 20px;
    font-size: 14px;
    line-height: 16px;
}
.online-lx .top i {
    float: right;
    width: 16px;
    height: 16px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.online-lx .top i:hover {
    transform: rotate(180deg);
}
.online-lx .list li a {
    display: block;
    color: #666;
    padding: 12px 30px;
    border-bottom: #333 1px solid;
    transition: all ease-out .3s;
}
.online-lx .list li a:hover {
    background: #ABCD08;
    color: #fff;
    padding: 15px 30px;
}
.online-lx .list li i,
.online-lx .bottom .p1 i {
    float: left;
    width: 16px;
    height: 16px;
    margin-right: 15px;
}
.online-lx .bottom {
    padding: 12px 30px;
}
.online-lx .bottom .p1 {
    margin-bottom: 10px;
}
.online-lx .bottom .p2 {
    font-size: 16px;
    color: #fff;
}
.bx-wrapper .bx-loading {
    display: none;
}
/*动画*/
@keyframes fadeInUp {
	0% {
	    opacity: 0;
	    -webkit-transform: translate3d(0,100%,0);
	    transform: translate3d(0,100%,0);
	}
	100% {
	    opacity: 1;
	    -webkit-transform: none;
	    transform: none;
	}
}
@keyframes mymove {
    0% {
        transform: scale(1.3, 1.3);
    }
    100% {
        transform: scale(1, 1);
    }
}


about-main.col-r {
 
  width: 100%;
}
.video-cont, .storel-cont, .affi-cont {
  padding: 18px 0 0 17px;
}
@media screen and (max-width: 1226px) {
  .video-cont, .storel-cont, .affi-cont {
    padding: 2%;
  }
}

.video-list, .storel-list {
  *zoom: 1;
  text-align: center;

}
.video-list:after, .storel-list:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1226px) {
  .video-list, .storel-list {
    width: 100%;
  }
}
.video-list li, .storel-list li {
  float: left;
  padding: 0 10px 18px 0;
}
@media screen and (max-width: 1226px) {
  .video-list li, .storel-list li {
    width: 25%;
    padding: 0 1% 2%;
  }
}
@media screen and (max-width: 920px) {
  .video-list li, .storel-list li {
    width: 33.333%;
  }
}
@media screen and (max-width: 640px) {
  .video-list li, .storel-list li {
    width: 50%;
  }
}
@media screen and (max-width: 460px) {
  .video-list li, .storel-list li {
    width: 100%;
  }
}
.video-list .item-frame, .storel-list .item-frame {
  padding: 1px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  position: relative;
  margin-bottom: 8px;
}
.video-list .item-frame i, .storel-list .item-frame i {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -22px 0 0 -22px;
}
.video-list .item-frame:after, .storel-list .item-frame:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0px;
  width: 100%;
  height: 8px;
  background-size: contain;
}
.video-list .item-name, .storel-list .item-name {
  line-height: 26px;
  color: #999;
}
.video-list .item-pic, .storel-list .item-pic {
  overflow: hidden;
}
.video-list .item-pic img, .storel-list .item-pic img {
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
  transition: all 0.3s ease 0s;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  display: block;
  width: 218px;
}
@media screen and (max-width: 1226px) {
  .video-list .item-pic img, .storel-list .item-pic img {
    width: 100%;
  }
}
.video-list a:hover .item-pic img, .storel-list a:hover .item-pic img {
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
  transition: all 0.3s ease 0s;
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}








/*案例中心详情*/
.lbjd_bpic{
	width:800px;
	height:630px;
	position:relative;
	overflow:hidden;
	margin: 0 auto;
}
.lbjd_bpic ul{
	position:absolute;
	left:0;
	top:0;
}
.lbjd_bpic ul li{
	width:800px;
	height:630px;
	position: relative;
}
.lbjd_bpic ul li a{ color:#fff;}
.lbjd_bpic ul li a img{
	width: 794px;
	height: 624px;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border:3px solid #e8e8e8; 
}
.lbjd_spic{
	margin: 15px auto 0 auto;
	position: relative;
	height: 90px;
}
.lbjd_sbox{ 
	height:90px;
	overflow:hidden; 
	width:260px; 
	position: absolute;
	float: left;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.lbjd_sbox ul{
	position:absolute;
	left:0;
	top:0;
}
.lbjd_sbox ul li{ 
	width:116px; 
	height:86px; 
	margin:0 5px;
	position: relative;
	border:2px solid #eee;
}
.lbjd_sbox ul li a img{ 
	width:116px; 
	height:86px;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	position: absolute;
}
.lbjd_sbox ul li.on{
	border:2px solid #abcd08;
	padding: 0;
}
.prev_btn{ 
	
	cursor: pointer;
	position: absolute;
}
.prev_btn img{ 
	width:29px;
	height:55px;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
}
.next_btn{
	
	cursor:pointer;
	right: 0;
	position: absolute;
}
.next_btn img{
	width:29px;
	height:55px;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
}
.wbanxq1{
	width: 1122px;
	margin: 0 auto;
	position: relative;
}
.lyhl{
	width: 64px;
	height: 80px;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	transition:all 0.7s ease-out 0s;
}
.lyhl:hover{
	left: 15px;
}
.lyhr{
	width: 64px;
	height: 80px;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
	transition:all 0.7s ease-out 0s;
}
.lyhr:hover{
	right: 15px;
}
.yhxtc{
	width: 360px;
}
.yhxtc .prev_btn{
	width: 50px;
	height: 50px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.yhxtc .next_btn{
	width: 50px;
	height: 50px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.yhxtc .prev_btn img{
	width: 35px;
	height: 35px;
}
.yhxtc .next_btn img{
	width: 35px;
	height: 35px;
}
.w860{
	width: 860px;
	margin: 0 auto;
}
.yha1{
	padding: 12px 33px;
	font-size: 20px;
	color: #333;
	text-align: center;
	background: #dcdde1;
display:inline-block;
}
.yha1:hover,.yha1.active{
	background: #abcd08;
	color: #fff;
}
.pro_search{ text-align:right;}
.pro_search input[type=text]{ height:40px; background:#fff; width:180px;}
.pro_search .PSer_btn{height:40px;width:50px; color:#fff; background:#ABCD08;}


@media (max-width: 1440px){
.head .nav li>a{padding:10px 20px;}
}