/* 重置浏览器默认样式 */
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-family: '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;
    transition: color .2s ease-in-out, 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; }
.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;
    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;
} */
.button_03{
    width: 255px;
    position: relative;
    /* display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; */
}
.button_03::before {
    content: '';
    width: 0%;
    height: 1px;
    left: 0;
    top: 0;
    background: #2c6fb6;
    position: absolute;
    z-index: 2;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.button_03::after {
    content: '';
    width: 0%;
    height: 1px;
    right: 0;
    bottom: 0;
    background: #2c6fb6;
    position: absolute;
    z-index: 2;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.button_03 .a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #2c6fb6;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    border: 1px solid transparent;
    /* border: 1px solid #000; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: relative;
}
/* .button_03 .a svg {
    margin-right: 0.1rem;
} */
.button_03 .a svg path {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.button_03 .a::before {
    content: '';
    width: 1px;
    height: 100%;
    left: -1px;
    top: 0;
    background: #2c6fb6;
    position: absolute;
    z-index: 2;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.button_03 .a::after {
    content: '';
    width: 1px;
    height: 0%;
    right: -1px;
    bottom: 0;
    background: #2c6fb6;
    position: absolute;
    z-index: 2;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.button_03:hover::before {
    width: 100%;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.button_03:hover::after {
    width: 100%;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.button_03:hover .a {
    background: transparent;
    color: #2c6fb6;
}
.button_03:hover .a::before {
    height: 100%;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.button_03:hover .a::after {
    height: 100%;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.button_03:hover .a svg path {
    fill: #2c6fb6;
}
a:hover { 
    text-decoration: none; 
}

/* 输入框占位符样式 */
::-webkit-input-placeholder { color: #808080; font-size: 14px; }
:-moz-placeholder { color: #808080; font-size: 14px; }
::-moz-placeholder { color: #808080; font-size: 14px; }
:-ms-input-placeholder { 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;
}
/*通用标题*/
.Hd-title-box{
    margin: 60px 0 60px 0;
}
.Hd-title-box h1{
    font-size: 30px;
    text-align:center;
    margin-bottom:20px;
}
.Hd-title-box span{
    width: 60px;
    height: 2px;
    display: block;
    background-color: #121212;
    margin: 0 auto;
}
.Hd-title-box p{
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}
/***************************顶部导航***************************/
.Hd-logo-nav{
    width: 100%;
    height: 92px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
    margin: 0 auto;
}
.Hd-logo-nav .content{
	display: flex;
    /*垂直居中*/
	align-items: center;
    /*两端对齐，项目之间的间隔都相等。*/
	justify-content: space-between;
}
/*logo*/
.Hd-logo-nav .Hd-logo img{
    display:block;
    height: 92px;
}
/*pc导航*/
.Hd-nav{
	display: flex;
    /*右对齐*/
	justify-content:flex-end;
    /*垂直居中*/
	align-items: center;
}
.Hd-nav ul .firstLi {
	text-align: center;
	float: left;
	display: inline;
	position: relative;
    margin-right: 50px;
}
.Hd-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;
}
.Hd-nav ul .firstLi:hover:before{ 
    width:100%; 
    transition: all 0.3s ease;
}
.Hd-nav ul .firstLi:hover .nav_list_title{ 
    color:#2c6fb6;
}
.Hd-nav ul .firstLi .First{
	text-align: center;
	color:#121212;
	font-size: 16px;
    line-height: 92px;
	text-decoration: none;
	display: block;
}
.Hd-nav ul .firstLi:hover {
	color: #2c6fb6;
}
.Hd-nav ul .firstLi:hover .First{
	color: #2c6fb6;
}
.Hd-nav ul .firstLi .First:hover {
	color: #2c6fb6;
	text-decoration: none;
}
.Hd-nav ul .firstLi:hover ul {
	display: block;
}
.Hd-nav ul .firstLi:hover ul li {
	height: auto;
	position: relative;
	min-height: 40px;
}
.Hd-nav ul .firstLi:hover ul li ul {
	display: none;/*三级*/
}
.Hd-nav ul li ul {
	display: none;
}
.Hd-nav ul li ul {
	background: #fff;
    color: #121212;
    width: 240px;
    position: absolute;
    top: 92px;
    left: -88px;
    z-index: 999;
}
.Hd-nav ul li .secondLi {
    position: relative;
	width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 45px;
    border-bottom: 1px solid #dcdcdc;
}
.Hd-nav ul li ul .secondLi a:hover {
	color: #2c6fb6;
}
.Hd-nav ul li ul .secondLi:hover ul {
	display: block;
}
.Hd-nav ul li ul li ul {
	left: 240px;
	top: 0px;
	display: none;
	position: absolute;
	z-index: 23;
}
.Hd-nav ul li ul li ul li:hover a {
	color: #121212;
}
.Hd-nav ul li ul li ul .thirdLi a {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 45px;
    border-bottom: 1px solid #dcdcdc;
}
.Hd-nav ul li ul li ul .thirdLi:hover a{
	color: #2c6fb6;
}
.Hd-nav .en{
    color: #121212;
    line-height: 16px;
    font-size: 16px;
}
.Hd-nav .en:hover a{
    color: #2c6fb6;
}
/*移动端导航*/
.Hd-logo-nav #navToggle {
	display: none;
}
.m_nav {
    display: none;
}
/***************************顶部导航 end***********************/
/***************************轮播图*****************************/
.Hd-banner {
    margin-top: 92px;
    width: 100%;
}
.Hd-content-img {
    width: 100%;
}
.Hd-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Hd-banner .swiper-container {
    height: 100%;
    width: 100%;
}
.Hd-banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: #2c6fb6;
}
.Hd-banner .swiper-container-horizontal>.swiper-pagination-bullets,
.Hd-banner .swiper-pagination-custom,
.Hd-banner .swiper-pagination-fraction {
    bottom: 10px;
}
.Hd-banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}
.Hd-content {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.Hd-Txt{
    z-index: 11;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}
.Hd-Txt .Hd-cn {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 31px;
}
.Hd-Txt .Hd-en {
    color: #fff;
    font-size: 50px;
    letter-spacing: 3px;
    font-weight: bold;
    line-height: 1;
    display: block;
}
.Hd-Txt .Hd-label{
    color: #fff;
    font-size: 16px;
    margin-top: 30px;
}
.Hd-Txt .Hd-inner {
    position: relative;
}
/***************************轮播图 end*************************/
/***************************关于我们***************************/
.Hd-about-us{
    overflow: hidden;
}
.Hd-about-us .content{
    width: 100%;
    overflow: hidden;
}
.Hd-about-us .w570{
    width: 49%;
}
.Hd-about-us .fl .about-us-bottom{
    float: left;
}
.Hd-about-us .about-us-title{
    margin-bottom: 35px;
    margin-top: 24px;
}
.Hd-about-us .about-us-title p{
    font-size: 30px;
}
.Hd-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;
}
.Hd-about-us .about-us-img{
    width: 100%;
    position: relative;
    padding-top: 67%;
    margin: 0 auto;
    overflow: hidden;
	transition: all 1s;
}
.Hd-about-us .about-us-img img{
    position:absolute;
    top: 0;
    left: 0%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.Hd-about-us .Hd-about-bottom{
    overflow: hidden;
    width: 100%;
}
.Hd-about-us .Hd-about-bottom ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;/*两端对齐*/
	overflow: hidden;
}
.Hd-about-us .Hd-about-bottom ul li{
    width: 25%;
    text-align: center;
    font-size: 24px;
}
.Hd-about-us .Hd-about-bottom .num-div {
	text-align: center;
	color: #2c6fb6;
}
.Hd-about-us .Hd-about-bottom i{
    font-size: 14px;
}
.Hd-about-us .Hd-about-bottom span{
	font-size: 50px;
	font-weight: 600;
	line-height: 1;
	font-family: 'BarlowCondensed';
	position: relative;
	font-style: inherit ;
}
.Hd-about-us .Hd-about-bottom li:nth-child(4) .count-list span{
	font-size: 42px;
}
.Hd-about-us .Hd-about-bottom li:nth-child(4) .introduce p{
	margin-top: 10px;
}
.Hd-about-us .Hd-about-bottom b {
	font-size: 16px;
	color: #858585;
	margin-left: 25px;
}
.Hd-about-us .Hd-about-bottom .introduce p {
	margin-top:5px;
	border-bottom: none;
	font-size: 13px;
    color: #999;
}
.Hd-about-us .Hd-about-bottom .introduce img,
.Hd-about-us .Hd-about-bottom .num-div img {
	display: block;
	width: 22px;
	height: 22px;
	margin-right: 10px;
}
/***************************关于我们 end***********************/
/***************************案例展示 **************************/
.Hd-case #wrap{
    padding:0 110px 0 110px;
}
.Hd-case #wrap ul{
    overflow: hidden;
}
.Hd-case #wrap ul li a{
    display: block;
}
.Hd-case #wrap ul li{
    width:23%;
    list-style:none;
    position:relative;
    float:left;
    overflow:hidden;
    margin-bottom: 2.65%;
    margin-left: 2.65%;
}
.Hd-case #wrap ul li:nth-child(4n+1) {
    margin-left: 0px;
}
.Hd-case #wrap ul li .case_img{
    width: 99%;
    position:relative;
    padding-top: 100%;
    margin: 0 auto;
    overflow: hidden;
	transition: all 1s;
    border: 1px solid #e3e3e3;
}
.Hd-case #wrap ul li .case_img img{
    position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.Hd-case #wrap ul li .case_img .divA{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background:rgba(0,0,0,.5);
}
.Hd-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;
}
.Hd-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;
}
.Hd-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;
}
.Hd-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;
}
.Hd-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;
}
.Hd-case .button_03{
    margin: 0 auto;
}
/***************************案例展示 end***********************/
/***************************专注于涂装*************************/
/* .Hd-Tz ul{
    overflow: hidden;
}
.Hd-Tz ul li{
    float: left;
    margin-left: 23px;
    margin-bottom: 60px;
    width: 32%;
}
.Hd-Tz ul li:nth-child(3n+1) {
    margin-left: 0px;
}
.Hd-Tz ul li .Hd-Tz-fl{
    overflow: hidden;
    float: left;
}
.Hd-Tz ul li .Hd-Tz-fr{
    width:84%;
}
.Hd-Tz ul li:hover .Hd-Tz-fr p{
    color: #2c6fb6;
}
.Hd-Tz ul li .Hd-Tz-fr span{
    font-size:24px;
    line-height: 24px;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    overflow: hidden;
}
.Hd-Tz ul li .Hd-Tz-fr p{
    font-size: 14px;
    line-height: 26px;
    color:#858585;
    margin-top: 10px;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 80px;
} */
/***************************专注于涂装 end**********************/
/***************************新闻*******************************/
.Hd-new{
    background-color: #eff3f6;
    overflow: hidden;
    padding-bottom: 60px;
}
.Hd-new .testimonial_slider .testimonial-item {
	border-color: #e4e4e4;
}
.Hd-new .testimonial_slider .owl-controls .owl-dots .owl-dot.active span {
	background: #2c6fb6;
	border-radius: 100px;
}
.Hd-new .owl-dots {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.Hd-new .section-header {
	text-align: center;
}
.Hd-new .testimonial_slider .testimonial-item {
	text-align: center;
	z-index: -1
}
.Hd-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;
}
.Hd-new .testimonial_slider .testimonial-item p{
	font-size: 14px;
	color: #999;
	line-height: 22px;
	text-align: center;
}
.Hd-new .testimonial_slider .testimonial-item .time{
	line-height: 14px;
    text-align: center;
    margin-top: 15px;
    font-family: Arial;
}
.Hd-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;
}
.Hd-new .testimonial_slider .swiper-pagination {
    position: relative;
    margin-top: 20px;
}
.Hd-new .testimonial_slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 8px;
    background: #2c6fb6;
}
.Hd-new .button_03{
    margin: 0 auto;
    margin-top: 70px;
}
/***************************新闻 end***************************/
/***************************底部 ******************************/
.Hd-footer-box{
    background-color:#3a3a3a;
    overflow: hidden;
    padding: 60px 0 0 0;
    font-family: Arial;
}
.Hd-footer-box .container{
    overflow: hidden;
}
.Hd-footer-box .contact_information ul li{
    overflow:hidden;
    margin-bottom:30px;
}
.Hd-footer-box .contact_information ul li .information{
    margin-left:15px;
}
.Hd-footer-box .contact_information ul li .information span{
    font-size:18px;
    color:#fff;
}
.Hd-footer-box .contact_information ul li .information p{
    font-size:12px;
    color:#999;
    line-height: 24px;
}
.Hd-footer-box .Hd-footer-nav dl{
    float:left;
    margin-left: 20px;
}
.Hd-footer-box .Hd-footer-nav dl dt{
    color:#fff;
    font-size:14px;
    font-weight: normal;
    margin-bottom: 25px;
}
.Hd-footer-box .Hd-footer-nav dl dd a{
    color:#808080;
    font-size:12px;
    line-height:26px;
}
.Hd-footer-box .Hd-footer-nav dl dd a:hover{
    color: #fff;
}
.Hd-footer-box .Hd-footer-bottom{
    color:#999;
    font-size: 12px;
    margin-top: 10px;
    padding-top: 10px;
}
.Hd-footer-box .Hd-footer-bottom p{
    text-align: center;
    line-height: 30px;
}
.Hd-footer-box .Hd-footer-bottom p a{
    color:#999;
}
.Hd-footer-box .Hd-footer-bottom p a:hover{
    color: #fff;
}
/***************************底部 end***************************/
/*内页大图*/
.Inside_banner{
	width: 100%;
    position:relative;
    /* padding-top: 18%; */
    padding-top: 23.666%;
    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*/
/***************************内页公共导航路径 *******************/
.Page_nav{
    line-height: 70px;
    overflow: hidden;
    border-bottom: 1px solid #e3e3e3;
    font-size:14px;
}
.Page_nav .fl p a{
    color: #121212;
    font-size:14px;
}
.Page_nav .fr ul li{
    float:left;
    margin-left:40px;
    font-size: 14px;
    color: #121212;
}
.Page_nav .fl p a:hover{
    color: #2c6fb6;
}
/***************************内页公共导航路径 end****************/
/*************************************页码 ********************/
.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*****************/
/***************************内页新闻 **************************/
.Page_new{
    overflow: hidden;
    margin-top: 60px;
    min-height: 800px;
}
.Page_new .ul_new li{
    overflow: hidden;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e3e3e3;
}
.Page_new .ul_new li a{
    display: block;
}
.Page_new .synopsis_right{
   overflow: hidden;
   padding-bottom: 10px;
}
.Page_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;
}
/*************************************页码 ********************/

