/**
 * 站点公共CSS
 * @时间 2022年3月6日
**/

: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: #05a2c9;
	--light: #f8f9fa;
	--dark: #343a40;
	--moniz-gray: #717178;
	--greytwo: #88898D;
	--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;
}

div[data-type=content] img {
	display: inline-block;
}

@-webkit-keyframes jump {
	0% {
		transform: translateY(0)
	}

	25% {
		transform: translateY(-20%)
	}

	50% {
		transform: translateY(0)
	}

	75% {
		transform: translateY(20%)
	}

	to {
		transform: translateY(0)
	}
}

@keyframes jump {
	0% {
		transform: translateY(0)
	}

	25% {
		transform: translateY(-20%)
	}

	50% {
		transform: translateY(0)
	}

	75% {
		transform: translateY(20%)
	}

	to {
		transform: translateY(0)
	}
}


body {
	font-size: 15px;
	color: var(--dark);
}

body,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select,
ol,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: var(--dark);
}

a:hover {
	color: var(--danger);
	text-decoration: none;
}

img {
	display: inline-block;
	overflow: hidden;
	max-width: 100%;
}

.f-20 {
	font-size: 20px !important;
}

.text-muted {
	line-height: 28px !important;
	color: rgba(0, 0, 0, .64) !important;
}

.logo {
	height: 50px;
}

.f-14 {
	font-size: 14px !important;
}

.f-20 {
	font-size: 20px !important;
}

.f-30 {
	font-size: 30px !important;
}

.m-t10 {
	margin-top: 10px !important;
}

.m-t20 {
	margin-top: 20px !important;
}

.m-t30 {
	margin-top: 30px !important;
}

.m-t50 {
	margin-top: 50px !important;
}

.m-t80 {
	margin-top: 80px !important;
}

.p-t10 {
	padding-top: 10px !important;
}

.p-t20 {
	padding-top: 20px !important;
}

.p-t30 {
	padding-top: 30px !important;
}

.p-b20 {
	padding-bottom: 20px !important;
}

.p-b30 {
	padding-bottom: 30px !important;
}

.p-t50 {
	padding-top: 50px !important;
}

.p-b50 {
	padding-bottom: 50px !important;
}

.p-b80 {
	padding-bottom: 80px !important;
}

.p-b100 {
	padding-bottom: 100px !important;
}

.p-tb30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.p-tb50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.p-lr20 {
	padding-left: 20px !important;
	padding-right: 20px !important;
	display: inline-block;
}

.w50 {
	width: 50%;
}

.bg-fa {
	background-color: #FAFAFA;
}

.btn-more3 a,
.btn-submit {
	display: block;
	border: 1px solid #EEEEEE;
	font-size: 16px;
	width: 240px;
	height: 60px;
	line-height: 60px;
	border-radius: 30px;
	margin: 0 auto;
	position: relative;
	transform: translateY(0);
	transition: all 0.3s;
	overflow: hidden;
}

.btn-submit {
	height: 50px;
	line-height: 46px;
	border-radius: 25px;
	border: 1px solid var(--danger);
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
	color: #FFFFFF;
}

.btn-submit:hover {
	background-image: linear-gradient(90deg, #00c78b 18%, #02a1f9 80%);
}

.btn-more2 a {
	border-radius: 10px;
	border-color: #05a2c9;
	color: #05a2c9;
}

.btn-more2.btn-more3 a::before {
	border-radius: 10px;
}

.btn-more3 a::before {
	display: block;
	content: "";
	position: absolute;
	z-index: -1;
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
	border-radius: 30px;
	height: 60px;
	width: 0;
	transition: width 0.3s;
}

.btn-more3 a:hover::before {
	width: 100%;
	border: 0px;
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
}

.btn-more3 a:hover {
	color: #FFFFFF;
}

.btn-more3 .fa {
	font-size: 22px;
	position: absolute;
	padding-left: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.btn-more3 a:hover .fa {
	padding-left: 15px;
}

a.btn-case2 {
	color: #fff;
	border-color: #FE7E39;
	background-image: linear-gradient(45deg, #FE8C4F 6.54%, #FE7E39 21.35%, #f56f26 64.03%, #FD7328 92.78%);
}

a.btn-more4,
.btn-more4 {
	width: 120px;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	margin-left: 50px;
	display: inline-block;
	color: #FFFFFF;
	border: 1px solid var(--danger);
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
}

a.btn-reg4 {
	height: 32px;
	line-height: 30px;
	border-radius: 16px;
	padding: 0 20px;
	display: inline-block;
	color: #FFFFFF;
	transition: all 0.3s;
	border: 1px solid var(--danger);
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
}

a.btn-reg4:hover {
	background-color: #05a2c9;
}

.btn-primary {
	background-color: var(--blue);
	border: 0;
}

.btn-primary:hover {
	background-color: var(--darkblue);
}

.bg-nav {
	background-color: var(--blue) !important;
	height: 10px;
}

.payment-card-bottom {
	font-size: 20px;
}

.payment-card-bottom .fa-cc-visa,
.payment-card-bottom .fa-cc-paypal {
	color: var(--blue);
}

.payment-card-bottom .fa-cc-mastercard {
	color: var(--danger);
}

.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);
}

/* 单行省略号 */
.overflow1 {
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

/* 两行省略号 */
.overflow2 {
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}


.more {
	font-size: 1rem;
	float: right;
}

.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);
}

.pages a {
	color: var(--dark);
	margin-right: 10px;
	background-color: #EEEEEE;
	border: 0px;
	border-radius: 5px;
	padding: 0.8rem 1.2rem;
	transition: all 0.3s;
	display: inline-block;
}


.pages .active,
.pages a:hover {
	background-color: var(--danger);
	color: #FFFFFF;
	border: 0px;

}

footer {
	background-color: #1b1b1c;
	font-size: 14px;
}

