html, body, div,
h1, h2, h3, h4, h5, h6,
hr, p, blockquote,
dl, dt, dd, ul, ol, li,
pre, form, fieldset, object, code,
legend, button, input, textarea, label,
th, td, a, img {margin: 0;padding: 0;border: 0;outline: 0;}
body{color:#121212;cursor:default;font:'Helvetica Neue', 'Helvetica', 'Arial', '\5FAE\8F6F\96C5\9ED1', 'Microsoft YaHei', 'Tahoma', 'Hiragino sans gb', 'SimSun', 'Sans-serif';}
/*清除内外边距*/
h1, h2, h3, h4, h5, h6 {font-weight:normal;font-size:100%;}
:focus {outline:0;}
ul,ol {list-style:none;}
fieldset, img {border:0 none;vertical-align: top;}
address, caption, cite, code, dfn, em, i, th, var, optgroup {font-style:normal;font-weight:normal;}
abbr, acronym {border:0;font-variant: normal;}
input, button, textarea, select, optgroup, option {font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}
code, kbd, samp, tt {font-size: 100%;}
input, button, textarea, select {*font-size:100%;outline: none;}
textarea {resize: none;}
table {border-collapse: collapse;border-spacing: 0;}
blockquote, q {quotes: none;}
blockquote:before,blockquote:after,q:before,q:after {content: '';content: none;}
.fl{float:left;display:inline;}
.fr{float:right;display:inline;}
a{color: #333; text-decoration: none;-webkit-transition: color .2s ease-in-out;-moz-transition: color .2s ease-in-out;transition: color .2s ease-in-out;-webkit-transition: background-color .2s ease-in-out;-moz-transition: background-color .2s ease-in-out;transition: background-color .2s ease-in-out;}
a.special,.special a { color: #cc0000;}
a.special:hover,.special a:hover {color: #cc0000;text-decoration: none;}

.f12{font-size: 12px;}
.f14{font-size: 14px;/*.9rem*/}
.f16{font-size: 16px;}
.f22{font-size: 22px;}
.color999{color: #999}
.colorfff{color: #fff}
.colorred{color: #f3ce1b;/*黄*/}
.color74{color: #747474}
.font-weight-bold{font-weight: bold;}
.overflow-hidden{overflow: hidden;}
.background-color1{background-color: #fff;}
.background-color2{background-color: #f7f7f7;}
.background-color3{background-color: #ebebeb}
.background-color4{background-color: #ffd832;/*黄*/}
.border-1px-solid-cc0000{border: 1px solid #cc0000}
.padding-20{padding: 20px;}
.button{display: block; width:255px;height:60px;line-height:60px;font-size:16px;text-align:center;border:1px solid #000;margin: 0 auto;}
.button:hover{background-color:#2c6fb6;color:#fff;transition:all .3s;}
a:hover{text-decoration:none}
::-webkit-input-placeholder { /* WebKit browsers */
color:#808080;font-size:14px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color:#808080;font-size:14px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color:#808080;font-size:14px;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
color:#808080;font-size:14px;
}

/*display-flex*/
.a-i-c{
	display: flex;
	align-items: center;/*垂直居中*/
}
.j-c-c{
	display: flex;
	justify-content:center;/*水平居中*/
}
.j-c-s-b{
	display: flex;
	justify-content: space-between;/*两端对齐，项目之间的间隔都相等。*/
}
.j-c-f-s{
	display: flex;
	justify-content:flex-start;/*左对齐*/
}
.j-c-f-e{
	display: flex;
	justify-content:flex-end;/*右对齐*/
}
.a-i-f-e{
	display: flex;
	align-items:flex-end;/*局底*/
}
.a-i-f-s{
	display: flex;
	align-items:flex-start;/*局顶*/
}
.w-l-c-1{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	/*段落限制1行*/
}
.w1170{
    width: 1170px;
    margin:0 auto;
}
.Lj_ma_t{
    margin-top: 60px;
}
/*通用标题*/
.Lj-title-box{
    margin: 60px 0 60px 0;
}
.Lj-title-box h1{
    font-size: 30px;
    text-align:center;
    margin-bottom:20px;
}
.Lj-title-box span{
    width: 60px;
    height: 2px;
    display: block;
    background-color: #121212;
    margin: 0 auto;
}
.Lj-title-box p{
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}
/***************************顶部导航***************************/
.Lj-logo-nav{
    width: 100%;
    height: 92px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
    margin: 0 auto;
}
.Lj-logo-nav .content{
	display: flex;
    /*垂直居中*/
	align-items: center;
    /*两端对齐，项目之间的间隔都相等。*/
	justify-content: space-between;
}
/*logo*/
.Lj-logo-nav .Lj-logo img{
    display:block;
    height: 60px;
}
/*pc导航*/
.Lj-nav{
	display: flex;
    /*右对齐*/
	justify-content:flex-end;
    /*垂直居中*/
	align-items: center;
}
.Lj-nav ul .firstLi {
	text-align: center;
	float: left;
	display: inline;
	position: relative;
    margin-right: 30px;
}
.Lj-nav ul .firstLi:before {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: #2c6fb6;
    transition: all 0.3s ease;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.Lj-nav ul .firstLi:hover:before{ 
    width:100%; 
    transition: all 0.3s ease;
}
.Lj-nav ul .firstLi:hover .nav_list_title{ 
    color:#2c6fb6;
}
.Lj-nav ul .firstLi .First{
	text-align: center;
	color:#121212;
	font-size: 16px;
    line-height: 92px;
	text-decoration: none;
	display: block;
}
.Lj-nav ul .firstLi:hover {
	color: #2c6fb6;
}
.Lj-nav ul .firstLi:hover .First{
	color: #2c6fb6;
}
.Lj-nav ul .firstLi .First:hover {
	color: #2c6fb6;
	text-decoration: none;
}
.Lj-nav ul .firstLi:hover ul {
	display: block;
}
.Lj-nav ul .firstLi:hover ul li {
	height: auto;
	position: relative;
	min-height: 40px;
}
.Lj-nav ul .firstLi:hover ul li ul {
	display: none;/*三级*/
}
.Lj-nav ul li ul {
	display: none;
}
.Lj-nav ul li ul {
	background: #fff;
    color: #121212;
    width: 240px;
    position: absolute;
    top: 92px;
    left: -88px;
    z-index: 999;
}
.Lj-nav ul li .secondLi {
    position: relative;
	width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 45px;
    border-bottom: 1px solid #dcdcdc;
}
.Lj-nav ul li ul .secondLi a:hover {
	color: #2c6fb6;
}
.Lj-nav ul li ul .secondLi:hover ul {
	display: block;
}
.Lj-nav ul li ul li ul {
	left: 240px;
	top: 0px;
	display: none;
	position: absolute;
	z-index: 23;
}
.Lj-nav ul li ul li ul li:hover a {
	color: #121212;
}
.Lj-nav ul li ul li ul .thirdLi a {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 45px;
    border-bottom: 1px solid #dcdcdc;
}
.Lj-nav ul li ul li ul .thirdLi:hover a{
	color: #2c6fb6;
}
.Lj-nav .en{
    color: #121212;
    line-height: 16px;
    font-size: 16px;
}
.Lj-nav .en:hover a{
    color: #2c6fb6;
}
/*移动端导航*/
.Lj-logo-nav #navToggle {
	display: none;
}
.m_nav {
    display: none;
}
/***************************顶部导航 end***********************/
/***************************轮播图*****************************/
.Lj-banner {
    margin-top: 92px;
    width: 100%;
}
.Lj-content-img {
    width: 100%;
}
.Lj-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Lj-banner .swiper-container {
    height: 100%;
    width: 100%;
}
.Lj-banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: #fff;
}
.Lj-banner .swiper-container-horizontal>.swiper-pagination-bullets,
.Lj-banner .swiper-pagination-custom,
.Lj-banner .swiper-pagination-fraction {
    bottom: 10px;
}
.Lj-banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}
.Lj-content {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.Lj-Txt{
    z-index: 11;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}
.Lj-Txt .Lj-cn {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 31px;
}
.Lj-Txt .Lj-en {
    color: #fff;
    font-size: 50px;
    letter-spacing: 3px;
    font-weight: bold;
    line-height: 1;
    display: block;
}
.Lj-Txt .Lj-label{
    color: #fff;
    font-size: 16px;
    margin-top: 30px;
}
.Lj-Txt .Lj-inner {
    position: relative;
}
/***************************轮播图 end*************************/
/***************************关于我们***************************/
.Lj-about-us{
    overflow: hidden;
}
.Lj-about-us .content{
    width: 100%;
    overflow: hidden;
}
.Lj-about-us .w570{
    width: 49%;
}
.Lj-about-us .fl .about-us-bottom{
    float: left;
}
.Lj-about-us .about-us-title{
    margin-bottom: 35px;
}
.Lj-about-us .about-us-title p{
    font-size: 30px;
}
.Lj-about-us .about-us-center p{
    /*段落*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 35px;
}
.Lj-about-us .about-us-img{
    width: 100%;
    position: relative;
    padding-top: 67%;
    margin: 0 auto;
    overflow: hidden;
	transition: all 1s;
}
.Lj-about-us .about-us-img img{
    position:absolute;
    top: 0;
    left: 0%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.Lj-about-us .Lj-about-bottom{
    overflow: hidden;
    width: 100%;
}
.Lj-about-us .Lj-about-bottom ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;/*两端对齐*/
	overflow: hidden;
}
.Lj-about-us .Lj-about-bottom ul li{
    width: 25%;
    text-align: center;
    font-size: 24px;
}
.Lj-about-us .Lj-about-bottom .num-div {
	text-align: center;
	color: #2c6fb6;
}
.Lj-about-us .Lj-about-bottom i{
    font-size: 14px;
}
.Lj-about-us .Lj-about-bottom span{
	font-size: 50px;
	font-weight: 600;
	line-height: 1;
	font-family: 'BarlowCondensed';
	position: relative;
	font-style: inherit;
}
.Lj-about-us .Lj-about-bottom b {
	font-size: 16px;
	color: #858585;
	margin-left: 25px;
}
.Lj-about-us .Lj-about-bottom .introduce p {
	margin-top:5px;
	border-bottom: none;
	font-size: 13px;
    color: #999;
}
.Lj-about-us .Lj-about-bottom .introduce img,
.Lj-about-us .Lj-about-bottom .num-div img {
	display: block;
	width: 22px;
	height: 22px;
	margin-right: 10px;
}
/***************************关于我们 end***********************/
/***************************案例展示 **************************/
.Lj-case #wrap{
    padding:0 110px 0 110px;
}
.Lj-case #wrap ul{
    overflow: hidden;
}
.Lj-case #wrap ul li a{
    display: block;
}
.Lj-case #wrap ul li{
    width:23%;
    list-style:none;
    position:relative;
    float:left;
    overflow:hidden;
    margin-bottom: 2.65%;
    margin-left: 2.65%;
}
.Lj-case #wrap ul li:nth-child(4n+1) {
    margin-left: 0px;
}
.Lj-case #wrap ul li .case_img{
    width: 100%;
    position:relative;
    padding-top: 100%;
    margin: 0 auto;
    overflow: hidden;
	transition: all 1s;
}
.Lj-case #wrap ul li .case_img img{
    position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.Lj-case #wrap ul li .case_img .divA{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background:rgba(0,0,0,.5);
}
.Lj-case #wrap ul li .case_img .divA>.p1{
    text-align: center;
    font-size: 16px;
    line-height: 50px;
    color:#fff;
    
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    overflow: hidden;
    padding: 0px 15px;
}
.Lj-case #wrap ul li .case_img .divA>.p2{
    width: 312px;
    height: 21px;
    font-size: 14px;
    color:#b4b4b4;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.Lj-case #wrap ul li .a2{
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    color:#fff;
    background:rgba(0,0,0,.5);
    transition: all .2s;
}
.Lj-case #wrap ul li .a2 .p4{
    padding: 0 30px;
    text-align: center;
    position: absolute;
    top: 34px;
    left: -100%;
    color:#fff;
    font-size: 24px;
    transition: all .2s .1s ease-out;
}
.Lj-case #wrap ul li .a2 .p7{
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    width: 160px;
    height: 38px;
    line-height: 38px;
    border-radius: 20px;
    margin: 0 auto;
    border: 1px solid;
    transition: all .2s .5s;
}
/***************************案例展示 end***********************/
/***************************专注于涂装*************************/
.Lj-Tz ul{
    overflow: hidden;
}
.Lj-Tz ul li{
    float: left;
    margin-left: 23px;
    margin-bottom: 60px;
    width: 32%;
}
.Lj-Tz ul li:nth-child(3n+1) {
    margin-left: 0px;
}
.Lj-Tz ul li .Lj-Tz-fl{
    overflow: hidden;
    float: left;
}
.Lj-Tz ul li .Lj-Tz-fr{
    width:84%;
}
.Lj-Tz ul li:hover .Lj-Tz-fr p{
    color: #2c6fb6;
}
.Lj-Tz ul li .Lj-Tz-fr span{
    font-size:24px;
    line-height: 24px;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    overflow: hidden;
}
.Lj-Tz ul li .Lj-Tz-fr p{
    font-size: 14px;
    line-height:24px;
    color:#858585;
    margin-top: 10px;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:5;
    overflow: hidden;
    height: 120px;
}
/***************************专注于涂装 end**********************/
/***************************新闻*******************************/
.Lj-new{
    background-color: #eff3f6;
    overflow: hidden;
    padding-bottom: 60px;
}
.Lj-new .testimonial_slider .testimonial-item {
	border-color: #e4e4e4;
}
.Lj-new .testimonial_slider .owl-controls .owl-dots .owl-dot.active span {
	background: #2c6fb6;
	border-radius: 100px;
}
.Lj-new .owl-dots {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.Lj-new .section-header {
	text-align: center;
}
.Lj-new .testimonial_slider .testimonial-item {
	text-align: center;
	z-index: -1
}
.Lj-new .testimonial_slider .testimonial-item h2 {
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	color: #121212;
	text-align: center;
	/*段落限制1行*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.Lj-new .testimonial_slider .testimonial-item p{
	font-size: 14px;
	color: #999;
	line-height: 22px;
	text-align: center;
}
.Lj-new .testimonial_slider .testimonial-item .time{
	line-height: 14px;
    text-align: center;
    margin-top: 15px;
    font-family: Arial;
}
.Lj-new .testimonial_slider .testimonial-item .article{
    width: 800px;
    height: 50px;
    line-height: 26px;
	/*段落限制1行*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:2;
	overflow: hidden;
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
}
.Lj-new .testimonial_slider .swiper-pagination {
    position: relative;
    margin-top: 20px;
}
.Lj-new .testimonial_slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 8px;
    background: #2c6fb6;
}
/***************************新闻 end***************************/
/***************************底部 ******************************/
.Lj-footer-box{
    background-color:#3a3a3a;
    overflow: hidden;
    padding: 60px 0 0 0;
    font-family: Arial;
}
.Lj-footer-box .container{
    overflow: hidden;
}
.Lj-footer-box .contact_information ul li{
    overflow:hidden;
    margin-bottom:30px;
}
.Lj-footer-box .contact_information ul li .information{
    margin-left:15px;
}
.Lj-footer-box .contact_information ul li .information span{
    font-size:18px;
    color:#fff;
}
.Lj-footer-box .contact_information ul li .information p{
    font-size:12px;
    color:#999;
    line-height: 24px;
}
.Lj-footer-box .Lj-footer-nav dl{
    float:left;
    margin-left: 20px;
}
.Lj-footer-box .Lj-footer-nav dl dt{
    color:#fff;
    font-size:14px;
    font-weight: normal;
    margin-bottom: 25px;
}
.Lj-footer-box .Lj-footer-nav dl dd a{
    color:#808080;
    font-size:12px;
    line-height:26px;
}
.Lj-footer-box .Lj-footer-nav dl dd a:hover{
    color: #fff;
}
.Lj-footer-box .Lj-footer-bottom{
    color:#999;
    font-size: 12px;
    margin-top: 10px;
    padding-top: 10px;
}
.Lj-footer-box .Lj-footer-bottom p{
    text-align: center;
    line-height: 30px;
}
.Lj-footer-box .Lj-footer-bottom p a{
    color:#999;
}
.Lj-footer-box .Lj-footer-bottom p a:hover{
    color: #fff;
}
/***************************底部 end***************************/
/*内页大图*/
.Inside_banner{
	width: 100%;
    position:relative;
    padding-top: 30%;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 92px;
}
.Inside_banner img{
	position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
}
/*内页大图 end*/
/***************************内页公共导航路径 *******************/
.container_nav{
    line-height: 70px;
    overflow: hidden;
    border-bottom: 1px solid #e3e3e3;
    font-size:14px;
}
.container_nav .fl p a{
    color: #121212;
    font-size:14px;
}
.container_nav .fr ul li{
    float:left;
    margin-left:40px;
    font-size: 14px;
    color: #121212;
}
/***************************内页公共导航路径 end****************/
/*************************************页码 ********************/

.page {
    /*width: 820px;*/
    justify-content: center;
    height: 40px;
    margin-top:30px;
    text-align: center;
}
.prev, .next {
    padding: 5px 10px;
    font-size: 14px;
    margin: 0 4px;
    background-color: #fff;
    border: 1px solid #e7e7e7;
}
.current {
    /*border: 0 none;*/
    /*font-weight: 700;*/
    padding: 4px 10px;
    margin: 0 4px;
    background-color: #2c6fb6;
    color: #fff;
}
.page a {
    padding: 4px 10px;
    margin: 0 4px;
    font-size: 14px;
    border: 1px #CCC solid;
}

.Page_number{
	display: flex;
	justify-content:center;/*水平居中*/
    text-align: center;
    margin-bottom: 60px;
}
.Page_number ul li{
    margin: 0 5px;
    float: left;
}
.Page_number ul li a{
    font-size: 14px;
}
.Page_number ul li .prev{
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #e7e7e7;
}
.Page_number ul li .prev:hover{
    background-color: #2c6fb6;
    color: #fff;
}
.Page_number ul li .selected{
    background-color: #2c6fb6;
    color: #fff;
}
/*************************************页码 end*****************/
/***************************内页新闻 **************************/
.container_new{
    overflow: hidden;
    margin-top: 60px;
    min-height: 800px;
}
.container_new .ul_new li{
    overflow: hidden;
    margin-bottom: 60px;
}
.container_new .ul_new li a{
    display: block;
}
.container_new .synopsis_right{
   overflow: hidden;
   padding-bottom: 10px;
}
.container_new .ul_new li .synopsis_right h3{
    width: 80%;
    line-height: 40px;
    font-size: 16px;
    color: #121212;
    float: left;
	/*段落限制1行*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
/*鼠标经过向右移动动画*/
.container_new .ul_new li .synopsis_right h3 span{
    transition:all .6s ease-in-out 0s;
    -webkit-transition:all .6s ease-in-out 0s;
    -moz-transition:all .6s ease-in-out 0s; 
    -ms-transition:all .6s ease-in-out 0s; 
    -o-transition:all .6s ease-in-out 0s; 
}
.container_new .ul_new li .synopsis_right h3 span{
    width: 0;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    background: #2c6fb6;
    opacity: 0;
}
.container_new .ul_new li:hover .synopsis_right h3 span{
    width: 30px;
    opacity: 1;
    margin-right: 15px;
}
/*鼠标经过向右移动动画（完）*/
.container_new .ul_new li .synopsis_right .fr{
    float: right;
    line-height: 40px;
    font-size: 14px;
    color: #999;
}
.container_new .ul_new li a p{
    font-size: 14px;
    line-height: 26px;
    color: #121212;
	/*段落限制1行*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:2;
	overflow: hidden;
}
/***************************内页新闻 end***********************/
/***************************内页案例***************************/
.container_case{
    margin-top: 60px;
    margin-bottom: 60px;
    min-height: 800px;
}
.container_case .ul_case{
    overflow: hidden;
}
.container_case .ul_case li{
    overflow: hidden;
    width: 23%;
    float: left;
    margin-left: 2.666%;
}
.container_case .ul_case li:nth-child(4n+1) {
    margin-left: 0px;
}
.container_case .ul_case li .product_img{
    width: 100%;
    position:relative;
    padding-top: 100%;
    margin: 0 auto;
    overflow: hidden;
	transition: all 1s;
}
.container_case .ul_case li .product_img img{
	position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.container_case .ul_case li:hover .product_img img{
    transform:scale(1.1);
    transition:all 1s;
}
.container_case .ul_case li h1{
	font-size:18px;
	color: #333;
	text-align: center;
	margin-top: 20px;
    margin-bottom: 20px;
	/*段落限制1行*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
/***************************内页案例 end***********************/
/***************************内页详情***************************/
.Picture_details{
    margin-top: 60px;
    margin-bottom: 60px;
    min-height: 800px;
}
.Picture_details .details_top{
    padding-top: 0.05rem;
}
.Picture_details .details_top img {
    margin: 0 auto !important;
    display: block !important;
    /* 
    width: 60% !important; 
    padding: 15px 0!important;
    */
    height: auto !important;
}
.Picture_details .details_top h3{
    font-size: 30px;
    font-weight:normal;
    font-stretch:normal;
    line-height:46px;
    letter-spacing: 0px;
    color: #2c6fb6;
    text-align: center;
	margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 30px;
}
.Picture_details .details_top .xw_time{
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #999;
    margin-bottom: 30px;
    text-align: right;
}
.Picture_details .details_top .xw_time span{
    font-size:16px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #999;
}

/* .Picture_details .details_top .page_wrap_box{
    color: #121212 !important;
    font-family: 微软雅黑 !important;
}
.Picture_details .details_top .page_wrap_box p{
    color: #121212 !important;
    font-family: 微软雅黑 !important;
}
.Picture_details .details_top .page_wrap_box span{
    color: #121212 !important;
    font-family: 微软雅黑 !important;
} */
.Picture_details .details_top .page_wrap_box table{
    width: 100% !important;
    /* color: #121212 !important;
    font-family: 微软雅黑 !important; */
}
.Picture_details .details_top .page_wrap_box table td{
    word-break: break-all;
    border-color: #cccccc !important;
    border-width: 1px!important;
    border-style: solid!important;
    padding: 1% !important;
    /* color: #121212 !important;
    font-family: 微软雅黑 !important; */
}
.Picture_details .details_bottom {
    text-align: right;
    padding-bottom: 60px;
}
.Picture_details .details_bottom a {
    font-size: 18px;
    color: #2c6fb6;
    margin-left: 30px;
}
/***************************内页详情 end************************/
























/*内页*/
.ney-banner img{width: 100%;}
/*案例*/
.ney-nav ul{display:flex;justify-content:flex-start;flex-wrap:wrap;}/* 使用伪元素辅助左对齐 */
.ney-nav ul li{border:1px solid #000;width:120px;line-height:40px;text-align:center;height:40px; margin: 10px;}
.ney-nav ul li:hover{background-color:#264ad1;color: #fff;}
.ney-nav .container::after{content:'';flex: auto;/*或者flex:1*/}
/*新闻*/
.Lj-Tz-ney .new .li{border-bottom: 1px solid #e9e9e9;line-height: 64px;height: 64px;}
.Lj-Tz-ney .new  img{display: block;margin-right: 16px;margin-top: 30px;}
.Lj-Tz-ney .new  span{color: #808080;}
.Lj-Tz-ney .new  p span{transition:all .6s ease-in-out 0s;-webkit-transition:all .6s ease-in-out 0s;-moz-transition:all .6s ease-in-out 0s; -ms-transition:all .6s ease-in-out 0s; -o-transition:all .6s ease-in-out 0s; }
.Lj-Tz-ney .new  p span{width: 0;height:1px;display:inline-block;vertical-align:middle;background:#264ad1;opacity:0;}
.Lj-Tz-ney .new  .li:hover p span{width:30px;opacity:1;margin-right:15px;}
.Lj-Tz-ney .new  p{margin-left: 60px;}
/*总经理致辞*/
.Lj-address-ney{margin-bottom: 60px;}
.Lj-address-content{margin-bottom: 60px;}
.Lj-address-content .address-img{width:197px;height:197px;margin: 0 auto;}
.Lj-address-content .address-img img{display:block;width:100%;}
.Lj-address-content h1{margin-top: 30px;}
.Lj-address-content span{color: #9a9a9a;font-size: 12px;}
.Lj-address-content .vertical{width: 1px;height: 15px;background-color: #000;margin: 0 auto;margin-top: 6px;margin-bottom: 13px;}
.Lj-address-content p{font-size: 16px;line-height:30px;min-height: 60px; text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow: hidden;}
