@charset "utf-8"; @import "http://energe.imwork.net/all/css/iconfont.css"; ////////////////////////////// 自定义属性 ////////////////////////////// //颜色 @main_color: #ea923f; @main_color2: #008FFF; @main_color3: #FFF; //颜色 end //过渡 .transition(@s:.75s){ transition: @s; -ms-transition: @s; -moz-transition: @s; -webkit-transition: @s; -o-transition: @s; } //过渡 end //旋转 .transform_rotate(@s:7deg){ transform:rotate(@s); -ms-transform:rotate(@s); -moz-transform:rotate(@s); -webkit-transform:rotate(@s); -o-transform:rotate(@s); } //旋转 end //旋转 - 上下左右移动 .transform_translate(@x:10px,@y:10px){ transform: translate(@x,@y); -ms-transform: translate(@x,@y); -moz-transform: translate(@x,@y); -o-transform: translate(@x,@y); } //旋转 - 上下左右移动 end //旋转 - 上下移动 .transform_translateY(@px:10px){ transform: translateY(@px); -ms-transform: translateY(@px); -moz-transform: translateY(@px); -o-transform: translateY(@px); } //旋转 - 上下移动 end //旋转 - 左右移动 .transform_translateX(@px:10px){ transform: translateX(@px); -ms-transform: translateX(@px); -moz-transform: translateX(@px); -o-transform: translateX(@px); } //旋转 - 左右移动 end //旋转 - 3D旋转 .transform_rotateY(@deg:360deg){ transform:rotateY(@deg); -ms-transform: rotateY(@deg); -moz-transform: rotateY(@deg); -o-transform: rotateY(@deg); } //旋转 - 3D旋转 end //放大 .transform_scale(@s:1.0){ transform: scale(@s); -ms-transform: scale(@s); -moz-transform: scale(@s); -webkit-transform: scale(@s); -o-transform: scale(@s); } //放大 end //变换 .transform_skew(@deg:360deg){ transform: skew(@deg); -ms-transform: skew(@deg); -moz-transform: skew(@deg); -webkit-transform: skew(@deg); -o-transform: skew(@deg); } //变换 end //变换X .transform_skewX(@deg:360deg){ transform: skewX(@deg); -ms-transform: skewX(@deg); -moz-transform: skewX(@deg); -webkit-transform: skewX(@deg); -o-transform: skewX(@deg); } //变换X end //变换Y .transform_skewY(@deg:360deg){ transform: skewY(@deg); -ms-transform: skewY(@deg); -moz-transform: skewY(@deg); -webkit-transform: skewY(@deg); -o-transform: skewY(@deg); } //变换Y end //动画基点 end .transform_origin(@px:10px,@px2:10px){ transform-origin:@px @px2; -ms-transform-origin:@px @px2; -webkit-transform-origin:@px @px2; -moz-transform-origin:@px @px2; -o-transform-origin:@px @px2; } //动画基点 end //reset 重置样式 body,div,p,ul,ol,dl,dt,dd,li,form,input,table,th,td,img,h1,h2,h3,h4,h5,h6 { margin: 0;padding: 0;} body {background: #fff; color: #000; font-size: 12px; font-style: normal; font-family:'Microsoft Yahei','微软雅黑','Simsun','宋体','Arial', sans-serif;} em, b, i { font-style:normal;} li { list-style:none;} img { border:none;} a { text-decoration:none; color:#000;} a:hover { _text-decoration:underline; color:@main_color;} table { border-spacing:0; border-collapse:collapse; } //reset 重置样式 end .min_width{min-width: 1200px;} .centered{width: 1200px; margin: 0 auto;}//公共宽度 头和尾巴 .centered_index{width: 1200px; margin: 0 auto;}//首页 .index_centered{width: 1200px; margin: 0 auto;}//首页 .centered_page{width: 1200px; margin: 0 auto;}//内页 .page_centered{width: 1200px; margin: 0 auto;}//内页 @page_right_width:950px; .centered_page_right{width: @page_right_width; overflow: hidden;}//内页右边宽度 .centered_page_right1{width: 1200px; overflow: hidden;}//内页右边宽度 //清除浮动 .clearboth{clear: both;} .clearfix{ *zoom: 1;} .clearfix:before, .clearfix:after { display: table; line-height: 0; content: "";} .clearfix:after {clear: both;} //清除浮动 end //定位 .fl{float: left;} .fr{float: right;} .pr{position: relative;} .pa{position: absolute;} .vh{visibility: hidden;} .dn{display: none;} .oh{overflow: hidden;} //定位 end //外边距 .m10{margin:10px;} .m15{margin:15px;} .m30{margin:30px;} .mt5{margin-top:5px;} .mt10{margin-top:10px;} .mt15{margin-top:15px;} .mt20{margin-top:20px;} .mt30{margin-top:30px;} .mt50{margin-top:50px;} .mt100{margin-top:100px;} .mb5{margin-bottom:5px;} .mb10{margin-bottom:10px;} .mb15{margin-bottom:15px;} .mb20{margin-bottom:20px;} .mb30{margin-bottom:30px;} .mb50{margin-bottom:50px;} .mb100{margin-bottom:100px;} .ml5{margin-left:5px;} .ml10{margin-left:10px;} .ml15{margin-left:15px;} .ml20{margin-left:20px;} .ml30{margin-left:30px;} .ml50{margin-left:50px;} .ml100{margin-left:100px;} .mr5{margin-right:5px;} .mr10{margin-right:10px;} .mr15{margin-right:15px;} .mr20{margin-right:20px;} .mr30{margin-right:30px;} .mr50{margin-right:50px;} .mr100{margin-right:100px;} //外边距 end //内边距 .p10{padding:10px;} .p15{padding:15px;} .p30{padding:30px;} .pt5{padding-top:5px;} .pt10{padding-top:10px;} .pt15{padding-top:15px;} .pt20{padding-top:20px;} .pt30{padding-top:30px;} .pt50{padding-top:50px;} .pt100{padding-top:100px;} .pb5{padding-bottom:5px;} .pb10{padding-bottom:10px;} .pb15{padding-bottom:15px;} .pb20{padding-bottom:20px;} .pb30{padding-bottom:30px;} .pb50{padding-bottom:50px;} .pb100{padding-bottom:100px;} .pl5{padding-left:5px;} .pl10{padding-left:10px;} .pl15{padding-left:15px;} .pl20{padding-left:20px;} .pl30{padding-left:30px;} .pl50{padding-left:50px;} .pl100{padding-left:100px;} .pr5{padding-right:5px;} .pr10{padding-right:10px;} .pr15{padding-right:15px;} .pr20{padding-right:20px;} .pr30{padding-right:30px;} .pr50{padding-right:50px;} .pr100{padding-right:100px;} //内边距 end ////////////////////////////// 自定义属性 ////////////////////////////// /* 在线客服 */ .all_online{width: 170px; position:fixed; top:25%; right:-170px; z-index:999;} .all_online .left{position: absolute; top: 0; left: -50px; width: 50px; height: 150px; background-color: @main_color; overflow: hidden; text-align: center; word-break: break-all; .transition(1s);} .all_online .left>i{font-size: 40px; color: #fff;} .all_online .left .kefu_title{height:100px; width: 30px; font-size: 18px; line-height: 22px; display: inline-block; color: #fff;} .all_online .left ul{position: relative;} .all_online .left ul li{height: 47.5px;} .all_online .left ul li a{} .all_online .left ul li a i{display: block; position: absolute; width: 50px; height: 50px; font-size: 30px; color: #fff; line-height: 50px; left: 0; .transition(1s);} .all_online .left ul li a p{display: block; position: absolute; left: 50px; width: 50-5*2px; height: 50-5*2px; font-size: 15px; padding: 5px; line-height: 18px; color: #fff; .transition(1s); } .all_online .left ul li:hover i{left: -50px;} .all_online .left ul li:hover p{left: 0;} .all_online .right_box{width:170px; background:#fff;} .all_online .right_box .floatDtt{width:100%;height:45px;line-height:45px; background:@main_color;color:#fff;font-size:18px;text-indent:22px;position:relative;} .all_online .right_box .right_qq{padding:0 14px;} .all_online .right_box .right_qq li{height:45px;line-height:45px;font-size:15px;border-bottom:1px solid #e3e3e3; padding:0 0 0 50px; overflow: hidden;} .all_online .right_box .right_text{font-size: 16px; color:#333; padding:10px 14px 8px 14px;} .all_online .right_box .right_tel{padding:0 0 15px 10px;} .all_online .right_box .right_tel ul li{font-size: 14px; color: @main_color; margin-left: 3px;} .all_online .right_box .right_tel img{display:block;} .all_online .right_box .right_bg{width:100%;height:20px;background:url(../images/online/online_botbg.jpg) no-repeat; box-shadow:-2px 0 3px rgba(0,0,0,0.25);} .all_online .right_shadow{background:#fff; box-shadow:-2px 0 3px rgba(0,0,0,0.25);} .all_online .online_erweima{text-align:center;padding:10px 0 5px 0;background:#EBEBEB;} .all_online .online_erweima .hd{} .all_online .online_erweima .hd ul{text-align: center;} .all_online .online_erweima .hd ul li{display: inline-block; width: 30px; height: 30px; padding: 0 5px 5px 5px; } .all_online .online_erweima .hd ul li i{cursor: default; color: #999;} /* 在线客服2 */ .Nav_r{display: inline-block; position:fixed; right: 0px; z-index: 9999;} .Nav_r ul{width:45px;} .Nav_r ul li{width:45px; height:45px; background-color: #111; margin-bottom: 1px; .transition(.3s); position: relative; overflow: hidden; cursor: pointer;} .Nav_r ul li i{display: block; width:45px; height:45px; color: #ffffff; font-size: 26px; line-height: 45px; text-align: center; position: absolute; top: 0; right: 0;} .Nav_r ul li p{opacity: 0; .transition(.3s); font-size: 14px;} .Nav_r ul li a{display: block; line-height: 45px; color:#fff; font-size:12px; text-align:left; padding-left: 10px;} .Nav_r ul li .img{width: 150px; height: 200px; bottom: -60px; left: -160px; opacity: 0; .transition(.5s); } .Nav_r ul li .img img{width:130px;height:130px; position:relative; top: 10px; left:10px;} .Nav_r ul li .img .title{width:150px; position: absolute; bottom: 42px; text-align: center; height: 18px; overflow: hidden; } .Nav_r ul li:hover{background: @main_color; width:160px; overflow: visible;} .Nav_r ul li.wxkf:hover{} .Nav_r ul li:hover p{opacity: 1;} .Nav_r ul li.code:hover{width: 45px;} .Nav_r ul li.code:hover .img{opacity: 1; bottom: -36px;} .Nav_r ul li.shangqiao{background: @main_color; overflow: visible;} .Nav_r ul li.shangqiao .img{opacity: 1; bottom: -36px;} .all_online3{width:67px; height: 230px; border-radius: 50px; border: 1px solid #ccc; background: #FFF; position: fixed; top: 40%; right: -400px; transition: 0.5s; } .all_online3 .hd ul{text-align: center;} .all_online3 .hd ul li{width: 38px; height: 38px; margin: 15px 15px; padding-bottom: 5px; border-bottom: 1px solid #ccc;} .all_online3 .hd ul li img{width: 38px; height: 38px;} .all_online3 .hd ul li .pic{position: absolute; top: 0; transition: 0.75s;} .all_online3 .hd ul li.on .pic{top: -38px;} .all_online3 .hd .top{text-align: center; position: relative; top: -10px; cursor: pointer;} .all_online3 .bd{} .all_online3 .bd ul{width: 235px; height: 175px; position: absolute; top: 0; right: 85px; border-radius: 5px; background: #FFF; box-shadow: 0 2px 4px rgba(0,0,0,.16); -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.16); -moz-box-shadow: 0 2px 4px rgba(0,0,0,.16); } .all_online3 .bd ul.ul1 .p{position: absolute; top: 54px; left: 15px; font-size: 16px; line-height: 30px; width: 86px; height: 58px; overflow: hidden;} .all_online3 .bd ul.ul1 .pic{position: absolute; top: 28px; right: 15px; width: 113px; height: 115px; background: #eeeeee;} .all_online3 .bd ul.ul1 .pic img{width: 103px; height: 103px; margin-top: 6px; margin-left: 5px;} .all_online3 .bd ul.ul2{width: 270px; height: 166px; top: 56px;} .all_online3 .bd ul.ul2 li{width: 113px; text-align: center; float: left; margin: 14px 0 0 15px;} .all_online3 .bd ul.ul2 li .pic{width: 113px; height: 115px; background: #eeeeee;} .all_online3 .bd ul.ul2 li .pic img{width: 103px; height: 103px; margin-top: 6px; margin-left: 1px;} .all_online3 .bd ul.ul2 li .title{font-size: 16px; margin-top: 5px;} .all_online3 .bd ul.ul3{width: 270px; height: 55px; top: 123px;} .all_online3 .bd ul.ul3 .p{position: absolute; width: 100%; text-align: center; top: 50%; left: 50%; font-size: 16px; transform:translate(-50%,-50%);} .all_online3 .close{cursor: pointer; position: absolute; top: -8px; right: -8px; width: 20px; height: 20px; background: @main_color; border-radius: 50%; color: #FFF; text-align: center; line-height: 20px;} ////////////////////////////// 分享share ////////////////////////////// .all_share{width: 125px; position: fixed; top: 25%; left: -125px; z-index: 999; box-shadow:2px 0 3px rgba(0,0,0,0.25);} .all_share .bdsharebuttonbox{} .all_share .bdsharebuttonbox .title1{width: 24px; height: 88-22px; border-radius: 0 10px 10px 0; background: @main_color; position: absolute; top: 0; right: -24px; color: #fff; font-size: 14px; text-align: center; padding: 22px 0 0 0} .all_share .bdsharebuttonbox .title2{width: 125-10*2px; height: 25px; font-size: 14px; padding: 0 10px; background: #f6f6f6; color: #626262; line-height: 25px;} .all_share .bdsharebuttonbox ul{background: #fff;} .all_share .bdsharebuttonbox ul li{width: 100px; height: 14px; padding: 5px 10px; margin: 10px auto;} .all_share .bdsharebuttonbox a{display: block; margin: 0; padding: 0 0 0 25px;} .all_share .bdsharebuttonbox a:hover{color: @main_color;} ////////////////////////////// 分享share end ////////////////////////////// ////////////////////////////// header页头 ////////////////////////////// //header .header{background:#fff;.transition(.5s);box-shadow:1px 1px 10px rgba(0,0,0,.5);} .header .top{height:30px; line-height: 30px; background:#f3f3f3;} .header .top p{color: #666;} .header .top p span{color:#666; margin-left: 10px;} .header .top ul{} .header .top ul li{float: left; color:#666;} .header .top ul li a{padding: 0 20px; color:#666;} .header .top ul li a:hover{color:@main_color;} .header .bottom{height:100px;} .header .bottom .logo{width:215px;height:50px;margin:(100-50)/2px 0;} .header .bottom .logo img{display:block;width:100%;height:100%;} .header .nav{position:relative;} .header .nav .slider_icon{.transition(.5s);position:absolute;top:0;height:100px;background:@main_color;} .header .nav>ul>li{position:relative;z-index:2;float:left;} .header .nav>ul>li>.parent_a{position:relative;.transition(.5s);display:block;height:100px;line-height:100px;font-size:16px;color:#666;padding:0 40px;} .header .nav>ul>li.on>.parent_a{color: #FFF;} .header .nav>ul>li.on>a{color: #FFF;} .header .nav>ul>li .sub{display:none;position:absolute; padding: 20px; width: 445px; left: 50%; transform: translate(-50%,0); background: @main_color;} .header .nav>ul>li .sub::after{content:'';position:absolute;top:0;left:50%;.transform_translate(-50%,0);border-top:6px solid #fff;border-left:7px solid transparent;border-bottom:0px solid transparent;border-right:7px solid transparent;} .header .nav>ul>li .sub .left{width: 214px; float: left; margin-right: 25px;} .header .nav>ul>li .sub .left .remark{font-size: 14px; line-height: 24px; color: #FFF; margin-top: 17px;} .header .nav>ul>li .sub ul{width: 192px; float: left;} .header .nav>ul>li .sub ul li{.transition(.5s);width:100%;height:40px;line-height:40px; text-align:center; border-bottom: 1px dashed #FFF; text-align: left;} .header .nav>ul>li .sub ul li a{display:block;width:100%;height:100%; font-size: 14px;color:#fff; transition: 0.5s;} .header .nav>ul>li .sub ul li a span{padding-left: 5px;} .header .nav>ul>li .sub ul li a:hover{font-size: 16px; color: #fffc00;} //header end ////////////////////////////// header页头 ////////////////////////////// //public start .index_title_wrap{text-align:center;} // .index_title_wrap::before{content:'';display:block;width:21px;height:15px;margin:0 auto 4px;background:url('../../upload/sys/pc/title_bg.png') no-repeat center;} .index_title_wrap h2 .index_title{font-size:30px;color:#111;font-weight:400;} .index_title_wrap h2 .index_title span{color:@main_color;} .index_title_wrap .sub{font-size:14px;color:#999;margin-top:4px;} //public end .index_one{min-width: 1200px;} .index_one .hd1{width: 100%; background: #f7f7f7; height: 72px;} .index_one .hd1 ul{} .index_one .hd1 ul li{width: 50%; float: left; text-align: center; font-size: 24px; line-height: 72px;} .index_one .hd1 ul li.on{font-weight: bold;} .index_one .hd1 ul li .title{display: inline-block; position: relative;} .index_one .hd1 ul li span{position: absolute; top: -10px; right: -38px; font-size: 12px; color: #F00;} .index_one .bd1{height: 600px; overflow: hidden;} .index_one .bd1 ul{} .index_one .bd1 ul li{float: left; width: 50%; height: 600px; background: #FFF; position: relative;} .index_one .bd1 ul li .pic{margin: 5px; width: auto; height: 600px; background: #000; position: relative; overflow: hidden;} .index_one .bd1 ul li .pic img{ position: absolute; top: 50%; left: 50%; transform:translate(-50%,-50%); } .index_one .bd1 ul li .pic .title{transition: 0.5s; position: absolute; bottom: -60px; font-size: 18px; width: 100%; height: 60px; background: rgba(0,0,0,.5); color: #FFF; text-align: center; line-height: 60px;} .index_one .bd1 ul li:hover .title{bottom: 0;} //index_case start .index_case{padding: 80px 0;} .index_case .index_case_m{margin-top:30px; margin-bottom: 40px;} .index_case .index_case_m ul{font-size:0;text-align:center;} .index_case .index_case_m ul li{cursor:pointer; float: left; width: 142px;height: 50px;text-align:center;line-height: 50px; font-size:16px; color:#333;background:#f7f7f7; margin-right: 8px;} .index_case .index_case_m ul li:nth-last-child(1){margin-right: 0;} .index_case .index_case_m ul li.on{background: @main_color; color:#FFF;} .index_case .index_case_m ul li h3{font-weight: normal; font-size: 16px;} .index_case .index_case_m ul li .hot{display: block;width: 26px;height: 13px;position: absolute;top: 0px;right: 3px;background: url(../../upload/sys/pc/case/hot.gif) no-repeat center;} .index_case .index_case_b{margin-top:30px;} .index_case .index_case_b ul{height: 663px; overflow: hidden;} .index_case .index_case_b ul li{position:relative;float:left;width:295px;height:217px;margin-left:6px;overflow:hidden;} .index_case .index_case_b ul li .item_title{.transition(.5s); width: 100%; position:absolute; bottom: 0; left: 0; height: 40px;line-height: 40px;background:rgba(0,0,0,.7);color: #FFF;text-align:center;font-size:14px;} .index_case .index_case_b ul li .item_title span{display: block; width: 90%; margin: 0 auto; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} .index_case .index_case_b ul li:nth-child(1){width: 596px; height: 440px; margin-left:0;} .index_case .index_case_b ul li:nth-of-type(2){margin-right: 6px;} .index_case .index_case_b ul li:nth-of-type(4){margin-right: 6px;} .index_case .index_case_b ul li:nth-of-type(8){margin-right: 6px;} .index_case .index_case_b ul li:nth-of-type(3){margin-left:0;} .index_case .index_case_b ul li:nth-of-type(5){margin-left:0;} .index_case .index_case_b ul li:nth-of-type(6){margin-left:0;} .index_case .index_case_b ul li:nth-of-type(9){margin-left:0;} .index_case .index_case_b ul li:nth-of-type(3)~li{margin-top:6px;} .index_case .index_case_b ul li .box_shadow{.transition(.5s); opacity:1; position:absolute; width: 100%; height: 100%; top: -50%;left:50%; transform:translate(-50%,-50%); background:rgba(0,0,0,.5);} .index_case .index_case_b ul li .box_shadow p{width: 175px;margin:0 auto;} .index_case .index_case_b ul li .box_shadow p.title{font-size: 16px; color:@main_color; margin:25px auto 10px; font-weight: bold; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .index_case .index_case_b ul li .box_shadow p.remark{font-size:14px; color: #FFF; margin-top:6px;line-height:24px;overflow:hidden; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-wrap: break-word; white-space: normal !important; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } .index_case .index_case_b ul li:nth-child(1) .box_shadow p{width: 500px;} .index_case .index_case_b ul li:nth-child(1) .box_shadow p.title{margin-top: 154px;} .index_case .index_case_b ul li .box_shadow .i{width: 33px; height: 33px; border: 1px solid #FFF; border-radius: 50%; margin: 20px auto 0; font-size: 30px; color: #FFF; text-align: center; line-height: 33px;;} .index_case .index_case_b ul li .box_shadow .i svg{width: 20px; height: 20px; color: #FFF; margin: 7px 0 0 1px;} .index_case .index_case_b ul li img{position:absolute; top:50%; left:50%; height:110%; .transform_translate(-50%,-50%);} .index_case .index_case_b ul li:hover .box_shadow{opacity:1; top: 50%;} .index_case .index_case_b ul li:hover .item_title{opacity:0; bottom: -30px;} //index_case end //index_design start .index_design{overflow: hidden;padding-bottom: 125px;position: relative; padding: 80px 0;} .index_design .content{margin: 40px auto 0;} .index_design .content .hd{} .index_design .content .hd ul{text-align: center;} .index_design .content .hd ul li{display: inline-block; width: 142px; height: 50px; line-height: 50px; background: #f7f7f7; font-size: 16px; color: #333; text-align: center; margin: 0 10px;} .index_design .content .hd ul li.on{background: @main_color; color: #FFF;} #certify { position: relative; width: 1570px; margin: 40px auto 0 } #certify .swiper-container { } #certify .swiper-slide { width: 1200px; height: 616px; overflow: hidden; position: relative; background: #fff; } #certify .swiper-slide img{ position: absolute; width: 1200px; height: 616px; display:block; } #certify .swiper-slide p{ position: absolute; bottom: -60px; left: 50%; transform:translate(-50%,0); width: 695px; height: 60px; line-height: 60px; color: #FFF; background: rgba(0,0,0,.5); font-size: 20px; text-align: center; margin: 0; transition: 0.5s; } #certify .swiper-slide-active p { bottom: 0; } #certify .swiper-pagination { width: 100%; bottom: 20px; } #certify .swiper-pagination-bullets .swiper-pagination-bullet { margin: 0 5px; border: 3px solid #fff; background-color: #d5d5d5; width: 10px; height: 10px; opacity: 1; } #certify .swiper-pagination-bullets .swiper-pagination-bullet-active { border: 3px solid #00aadc; background-color: #fff; } #certify .swiper-button-prev { left: -80px; width: 45px; height: 45px; background-position: 0 0; background-size: 100%; transform:rotate(180deg); } #certify .swiper-button-prev:hover { background-position: 0 -46px; background-size: 100% } #certify .swiper-button-next { right: -80px; width: 45px; height: 45px; background-position: 0 -93px; background-size: 100%; } #certify .btn{width: 40px; height: 40px; background: #d9d9d9; border-radius: 50%; text-align: center; transition: 0.5s;} #certify .btn svg{width: 30px; height: 30px; margin-top: 4px;} #certify .swiper-button-next:hover { background-position: 0 -139px; background-size: 100% } #certify .btn:hover{background: @main_color;} //index_design end // 线上展厅 .index_xianshangzhanting{padding: 20px 0 80px; min-width: 1200px;} .index_xianshangzhanting .content{width: 90%; margin: 40px auto 0;} .index_xianshangzhanting .content iframe{width: 100%; height: 800px;} .index_xianshangzhanting .content p{font-size: 18px; color: #000000; padding: 20px 0; text-align: center;} .index_xianshangzhanting .content .btn{display: block; margin: 0 auto; width: 329px; height: 65px; line-height: 65px; background: #f7f7f7; font-size: 18px; text-align: center; color: #333333; transition: 0.75s; } .index_xianshangzhanting .content .btn span{padding-left: 10px;} .index_xianshangzhanting .content .btn:hover{background: @main_color;} // 线上展厅 end //index_advertisement start .index_advertisement{width:100%;height:300px;overflow:hidden;} .index_advertisement .tel{width:400px;background:@main_color;height:50px;margin:180px auto 0;line-height:50px;text-align:center;font-size:24px;color:#111;} //index_advertisement end //index_select start .index_select{padding: 80px 0; background: #f9faff; min-width: 1200px;} .index_select .index_select_b{margin-top:30px;} .index_select .index_select_b ul li{float:left;width:199px; text-align:center;} .index_select .index_select_b ul li:last-child{width:200px;border:none;} .index_select .index_select_b ul li .icon{position:relative; display:block; width: 105px; height: 105px; line-height: 105px; background: #FFF; border-radius: 50%; margin:26px auto 0; font-size: 36px; color: @main_color;} .index_select .index_select_b ul li .item_title{font-size:14px;color:#333;height:37px;line-height:20px; margin-top: 20px;} //index_select end //index_step start .index_step{width:100%;height:404px;background:url('../../upload/sys/pc/step/bg.png') no-repeat center;overflow:hidden;margin-top:100px; min-width: 1200px;} .index_step .index_title_wrap{margin-top:70px;} .index_step .index_step_b{margin-top:30px;} .index_step .index_step_b ul li{position:relative;float:left;width:90px;} .index_step .index_step_b ul li::after{content:'';position:absolute;top:(90-21)/2px;right:-17-(68-17)/2px;width:17px;height:21px;background:url('../../upload/sys/pc/step/next.png') no-repeat center;} .index_step .index_step_b ul li:last-child::after{display:none;} .index_step .index_step_b ul li .cir{display:block;width:88px;height:88px;border:1px solid #ccc;border-radius:50%;} .index_step .index_step_b ul li .item_title{font-size:14px;color:#333;text-align:center;margin-top:15px;} .index_step .index_step_b ul li:nth-of-type(1)~li{margin-left:68px;} //index_step end // 商空展厅 .index_shangkongzhanting{padding: 80px 0; min-width: 1200px;} .index_shangkongzhanting .content{width: 1200px; margin: 40px auto 0; height: 470px;} .index_shangkongzhanting .content .hd{width: 243px; height: 470px; overflow: hidden; float: left; margin-right: 9px;} .index_shangkongzhanting .content .hd ul{} .index_shangkongzhanting .content .hd ul li{height: 55px; background: #f7f7f7; text-align: center; line-height: 55px; margin-bottom: 16px; position: relative; overflow: hidden;} .index_shangkongzhanting .content .hd ul li.on{background: @main_color;} .index_shangkongzhanting .content .hd ul li span{width: 150px; font-size: 16px; color: #333333; position: absolute; top: 50%; left: 50%; transform:translate(-50%,-50%); transition: 0.5s; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .index_shangkongzhanting .content .hd ul li.on span{color: #FFF; left: 30%} .index_shangkongzhanting .content .hd ul li .i{position: absolute; top: 34%; right: -20px; transition: 0.5s;} .index_shangkongzhanting .content .hd ul li .i svg{width: 20px; height: 20px;} .index_shangkongzhanting .content .hd ul li.on .i{right: 20px;} .index_shangkongzhanting .content .hd .left_bottom{font-size: 16px; text-align: center; line-height: 28px; margin-top: 38px;} .index_shangkongzhanting .content .hd .left_bottom p{white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} .index_shangkongzhanting .content .bd{width: 947px; height: 470px; overflow: hidden; float: left;} .index_shangkongzhanting .content .bd ul .li{position: relative;} .index_shangkongzhanting .content .bd .ceng{position: absolute; bottom: 0; width: 100%; height: 114px; background: rgba(0,0,0,.5);} .index_shangkongzhanting .content .bd .ceng .title{text-align: center; font-size: 16px; color: @main_color; padding: 20px 0 10px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .index_shangkongzhanting .content .bd .ceng .remark{margin: 0 auto; text-align: left; width: 628px; height: 48px; line-height: 24px; font-size: 14px; color: #FFF; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-wrap: break-word; white-space: normal !important; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } //index_abo start .index_abo{overflow:hidden;width:100%;height:500px;background:url('../../upload/sys/pc/abo/bg.jpg') no-repeat center; min-width: 1200px;} .index_abo .index_abo_l{width:480px;margin-top:100px;} .index_abo .index_abo_l .index_abo_l_t h2{height:30px;line-height:29px;border-left:2px solid @main_color;padding-left:20px;} .index_abo .index_abo_l .index_abo_l_t h2 .index_title{display:inline-block;font-size:30px;color:@main_color;font-weight:400;} .index_abo .index_abo_l .index_abo_l_t h2 .sub{font-size:14px;color:#ccc;font-weight:400;padding-left:20px;} .index_abo .index_abo_l .index_abo_l_b{height:144px;overflow:hidden;font-size:14px;color:#fff;line-height:30px;margin-top:40px;text-align:justify;} .index_abo .index_abo_l .moreBtn{.transition(.5s);display:block;width:138px;height:36px;border:1px solid #999;text-align:center;line-height:36px;font-size:14px;color:#999;margin-top:48px;} .index_abo .index_abo_r{width:700px;height:300px;margin-top:100px;} .index_abo .index_abo_r img{display:block;width:100%;height:100%;} .index_abo .index_abo_l .moreBtn:hover{border-color:@main_color;color:@main_color;} //index_abo end //index_team start .index_team{margin-top:70px; min-width: 1200px;} .index_team .index_team_b{position:relative;margin-top:30px;} .index_team .index_team_b ul li{position:relative;float:left;width:300px;height:325+80px;} .index_team .index_team_b ul li .pic_wrap{.transition(.5s);position:absolute;left:0;width:300px;height:325px;overflow:hidden;} .index_team .index_team_b ul li .pic_wrap::after{.transition(.5s);content:'';position:absolute;width:300-6px;height:325-6px;border:3px solid transparent;top:0;left:0;z-index:2;} .index_team .index_team_b ul li .pic_wrap img{display:block;width:100%;} .index_team .index_team_b ul li .item_content{.transition(.5s);position:absolute;left:0;width:300px;height:80px;background:#eee;overflow:hidden;} .index_team .index_team_b ul li .item_content .item_content_t{.transition(.5s);font-size:24px;color:#333;width:240px;margin:18px auto 0;} .index_team .index_team_b ul li .item_content .item_content_m{.transition(.5s);font-size:14px;color:#999;width:240px;margin:4px auto 0;} .index_team .index_team_b ul li .item_content .item_content_b{font-size:14px;color:#999;width:240px;margin:10px auto 0;height:80px;line-height:20px;overflow:hidden;} .index_team .index_team_b ul li:nth-of-type(2n+1) .pic_wrap{top:0;} .index_team .index_team_b ul li:nth-of-type(2n+1) .item_content{bottom:0;} .index_team .index_team_b ul li:nth-of-type(2n) .pic_wrap{bottom:0;} .index_team .index_team_b ul li:nth-of-type(2n) .item_content{top:0;} .index_team .index_team_b ul li:hover{box-shadow:1px 1px 10px rgba(0,0,0,.5);} .index_team .index_team_b ul li:hover .item_content{height:190px;background:#111;} .index_team .index_team_b ul li:hover .item_content .item_content_t{color:#fdd000;} .index_team .index_team_b ul li:hover .item_content .item_content_m{color:#999;} .index_team .index_team_b ul li:hover .pic_wrap{height:325-110px;} .index_team .index_team_b ul li:hover .pic_wrap::after{border-color:#111;} //index_team end /* 证书 */ .index_zhengshu{margin-top:70px;} .index_zhengshu .index_team_b{position:relative;margin-top:30px;} .index_zhengshu .index_team_b ul li{width: 300px; margin-right: 30px;} .index_zhengshu .index_team_b ul li .pic_wrap{width: 300px; height: 300px; position: relative;} .index_zhengshu .index_team_b ul li img{width: 300px; position: absolute; top: 50%; left: 50%; transform:translate(-50%,-50%);} .index_zhengshu .index_team_b ul li p{font-size: 14px; color: #333; text-align: center;} // 组展策展 .index_zuzhancezhan{padding: 80px 0;} .index_zuzhancezhan .content{width: 1200px; margin: 20px auto 0;} .index_zuzhancezhan .content ul li{width: 590px; height: 340px; float: left; margin-right: 20px; margin-top: 20px;} .index_zuzhancezhan .content ul li:nth-child(2n){margin-right: 0;} .index_zuzhancezhan .content ul li .pic{width: 417px; height: 340px; float: left;} .index_zuzhancezhan .content ul li .right{width: 173px; height: 340px; float: left; background: #eeeeee; transition: 0.5s;} .index_zuzhancezhan .content ul li .right .title{width: 146px; margin: 40px auto 0; padding-bottom: 30px; border-bottom: 1px solid #313131; position: relative; transition: 0.5s;} .index_zuzhancezhan .content ul li .right .title i{position: absolute; top: -6px; left: 0; display: inline-block; width: 44px; height: 32px; background: url("/upload/image/202109/614e8adf0201c.png"); transition: 0.5s;} .index_zuzhancezhan .content ul li .right .title span{font-size: 16px; padding-left: 48px; transition: 0.5s; display: inline-block; width: 100px; text-align: center; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .index_zuzhancezhan .content ul li .right .remark{margin: 20px auto; width: 128px; height: 160px; font-size: 14px; line-height: 24px; transition: 0.5s; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-wrap: break-word; white-space: normal !important; -webkit-line-clamp: 6; -webkit-box-orient: vertical; } .index_zuzhancezhan .content ul li .right a{display: block; margin: 0 auto; text-align: center; font-size: 14px; transition: 0.5s;} .index_zuzhancezhan .content ul li .right a span{padding-left: 5px;} .index_zuzhancezhan .content ul li:hover .right{background: @main_color;} .index_zuzhancezhan .content ul li:hover .title{border-bottom: 1px solid #FFF;} .index_zuzhancezhan .content ul li:hover .title i{background: url("/upload/image/202109/614e8dc4a162a.png");} .index_zuzhancezhan .content ul li:hover .title span{color: #FFF;} .index_zuzhancezhan .content ul li:hover .remark{color: #FFF;} .index_zuzhancezhan .content ul li:hover a{color: #FFF;} // 走进美刻 .index_zoujinmeike{height: 500px; min-width: 1200px;} .index_zoujinmeike .content{width: 1200px; margin: 0 auto; padding: 108px 0 0 0;} .index_zoujinmeike .content .title{border-left: 6px solid @main_color; height: 38px;} .index_zoujinmeike .content .title h2{display: block; font-size: 32px; color: @main_color; line-height: 32px; vertical-align: middle; float: left; margin-left: 10px;} .index_zoujinmeike .content .title .subTitle{display: block; font-size: 16px; color: #FFF; line-height: 38px; vertical-align: middle; float: left; margin-left: 10px;} .index_zoujinmeike .content .remark{width: 424px; height: 168px; font-size: 16px; color: #FFF; line-height: 24px; margin: 36px 0 40px; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-wrap: break-word; white-space: normal !important; -webkit-line-clamp: 7; -webkit-box-orient: vertical; } .index_zoujinmeike .content a{display: block; width: 150px; height: 40px; border: 1px solid #FFF; text-align: center; line-height: 40px; color: #FFF; font-size: 14px; transition: 0.5s;} .index_zoujinmeike .content a span{padding-left: 5px;} .index_zoujinmeike .content a:hover{border: 1px solid @main_color; color: @main_color;} //index_cooperation start .index_cooperation{width:100%; padding: 80px 0; overflow:hidden; min-width: 1200px;} .index_cooperation .index_title_wrap{margin-bottom: 40px;} .index_cooperation .index_cooperation_b{margin-top:30px;} .index_cooperation .index_cooperation_b ul li:nth-of-type(5n){margin-right:0px;} .index_cooperation .index_cooperation_b ul li:nth-of-type(5)~li{margin-top:10px;} .index_cooperation .index_cooperation_b ul li{float:left; width: 231px;height: 108px;margin-right: 8px; border: 1px solid #ccc;} .index_cooperation .index_cooperation_b ul li img{display:block;width:100%;height:100%;} .index_cooperation .hd{margin: 20px auto; text-align: center;} .index_cooperation .hd ul li{display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #bfbfbf;} .index_cooperation .hd ul li.on{width: 10px; height: 10px; background: @main_color;} .index_cooperation a{display: block; background: #f7f7f7; width: 328px; height: 65px; margin: 0 auto; font-size: 18px; color: #333; text-align: center; line-height: 65px;} .index_cooperation a span{padding-left: 5px;} .index_cooperation .btn .prev , .index_cooperation .btn .next{position: absolute; top: 45%; cursor: pointer;} .index_cooperation .btn .prev svg , .index_cooperation .btn .next svg{width: 50px; height: 50px;} .index_cooperation .btn .prev{left: -60px; transform:rotate(180deg);} .index_cooperation .btn .next{right: -60px;} //index_cooperation end //index_news start .index_news{padding-top: 70px;} .index_news .content{margin-top: 40px;} .index_news .content .hd{margin-bottom: 20px;} .index_news .content .hd ul{text-align: center;} .index_news .content .hd ul li{display: inline-block; width: 142px; height: 42px; background: #FFF; color: #333; font-size: 16px; text-align: center; line-height: 42px;} .index_news .content .hd ul li.on{background: @main_color; color: #FFF;} .index_news .content .bd ul{} .index_news .content .bd ul .left{width: 590px; height: 496px; float: left; margin-right: 20px;} .index_news .content .bd ul .left img{width: 590px; height: 335px;} .index_news .content .bd ul .left .title{padding: 20px 0; width: 590px; font-size: 18px; font-weight: bold; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} .index_news .content .bd ul .left .title span{display: inline-block; width: 43px; height: 25px; background: @main_color; border-radius: 50px; color: #FFF; font-size: 12px; margin-right: 5px; vertical-align: bottom; text-align: center; line-height: 25px;} .index_news .content .bd ul .left .remark{width: 590px; height: 72px; font-size: 14px; color: #828282; line-height: 24px;} .index_news .content .bd ul .right{width: 590px; height: 496px; float: left; overflow: hidden;} .index_news .content .bd ul .right li{height: 108px; overflow: hidden; margin-bottom: 13px;} .index_news .content .bd ul .right li img{width: 175px; height: 108px; float: left; margin-right: 10px;} .index_news .content .bd ul .right li .right{float: left; width: 402px; height: 108px; overflow: hidden;} .index_news .content .bd ul .right li .right .title{font-size: 18px; font-weight: bold; padding: 5px 0; transition: 0.5s; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .index_news .content .bd ul .right li .right .remark{font-size: 14px; color: #828282; line-height: 24px; padding: 2px 0; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-wrap: break-word; white-space: normal !important; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .index_news .content .bd ul .right li .right .ctime{font-size: 14px; color: #828282; text-align: right;} .index_news .content .bd ul .left:hover .title{color: @main_color;} .index_news .content .bd ul .right li:hover .title{color: @main_color;} //index_news end ////////////////////////////// footer页脚 ////////////////////////////// //footer .link{position: relative;} .link .link_qq{position: absolute; right: 0;} .link .hd{padding-bottom: 10px; border-bottom: 1px solid #CCC; } .link .hd ul li{float:left; width: 89px; height: 37px; line-height: 37px; text-align: center; cursor:pointer; color: #666;} .link .hd ul li.on{background: @main_color; color: #fff} .link .bd{padding: 15px 0;} .link .bd a{display: inline-block; color: #666; padding: 0 10px 10px 10px;} .link .bd a:hover{color: @main_color;} .vertical-text{ writing-mode: tb-rl; -webkit-writing-mode: vertical-rl; writing-mode: vertical-rl; *writing-mode: tb-rl; } .footer{background: url('../../upload/sys/pc/footer_bg.jpg');} .footer_nav{border-bottom:1px solid #3E3E3E; padding: 40px 0;} .footer_nav .footer_nav_l{width:730px;} .footer_nav .footer_nav_l ul{width: 140px; float: left; text-align: center;} .footer_nav .footer_nav_l ul p{font-size: 14px; color: #FFF;margin-bottom: 10px;} .footer_nav .footer_nav_l ul li{line-height: 28px;} .footer_nav .footer_nav_l ul li a{padding:0 10px; font-size:12px; color:#fff;} .footer_nav .footer_nav_l ul span{color:#fff;} .footer_nav .footer_nav_l .address{position:relative;font-size:14px;color:#fff;margin-top:20px;padding-left:25px;} .footer_nav .footer_nav_l .address::before{content:'';position:absolute;width:15px;height:20px;left:0;background:url('../../upload/sys/pc/address.png') no-repeat center;} .footer_nav .footer_nav_r{width: 238px;} .footer_nav .footer_nav_r .p{font-size: 16px; color: #FFF; position: relative; text-indent: 40px;} .footer_nav .footer_nav_r .p svg{width: 30px; height: 30px; position: absolute; top: -4px; left: 0;} .footer_nav .footer_nav_r .tel{font-size: 24px; color: #FFF; font-weight: bold; padding: 10px 0;} .footer_nav .footer_nav_r .address{font-size: 14px; color: #FFF; } .footer_nav .footer_nav_r ul{margin-top: 20px;} .footer_nav .footer_nav_r ul li{ position:relative;display:inline-block;width:88px;height:88px;border:1px solid #fff;border-left:none;} .footer_nav .footer_nav_r ul li:nth-child(1){margin-right:30px;} .footer_nav .footer_nav_r ul li::before{content:'';position:absolute;width:1px;height:10px;background:#fff;top:0;left:0;} .footer_nav .footer_nav_r ul li::after{content:'';position:absolute;width:1px;height:10px;background:#fff;bottom:0;left:0;} .footer_nav .footer_nav_r ul li img{display:block;width:74px;height:74px;margin:8px auto;} .footer_nav .footer_nav_r ul li .title{position:absolute;top:10px;left:-8px;height:70px;text-align:center;color:#fff;} .footer_copyright{background: #000; padding: 10px 0; color: #FFF;} .footer_copyright p{padding: 5px 0;} .footer_copyright a{color: #FFF;} //footer end ////////////////////////////// footer页脚 ////////////////////////////// //////////////////////////// 首页 //////////////////////////// //banner @banner_width:1920px; @banner_height:600px; .banner{ width:100%; height:@banner_height; overflow:hidden; position:relative;} //如果要全屏请在.banner的width改100% 如果要设置宽度请在bannerwidth改@banner_width .banner .hd{overflow:hidden;} .banner .hd ul{zoom:1; float:left; position:absolute; left:50%; bottom:5px; z-index:1; filter:alpha(opacity=0);opacity:0; .transition(.5s);} .banner .hd ul li{ float:left; margin-right:10px; width:15px; height:15px; line-height:14px; text-align:center; background:#ccc; cursor:pointer; border-radius: 100px; margin: 0 2px} .banner .hd ul li.on{ background:@main_color; color:#fff; } .banner .bd{ position:relative; height:100%; z-index:0;left: 50%; margin-left: -@banner_width / 2;} .banner .bd li{ zoom:1; vertical-align:middle; width: @banner_width;} .banner .bd img{ width:@banner_width; height:@banner_height; display:block;} .banner .prev, .banner .next{position:absolute; left:3%; top:50%; margin-top:-25px; display:block; width:32px; height:40px; background:url(../images/slider-arrow.png) -110px 5px no-repeat; filter:alpha(opacity=0);opacity:0; .transition(.5s);} .banner .next{ left:auto; right:3%; background-position:8px 5px; } .banner .prev:hover, .banner .next:hover{filter:alpha(opacity=100);opacity:1;} .banner .prevStop{ display:none; } .banner .nextStop{ display:none; } .banner:hover .hd ul{filter:alpha(opacity=100);opacity:1;} .banner:hover .prev{filter:alpha(opacity=100);opacity:1;} .banner:hover .next{filter:alpha(opacity=100);opacity:1;} //banner end // banner2 .banner2{width:100%; height:@banner_height; overflow:hidden; position:relative;} .banner2 .pics_wrap{position:relative; height:600px; left: 50%; margin-left: -@banner_width / 2;} // banner2 end //搜索 .search{padding: 15px 0; border-bottom: 1px solid #ccc;} .search .key{font-size: 14px;} .search .key .con{width: 750px; line-height: 24px;} .search form{position: absolute; top: 50%; right: 0; width: 260px; height: 26px; border: 1px solid #ccc; border-radius: 5px;} .search form .text{width: 220px; border: none; height: 26px; margin-left: 5px;} .search form .text:focus{outline:none;} .search form .submit{width: 17px; height: 26px; border: none; cursor: pointer; background: url(../images/go.png); float:right; margin-right: 10px;} .search .hotkey{line-height: 30px; margin-left: 10px;} //搜索 end //////////////////////////// 首页 //////////////////////////// //////////////////////////// 内页 //////////////////////////// //全站_底部广告 .all_gg{width: 100%; height: 78px; position: fixed; z-index: 100; bottom: 0; color: #fff; line-height: 78px; text-align: center; font-size: 24px; overflow: hidden;} .all_gg .content{width: 100%; height: 78px; background: rgba(0,0,0,.8);} .all_gg .content p{} .all_gg .content p span{padding: 0 10px;} .all_gg i{width: 70px; height: 78px; display: inline-block; position: absolute; right: 0; top: 0; font-size: 40px; color: #fff; cursor: pointer; .transition(1s);} .all_gg i:hover{.transform_rotate(360deg);} .all_gg2{position: fixed; z-index: 100; left: -200px; bottom: 0; cursor: pointer;} .all_gg2 img{width: 200px; height: 78px; .transition(.5s);} .all_gg2 a.btn{display: block; width: 24px; height: 14px; position: absolute; bottom: 0;right: 0; z-index: 101;} //全站_底部广告 end .fixed{position:fixed; top:0px; z-index:10;} //内页banner //内页banner end //内页栏目介绍 .page_intro{padding: 20px; border-bottom: 1px solid #ccc;} //内页栏目介绍 end //内页_左导航 .about_content_shu_left{width: 225px;} .about_content_shu_left_title{width: 225-1*2px; height: 80px; line-height: 52px; border: 1px solid #ccc; position: relative;} //图片 .about_content_shu_left_title>i.i1{width: 197px; height: 43px; display: inline-block; background: @main_color; position: absolute; top:10px; top: 17px; left: -16px;} .about_content_shu_left_title>i.i2{width: 30px; height: 60px; display: inline-block; background:#fff; position: absolute; transform: rotate(28deg); top: 17px; right: 26px;} .about_content_shu_left_title>i.i3{width: 15px; height: 9px; background-color:darken(@main_color,20%); position: absolute; top: 60px; left: -16px;} .about_content_shu_left_title>i.i4{width: 17px; height: 10px; background:#fff; transform:rotate(34deg); position: absolute; top: 63px; left: -20px;} //图片 end .about_content_shu_left div.title{_background: url(../images/page_nav/nav.png); width: 197px; height: 51px; position: absolute; top: 17px; left: -16px;} .about_content_shu_left div.title a{display: block; width: 148px; height: 43px; color: #FFF; font-size: 16px; line-height: 43px; padding-left: 30px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} .about_content_shu_left div.title a:hover{color: #FFF;} .about_content_shu_left div.title a span{font-size: 14px;} .about_content_shu_left_ul{background: #fff;} .about_content_shu_left_ul li.nLi{line-height: 43px;_height: 43px;border-bottom: 1px solid #ccc;border-left: 1px solid #CCC;border-right: 1px solid #CCC;position: relative; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;} .about_content_shu_left_ul li.nLi .f a{margin-left: 20px; font-size: 14px; display: block; height: 43px; width: 145px; float: left; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;} .about_content_shu_left_ul li.nLi .f a i{opacity: 0; filter:Alpha(opacity=0); width: 4px; height: 43px; background: @main_color; position: absolute; top: 0; left: 0; display: inline-block; .transition(.5s);} .about_content_shu_left_ul li.nLi .f a:hover i{opacity: 1; filter:Alpha(opacity=100);} .about_content_shu_left_ul li.nLi .f a.current i{opacity: 1; filter:Alpha(opacity=100);} .about_content_shu_left_ul li.nLi em{margin-right: 10px; margin-top: 6px; display:block; width:40px; height:32px; background:url(../images/icoAdd.png) 16px 12px no-repeat; cursor:pointer;} .about_content_shu_left_ul .sub{display: none;} .about_content_shu_left_ul .sub li{border: 0px; position: relative;} .about_content_shu_left_ul .sub li a{margin-left: 40px; font-size: 12px; display: block; height: 43px; width: 145px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;} .about_content_shu_left_ul .sub li a i{opacity: 0; filter:Alpha(opacity=0); width: 4px; height: 43px; background: @main_color; position: absolute; top: 0; left: 0; display: inline-block; .transition(.5s);} .about_content_shu_left_ul .sub li a:hover i{opacity: 1; filter:Alpha(opacity=100);} .about_content_shu_left_ul .sub li a.current i{opacity: 1; filter:Alpha(opacity=100);} // 内页_左导航标题 .page_title{height: 40px; border-bottom: 1px solid #ccc; overflow: hidden; background: #f8f8f8;} .page_title .icon{width: 40px; height: 40px; border-right: 1px solid #ccc; text-align: center; line-height: 40px;} .page_title .icon i{font-size: 20px; color: @main_color;} .page_title .title2{line-height: 40px;} .page_title .title2 span{font-size: 14px; padding-left: 10px; color: #333;} // 内页_左导航标题 end //服务热线 .about_content_shu_left_contact{margin-top: 20px; width: 225px; background: #fff; border: 1px solid #ccc;} .about_content_shu_left_contact .leftNav_tel i{font-size: 20px; position: absolute; top: 2px; left: 0; color: @main_color;} .about_content_shu_left_contact .leftNav_tel span{padding-left: 35px; font-size: 16px; color: @main_color;} .about_content_shu_left_contact .tel{} .about_content_shu_left_contact .tel ul{padding: 10px 20px} .about_content_shu_left_contact .tel ul li{font-size: 14px; color: @main_color; font-weight: normal; padding: 2.5px 0;} //服务热线 end //推荐随机新闻 .page_news{margin-top: 20px;width: 225px; background: #fff; border: 1px solid #ccc;} .page_news ul{padding: 10px 20px;} .page_news ul li{line-height: 40px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} .page_news ul li a{font-size: 12px; color: #666; font-weight: normal; padding: 2.5px 0;} .page_news ul li i{display: inline-block; width: 20px; height: 20px; border-radius: 2px; background: @main_color; color: #fff; text-align: center; line-height: 20px; margin-right: 5px;} .page_news ul li a:hover{color: @main_color;} //推荐随机新闻 end //关键词 .page_tag{margin-top: 20px;width: 225px; background: #fff; border: 1px solid #ccc;} .page_tag .tag_title{line-height: 50px; font-size: 16px; color: @main_color;} .page_tag ul{padding: 10px 20px} .page_tag ul a{display: block; float:left; padding: 5px 20px; background: @main_color; color: #fff; margin: 0 5px 5px 0;} //关键词 end .floatNav .current{color:@main_color;} //内页_左导航 end //内页_头部 面包屑导航 .page_breadcrumb{width:100%; height:40px; line-height:40px; border-bottom:1px solid #e1e1e1; overflow:hidden;} .page_breadcrumb h1{font-size: 20px; font-weight: normal; color: @main_color;} .page_breadcrumb ul{display: inline;} .page_breadcrumb ul li{display: inline;} .page_breadcrumb ul li i{color: #333; font-size: 18px; margin-right: 5px;} .page_breadcrumb1{border: none;} //内页_头部 面包屑导航 end //详情描述的头部 .detail{margin: 10px 0 0 0;} .detail .sector_head{width:100%;height:41px; background: #f6f6f6; border-bottom: 1px solid #e5e5e5;} .detail .sector_head ul{} .detail .sector_head ul li{position: relative; float:left; border: 1px solid #e5e5e5; font-size:16px;height:40px;line-height:40px; font-weight: normal; padding: 0 20px; cursor:pointer;} .detail .sector_head ul li.on{border-top: 1px solid #e5e5e5; border-left: 1px solid #e5e5e5; border-right: 1px solid #e5e5e5; border-bottom: 1px solid #fff; background: #fff; color: @main_color;} .detail .sector_head ul li.on i{display: inline-block; width: 100%; height: 2px; background: @main_color; position: absolute;top:-1px; left:0px;} //详情描述的头部 end //公用的详情 .sector_content{width:@page_right_width - 40px - 2px; border:1px solid #e1e1e1; border-top:none; float:left;width:@page_right_width - 40px - 2px;padding:20px;overflow:hidden; word-break: break-all;} //新闻的详情 .sector_content2{width:@page_right_width - 40px - 2px; border-top:none; float:left; width:@page_right_width - 40px - 2px;padding:20px;overflow:hidden; word-break: break-all;} //详情描述的头部 end //分页 .pages{display:block; padding:20px 0 10px 0;width:100%;text-align:center;} .pages a{display:inline-block;margin:0 3px;padding:0 8px;height:24px;line-height:24px;background:#f5f5f5; border:1px solid #e1e1e1;color:#545452} .pages a:hover{text-decoration:none; color:@main_color;} .pages span{display:inline-block;margin:0 3px;padding:0 8px;height:24px;line-height:24px;color:#545452;background:#f5f5f5; border:1px solid #e1e1e1;} .pages .current:hover{color:#FFF;} .pages .current{background: @main_color; } .pages .current{color: #FFF;} .pages1{background: #FFF; padding-bottom: 25px;} //分页 end //内页广告 .sector_hotline{float:left; width: @page_right_width - 40px; padding:20px 20px 20px 20px;line-height:36px;overflow:hidden; position: relative; background: @main_color; border-radius: 10px;} .sector_hotline p{font-size:20px;color:#fff;} .sector_hotline a{position: absolute; bottom:20px; right:20px; padding:0 15px;height:36px; background:#fff; font-size: 16px; color: @main_color;} .sector_hotline a i{height:36px;line-height:36px; font-size: 18px; color: @main_color;} //内页广告 end // 头部导航 .page_nav{margin: 29px 0 20px;} .page_nav .li{float: left; margin-bottom: 9px; margin-right: 9px; width: 192px; height: 50px; background: #FFF; color: #FFF; line-height: 50px; text-align: center; font-size: 14px;} .page_nav .li:nth-child(6n){margin-right: 0;} .page_nav .cur{background: @main_color;} .page_nav .cur a{color: #FFF;} //////// 产品页 //////// //产品列表 @product_list_width:220.5px; ul.product_list{float:left;width:110%;overflow:hidden;} ul.product_list li{float:left; width:@product_list_width; margin:20px 20px 0 0;overflow:hidden;border: 1px solid #ededed;.transition(.5s); position: relative;} ul.product_list li img{width: 100%;} ul.product_list li .tit{display: block; width:@product_list_width - 10*2px; padding: 0 10px; height: 50px; line-height: 50px; text-align:center; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; .transition(.5s);} ul.product_list li .tit a{.transition(.5s); font-weight: normal;} ul.product_list li:hover{border: 1px solid @main_color;} ul.product_list li:hover a{color: @main_color;} ul.product_list li a:hover{color: @main_color;} ul.product_list li .hot{width: 100px; height: 30px; line-height: 30px; background: @main_color; position: absolute; top: 10px; left: -26px; z-index:100; color: #fff; text-align: center; font-size: 12px; .transform_rotate(-45deg); } ul.product_list li .ceng{opacity: 0; filter:Alpha(opacity=0); .transition(.5s); bottom: 0; font-size: 12px; line-height: 20px; height: 38px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; background: rgba(0,0,0,.8); color: #fff; width: 92%; padding: 5px 5%;} ul.product_list li:hover .ceng{opacity: 1; filter:Alpha(opacity=100);} //产品列表 end //产品详情页 @fangdajingBottom_width: 450px; //放大镜 .jqzoom{float:left;border:none;position:relative;padding:0px;cursor:move;margin:0px;display:block;} .zoomdiv{z-index:100;position:absolute;top:0px;left:0px; width:100px; height:100px; background:#ffffff;border:1px solid #CCCCCC;display:none;text-align:center;overflow:hidden;} .jqZoomPup{z-index:10;visibility:hidden;position:absolute;top:0px;left:0px;width:20px;height:20px;border:1px solid #aaa;background:#ffffff /*url(../images/zoom.png) 50% center no-repeat*/;opacity: 0.5;-moz-opacity: 0.5;-khtml-opacity: 0.5;filter: alpha(Opacity=50);} .jqzoom img{width:@fangdajingBottom_width - 1px * 2px;} //放大镜 end //图片小图列表 .spec-preview{width:@fangdajingBottom_width; border:1px solid #DFDFDF;} .spec-scroll{clear:both; margin-top:10px; width: @fangdajingBottom_width;} .spec-scroll .prev{float:left; margin-right:2px;} .spec-scroll .next{float:right;} .spec-scroll .prev,.spec-scroll .next{display:block;font-family:"宋体";text-align:center; width:10px; border:1px solid #ccc; background:#EBEBEB; cursor:pointer; text-decoration:none;} .spec-scroll .items{float:left;position:relative; width:420px; overflow:hidden;} .spec-scroll .items ul{position:absolute;width:999999px;} .spec-scroll .items ul li{float:left;width:84.5px;text-align:center;} .spec-scroll .items ul li .on{border-color:@main_color;} //图片小图列表 end .product_show{float:left; width:100%; _height: 416px; margin-top:20px; overflow:hidden;} .product_show .cros_gallery{float:left;width: @fangdajingBottom_width;} .cros_gallery .line{border:1px solid #ccc;} //右边信息 .product_show .info{float:right;width:470px;} .product_show .info h1{margin:5px 0;width:100%; height:30px; line-height:30px; font-size:18px; color: #333; font-weight: normal; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} .product_show .info .keyword{} .product_show .info .keyword span{} .product_show .info .keyword a{font-size:12px; color:@main_color;} .product_show .info .product_info{width: 100%; font-size:14px; padding: 10px 0;} .product_show .info .product_info p{color: #999; padding: 2.5px 0;} .product_show .info .product_info p a{color: #999;} .product_show .info .product_info p a:hover{color: @main_color;} .product_show .info .product_info p span{color: #000;} .product_show .info .product_info p.intro{line-height: 24px; overflow: hidden;} .product_show .info .tel{width:100%;padding:10px 0 0 0;line-height:32px; font-size:16px; font-weight: normal;} .product_show .info .tel p{font-size:20px; color: @main_color;} .product_show .info .abtn{width:100%;padding:15px 0;overflow:hidden; border-top:1px dotted #e1e1e1; border-bottom:1px dotted #e1e1e1;} .product_show .info .abtn a{float:left;margin-right:10px;padding:8px 15px;font-size:14px; font-weight: normal; border:1px solid #e8e8e8;} .product_show .info .abtn a:hover{border:1px solid @main_color;} //右边信息end //随机推荐产品 .page_product{margin-top: 20px;} .page_product .title{height: 40px; font-size: 16px; color: @main_color; line-height: 40px; border-bottom: 1px solid #e1e1e1; font-weight: normal;} //随机推荐产品 end //产品详情页 end //////// 产品页 //////// //////// 案例页 //////// //案例列表 @case_list_width: 220.5px; ul.case_list{float:left;width:110%;overflow:hidden;} ul.case_list li{float:left; width:@case_list_width; margin:20px 20px 0 0; overflow:hidden; border: 1px solid #ededed; .transition(.5s);} ul.case_list li img{width: 100%;} ul.case_list li span.tit{display: block; width:@case_list_width - 10*2px; padding: 0 10px; height: 50px; line-height: 50px; text-align:center; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; .transition(.5s);} ul.case_list li span.tit a{.transition(.5s);} ul.case_list li:hover{border: 1px solid @main_color;} ul.case_list li:hover a{color: @main_color;} ul.case_list li a:hover{color: @main_color;} ul.case_list li .ceng{opacity: 0; filter:Alpha(opacity=0); .transition(.5s); bottom: 0; font-size: 12px; line-height: 20px; height: 40px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; background: rgba(0,0,0,.8); color: #fff; width: 92%; padding: 5px 5%;} ul.case_list li:hover .ceng{opacity: 1; filter:Alpha(opacity=100);} ul.case_list1{width: auto; background: #FFF; padding: 24px;} ul.case_list1 li{width: 372px; margin-right: 18px; border: none;} ul.case_list1 li:nth-child(3n){margin-right: 0;} ul.case_list1 li span.tit{padding: 0 10px; position: relative; width: auto; height: 70px; border-bottom: 1px solid #ccc; text-align: left;} ul.case_list1 li span.tit > span{position: absolute; top: 0; right: 10px; font-size: 14px;} ul.case_list1 li span.tit > p{width: 350px; position: absolute; bottom: -8px; left: 10px; font-size: 14px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} ul.case_list1 li span.tit a{font-size: 14px; width: 60%; display: block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} ul.case_list1 li:hover{border: none; } ul.case_list1 li .ceng{width: auto; font-size: 14px; line-height: 21px;} ul.case_list1 li:hover{ box-shadow: 0 2px 4px rgba(0,0,0,.16); -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.16); -moz-box-shadow: 0 2px 4px rgba(0,0,0,.16); } ul.case_list1 li:hover a{color: #000;} ul.case_list2 li{width: 1200px; margin-bottom: 80px; border: none; text-align: center; position: relative;} ul.case_list2 li:nth-last-child(1){margin-bottom: 20px;} ul.case_list2 li .title{font-size: 24px; line-height: 36px;} ul.case_list2 li .intro{font-size: 14px; line-height: 24px;} ul.case_list2 li a{font-size: 14px; color: #555; position: absolute; top: 38px; right: 0;} ul.case_list2 li .pic{width: 1200px; height: 600px; background: #ccc; margin-top: 20px;} ul.case_list2 li iframe{width: 1200px; height: 600px;} .case_list3{background: #FFF; padding: 30px 34px;} .case_list3 li{width: 1134px!important; border: none!important; border-bottom: 1px dashed #ccc!important;} .case_list3 li .top{height: 360px; overflow: hidden;} .case_list3 li .top .left{float: left; width: 250px; padding: 0 25px; height: 360px; background: #f5f5f5; } .case_list3 li .top .left .title{font-size: 18px; line-height: 30px; margin-top: 95px;} .case_list3 li .top .left .remark1{font-size: 14px; line-height: 30px; margin-top: 30px;} .case_list3 li .top .right{float: right; width: 822px; height: 360px; } .case_list3 li .bottom{height: 55px; padding-top: 40px;} .case_list3 li .bottom p{font-size: 14px; color: #666666; width: 1000px; float: left;} .case_list3 li .bottom span{font-size: 14px; color: #ea923f; float: right;} .case_list3 li:hover .remark1{color: #000;} //案例列表 end //案例详情页 .case_show{margin-top: 20px;} .case_show h1{width:100%;text-align:center; font-size: 20px; color:#333; font-weight: normal; overflow:hidden;} .case_show .info{width:100%; margin:10px 0; text-align:center; overflow:hidden; color: #666;} .case_show .info span{display:inline-block; height: 16px; overflow:hidden; margin-right: 10px; color: #333;} .case_show .info span a{margin-top:0px; color: #666;} .case_show .info span a:hover{color: @main_color;} .case_show .game163{ position: relative; padding: 4px; overflow: hidden;} .case_show .game163 .prev , .case_show .game163 .next{font-size: 40px; position: absolute; top: 0;} .case_show .game163 .prev{left: 0;} .case_show .game163 .next{right: 0; .transform_rotate(180deg);} .case_show .game163 .bigImg{} .case_show .game163 .bigImg li{text-align: center;} .case_show .game163 .bigImg li img{vertical-align:middle; border-radius: 10px; box-shadow: 1px 1px 5px #ccc;} .case_show .game163 .bigImg li .tier{bottom: 0; background: rgba(0,0,0,.75); width: 100%; text-align: center; opacity: 0; filter:Alpha(opacity=0); .transition(.75s);} .case_show .game163 .bigImg li .tier .p{padding: 10px 20px; line-height: 24px; color: #fff; font-size: 12px;} .case_show .game163 .bigImg li:hover .tier{opacity: 1; filter:Alpha(opacity=100);} .case_show .game163 .bigImg .jianjie{font-size: 14px; font-weight: normal; line-height: 40px; height: 40px; overflow: hidden;} .case_show .game163 .pageState{float:right; font-family: "Times New Roman", serif; letter-spacing: 1px;} .case_show .game163 .pageState span{ color: @main_color; font-size: 16px;} @case_smallImg_width: 82px; @case_smallImg_height: 82px; .case_show .game163 .smallScroll{ height: @case_smallImg_height; margin-bottom: 6px; position: relative;} .case_show .game163 .smallScroll .sPrev , .game163 .smallScroll .sNext{position: absolute; top: 19px;} .case_show .game163 .smallScroll .sPrev{left: 0; margin-top: -47/2px;} .case_show .game163 .smallScroll .sNext{right: 0; margin-top: -47/2px;} .case_show .game163 .sPrev,.game163 .sNext{ float: left; display: block; width: 17px; height: 92px; text-indent: -9999px; background: url(../images/sprites1008.png) no-repeat 0 -3922px;} .case_show .game163 .sNext{ background-position: 0 -3394px;} .case_show .game163 .sPrev:hover{ background-position: 0 -4186px;} .case_show .game163 .sNext:hover{ background-position: 0 -3658px;} .case_show .game163 .smallImg{ float:left; margin: 0 28.5px; display:inline; width: 900px; overflow: hidden;} .case_show .game163 .smallImg ul{ height:@case_smallImg_height+3px; width: 9999px; overflow: hidden; } .case_show .game163 .smallImg li{float: left; margin: 0 5px 0 0; width:@case_smallImg_width; height: @case_smallImg_height; border: 1px solid #dcdddd; overflow: hidden; text-align: center; line-height: @case_smallImg_height - 3px; background: #fff;} .case_show .game163 .smallImg img{vertical-align: middle;} .case_show .game163 .smallImg li.on{border-color: @main_color;} .case_show1{background: #FFF; width: auto; padding: 27px;} .case_show1 h1{text-align: left; font-size: 16px; border-bottom: 1px solid #ccc; padding-bottom: 20px;} .case_show1 .game163{margin: 20px auto 0!important;} .case_show1 .game163 .smallImg{margin: 0; width: auto;} .case_show1 .game163 .smallImg .tempWrap{width: auto!important;} .case_show .game163 .smallScroll{margin: 10px 0;} .detail1{background: #FFF; width: auto; padding: 27px;} .case_show2{background: #FFF; width: auto; padding: 27px 0; position: relative;} .case_show2 h1{font-size: 24px; text-align: center;} .case_show2 .pic{width: 1200px; height: 600px; background: #ccc; margin-top: 20px;} .case_show2 .pic iframe{width: 1200px; height: 600px;} .case_show2 a{font-size: 18px; color: @main_color; font-weight: bold; position: absolute; top: 29px; right: 70px;} //案例详情页 end //案例详情页2 @case_detail2_bigImg_width: 750px; @case_detail2_bigImg_height: 470px; .case_detail2{margin-top: 20px;} .case_detail2 h1{width:100%;text-align:center; font-size: 20px; color:#333; font-weight: normal; overflow:hidden;} .case_detail2 .info{width:100%; margin:10px 0; text-align:center; overflow:hidden; color: #666;} .case_detail2 .info span{display:inline-block; height: 16px; overflow:hidden; margin-right: 10px; color: #333;} .case_detail2 .info span a{margin-top:0px; color: #666;} .case_detail2 .info span a:hover{color: @main_color;} .case_detail2 .game163{ position: relative; padding: 4px; overflow: hidden;} .case_detail2 .game163 .bigImg{} .case_detail2 .game163 .bigImg figure{margin: 0; padding: 0;} .case_detail2 .game163 .bigImg li{text-align: center;} .case_detail2 .game163 .bigImg li img{vertical-align:middle; border-radius: 10px; box-shadow: 1px 1px 5px #ccc; width: @case_detail2_bigImg_width; height: @case_detail2_bigImg_height;} .case_detail2 .game163 .bigImg h4{font-size: 14px; font-weight: normal; line-height: 40px; height: 40px; overflow: hidden;} .case_detail2 .game163 .pageState{float:right; font-family: "Times New Roman", serif; letter-spacing: 1px;} .case_detail2 .game163 .pageState span{ color: @main_color; font-size: 16px;} @case_smallImg_width: 82px; @case_smallImg_height: 82px; .case_detail2 .game163 .smallScroll{ height: @case_smallImg_height; margin-bottom: 6px; position: relative;} .case_detail2 .game163 .smallScroll .sPrev , .game163 .smallScroll .sNext{position: absolute; top: 19px;} .case_detail2 .game163 .smallScroll .sPrev{left: 0; margin-top: -47/2px;} .case_detail2 .game163 .smallScroll .sNext{right: 0; margin-top: -47/2px;} .case_detail2 .game163 .sPrev,.game163 .sNext{ float: left; display: block; width: 17px; height: 92px; text-indent: -9999px; background: url(../images/sprites1008.png) no-repeat 0 -3922px;} .case_detail2 .game163 .sNext{ background-position: 0 -3394px;} .case_detail2 .game163 .sPrev:hover{ background-position: 0 -4186px;} .case_detail2 .game163 .sNext:hover{ background-position: 0 -3658px;} .case_detail2 .game163 .smallImg{ float:left; margin: 0 28.5px; display:inline; width: 900px; overflow: hidden;} .case_detail2 .game163 .smallImg ul{ height:@case_smallImg_height+3px; width: 9999px; overflow: hidden; } .case_detail2 .game163 .smallImg figure{float: left; margin: 0 5px 0 0; display: list-item; width:@case_smallImg_width; height: @case_smallImg_height; border: 1px solid #dcdddd; overflow: hidden; text-align: center; line-height: @case_smallImg_height; background: #fff;} .case_detail2 .game163 .smallImg figure img{vertical-align: middle;} .case_detail2 .game163 .smallImg figure.on{border-color: @main_color;} //案例详情页2 end //案例详情页3 .case_show3{padding: 20px 0 0 0;} .case_show3 h1{font-size: 20px; font-weight: normal; text-align: center;} .case_show3 .pc-slide{margin: 20px 0 0 0;} .case_show3 .pc-slide .view{position: relative;} .case_show3 .pc-slide .view .swiper-container{} .case_show3 .pc-slide .view .swiper-container .arrow-left , .case_show3 .pc-slide .view .swiper-container .arrow-right{position: absolute; top: 50%; z-index: 10; cursor: pointer;} .case_show3 .pc-slide .view .swiper-container .arrow-left{left: 0;} .case_show3 .pc-slide .view .swiper-container .arrow-right{right: 0; .transform_rotate(180deg);} .case_show3 .pc-slide .view .swiper-container .swiper-wrapper{} .case_show3 .pc-slide .view .swiper-container .swiper-wrapper .swiper-slide{text-align: center;} .case_show3 .pc-slide .view .swiper-container .swiper-wrapper .swiper-slide img{border-radius: 10px; overflow: hidden;} .case_show3 .pc-slide .preview{position: relative; margin-top: 20px;} .case_show3 .pc-slide .preview .arrow-left , .case_show3 .pc-slide .preview .arrow-right{width: 17px; height: 92px; position: absolute; top: 0; z-index: 10; background: #000; background: url(../images/sprites1008.png) no-repeat center; cursor: pointer;} .case_show3 .pc-slide .preview .arrow-left{left: 0; background-position: 0 -3922px;} .case_show3 .pc-slide .preview .arrow-right{right: 0; background-position: 0 -3394px;} .case_show3 .pc-slide .preview .swiper-container{width: 900px; height: 92px; overflow: hidden;} .case_show3 .pc-slide .preview .swiper-container .swiper-wrapper{} .case_show3 .pc-slide .preview .swiper-container .swiper-wrapper .swiper-slide{width: 92px; height: 92px; padding-right: 5px; line-height: 90px; text-align: center;} .case_show3 .pc-slide .preview .swiper-container .swiper-wrapper .swiper-slide img{cursor: pointer; vertical-align: middle; border: 1px solid #ccc; border-radius: 2px; .transition(.75s);} .case_show3 .pc-slide .preview .swiper-container .swiper-wrapper .active-nav img{border: 1px solid @main_color; border-radius: 10px; box-shadow: 1px 1px 10px #ccc;} //案例详情页3 end //////// 案例页 //////// //////// 图片页 //////// //图片列表 @pic_list_width: 220.5px; @pic_list_height:233px; ul.pic_list{float:left;width:110%;overflow:hidden;} ul.pic_list li{float:left; width: @pic_list_width; margin:20px 20px 0 0; overflow:hidden;} ul.pic_list li .pic{width: @pic_list_width; position:relative;} ul.pic_list li .pic img{width: 100%;} ul.pic_list li .pic .shade{position:absolute; z-index:1; left:0;top:0; width:100%; height: 100%; background: #000; cursor:pointer; .transition(1s); opacity:0; filter:alpha(opacity=0);} ul.pic_list li .pic .shade_a{position:absolute; z-index:2; top: 50%; left: 50%; display:inline-block;width:33px;height:33px;background:url(../images/zzc.png) no-repeat left center; margin: -33/2px 0 0 -33/2px; .transition(1s); opacity:0; filter:alpha(opacity=0);} ul.pic_list li .tit{display: block; width:100%; height:30px;line-height:30px; text-align:center; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} ul.pic_list li:hover .shade{ opacity:.7; filter:Alpha(opacity=70); /* IE8 以及更早的浏览器 */ } ul.pic_list li:hover .shade_a{ opacity:1; filter:Alpha(opacity=100); /* IE8 以及更早的浏览器 */ } ul.pic_list li:hover .tit{color: @main_color;} .pic_list1{} .pic_list1 li{width: 370px!important; margin-right: 45px!important;} .pic_list1 li:nth-child(3n){margin-right: 0!important;} .pic_list1 li .pic{width: 370px!important;} .pic_list1 li .tit{font-size: 14px;} .pic_list_zizhirongyu{} .pic_list_zizhirongyu li{width: 278px!important; margin-right: 29px!important;} .pic_list_zizhirongyu li:nth-child(4n){margin-right: 0!important;} .pic_list_zizhirongyu li .pic{width: 278px!important;} .pic_list_zizhirongyu li .tit{font-size: 14px;} //图片列表 //////// 图片页 //////// //////// 视频页 //////// //视频列表页 @video_list_width: 222.5px; ul.video_list{float:left;width:110%;overflow:hidden;} ul.video_list li{float:left; width: @video_list_width; margin:20px 20px 0 0; overflow:hidden; cursor: pointer;} ul.video_list li .pic{position: relative; width: @video_list_width;} ul.video_list li .pic img{width: 100%;} ul.video_list li .pic .tier{width: 100%; height: 100%; background: rgba(0,0,0,.5); position: absolute; top:0; left: 0; text-align: center; overflow: hidden; .transition(1s); opacity:0; filter:Alpha(opacity=0); /* IE8 以及更早的浏览器 */} ul.video_list li .pic .tier i{background: url(../images/open.png); width: 50px; height: 50px; display: inline-block; position: absolute; top: 50%; left: 50%; margin: -50/2px 0 0 -50/2px;} ul.video_list li .tit{width:100%; height:30px; line-height:30px; font-size: 13px; color: #555; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; text-align: center;} ul.video_list li:hover .tier{ opacity:1; filter:Alpha(opacity=100); /* IE8 以及更早的浏览器 */ } ul.video_list li:hover .tit{color: @main_color;} // 视频弹出2 .video_ceng{width: 100%; height: 100%; position: fixed; background: rgba(0,0,0,.75); z-index: 10000; top: 0; left: 0;} .video_ceng iframe{width: 630px; height: 360px; position: absolute; top: 50%; left: 50%; margin: -360/2px 0 0 -630/2px; z-index: 10001;} // 视频弹出2 end //视频列表页 end //视频详情页 .video_show{margin: 20px 0 0 0;} .video_show h1{font-size: 18px; font-weight: normal; margin: 0 10px 10px 0; float:left; height: 28px; line-height: 28px;} .video_show p{margin: 10px 0 0 0;} //视频详情页 //////// 视频页 //////// //////// 单页详情页 //////// .danye{padding: 20px 0; border-bottom: 1px dotted #ccc;} .danye h1{width:100%;text-align:center; font-size: 20px; color: #333; overflow:hidden; font-weight: normal;} .danye .info{width:100%; margin:10px 0; text-align:center; overflow:hidden; color: #666;} .danye .info span{display:inline-block; height: 16px; overflow:hidden; margin-right: 10px; color: #333;} .danye .info span a{margin-top:0px; color: #666;} .danye .info span a:hover{color: @main_color;} //////// 单页详情页 //////// //////// 新闻页 //////// //新闻列表页 .article_list{width:100%; padding:20px 0; border-bottom:1px dotted #e1e1e1; overflow:hidden;} .article_list .lt{float:left;width:50px;height:60px;padding:10px 0;border:1px solid #e1e1e1;overflow:hidden;} .article_list .lt span{float:left;width:100%;color:#bcbabb;height:20px;line-height:20px;text-align:center;font:16px/1.3 'Arial';font-weight:bold;overflow:hidden;} .article_list .lt span.y{font-size:14px;font-weight:normal;} .article_list .rt{float:left;width:88%;margin-left:15px;overflow:hidden;} .article_list .rt h3{float:left;width:100%; height:25px; line-height:25px; overflow:hidden;} .article_list .rt h3 strong a{font-size: 16px; color: #333; font-weight: bold;} .article_list .rt .p{float:left;width:100%; color:#888; line-height: 18px; height: 38px;overflow:hidden;} .article_list .rt a.more{float:left; width: 80px; height:17px; line-height: 17px; padding: 0 5px; font-size:12px; background:#d5d5d5;color:#fff;overflow:hidden; width: 80px;} .article_list:hover .rt a.more{background: @main_color;} .article_list .rt a.more i{float: right; font-size: 12px; color: #fff;} //新闻列表页 end //新闻列表页2 .article_list2{width: 930px; padding:20px 10px; border-bottom:1px dotted #e1e1e1; overflow:hidden;} .article_list2 .lt{float:left; width: 150-1*2px;height: 115-1*2px; border:1px solid #e1e1e1; overflow:hidden; text-align: center; position: relative;} .article_list2 .lt img{width: 100%; _height: 115-1*2px; position: absolute; top: 50%; left: 50%; transform:translate(-50%,-50%) scale(1.5);} .article_list2 .rt{float:right; width: 760px; height: 113px; overflow:hidden;} .article_list2 .rt h3{width:100%; height:25px; line-height:25px; overflow:hidden; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;} .article_list2 .rt h3 strong a{font-size: 16px; color: #333; } .article_list2 .rt h3 strong a:hover{color: @main_color;} .article_list2 .rt p{height: 27px; margin-top: 5px; color: #666; line-height: 22px; font-size: 14px;} .article_list2 .rt .p{width:100%; color:#888; height: 54px; overflow:hidden; font-size: 14px; line-height: 26px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;} .article_list_zidingyi{padding: 35px 20px; background: #FFF;} .article_list_zidingyi .article_list2{width: auto;} .article_list_zidingyi .lt{width: 300px; height: 175px;} .article_list_zidingyi .rt{width: 800px; height: auto;} .article_list_zidingyi .rt h3{margin: 30px 0 10px;} .article_list_zidingyi .rt h3 strong a{font-size: 16px; color: #333; font-weight: normal;} .article_list_zidingyi .rt p{margin-top: 10px; color: #666;} //新闻列表页2 end //新闻列表页3 .article_list3{width:950-20px; padding:20px 10px; border-bottom:1px dotted #e1e1e1; overflow:hidden;} .article_list3 .lt{float:left; width: 200px;height: 150px; position: relative; overflow: hidden;} .article_list3 .lt span{position: absolute; top: 0; left: 0; padding: 0 10px; line-height: 28px;color: #fff; z-index: 10;} .article_list3 .lt .span1{background: @main_color; color: #fff; z-index: 10; opacity: .7;} .article_list3 .lt .span2{color: #fff; z-index: 11;} .article_list3 .lt img{width: 200px;height: 150px; .transition(.5s);} .article_list3 .lt:hover img{.transform_scale(1.1);} .article_list3 .rt{float:right; width: 710px; height: 150px; overflow:hidden;} .article_list3 .rt h3{width:100%; height:25px; line-height:25px; overflow:hidden; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;} .article_list3 .rt h3 strong a{font-size: 16px; color: #333;} .article_list3 .rt h3 strong a:hover{color: @main_color;} .article_list3 .rt .p{margin: 10px 0 0 0; width:100%; color:#666; height: 75px; overflow:hidden; font-size: 14px; line-height: 26px;} .article_list3 .rt p{margin-top: 20px; color: #999; line-height: 22px; font-size: 14px;} //新闻列表页3 end //新闻详情页 .article_show{float:left;width:100%;padding: 20px 0;border-bottom:1px dotted #e1e1e1; overflow:hidden;} .article_show h1{width:100%;text-align:center;font:20px/2 'microsoft yahei'; color:#333; font-weight: normal; overflow:hidden;} .article_show .info{width:100%; margin:10px 0; text-align:center; overflow:hidden; color: #666;} .article_show .info span{display:inline-block; height: 16px;overflow:hidden; margin-right: 10px; color: #333;} .article_show .info span a{margin-top:0px; color: #666;} .article_show .info span a:hover{color: @main_color;} .article_detail_right .top .title span{color: @main_color;} .article_detail_right ul li:hover .title{color: @main_color!important;} //新闻详情页的尾部关键词 .page_keyword{font-size: 14px; margin: 20px 0 0 0;} .page_keyword span{} .page_keyword a{font-size: 14px;} //新闻详情页 end //////// 新闻页 //////// //上下页面 .prev_next{width:100%;margin:20px 0;padding:20px 0;border-top:1px dotted #e1e1e1;border-bottom:1px dotted #e1e1e1;} .prev_next span{float:left;color:#000;width:40%;height:20px;line-height:20px;overflow:hidden;} .prev_next span a{color:#000;} .prev_next span a:hover{color: @main_color;} .prev_next .back{line-height: 20px;} .prev_next1{background: #FFF; margin: 0; border: none; text-align: center;} .prev_next1 span{float: none; display: inline-block; width: 30%;} .prev_next1 > a{display: inline-block; height: 20px; line-height: 20px; vertical-align: super;} //上下页面 end //////// 关于我们 //////// .part{margin-top: 40px;} //标题 .about_head{width: 100%; height: 40px; line-height: 40px;border-bottom: 1px solid #e1e1e1; overflow: hidden; } .about_head h3{color:@main_color; font-size: 20px; font-weight: normal;} .about_head h3 a{color:@main_color; font-size: 20px; font-weight: normal;} //标题end //内容 .about_content{float: left; width: @page_right_width - 40px; padding: 20px; overflow: hidden;} //内容 end //图片1 @about_pic1_li_width: 220.5px; .about_pic1{width: 110%; background:#fff;} .about_pic1 li{float:left; width: @about_pic1_li_width; margin:20px 20px 0 0; position: relative; overflow: hidden;} .about_pic1 li .pic{width: @about_pic1_li_width; position:relative;} .about_pic1 li .pic img{width: 100%;} .about_pic1 li .pic .shade{position:absolute; z-index:1; left:0;top:0; width:100%; height: 100%; background: #000; cursor:pointer; .transition(1s); opacity:0; filter:alpha(opacity=0);} .about_pic1 li .pic .shade_a{position:absolute; z-index:2; top: 50%; left: 50%; display:inline-block;width:33px;height:33px;background:url(../images/zzc.png) no-repeat left center; margin: -33/2px 0 0 -33/2px; .transition(1s); opacity:0; filter:alpha(opacity=0);} .about_pic1 li .tit{display: block; width:100%; height:30px;line-height:30px; text-align:center; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} .about_pic1 li:hover .shade{ opacity:.7; filter:Alpha(opacity=70); /* IE8 以及更早的浏览器 */ } .about_pic1 li:hover .shade_a{ opacity:1; filter:Alpha(opacity=100); /* IE8 以及更早的浏览器 */ } .about_pic1 li:hover .tit{color: @main_color;} //图片1 //图片3 @about_pic3_li_width: 222px; .about_pic3 ul{width:110%; background:#fff;} .about_pic3 ul li{float: left; width: @about_pic3_li_width; margin:20px 20px 0 0; position: relative; z-index: 0;} .about_pic3 ul li img{width: 100%; border:1px solid #eee; cursor:pointer;} .about_pic3 ul li .tit{width:100%; margin-top:5px; height:30px; line-height:30px; text-align:center; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;} .about_pic3 ul li:hover .tit{color: @main_color;} //图片3 end //合作客户 @about_client_li_width: 220.5px; .about_client{} .about_client ul{width: 110%; background:#fff;} .about_client ul li{float: left; width: @about_client_li_width; margin:20px 20px 0 0; border:1px solid #e5e5e5; } .about_client ul li img{width: 100%;} //合作客户 end //证书 @about_cert_li_width: 220.5px; ul.about_cert{} ul.about_cert{width: 110%; background:#fff;} ul.about_cert li{float:left; width: @about_cert_li_width; margin:20px 20px 0 0; position: relative;} ul.about_cert li .pic{width: @about_cert_li_width; position:relative;} ul.about_cert li .pic img{width: 100%;} ul.about_cert li .pic .shade{position:absolute; z-index:1; left:0;top:0; width:100%; height: 100%; background: #000; cursor:pointer; .transition(1s); opacity:0; filter:alpha(opacity=0);} ul.about_cert li .pic .shade_a{position:absolute; z-index:2; top: 50%; left: 50%; display:inline-block;width:33px;height:33px;background:url(../images/zzc.png) no-repeat left center; margin: -33/2px 0 0 -33/2px; .transition(1s); opacity:0; filter:alpha(opacity=0);} ul.about_cert li .tit{display: block; width:100%; height:30px;line-height:30px; text-align:center; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} ul.about_cert li:hover .shade{ opacity:.7; filter:Alpha(opacity=70); /* IE8 以及更早的浏览器 */ } ul.about_cert li:hover .shade_a{ opacity:1; filter:Alpha(opacity=100); /* IE8 以及更早的浏览器 */ } ul.about_cert li:hover .tit{color: @main_color;} //证书 end //////// 关于我们 //////// //搜索页面 .search_no_data{float:left;width:100%;margin:120px 0;text-align:center;} .search_no_data p{font-size:18px; color:@main_color;} .search_no_data span{display:block;width:100%;color:#888888;} .search_no_data span.cn{font-size:18px;height:25px;line-height:25px;} //搜索页面 end //留言页面 .page_feedback{border-bottom: 1px solid #e1e1e1;} .page_feedback .title{ font-size: 16px; height: 40px; line-height: 40px; font-weight: normal; color: @main_color; } .feedback{float:left;width:100%;padding:20px 0;overflow:hidden;} .feedback .remark{font-size: 14px; font-weight: normal; padding: 0 0 10px 0; color: @main_color;} .feedback table td{padding:7px 0;color:#6b6b6b;text-align:left;} .feedback table td var{color:#f00;padding-right:5px;} .feedback table td .input{width:200px;height:25px;line-height:25px;border-left:2px solid #eee;border-top:2px solid #eee;border-right:1px solid #eee;border-bottom:1px solid #eee;} .feedback table td .textarea{width:@page_right_width - 6px;height:200px;border:1px solid #eee;} .feedback_btn{float:left;padding:8px 15px;margin-left:10px;border:none; background: @main_color; color: #fff;} .feedback_left{font-size: 18px; word-wrap: break-word;line-height: 50px;} .feedback_left span{color: @main_color} //留言页面 end //////// 联系我们 //////// .contact{padding: 20px 10px;} .contact h3{font-size: 20px;} .contact p{font-size: 16px; margin: 10px 0 0 0;} .contact_us2{padding: 40px; background: #FFF;} .contact_us2 .content{width: 1200px; margin: 0 auto;} .contact_us2 .content .top{position: relative;} .contact_us2 .content .top .title{font-size: 32px;} .contact_us2 .content .top .subTitle{font-size: 16px; position: absolute; top: 6px; left: 140px;} .contact_us2 .content .top i{width: 898px; height: 1px; border-bottom: 1px dashed #ccc; position: absolute; top: 30px; right:0;} .contact_us2 .content ul{} .contact_us2 .content ul li{float: left; font-size: 14px; width: 320px; margin-right: 270px; line-height: 32px; margin-top: 47px;} .contact_us2 .content ul li:nth-child(3n){margin-right: 0;} .contact_us2 .content ul li .title{} //////// 联系我们 end //////// //网站地图 .sitemap h3{font-size: 20px;} ul.maps{float:left; width:98%;padding:0px 1%;} ul.maps li{float:left;margin:10px;line-height:25px; overflow:hidden} ul.maps li .first{float:left; width:100%;height:25px; font-weight:bold} ul.maps li .list{float:left;width:96%; border:1px solid #e4e4e4; padding:10px;} ul.maps li .list a,ul.map li .list span{display:inline-block; margin-right:10px;} ul.maps li .list span{padding:0 5px;} ul.maps li a{color:#1f1a17;} ul.maps li.t0{font-weight:bold;width:100%;padding:0;font-size:14px;} //网站地图 end //////////////////////////// 内页 //////////////////////////// .iconfont { font-family:"iconfont" !important; font-size:24px; font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; color: #7e7d7c; } @font-face { font-family: 'iconfont'; /* project id 191356 */ src: url('//at.alicdn.com/t/font_p2dignu7egop3nmi.eot'); src: url('//at.alicdn.com/t/font_p2dignu7egop3nmi.eot?#iefix') format('embedded-opentype'), url('//at.alicdn.com/t/font_p2dignu7egop3nmi.woff') format('woff'), url('//at.alicdn.com/t/font_p2dignu7egop3nmi.ttf') format('truetype'), url('//at.alicdn.com/t/font_p2dignu7egop3nmi.svg#iconfont') format('svg'); } .iconfont { font-family:"iconfont" !important; font-size:24px; font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; color: #7e7d7c; } @font-face { font-family: 'iconfont2'; /* project id 191356 */ src: url('//at.alicdn.com/t/font_191356_igdw42jqd2.eot'); src: url('//at.alicdn.com/t/font_191356_igdw42jqd2.eot?#iefix') format('embedded-opentype'), url('//at.alicdn.com/t/font_191356_igdw42jqd2.woff') format('woff'), url('//at.alicdn.com/t/font_191356_igdw42jqd2.ttf') format('truetype'), url('//at.alicdn.com/t/font_191356_igdw42jqd2.svg#iconfont') format('svg'); } .iconfont2 { font-family:"iconfont2" !important; font-size:24px; font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; color: #7e7d7c; }