footer ul,
footer ol {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

footer ul li,
footer ol li {
	line-height: 200%;
}

.links {
	font-size: 14px;
	padding-top: 20px;
	color: #fff;
}

.links a {
	color: #fff;
}

.links a:hover {
	color: var(--blue);
}

.links span {
	padding: 0 5px;
	color: #ccc;
}

.footer-contant h3 {
	font-size: 13px;
	color: var(--greytwo);
	font-weight: normal;
}

.copyright {
	margin-top: 20px;
	padding: 20px 0;
	border-top: 1px solid #222;
}

.copyright,
.copyright a {
	color: var(--greytwo);
}

.footnav-sub h4 {
	font-size: 16px;
	padding-bottom: 8px;
	color: #FFFFFF;
}

.footnav-sub h4 a {
	color: #FFFFFF;
}

.footnav-sub p,
.footnav-sub p a {
	margin-top: 10px;
	margin-bottom: 0px;
	color: var(--greytwo);
}

.footnav-sub a:hover {
	color: var(--danger);
}

select+select {
	margin-top: 0.5em;
}

select+input {
	margin-top: 0.5em;
}

/* 独立页面样式 */
.l-height {
	line-height: 170%;
}


/* 任意页返回头部 */
.toTop {
	background: url('../images/to-top.png') center center no-repeat;
	width: 48px;
	height: 48px;
	border: 0;
}

.br5 {
    border-radius: 5px;
    overflow: hidden;
}

.content {
	line-height: 170%;
	font-size: 1em;
	font-weight: 500;
}

.content p {
	margin-bottom: 1em;
}

.content table {
	border: 1px solid #ddd;
	border-collapse: collapse;
	display: table;
}

.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;
}

fieldset.admin-reply legend {
	width: auto;
	padding: 0 0.5em;
	font-size: 1em;
}

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;
}



/*全新样式开始*/
.fl {
	float: left;
}

.fr {
	float: right;
}

.home-name {
	padding-top: 80px;
	padding-bottom: 50px;
	margin: 0 auto;
}

.home-name h2 {
	font-size: 36px;
	padding-bottom: 5px;
	color: #000000;
	font-weight: bold;
}

.home-name span {
	color: var(--danger);
}

.home-name p {
	color: rgba(0, 0, 0, .64) !important;
	font-size: 20px;
	margin: 0px;
}

/*弹窗样式*/
.-popup-opened.-lock {
	overflow: hidden;
}

.item2 {
	padding: 15px;
	background: #FFFFFF;
	display: none;
	position: relative;
	left: 50%;
	top: 50%;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
}

.item-close {
	cursor: pointer;
	right: 20px;
	top: 20px;
	position: absolute;
	z-index: 999;
	width: 18px;
	height: 18px;
	background-image: url('../images/close.png');
	background-repeat: no-repeat;
}

.header {
	position: fixed;
	z-index: 998;
	top: 0px;
	left: 0px;
	width: 100%;
	padding: 15px 0;
	transition: all 0.3s;
}

.header.show,
.header.on {
	background: #FFFFFF;
	box-shadow: 0 4px 6px rgb(0 0 0 / 4%);

}

.header .container {
	position: relative;
}

.head-right {
	line-height: 60px;
	position: absolute;
	right: 15px;
	top: 0;
}

.head-right span {
	color: #DDDDDD;
	font-size: 12px;
	padding: 0 5px;
}

.head-center {
	position: relative;
	width: 100%;
}

.h60 {
	height: 60px;
}

.head-left {
	position: absolute;
	z-index: 999;
	left: 15px;
	transform: translateY(-50%);
	top: 50%;
}



/*主导航栏*/
.nav {
	height: 58px;
	z-index: 1110;
	line-height: 58px;
	font-size: 16px;
	color: #000;
	justify-content: center;
	align-items: center;
}

.menu li.li_2018 {
	float: left;
	display: inline;
	text-align: center;
	position: relative;
}

.menu li.li_2018 a {
	display: block;
	color: #000000;
	padding: 0 25px;
	line-height: 60px;
	height: 60px;
}

.menu li.current a,
.menu li a:hover {
	color: var(--danger);
}

.sub_menu {
	position: absolute;
	left: 0;
	top: 58px;
	width: 99.8%;
	background: #fff;
	border-radius: 15px;
	z-index: 13;
	box-shadow: 0 20px 40px 0 rgb(0 0 0 / 10%);
}

.menu-img {
	width: 33%;
	border-radius: 15px 0 0 15px;
	overflow: hidden;
	min-height: 200px;
	background-color: #000000;
}

.sub-nav {
	border-radius: 15px;
	background-color: #f5f6fb;
	padding: 20px 0 20px 20px;
}

.sub-nav span {
	display: inline-block;
	width: 50%;
	float: left;
	line-height: 45px;
}

.sub_area span a {
	position: relative;
	z-index: 2;
}

.sub_area span a::before {
	display: block;
	content: "";
	width: 0px;
	height: 18%;
	background-image: linear-gradient(90deg, #05a2c9, hsla(0, 0%, 100%, 0));
	position: absolute;
	z-index: -1;
	bottom: 0;
	transition: all 0.3s;
}

.sub_area span a:hover::before {
	width: 100%;
}

.sub_area {
	padding: 45px 20px 0 20px;
}

.sub_area h2 {
	font-size: 24px;
	line-height: 30px;
	padding-bottom: 30px;
	color: #111;
	font-weight: 700;
}

.sub_area h2 p {
	font-weight: normal;
	font-size: 15px;
	color: #777;
}

/*弹出搜索框架*/
input.form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--danger);
}

.top-search {
	line-height: 80px;
	height: 80px;
}

.search-box {
	padding: 0px;
	border-radius: 0px;
	position: fixed;
	z-index: 2200;
	width: 100%;
	box-sizing: border-box;
	top: 0px;
	left: 0px;
}