.page {
    /*width: 820px;*/
    justify-content: center;
    height: 40px;
    margin-top:30px;
    margin-bottom:60px;
    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*****************/
/*鼠标经过向右移动动画*/
.Page_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; 
}
.Page_new .ul_new li .synopsis_right h3 span{
    width: 0;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    background: #2c6fb6;
    opacity: 0;
}
.Page_new .ul_new li:hover .synopsis_right h3 span{
    width: 30px;
    opacity: 1;
    margin-right: 15px;
}
/*鼠标经过向右移动动画（完）*/
.Page_new .ul_new li .synopsis_right .fr{
    float: right;
    line-height: 40px;
    font-size: 14px;
    color: #999;
}
.Page_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***********************/
/***************************内页案例***************************/
.Page_case{
    margin-top: 60px;
    margin-bottom: 60px;
    min-height: 800px;
}
.Page_case .ul_case{
    overflow: hidden;
}
.Page_case .ul_case li{
    /* overflow: hidden; */
    width: 23%;
    float: left;
    margin-left: 2.666%;
}
.Page_case .ul_case li:nth-child(4n+1) {
    margin-left: 0px;
}
.Page_case .ul_case li .product_img{
    width: 100%;
    position:relative;
    padding-top: 100%;
    margin: 0 auto;
    overflow: hidden;
	transition: all 1s;
    border: 1px solid #e3e3e3;
}
.Page_case .ul_case li .product_img img{
	position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.Page_case .ul_case li:hover .product_img img{
    transform:scale(1.1);
    transition:all 1s;
}
.Page_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 .details_top{
    min-height: 500px;
}
.Picture_details .details_top img {
    /* width: 60% !important; 
    margin: 0 auto !important;
    display: block !important;
    height: auto !important;*/
    padding: 15px 0!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*/}
/*新闻*/
.Hd-Tz-ney .new .li{border-bottom: 1px solid #e9e9e9;line-height: 64px;height: 64px;}
.Hd-Tz-ney .new  img{display: block;margin-right: 16px;margin-top: 30px;}
.Hd-Tz-ney .new  span{color: #808080;}
.Hd-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; }
.Hd-Tz-ney .new  p span{width: 0;height:1px;display:inline-block;vertical-align:middle;background:#264ad1;opacity:0;}
.Hd-Tz-ney .new  .li:hover p span{width:30px;opacity:1;margin-right:15px;}
.Hd-Tz-ney .new  p{margin-left: 60px;}
/*总经理致辞*/
.Hd-address-ney{margin-bottom: 60px;}
.Hd-address-content{margin-bottom: 60px;}
.Hd-address-content .address-img{width:197px;height:197px;margin: 0 auto;}
.Hd-address-content .address-img img{display:block;width:100%;}
.Hd-address-content h1{margin-top: 30px;}
.Hd-address-content span{color: #9a9a9a;font-size: 12px;}
.Hd-address-content .vertical{width: 1px;height: 15px;background-color: #000;margin: 0 auto;margin-top: 6px;margin-bottom: 13px;}
.Hd-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;}

/***************************内页案例***************************/
.container_case{
    margin-top: 60px;
    margin-bottom: 60px;
    /* min-height: 800px; */
    min-height: 660px;
}
.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: 99%;
    position: relative;
    padding-top: 99%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 1s;
    border: 1px solid #e3e3e3;
}
.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 .Page_customer img{
    object-fit: contain;
}
.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***********************/

/**********************内页-企业资质 *************/
.page_qualification{
    overflow: hidden;
    background: #f7f7f7;
}
.page_qualification .page_qualification_content{
    overflow: hidden;
}
.page_qualification .page_qualification_content .list{
    float: left;
    box-shadow: 0px 0px 4px rgba(0,0,0,.1);
    background: #fff;
    padding: 24px;
    width: 297px;
    margin: 0 0 52px 52px;
}
.page_qualification .page_qualification_content .list:nth-child(4n+1){
    margin-left: 0px;
}
.page_qualification .page_qualification_content .list .img{
    position: relative;
    padding-top: 72%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 1s;
}
.page_qualification .page_qualification_content .list .img img{
    position: absolute;
    top: 0;
    left: 0%;
    height: 100%;
    width: 100%;
    object-fit: scale-down;
    transition: all 0.48s;
}
.page_qualification .page_qualification_content .list:hover .img img{
    transform: scale(1.1);
    transition: all 1s;
}
.page_qualification .page_qualification_content .list .tit{
    font-size: 16px;
    color: #333;
    text-align: center;
    /*单行段落*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid #f2f2f2;
    margin-top: 30px;
    padding-top: 15px;
}
/**********************内页-企业资质 end**********/