/*初始化样式*/
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100px;
}

html body {
	line-height: 1.5;
	font-size: 14px;
}

/*body::-webkit-scrollbar {*/
/*	width: 0px;*/
/*}*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	letter-spacing: 1px;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	padding: 0;
	border: 0;
	background: 0;
}

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	outline: none;
}

textarea {
	resize: none;
}

img {
	border: 0;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	outline: none;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
	
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	outline: none;
	text-decoration: none;
}

ul,
li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
	overflow: hidden;
}

.clear-p-t {
	padding-top: 0 !important;
}

.clear-margin {
	margin: 0 !important;
}

.clear-b-margin {
	margin-bottom: 0 !important;
}



/*初始化样式结束*/
/*公共样式*/
i {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.flex {
	display: -webkit-flex;
	display: flex;
}

.flex1 {
	-webkit-flex: 1;
	flex: 1;
}

.flex-leftCenter {
	display: flex;
	align-items: center;
}

.flex-between {
	display: flex;
	justify-content: space-between;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.lsd-content {
	padding-top: 70px;
}
.flex-around-center {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.show-pc-banner {
	display: block;
}
.show-module-banner {
	display: none;
}
/*滚到顶部*/
.lsd-fixbar {
	display: none;
	position: fixed;
	right: 15px;
	bottom: 20px;
	z-index: 99;
}
.lsd-fixbar .lsd-fixbar-item {
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin-bottom: 1px;
	text-align: center;
	cursor: pointer;
	font-size: 30px;
	color: #fff;
	border-radius: 5px;
	opacity: .95;
	background-color: rgba(0, 105, 234, 1);
	box-shadow: 0 2px 6px 0 rgba(79, 79, 79, 0.4);
}
/* 新加的图片放大 */
.banner-wrap .banner-imgs {
	width: 100%;
	height: 100%;
	transform: scale(1);
	object-fit: cover;
	position: absolute;
	transition: all 1s;
	z-index: 1;
}
.banner-wrap:hover .banner-imgs {
	transform: scale(1.1);
}
.lsd-fixbar-icon {
	transform: rotate(-90deg);
	cursor: pointer;
}

.flex-rightCenter {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.flex-vertical {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.flex-start {
	align-items: flex-start;
}

.flex-end {
	align-items: flex-end;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}
.lsd-content-wrap {
    max-width: 1440px;
    margin: 0 auto;
}
.lsd-top-60 {
	padding-top: 60px;
}
.lsd-bottom-60 {
	padding-bottom: 60px;
}
.lsd-60 {
	padding: 60px 0;
}

/* 字体大小类 */
.lsd-fs-12 {
	font-size: 12px;
}
.lsd-fs-14 {
	font-size: 14px;
}
.lsd-fs-16 {
	font-size: 16px;
}
.lsd-fs-18 {
	font-size: 18px;
}
.lsd-fs-20 {
	font-size: 20px;
}
.lsd-fs-24 {
	font-size: 24px;
}
.lsd-fs-32 {
	font-size: 32px;
}
.lsd-fs-36 {
	font-size: 36px;
}
.lsd-text-white {
	color: #FFFFFF !important;
}
.lsd-text-gray {
	color: #94A3B8 !important;
}
/* 文字超出显示... */
.four-line-ellipsis {
   display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* 显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.three-line-ellipsis {
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* 显示的行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.two-line-ellipsis {
   display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.one-line-ellipsis {
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 1; /* 显示的行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.viewer-container {
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
	.show-module-banner h2 {
		font-size: 24px;
	}
	.show-pc-banner {
		display: none !important;
	}
	.show-module-banner {
		display: block;
	}
	/* 手机端模块统一样式规范 */
	/* 模块section内边距 */
	.lsd-section-mobile {
		padding: 40px 15px !important;
	}
	/* 结束 */
}

/* 模块头部统一样式 - PC端 */
.lsd-module-header {
	text-align: center;
	margin-bottom: 40px;
}
.lsd-module-header-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
}
.lsd-module-title {
	font-size: 28px;
	font-weight: bold;
	color: #111827;
	text-align: center;
	margin-bottom: 12px;
}
.lsd-module-subtitle {
	text-align: center;
	font-size: 16px;
	color: #6B7280;
}
/* 每个产品页面的banner样式 */
.pc-gov-banner {
	height: 400px;
	overflow: hidden;
	position: relative;
	background-size: cover !important;
}
.gov-pc-text {
	position: relative;
	height: 100%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gov-pc-text-title {
	font-size: 18px;
	color: #374151;
}
.gov-pc-text h1 {
	margin: 10px 0;
	font-size: 40px;
}
.gov-pc-text-sub {
	font-size: 18px;
	font-weight: bold;
	margin-left: 8px;
}
.gov-pc-text-desc {
	font-size: 16px;
	margin-bottom: 10px;
	color: #646464;
	max-width: 60%;
}
.gov-pc-text-btn {
	display: flex;
	margin-top: 15px;
}
.gov-pc-text-btn .lsd-header-btn{
	width: 125px;
	height: 50px;
	background-color: #0069EA;
	color: #FFFFFF;
	border-radius: 5px;
	text-align: center;
	line-height: 50px;
	cursor: pointer;
	margin-right: 20px;
}
.gov-pc-text-btn .lsd-header-btn-apply {
	background-color: transparent !important;
	border: 1px solid #0069EA !important;
	color: #0069EA !important;
}
/* 结束 */

/* 手机端模块统一样式规范 */
@media screen and (max-width: 768px) {
	/* 每个产品页面的banner样式 */
	.show-module-banner-top {
			width: 100%;
			height: 160px;
			overflow: hidden;
	}
	.ba-img-module {
		width: 100%;
		height: 100%;
		object-fit: cover;
  }
	.banner-wrap-module {
	  background: linear-gradient(180deg, rgba(237, 244, 252, 0) 0%, rgba(235, 243, 251, 1) 51.3%, rgba(225, 235, 255, 1) 98%);
	}
	.banner-wrap-module .gov-pc-text  {
		text-align: center;
		padding: 15px 15px 30px;
	}
	.gov-pc-text-title {
		font-size: 12px;
	}
	.gov-pc-text-desc {
		max-width: none;
		font-size: 12px;
	}
	.gov-pc-text h1 {
		font-size: 24px;
	}
	.look-video-item {
		border-radius: 4px;
		background-color: rgba(0, 105, 234, 1);
		color: rgba(255, 255, 255, 1);
		font-size: 14px;
		padding: 5px;
		margin-top: 10px;
		text-align: center;
	}
	.look-video-item a{
		color: rgba(255, 255, 255, 1);
		font-size: 14px;
	}
	/* 结束 */
	/* 模块头部统一样式 - 手机端 */
	.lsd-module-header {
		margin-bottom: 24px;
	}
	.lsd-module-header-flex {
		margin-bottom: 24px;
	}
	.lsd-module-title {
		font-size: 20px;
		margin-bottom: 8px;
	}
	.lsd-module-subtitle {
		font-size: 14px;
	}
	/* 结束 */
}

@media screen and (min-width: 1440px) and (max-width: 1580px) {
    .lsd-header-container,
	.lsd-content-wrap,
	.lsd-footer-container,
	.layui-carousel-ind ul {
        padding: 0 130px !important;
        box-sizing: border-box;
    }
	.lsd-nav {
		padding: 0 !important;
	}
}
@media screen and (min-width: 1200px) and (max-width: 1440px) {
    .lsd-header-container,
	.lsd-content-wrap,
	.lsd-footer-container,
	.layui-carousel-ind ul {
        padding: 0 80px !important;
        box-sizing: border-box;
    }
	.lsd-nav {
		padding: 0 !important;
	}
}