.search-box .container {
	max-width: 1200px;
}

.search-form {
	position: relative;
}

.search-form .form-control.inp {
	width: 100%;
	box-sizing: border-box;
	border-radius: 0px;
	border-bottom: 1px solid #000;
	padding: 20px 0 40px 40px;
}

.search-form .fa {
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 20px;
	color: #999;
}

.search-form .btn {
	width: 20%;
	float: right;
	border-radius: 0px;
	background-color: var(--danger);
	color: #FFFFFF;
}

.search-form .bi {
	color: #999999;
	margin-right: 5px;
}

.search-tag {
	margin-top: 20px;
}

.search-tag p {
	color: #999;
	font-size: 14px;
}

.search-tag a {
	padding: 3px 10px;
	border-radius: 2px;
	transition: all 0.3s;
	background-color: #fafafa;
	border: 1px solid #f5f5f5;
	font-size: 14px;
	margin: 10px 10px 0 0;
	display: inline-block;
}

.search-tag a:hover {
	background-color: var(--danger);
	color: #FFFFFF;
	border-color: var(--danger);
}

a.btn-more.foot-demand {
	position: relative;
	width: 50px;
	padding: 15px 0;
	font-size: 14px;
	line-height: 16px;
	border-radius: 25px;
	text-align: center;
	right: 0px;
	margin: 0px;
	top: -10px;
	z-index: 2201;
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

.foot-demand .fa {
	font-size: 14px;
	margin-bottom: 5px;
}

.demand-box {
	padding: 0px;
	border-radius: 10px;
	position: fixed;
	z-index: 2200;
	width: 1100px;
	height: 680px;
	box-sizing: border-box;
	margin-left: -550px;
	margin-top: -340px;
	overflow: hidden;
}

.demand-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background-repeat: no-repeat;
	color: #FFFFFF;
	box-sizing: border-box;
	padding: 30px 40px;
}

.demand-bg h2,
.demand-form h2 {
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 20px;
}

.demand-form {
	padding: 30px 40px;
	box-sizing: border-box;
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #EEEEEE;
}

