/**
 * 站点公共CSS
 * @作者 苏相锟 <admin@phpok.com>
 * @主页 https://www.phpok.com
 * @版本 5.x
 * @授权 GNU Lesser General Public License  https://www.phpok.com/lgpl.html
 * @时间 2021年1月8日
**/

:root {
  --blue: #1D5595;
  --darkblue:#093361;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #E77717;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #1D5595;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #E77717;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

a{
	color: #3c3c3c;
}
a:hover{
	text-decoration: none;
}
p,h1,h2,h3,h4,h5,h6{
	margin-bottom: 0;
}

.logo{
	max-width:100%;
}

.btn-primary{
	background-color:var(--blue);
	border:0;
}
.btn-primary:hover{
	background-color:var(--darkblue);
}

.bg-nav{
	background-color:var(--blue) !important;
	height:10px;
}

.border-primary{
	border-color:var(--blue) !important;
}

.border-dotted{
	border-style:dashed;
}

.text-warning{
	color:var(--warning) !important;
}

.list-group-item.active{
	background-color:var(--orange);
	border-color:var(--orange);
	color:var(--light);
}

.list-group-item.active a{
	color:var(--light);
}

/* 单行省略号 */
.text-1 {
  -webkit-line-clamp: 1;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* 两行省略号 */
.text-2 {
  -webkit-line-clamp: 2;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}


.more{
	font-size:1rem;
	float:right;
}
.width_16{
	width:16px;
	height:16px;
}

.hand{
	cursor:pointer;
}

.bg-light-50{
	background-color:rgba(255,255,255,0.5);
}
.border-light-50{
	border-color:rgba(255,255,255,0.5);
}

.page-link{
	color:var(--blue);
}
.page-item.active .page-link{
	background-color:var(--darkblue);
	border-color:var(--darkblue);
}

footer{
	background: #19202a;
	color: #b1b0b5;
}
footer a{
	color: #b1b0b5;
}
footer hr{
	border-color: #565b5f;
}
footer span,footer h5{
	color: #fff;
}
footer h6{
	font-size: 14px;
}

select + select{
	margin-top:0.5em;
}

select + input{
	margin-top:0.5em;
}

/* 独立页面样式 */
.l-height{
	line-height:170%;
}


/* 任意页返回头部 */
.toTop{
	border:4px solid var(--blue);
	border-radius:100%;
	line-height:34px;
	text-align:center;
	color:var(--blue);
	background:#fff;
	cursor: pointer;
}



.content{ line-height:170%;font-size:1em;font-weight:500;}
.content p{ margin-bottom:1em;}
.content img{
	max-width:100% !important;
	height:auto;
}
.content table {border: 1px solid #ddd;border-collapse: collapse;display: table;margin:auto;}
.content table td {border: 1px solid #ddd;padding: 5px 10px;}
.content table th {border: 1px solid #ddd;background-color: #f7f7f7;padding: 5px 10px;}
.content blockquote{
	margin:1em 0;border:1px solid #efefef;background:#fcfcfc;padding:0.5em 1em;
}

/* 管理员回复评论信息 */
fieldset.admin-reply{
	border:1px solid #ccc;
	padding:0.5em;
	background:#fff;
	box-shadow:2px 2px #ddd;
}
fieldset.admin-reply legend{
	width:auto;
	padding:0 1em;
	font-size:0.8em;
	margin-left:2em;
}

fieldset.admin-reply + fieldset.admin-reply{
	margin-top:1em;
}


/* 产品属性 */
div.attr{border:1px solid #ccc;margin-bottom:5px;line-height:26px;padding:3px 10px;cursor:pointer;}
div.attr.selected{border:1px solid var(--orange);background-color:var(--orange);color:var(--white);}

ul.radio li label{
	padding:0.25em 1em;
}

ul.radio li label input[type=radio]{
	margin-left:-1em;
	margin-top:0.1em;
}

header .topnav{
	line-height: 40px;
	border-bottom:1px solid #eee;
    background:#FEFEFE;
    color:var(--dark);
}
header .topnav a{
    color:var(--dark);
}

header .menu a{
	font-size:1.2rem;
	color:var(--dark);
}

.headnav{
	background:#fff;
	background:relative;
	width:100%;
	margin:0 auto;
	z-index:99999;
	box-shadow:2px 2px 3px rgba(0, 0, 0, 0.5);
}

.index-search{
	background:var(--primary);
	padding:1em 0;
	color:var(--white);
}

.index-search a{
	color:var(--white);
}

.index-search .bg-orange{
	background-color:var(--orange);
	border-color:var(--orange);
}

.index-search .bg-orange:hover,.index-search .bg-orange:active{
	background-color:var(--orange);
	border-color:var(--orange);
}

.tab-pane img{
	max-width:100%;
	height:auto !important;
}

.bg-default{
	background-image:url('../images/banner-bg.svg');
	background-size:cover;
	background-repeat:no-repeat;
	background-position: center center;
}

.avatar{
	width:50px;
	height:50px;
	border-radius:50%;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.avatar-small{
	width:26px;
	height:26px;
	border-radius:50%;
	background-color: #fff;
	border: 1px solid #dee2e6;
}


/* 在线客服 */
.kfonline{
	position: fixed;
	bottom: 60px;
	right: 0;
	z-index: 999999;
	width:180px;
	display: none;
}
.kfonline .card-header{
	cursor: pointer;
}

.kfonline-icon{
	position: fixed;
	bottom: 60px;
	right: 15px;
	z-index: 999999;
	width:40px;
	height:40px;
	cursor: pointer;
	color:var(--blue);
	border:4px solid var(--blue);
	border-radius:100%;
	line-height:36px;
	text-align:center;
	background:#fff;
}


/* 计数器 开始 */
.numbers{
	list-style:none;
	margin:0;
	padding:0;
}
.numbers li{
	position: relative;
	color:#1B1B1B;
	text-align:center;
}
.numbers li .count{
	font-size:60px;
	font-weight:400;
}
.numbers li sup{
	vertical-align: top;
	font-size:30px;
	top:0.5em;
}
.numbers li .title{
	color:#525252;
	font-size:20px;
}
/* 计数器 结束 */

.headnav h2{
	color: #36498b;
	font-size: 42px;
}
.headnav h4{
	font-weight: bold;
	font-size: 18px;
}
.headnav h5{
	font-size: 15px;
}
.headnav .tel{
	background: url(../images/tel.png)left center no-repeat;
}
.headnav h6{
	color: #144089;
	font-weight: bold;
	font-size: 25px;
}
.headnav small{
	font-size: 12px;
	color: #000;
}
.headnav p{
	color: #2a69ca;
	font-weight: bold;
	font-size: 18px;
	line-height: 20px;
}
.navb{
	background: #1a2d79;
}
.navb li>a{
	color: #fff;
	font-weight: bold;
}
.mnav{
	display: none;
}
@media screen and (max-width: 990px){
	.headnav .text ,.headnav .tel{
		display: none!important;
	}
}
.search .text{
	border-left: 4px solid #1a2d7a;
	color: #9e9e9e
}
.search a{
	color: #9e9e9e
}
.search input{
	border: 0;
	font-size: 14px;
	color: #a6a6a8;
}
.search button{
	background: none;
	border: 0;
}
.itit h1{
	font-weight: bold;
	text-align: left!important;
}
.itit h4{
	color: #676364;
}
.itit p{
	width: 30px;
	height: 5px;
	background: #1a2d79;
}
.ipro{
	background: url(../images/pbg.jpg) center top no-repeat;
}
.ipro .more{
	display: block;
	background: #1a2d79;
	color: #fff;
	height: 3.4rem;
}
.ipro .more i{
	transform: rotate(-45deg);
}
.ipro .tiems{
	position: relative;
	min-height: 300px;
	overflow: hidden;
}
.ipro .col:nth-child(2n-1) .tiems{
	margin-top: 5rem;
}
.ipro .tiems img{
	transition: .5s;
}
.ipro .tiems .num{
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	color: #fff;
}
.ipro .tiems .text1{
	position: absolute;
	display: none;
	width: 100%;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 80%);
}
.ipro .tiems .text1 p{
	font-size: 14px;
}
.ipro .tiems .text2{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	/* display: none; */
	background: rgba(0, 0, 0, .0);
}
.ipro .tiems .text2 p{
	font-size: 14px;
}
.ipro .tiems .text2 h6{
	font-size: 14px;
}
.ipro .tiems .text2 h3{
	width: 100%;
	text-align: center;
	position: absolute;
	top: 40%;
	right: -100%;
	color: #1a2d79;
	transition: .5s;
}
/* .ipro .tiems .text2 a{
	color: #fff;
	display: block;
	width: 45%;
	font-size: 14px;
	background: #1a2d79;
} */
.ipro .tiems:hover img{
	transform: scale(1.2);
}
.ipro .tiems:hover .text1{
	display: none;
}
.ipro .tiems:hover .text2{
	display: block;
}
.ipro .tiems:hover .text2 h3{
	right: 0;
}
@media screen and (max-width: 990px){
	.ipro .col:nth-child(2n-1) .tiems{
		margin-top: 0;
	}
}

.iab{
	background: url(../images/cb.jpg) bottom center no-repeat;
}
.iab p{
	font-size: 14px;
	line-height: 2;
	color: #444;
}
.iab .more1{
	display: block;
	background: #1a2d79;
	color: #fff;
	width: 120px;
	line-height: 36px;
	text-align: center;
	border-radius: 5px;
	font-size: 14px;
}
.iab h1{
	text-align: center;
	font-weight: bold;
}
.iab .text p{
	font-size: 18px;
}
.iab .more2{
	display: block;
	background: #1a2d79;
	color: #fff;
	width: 160px;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
}

.inews .nc p{
	width: 150px;
	line-height: 3;
	font-size: 14px;
	border: 1px solid #1a2d79;
	text-align: center;
	color: #8f8f8f;
}
.inews .nc p.on{
	background: #1a2d79;
	color: #fff;
}
.inews .box{
	height: 300px;
}
.inews .box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.inews .right .text{
	border: 1px solid #c7c7c7;
}
.inews .text h4{
	font-weight: bold;
	font-size: 50px;
	color: #626262;
}
.inews .text h5{
	color: #9c9c9c;
}
.inews .text p{
	font-size: 14px;
	color: #918f90;
}
.inews .text .con{
	border-left: 1px solid #c7c7c7;
}
.inews .news{
	display: none;
}
.inews .news:first-child{
	display: block;
}
@media screen and (max-width: 990px){
	.inews .box{
		height: 200px;
	}
	.inews .right .text{
		border: 0;
	}
}


.ptit{
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e5e5e5;
}
.ptit h5{
	border-left: 4px solid #e42127;
}
.ptit a{
	color: #555;
}
.pcate .pct{
	background: #009de2;
	color: #fff;
}
.pcate .pct span{
	font-size: 12px;
}
.pcate .pcc{
	background: #edf1f4;
}
.pcate .pcc span{
	color: #707070;
	font-size: 12px;
}

.pa .con{
	line-height: 2;
}
.pa .fac img{
	object-fit: cover;
	width: 100%;
	height: 250px;
	transition: .5s;
}
.pa .fac img:hover{
	transform: scale(1.2);
}

.pc .row{
	color: #656565;
	line-height: 2;
}

.pj .col-12,.year .col{
	border-bottom: 1px dashed #b7b7b7;
}

.pj .col-12 h5,.year .col h5{
	font-weight: bold;
	color: #014195;
	line-height: 1.5;
}
.pj h6{
	font-weight: bold;
	color: #2c2c2c;
	font-size: 18px;
	line-height: 1.8;
}
.pj .col-12 p,.year .col p{
	color: #7b7b7b;
	font-size: 14px;
	line-height: 1.5;
}
.pj .col-12 p:first-child{
	width: 50%;
}

.pn .news{
	border-bottom: 1px dashed #b7b7b7;
}
.pn .news .date{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 80px;
	width: 80px;
	background: #bbb;
	color: #fff;
	line-height: 0.8;
}
.pn .news .date span{
	font-size: 20px;
	font-weight: bold;
}
.pn .news .text{
	flex: 0 0 80%;
}
.pn .news .text h5{
	font-weight: bold;
	color: #014195;
}
.pn .news .text h5::before{
	content: '▶';
	color: #a3a3a3;
	font-size: 12PX;
	margin-right: .8rem;
}
.pn .news .text p{
	font-size: 14px;
	color: #7b7b7b;
}
.pp .imgbox img{
	object-fit: cover;
	width: 100%;

}


















/* swiper */
.swiper-container{
	overflow: hidden;
}

.swiper-slide img{
	object-fit: cover;
	height: 300px;
}