.demand-form h2 {
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.demand-form .form-control.inp {
	background-color: #FFFFFF;
	border-radius: 5px;
	padding: 0 15px;
	height: calc(2em + 0.75rem + 2px);
	font-size: 16px;
}

.form_select_type.form-control {
	border: 0px;
	font-size: 16px;
	color: #777777;
	border-radius: 5px;
	padding: 10px 15px;
	height: auto;
}

.demand-form .inp_content {
	width: 100%;
	border: 0px;
	padding: 10px 15px;
	height: 120px;
	font-size: 16px;
	border-radius: 5px;
	outline: none;
}

.demand-form .form-li {
	margin-top: 20px;
}

.demand-form label {
	font-size: 18px;
}

.demand-form label span {
	color: #F44A53;
}

.checkbox {
	padding: 0 0 0 20px;
	margin: 0;
}

.checkbox label {
	display: block;
	font-size: 16px;
	width: calc(100% / 2);
	float: left;
}

.demand-bg ul {
	padding: 0px;
}

.demand-bg li {
	position: relative;
	list-style: none;
	margin-top: 40px;
}

.demand-bg .p-title {
	font-weight: bold;
	font-size: 18px;
	line-height: 30px;
	padding-left: 40px;
	position: relative;
}

.demand-bg .p-num {
	position: absolute;
	background-color: #FFFFFF;
	color: var(--danger);
	display: block;
	font-size: 18px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center;
	left: 0;
	top: 0;
}

.demand-bg .p-text {
	font-size: 16px;
	padding-left: 40px;
	position: relative;
}



/*首页服务TAB*/

.tab-hd,
.cate-price {
	background: rgba(0, 0, 0, .02);
	overflow: hidden;
	zoom: 1;
	text-align: center;
	border-radius: 30px;
	padding: 10px 15px;
	margin: 0 auto;
	display: flex;
	float: left;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.cate-price {
	width: auto;
}

.tab-hd li,
.cate-price a {
	display: inline-block;
	color: #5a5a5a;
	padding: 4px 24px;
	font-size: 16px;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
}

.tab-hd li.active,
.cate-price a.active {
	color: #fff;
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
}

.tab-bd li {
	display: none;
}

.service-left {
	border-radius: 20px;
	padding: 50px 40px;
}

.service-left h2 {
	font-size: 30px;
	font-weight: 700;
	color: #000000;
}

.feature-item a {
	float: left;
	color: #05a2c9;
	padding: 6px 14px;
	margin: 10px 15px 10px 0;
	font-size: 16px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 5px 25px rgba(198, 198, 198, .1);
	transition: all 0.3s;
}

.feature-item a:hover {
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
	color: #FFFFFF;
}

.service-right {
	position: relative;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	border-radius: 20px;
	overflow: hidden;
}

.service-right a {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	display: block;
	color: #FFFFFF;
}

.service-right a::before {
	display: block;
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	transition: all 0.3s;
}

.service-right a:hover::before {
	background: rgba(0, 0, 0, 0.5);
}

.service-right .cate-link {
	position: relative;
	z-index: 2;
	text-align: center;
	top: 50%;
	transform: translateY(-10%);
	transition: all 0.3s;
	opacity: 0;
}

.service-right .cate-link h3 {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 6px;
}

.service-right .cate-link h3::before {
	display: block;
	position: absolute;
	content: "";
	width: 0px;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #FFFFFF;
	transition: all 0.3s;
}

.service-right a:hover .cate-link h3::before {
	width: 60px;
}

.service-right a:hover .cate-link {
	transform: translateY(-50%);
	opacity: 1;
}

.service-banner {
	width: 100%;
	height: 700px;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
	background-attachment: fixed;
	color: #FFFFFF;
}

.service-banner:before {
	display: block;
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
}

.service-banner .service-top {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.service-banner .service-top h1 {
	font-size: 48px;
	font-weight: bold;
}

.service-banner .service-top h3 {
	font-size: 20px;
	font-weight: normal;
	padding-top: 30px;
	color: #eee;
}

.zsyt-img {
	margin-top: -200px;
	position: relative;
	z-index: 9;
}

.zsyt-img img {
	display: block;
	margin: 0 auto;
}

.list-ysimg li {
	padding: 50px 0;
}

.list-ysimg li .pic {
	float: left;
	width: 50%;
	padding-right: 100px;
	box-sizing: border-box;
}

.list-ysimg li .pic img {
	width: 100%;
}

.list-ysimg li .text {
	float: right;
	width: 50%;
}

.list-ysimg li:nth-of-type(even) .pic {
	float: right;
	padding-right: 0px;
	padding-left: 100px;
}

.list-ysimg li:nth-of-type(even) .text {
	float: left;
}

.list-ysimg .text h2 {
	line-height: 60px;
	font-size: 38px;
	color: #333;
	transition: all 0.3s;
	position: relative;
	padding: 10px 0 30px;
	display: block;
	margin-bottom: 30px;
}

.list-ysimg .text h2:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: var(--danger);
	width: 80px;
	height: 3px;
}

.list-ysimg .text .note {
	margin-top: 31px;
	width: 100%;
	line-height: 36px;
	font-size: 18px;
	color: #434343;
}

.list-ysimg .text .note a.btn-demand {
	margin-top: 30px;
	line-height: 28px;
	font-size: 22px;
	display: inline-block;
	position: relative;
	transition: all 0.3s;
	color: var(--danger);
}

.list-ysimg .text .note a.btn-demand:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 5px;
	transition: width 0.3s;
	background-image: linear-gradient(90deg, #05a2c9, hsla(0, 0%, 100%, 0));
}

.list-ysimg .text .note a.btn-demand:hover:before {
	width: 100%;
}

.list-ysimg .text .note p {
	margin-bottom: 20px;
}


/*项目流程*/
.luchen-item {
	text-align: center;
	position: relative;
	z-index: 3;
}

.luchen-item .p-num {
	width: 110px;
	height: 110px;
	line-height: 110px;
	font-size: 46px;
	font-weight: bold;
	margin: 0 auto;
	color: #C3CAD4;
	background-color: #FFFFFF;
	border-radius: 100%;
	box-shadow: 0 15px 40px rgb(0 0 0 / 5%);
}

.luchen-item.active .p-num {
	color: #FFFFFF;
	box-shadow: 0 15px 40px rgb(255 56 126 / 5%);
	background: linear-gradient(-60deg, #00c78b, #05a2c9);
}

.luchen-item h3 {
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	padding: 20px 0 10px 0;
}

.luchen-item p {
	color: #999999;
}

.luchen-box {
	position: relative;
}

.luchen-box::before {
	position: absolute;
	z-index: 1;
	display: block;
	content: "";
	top: 55px;
	width: 100%;
	border-top: 1px dashed #ddd;
}

.magazine-bg {
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
	color: #FFFFFF;
}

.magazine-bg h3 {
	font-weight: bold;
	font-size: 30px;
	padding-bottom: 10px;
}

.qikan-img {
	position: absolute;
	top: -120px;
	left: 0;
}

.qkwx {
	width: 140px;
	padding: 10px 30px 10px 10px;
	border-radius: 5px;
	background-color: #FFFFFF;
	position: relative;
}

.qkwx span {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 16px;
	color: #000000;
}

.masonry {
	margin-top: 40px;
	padding-bottom: 40px;
	columns: 4;
	column-gap: 50px;
}

.masonry .item {
	width: 100%;
	break-inside: avoid;
	margin-bottom: 50px;
}

.masonry img {
	width: 100%;
}

.masonry .item p {
	padding-top: 20px;
}

.news-item {
	background-color: #FFFFFF;
	border-radius: 16px;
	margin-bottom: 30px;
}

.news-item .pic {
	position: relative;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.news-item .pic img {
	width: 100%;
	transition: all ease-out .3s;
}

.news-item .text {
    padding: 20px;
}

.news-item .text .title {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}

.news-item .text .dateline {
	color: #999999;
}

/*首页案例*/
.cate-nav a {
	display: inline-block;
	color: var(--moniz-gray);
	background-color: #FFFFFF;
	padding: 5px 20px;
	margin: 0 5px 10px 5px;
	border-radius: 20px;
	transition: all 0.3s;
}

.cate-nav a:hover {
	color: #FFFFFF;
	border-color: #FFFFFF;
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
}


.item-case {
	margin-top: 30px;
	border-radius: 10px;
	overflow-y: hidden;
}

.item-case .pic {
	position: relative;
}

.item-case .pic img {
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	top: 0;
}

.item-case b {
	display: inline-block;
}

.news-item:hover .pic img {
	transition: 0.3s transform;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-transform: scale(1.1, 1.1);
}

.f-link {
	position: absolute;
	bottom: 30px;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
}

.f-link a {
	color: #fff;
	background-color: #05a2c9;
	display: inline-block;
	padding: 5px 30px;
	width: 40%;
	text-align: center;
	border-radius: 25px;
	font-size: 15px;
	margin:0 10px;
	transition: all 0.3s ;
	
}

.f-link a.btn-work {
	background-color: #00c78b;
}

.f-link a.btn-work:hover {
	background-color: #0584f8;
}

.f-link a:hover {
	background: linear-gradient(150deg, #00c78b, #0584f8);
	box-shadow: 5px 5px 15px rgba(0, 0, 0, .1);
}

.item-case .pic-text {
	position: absolute;
	z-index: 2;
	transition: 0.3s all;
	width: 100%;
	height: 100%;
	padding:30px;
	box-sizing: border-box;
	left: 0;
	top: -100%;
	overflow: hidden;
	text-align: center;
	color: #FFFFFF;
	background: rgba(0, 0, 0, .6);
}

.item-case .pic:hover .pic-text {
	top: 0px;
}

.item-case .note {
	font-size: 14px;
	color: #999;
	padding: 20px;
	background-color: #fff;
}

.item-case .note h2 {
	font-weight: bold;
	padding-bottom: 10px;
}

.item-case .pic-text img {
	width: 120px;
	padding: 5px;
	border-radius: 5px;
	margin: 0 auto 5px auto;
	background-color: #FFFFFF;
}

.item-case .pic-text a h2 {
	color: #FFFFFF;
	font-size: 16px;
	padding: 5px 0 10px 0;
	display: block;
	font-weight: bold;
}

.item-case .pic-text .note a {
	color: #FFFFFF;
}

.item-case .pic-text .note {
	font-size: 13px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	padding-left: 90px;
	height: 100px;
	border-bottom: 1px solid #f00078;
}

.item-case2 img {
	border-radius: 10px;
	transition: all 0.3s;
}

.item-case2 img:hover {
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.31);
}

.item-case2 .pic-text {
	font-size: 20px;
	font-weight: bold;
	padding: 15px 0 20px 0;
}


.h20 {
	height: 20px;
}

.notice-popup {
	z-index: 1001;
	position: fixed;
	left: 50%;
	bottom: 47px;
	width: 920px;
	transition: all 0.8s;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
	background-color: #fff;
	box-shadow: 0 20px 40px 0 rgb(0 0 0 / 10%);
	border-radius: 40px;
	padding: 0 22px 0 36px;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.myNews {
	width: 100%;
	height: 80px;
	line-height: 80px;
	overflow: hidden;
}

.fujia-list {
	margin-right: -2px;
}

.item-fujia {
	width: calc(25% - 2px);
	margin-right: 2px;
	margin-bottom: 2px;
	position: relative;
	overflow: hidden;
	z-index: 2;
	float: left;
	height: 300px;
	padding: 40px;
	box-sizing: border-box;
	background-color: #fff;
	transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}

.item-youshi {
	height: 176px;
	overflow: hidden;
}

.item-fujia:nth-of-type(1) {
	border-top-left-radius: 15px;
}

.item-fujia:nth-of-type(4) {
	border-top-right-radius: 15px;
}

.item-fujia:nth-of-type(5) {
	border-bottom-left-radius: 15px;
}

.item-fujia:nth-of-type(8) {
	border-bottom-right-radius: 15px;
}

.item-fujia h2 {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
}

.item-fujia:before {
	display: block;
	content: "";
	position: absolute;
	z-index: -1;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	transition: width 0.3s;
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
}

.item-fujia .note {
	color: #777777;
	margin-top: 20px;
}

.item-fujia .item-price {
	position: absolute;
	bottom: 40px;
	left: 40px;
}

.item-fujia .item-price .price1 {
	font-size: 30px;
	font-weight: bold;
	color: #000;
}

.item-fujia:hover:before {
	width: 100%;
}

.item-fujia:hover,
.item-fujia:hover .note,
.item-fujia:hover h2,
.item-fujia:hover .item-price .price1 {
	color: #FFFFFF;
}

/*内页banner*/
.banner-img {
	position: relative;
	height: 350px;
	overflow: hidden;
	background-size: cover;
	transition: all 0.8s;
}

.banner-img::before {
	position: absolute;
	z-index: 1;
	content: "";
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	opacity: .5;
}

.banner-text {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 100%;
	color: #FFFFFF;
	transform: translateY(-50%) translateX(-50%);
}

.banner-text h2 {
	font-weight: bold;
	font-size: 36px;
	margin-bottom: 20px;
}

.banner-text h3 {
	font-size: 18px;
}


/*输入框样式*/
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
	-webkit-text-fill-color: #05a2c9 !important;
	-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	background-color: transparent;
	background-image: none;
	transition: background-color 50000s ease-in-out 0s;
}

input.form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--danger);
	background-color: transparent;
}

.form-control.inp {
	border: 0px;
	border-bottom: 1px #eee solid;
	padding: 20px 0px;
	border-radius: 0px;
}

.btn-primary {
	background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
	border: 0px;
	width: 60%;
	height: 50px;
	border-radius: 25px;
	margin: 20px auto;
	display: block;
	transition: all 0.3s;
}

.btn-primary:hover {
	width: 80%;
	background-image: linear-gradient(45deg, #dd3070 6.54%, #f03467 21.35%, #e54550 64.03%, #ea5838 92.78%);
	transform: translateY(-5px);
	box-shadow: 0 10px 22px rgba(162, 162, 162, 0.5);
}

.contact-book label {
	margin-top: 20px;
	margin-bottom: 0px;
	font-size: 14px;
	font-weight: bold;
}


.form_select_service select {
	border: 0px;
	border-bottom: 1px #eee solid;
	cursor: pointer;
	font-size: 14px;
	padding: 0px;
	outline: none !important;
	color: #495057;
}

.form_select_service option {
	padding: 10px;
}

.contact-box h2 {
	padding-bottom: 40px;
	margin-bottom: 0px;
}

select.form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--danger);
	border-radius: 0px;
}

.cate-nav2 a {
	display: inline-block;
	margin: 0 30px;
	position: relative;
	padding-bottom: 10px;
}

.cate-nav2 a::before {
	display: block;
	content: "";
	position: absolute;
	width: 0px;
	height: 1px;
	bottom: 0px;
	left: 0px;
	background-color: var(--danger);
	transition: all 0.3s;
}

.cate-nav2 a.active {
	color: var(--danger);
	font-weight: bold;
}

.cate-nav2 a.active::before,
.cate-nav2 a:hover::before {
	width: 100%;
}

.cate-nav3 a {
	margin: 0 40px 20px 0;
}

/*案例详情*/
.case-content {
	font-size: 16px;
	line-height: 30px;
	padding: 30px 0;
}

.case-content img {
	max-width: 100%;
}

.case-content p {
	margin-bottom: 1.2rem;
}

.case-content h2 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
}

.case-content blockquote {
    border: 1px solid #eee;
    background-color: #f7f7f7;
    padding:20px;
}
.case-content blockquote p {
    margin-bottom:0px;
    font-size: 16px;
}

.case-img {
	padding: 10px 130px;
	color: #FFFFFF;
	background-color: #CCCCCC;
}

.case-img img {
	width: 100%;
	margin: 0 auto;
	display: block;
	overflow: hidden;
}

.qrcode {
	width: 130px;
	margin: 50px auto;
}

.qrcode img {
	background-color: #FFFFFF;
	border-radius: 5px;
	padding: 5px;
	margin-top: 10px;
}

.prev-next {
	text-align: center;
	font-size: 50px;
	padding: 30px 0;
}

.prev-next .fa {
	color: var(--danger);
	transition: all 0.3s;
}

.prev-next .bi:hover {
	color: #000000;
}

.logo-box {
	background-color: #f8f9fa !important;
	padding: 30px;
	position: relative;
}

.logo-box .pic {
	float: left;
	width: 100px;
	height: 100px;
	background-color: #FFFFFF;
	border-radius: 5px;
	overflow: hidden;
}

.logo-box .pic img {
	padding: 5px;
	width: 100%;
	border-radius: 10px;
	display: block;
	overflow: hidden;
}

.logo-box .text {
	padding-left: 120px;
}

.logo-box .text h1 {
	font-size: 24px;
	font-weight: bold;
	padding: 15px 0 10px 0;
}

.logo-box .text span {
	display: inline-block;
	position: relative;
	margin-right: 10px;
	padding-left: 20px;
	padding-top: 5px;
	font-size: 12px;
}

.logo-box .text span .fa {
	font-size: 16px;
	position: absolute;
	left: 0;
	top: 6px;
}

.logo-box .text span a {
	padding: 1px 3px;
	border-radius: 3px;
	transition: all 0.3s;
}

.logo-box .text span a:hover {
	color: var(--danger);
}

.logo-box .linkurl {
	position: absolute;
	right: 30px;
	font-size: 30px;
	background-color: #FFFFFF;
	top: 50%;
	margin-top: -25px;
	height: 50px;
	width: 50px;
	border-radius: 100%;
	text-align: center;
}

.logo-box .linkurl .fa {
	margin-top: 11px;
}

.logo-box .linkurl:hover {
	background-color: var(--danger);
	transition: all 0.3s;
}

.logo-box .linkurl:hover a {
	color: #FFFFFF;
}

.case-left {
	padding-right: 50px;
}
.case-right {
    position: sticky;
    top: 120px;
}
.signing-list {
	background-color: #FFFFFF;
	position: relative;
}

.signing-list h5 {
	font-weight: bold;
	padding-bottom: 15px;
}

.list_lh {
	height: 300px;
	overflow: hidden;
}

.list_lh ul {
	margin: 0px;
	padding: 0px;
}

.list_lh li {
	list-style: none;
	height: 85px;
	overflow: hidden;
}

.list_lh li h2 {
	height: 45px;
	line-height: 24px;
	font-size: 16px;
	overflow: hidden;
}

.list_lh li p {
	font-size: 16px;
	color: #999999;
}

.list_lh li .btn_lh {
	background: #00c78b;
	height: 17px;
	line-height: 17px;
	font-size: 12px;
	color: #fff;
	padding: 0 5px;
	margin-top: 4px;
	margin-left: 5px;
	display: inline-block;
}

.signing-list.show {
	position: fixed;
	z-index: 1998;
	top: 110px;
	transition: all 0.3s;
}

.list-unstyled {
	border-top: 1px solid #EEEEEE;
	padding-top: 20px;
	margin-top: 30px;
}

.list-unstyled li {
	padding: 5px 0px;
}

.breadcrumb {
	background-color: #FFFFFF;
	padding: 20px 0px;
	margin-bottom: 0px;
}

/*评论*/
.comment-box {
	border-top: 1px solid #eee;
}

.comment-box .com-title {
	font-weight: bold;
	color: #000;
	font-size: 20px;
}

.comment-box .comment-avatar,
.am-comment-author {
	width: 50px;
	border-radius: 100%;
	margin-top: 30px;
	overflow: hidden;
}

.am-comment-author .img {
    width: 100%;
    display: block;
}

.comment-box .comment-form {
	padding-left: 65px;
}

.comment-box .comment-form textarea {
	padding: 16px 16px 23px;
	width: 100%;
	height: 120px;
	resize: none;
	background: #f5f5f6;
	border-radius: 12px;
	border: none;
	color: #1f1f1f;
}

.comment-box .hand {
	position: absolute;
	top: 8px;
	right: 10px;
}

.plase-login a {
	color: var(--danger);
}

.am-comment-box {
	padding-left: 65px;
}

.am-comment-box span {
	color: var(--danger);
	font-size: 12px;
	border: 1px solid var(--danger);
	border-radius: 5px;
	font-weight: normal;
	padding: 0px 2px;
	margin-left: 2px;
}

.am-comment-author {
	margin-top: 0px;
}

.comment-text {
	padding: 5px 0;
}

.comment-time {
	color: #999;
	font-size: 14px;
}

/*返回顶部*/
.scroll {
	width: 50px;
	height: auto;
	background: #FFFFFF;
	border-radius: 25px;
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
	text-align: center;
	color: var(--greytwo);
	position: fixed;
	z-index: 2999;
	right: 5px;
	padding: 5px 0 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
}

.scroll .fa {
	font-size: 20px;
	transition: all 0.3s;
}

.kefu-list ul li:hover .fa,
#scroll-top:hover .fa {
	color: var(--danger);
}

#scroll-top {
	cursor: pointer;
	margin-top: 10px;
}

.kefu-list ul,
.kefu-list ul li {
	margin: 0px;
	padding: 0px;
	list-style: none;
	position: relative;
}

.kefu-list ul li {
	padding: 10px 0;
	cursor: pointer;
}

.kefu-list ul li p {
	margin-bottom: 0px;
}

.kefu-list ul li::before {
	display: block;
	content: "";
	position: absolute;
	width: 20px;
	height: 1px;
	background-color: #EEEEEE;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}

.kefu-list ul li .pic {
	display: none;
	position: absolute;
	border-radius: 5px;
	top: 50%;
	transform: translateY(-50%);
	right: 58px;
	padding: 15px;
	text-align: left;
	background-color: #FFFFFF;
	color: var(--dark);
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
	width: 140px;
}

.kefu-list ul li .pic p {
	color: var(--danger);
	font-weight: bold;
}

.kefu-list ul li .pic img {
	width: 100%;
}

.kefu-list ul li:hover .pic {
	display: block;
}

.kefu-list ul li .down {
	position: absolute;
	right: -8px;
	width: 10px;
	height: 10px;
	background-color: #FFFFFF;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	top: 50%;
	margin-top: -5px;
}

.case-btn ul li {
	float: left;
	width: 50%;
	padding: 12px 0 0 0;
}

.case-btn ul li::before {
	display: none;
}

.case-btn ul li span {
	padding-left: 5px;
}

.case-btn ul li .pic {
	top: auto;
	bottom: 50px;
	left: 50%;
	padding: 0px;
	overflow: hidden;
	transform: translate(-50%, 0%);
}

.case-btn ul li,
.case-btn ul li a,
.case-btn ul li:hover .fa {
	color: #FFFFFF;
}


/*新闻资讯*/
.news-list h2 {
	font-size: 26px;
}

.news-logo {
	padding: 20px 0;
}

.news-logo .text {
	padding-left: 60px;
}

.news-logo .text p {
	color: #eee;
	font-size: 13px;
	margin-top: 5px;
}

.news-logo .text p a,
.news-logo .text span {
	color: var(--greytwo);
	font-size: 13px;
}

.news-logo .text p a:hover {
	color: var(--danger);
}

.news-logo .pic {
	width: 50px;
}

.news-logo .pic img {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 1px solid #EEEEEE;
	float: left;
}

.news-note {
	font-size: 16px;
	line-height: 30px;
	color: var(--gray);
	margin: 30px 0;
}

.news-more {
	color: var(--danger);
	font-size: 16px;
	text-decoration: underline;
	transition: all 0.3s;
	padding-bottom: 20px;
	display: inline-block;
}

.news-more .fa {
	transition: all 0.3s;
}

.news-more:hover {
	font-weight: bold;
}

.news-more:hover .fa {
	padding-left: 5px;
}

.news-thumb {
	position: relative;
	overflow: hidden;
	max-height: 400px;
	border-radius: 10px;
}

.news-thumb img {
	transition: all 1.3s;
	width: 100%;
}

.news-thumb:hover {
	box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
}

/*关于我们*/
.et-hero-tabs,
.et-slide {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	position: relative;
	background: #eee;
	text-align: center;
	padding: 0 2em;
}

.et-hero-tabs h1,
.et-slide h1 {
	font-size: 2rem;
	margin: 0;
	letter-spacing: 1rem;
}

.et-hero-tabs h3,
.et-slide h3 {
	font-size: 1rem;
	letter-spacing: 0.3rem;
	opacity: 0.6;
}

.et-hero-tabs-container {
	display: flex;
	flex-direction: row;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 70px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	background: #fff;
	z-index: 10;
}

.et-hero-tabs-container--top {
	position: fixed;
	top: 0;
}

.et-hero-tab {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	color: #000;
	letter-spacing: 0.1rem;
	transition: all 0.5s ease;
	font-size: 0.8rem;
}

.et-hero-tab:hover {
	color: white;
	background: rgba(102, 177, 241, 0.8);
	transition: all 0.5s ease;
}

.et-hero-tab-slider {
	position: absolute;
	bottom: 0;
	width: 0;
	height: 6px;
	background: #66B1F1;
	transition: left 0.3s ease;
}

/*报价*/

.swiper-price {
	width: 100%;
	height: 100%;
	padding: 0 0 80px 0;
	box-sizing: border-box;
	position: relative;
}

.price-item {
	border: 1px solid transparent;
	border-radius: 9px;
	box-shadow: 0px 0px 7px rgb(0 0 0 / 15%);
	background-color: #fff;
	padding-bottom: 30px;
	transition: all 0.3s;
	position: relative;
}

.price-item::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 0px;
	width: 100%;
	border-top: 25px solid var(--danger);
	border-radius: 9px;
	z-index: -1;
	transition: all 0.3s;
}

.price-name {
	border-bottom: 1px solid #f0f0f0;
	padding: 35px 30px;
}

.price-name h2 {
	color: #000;
	font-size: 28px;
	font-weight: bold;
	line-height: 28px;
}

.price-name p a {
	color: var(--danger);
	display: inline-block;
	padding-top: 20px;
	font-size: 18px;
}

.price-text {
	padding: 0 30px;
}

.price-item:hover {
	box-shadow: 0px 0px 40px rgba(5, 162, 201, 0.31);
	border-color: var(--danger);
}

.price-item:hover::before {
	top: -10px;
}

.price-item .price {
	font-weight: bold;
}

.price-item .price .cur {
	font-size: 32px;
}

.price-item .price .price-num {
	font-size: 48px;
}

.price-item .moon-price {
	font-size: 16px;
	color: #888888;
	margin-top: 10px;
}

.price-item .func-list {
	margin-top: 40px;
}

.price-item .func-list ul li {
	line-height: 36px;
}

.price-item .func-list ul li.true {
	padding-left: 37px;
	background: url('../images/true_2.png') no-repeat left 12px;
}

.price-item .func-list ul li.sp_function {
	position: relative;
	margin: 20px 0px;
	text-align: center;
}

.price-item .func-list ul li.sp_function:before {
	content: '';
	width: 100%;
	height: 0px;
	border-top: 1px solid #f0f0f0;
	position: absolute;
	top: 50%;
	left: 0px;
	z-index: 1;
}

.price-item .func-list ul li.sp_function span {
	display: inline-block;
	padding: 0px 28px;
	background-color: #fff;
	font-size: 18px;
	font-weight: bold;
	color: #a4a7a5;
	position: relative;
	z-index: 2;
}

.works-box2 {
	position: fixed;
	width: 80%;
	height: 80%;
	left: 10%;
	top: 10%;
	border-radius: 9px;
}

.-popup-opened.-lock {
	overflow: hidden;
}

.item-fqa h2 {
	font-size: 20px;
	font-weight: bold;
	color: #000;
	display: block;
	height: 34px;
}

.item-fqa .note {
	padding: 20px 0 0 0;
	color: #777777;
	line-height: 30px;
}

.fqa-list .row {
	margin-right: -30px !important;
	margin-left: -30px !important;
}

.fqa-list .col-md-4 {
	padding-right: 30px !important;
	padding-left: 30px !important;
}

.item-bank {
	background-color: #FFFFFF;
	padding: 45px 30px;
	border-radius: 15px;
	transition: all 0.3s;
}

.item-bank h2 {
	font-size: 20px;
	color: #000;
	font-weight: bold;
	padding-bottom: 30px;
}

.item-bank img {
	width: 200px;
	margin-top: 30px;
	border-radius: 10px;
}

.item-bank .note {
	line-height: 30px;
	font-size: 14px;
}

.item-bank .note b {
	font-size: 18px;
	font-weight: normal;
	border-bottom: 1px solid #eee;
	display: inline-block;
	width: 100%;
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.item-bank:hover {
	background-color: #21AA38;
	color: #FFFFFF;
	box-shadow: 0 30px 60px 0 rgb(0 0 0 / 12%);
}

.item-bank:hover h2 {
	color: #fff;
}

.item-bank.bg2335:hover {
	background-color: #1777FF;
}

	/*组件主样式*/
	.overflow-text{
		display: flex;
		white-space:nowrap;
		overflow:hidden; 
		text-overflow:ellipsis;
		opacity:0;
		clear: both;
		padding:5px 15px 5px 5px;
		border-radius: 30px;
		height: 40px;
		line-height: 30px;
		font-size: 14px;
		box-sizing: border-box;
		max-width: 100%;
		transition: all 0.3s;
		background-color: #fff;
		animation:colorchange 3s infinite alternate;
		-webkit-animation:colorchange 3s infinite alternate; /*Safari and Chrome*/
	}
	.overflow-text img {
		width: 30px;
		height: 30px;
		border-radius: 50%;
		margin-right: 5px;
		display: block;
	}
	.overflow-text:hover {
		color: #fff !important;
		background-image: linear-gradient(90deg, #00c78b 38%, #05a2c9 100%);
	}
	
	@keyframes colorchange{
		0%{
			color:#00c78b;
		}
		50%{
			color:#05a2c9;
		}
		100%{
			color:#02a1f9;
		}
	}
	/*组件主样式*/

@media (min-width: 800px) {

	.et-hero-tabs h1,
	.et-slide h1 {
		font-size: 3rem;
	}

	.et-hero-tabs h3,
	.et-slide h3 {
		font-size: 1rem;
	}

	.et-hero-tab {
		font-size: 1rem;
	}
}

@media screen and (min-width: 1300px) and (max-width: 1599px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1280px;
	}

	.banner-img {
		height: 350px;
	}

	.qikan-img {
		top: -100px;
	}

	.menu-img {
		width: 30%;
	}

	.sub_area {
		padding: 35px 10px 0 10px;
	}

	.sub_area h2 {
		padding-bottom: 20px;
	}

	.sub-nav {
		padding: 15px 0 15px 20px;
		border-radius: 10px;
	}

	.sub-nav span {
		line-height: 30px;
		width: auto;
		padding-right: 20px;
	}

	body,
	.case-content,
	.list_lh li h2,
	.inp,
	.demand-form label,
	.form_select_type.form-control,
	.demand-form .inp_content,
	.feature-item a,
	.form_select_service select,
	.demand-bg .p-text,
	.sub_area span a,
	.sub_area h2 p,
	.menu li.li_2018 a,
	.contact-book label {
		font-size: 14px !important;
	}

	.f-20,
	.demand-bg .p-title {
		font-size: 16px !important;
	}

	.home-name p,
	.item-fujia h2,
	.sub_area h2,
	.demand-bg h2,
	.demand-form h2 {
		font-size: 18px !important;
	}

	.service-left h2 {
		font-size: 26px !important;
	}

	.home-name h2 {
		font-size: 30px !important;
	}

	.demand-form .form-li {
		margin-top: 10px !important;
	}

	.demand-bg li {
		margin-top: 20px !important;
	}

	.demand-form .inp_content {
		height: 80px !important;
	}

	.demand-box {
		height: 540px !important;

	}

	.demand-form {
		overflow-y: scroll;
	}

	.header.show {
		padding: 5px 0;
	}

}

@media screen and (min-width: 1600px) and (max-width: 2560px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1530px;
	}

	.banner-img {
		height: 450px;
	}

	body,
	.case-content,
	.list_lh li h2,
	.inp,
	.form_select_service select,
	.contact-book label,
	.content {
		font-size: 16px;
	}


}
