@charset "UTF-8";
	*,*::before,*::after {
	padding:0;
	margin:0;
	box-sizing:border-box;
}
html {
	scroll-behavior:smooth;
	line-height:1.5;
	text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
	-moz-text-size-adjust:100%;
}
body {
	display:flex;
	flex-direction:column;
	height:100vh;
	font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;
	font-size:1rem;
	color:#212529;
	background-color:#fff;
}
@media screen and (max-width:1023px) {
	body {
	font-size:0.938rem;
}
}address {
	margin-bottom:20px;
	line-height:inherit;
	font-style:normal;
}
hr {
	margin:20px 0;
	border-top:1px dashed #212529;
}
ol,ul,li {
	list-style:none;
}
blockquote {
	margin:20px 0;
	padding:20px;
	line-height:20px;
	background:rgba(87,173,106,.06);
	border-left:3px solid #212529;
	border-radius:4px;
}
code {
	padding:2px 4px;
	font-family:"Courier New",Courier,monospace;
	font-weight:600;
	font-size:90%;
	color:#e67474;
	background:#f9f2f4;
	border-radius:4px;
}
a {
	color:#212529;
	text-decoration:none;
	cursor:pointer;
}
a:hover {
	color:#007BFF;
}
b,strong,.bold {
	font-weight:700;
}
i,em,dfn,cite {
	font-style:normal;
}
small {
	font-size:85%;
}
sub,sup {
	position:relative;
	line-height:0;
	vertical-align:baseline;
	font-size:75%;
}
sub {
	bottom:-4px;
}
sup {
	top:-8px;
}
figure {
	margin:20px 0;
}
img {
	display:block;
	max-width:100%;
	height:auto;
	vertical-align:middle;
	border:none;
}
h1,h2,h3 {
	margin-top:0;
	margin-bottom:15px;
	line-height:1.5;
}
h1 {
	font-size:2rem;
}
h2 {
	font-size:1.5rem;
}
h3 {
	font-size:1.125rem;
}
p {
	margin-top:0;
	margin-bottom:20px;
}
p:last-child {
	margin-bottom:0;
}
button,input,optgroup,select,textarea {
	margin:0;
	font:inherit;
	color:inherit;
}
button {
	overflow:visible;
}
button,select {
	text-transform:none;
}
button,html input[type="button"],input[type="reset"],input[type="submit"] {
	-webkit-appearance:button;
	cursor:pointer;
}
button[disabled],html input[disabled] {
	cursor:default;
}
button::-moz-focus-inner,input::-moz-focus-inner {
	border:0;
	padding:0;
}
input {
	line-height:normal;
}
input[type="checkbox"],input[type="radio"] {
	box-sizing:border-box;
	padding:0;
}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {
	height:auto;
}
.container {
	position:relative;
	width:100%;
	margin-right:auto;
	margin-left:auto;
	padding-right:15px;
	padding-left:15px;
}
@media (min-width:576px) {
	.container {
	max-width:576px;
}
}@media (min-width:768px) {
	.container {
	max-width:768px;
}
}@media (min-width:1024px) {
	.container {
	max-width:1024px;
}
}@media (min-width:1280px) {
	.container {
	max-width:1280px;
}
}@media (min-width:1440px) {
	.container {
	max-width:1440px;
}
}.header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background-color:#fff;
	box-shadow:0 2px 16px rgba(0,0,0,0.3);
	z-index:100;
}
.nav {
	display:flex;
	justify-content:space-between;
	height:calc(3.5rem + 2rem);
}
.nav_data {
	display:flex;
	justify-content:space-between;
	align-items:center;
	height:100%;
}
.nav_logo {
	display:flex;
	align-items:center;
	height:100%;
}
.nav_data h1 {
	display:flex;
	align-items:center;
	height:100%;
	margin:0;
}
.nav_data h1 a {
	display:block;
}
.nav_logo img {
	vertical-align:middle;
	width:auto;
	max-height:65px;
}
.nav_toggle {
	display:none;
}
.nav_toggle,.nav_burger,.nav_close {
	position:relative;
	width:32px;
	height:32px;
}
.nav_burger,.nav_close {
	display:inline-block;
	position:absolute;
	width:max-content;
	height:max-content;
	inset:0;
	margin:auto;
	font-size:24px!important;
	cursor:pointer;
	transition:opacity .1s,transform .4s;
}
.nav_close {
	opacity:0;
}
.nav_list {
	display:flex;
	height:100%;
}
.nav_link {
	position:relative;
	overflow:hidden;
	display:flex;
	align-items:center;
	gap:.25rem;
	height:100%;
	padding:0 20px;
	color:#212529;
	white-space:nowrap;
	text-overflow:ellipsis;
	transition:background-color .3s;
}
@media (min-width:1024px) {
	.nav_link:hover,.nav_link.active {
	color:#fff;
}
.dropdown_arrow {
	display:none;
}
}.nav_link::before {
	content:"";
	position:absolute;
	top:0;
	left:50%;
	transform:translateX(-50%);
	width:0;
	height:100%;
	background-color:#0168B7;
	transition:width 0.4s ease,background-color 0.4s ease;
	z-index:-1;
}
.nav_link:hover::before,.nav_link.active::before {
	width:100%;
}
.dropdown_item {
	position:relative;
	cursor:pointer;
}
.dropdown_arrow {
	font-size:1.25rem;
	transition:transform .4s;
}
@media (min-width:1024px) {
	.dropdown_menu {
	overflow:hidden;
	position:absolute;
	top:100%;
	left:0;
	width:120%;
	background:#fff;
	box-shadow:0 6px 16px rgba(0,0,0,0.1);
	opacity:0;
	transform-origin:top;
	transition:all 0.4s ease;
	transform:scaleY(0);
	z-index:10;
}
.dropdown_item:hover .dropdown_menu {
	opacity:1;
	visibility:visible;
	transform:scaleY(1);
}
}.dropdown_link {
	display:flex;
	align-items:center;
	gap:0.5rem;
	padding:1rem 3.5rem 1rem 1rem;
	color:#212529;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	transition:background-color 0.3s;
}
.dropdown_link:hover {
	color:#fff;
	background-color:#0168B7;
}
.language-switcher {
	display:flex;
	flex-direction:column;
	justify-content:center;
	position:relative;
	margin-left:auto;
}
.lang-toggle {
	width:146px;
	height:44px;
	padding:12px 20px;
	font-size:16px;
	border:none;
	background-color:#007BFF;
	color:white;
	border-radius:50px;
	cursor:pointer;
	transition:background-color 0.3s ease;
}
.lang-toggle.custom-hover {
	background-color:#0056b3;
}
.language-select {
	position:absolute;
	top:65%;
	left:10%;
	width:80%;
	margin-top:8px;
	padding:0;
	background:#fff;
	opacity:0;
	visibility:hidden;
	transform:scaleY(0);
	transform-origin:top;
	transition:all 0.4s ease;
	box-shadow:0 6px 16px rgba(0,0,0,0.1);
	z-index:1000;
}
.language-select.active {
	opacity:1;
	visibility:visible;
	transform:scaleY(1);
}
.language-select li {
	text-align:center;
	padding:10px 20px;
	cursor:pointer;
	transition:background-color 0.3s ease;
}
.language-select li:hover {
	background-color:#1890FF;
}
.language-select li a {
	display:block;
	color:#212529;
}
.language-select li:hover a {
	color:#fff;
}
@media (min-width:1024px) {
	.language-switcher:hover .language-select {
	opacity:1;
	visibility:visible;
	transform:scaleY(1);
}
}@media screen and (max-width:1024px) {
	.nav {
	display:flex;
	align-items:center;
	justify-content:space-between;
	height:3.5rem;
	padding:0 1rem;
}
.nav_data {
	position:relative;
	display:flex;
	align-items:center;
	justify-content:space-between;
	width:100%;
	height:100%;
}
.nav_toggle {
	display:block;
	position:relative;
	width:32px;
	height:32px;
	z-index:2;
}
.nav_logo {
	display:flex;
	align-items:center;
	justify-content:flex-start;
}
.nav_logo img {
	max-height:35px;
}
.language-switcher {
	display:flex;
	align-items:center;
	justify-content:flex-end;
	position:relative;
	margin:0;
	z-index:2;
}
.lang-toggle {
	width:110px;
	height:36px;
	padding:8px 12px;
	font-size:14px;
	border-radius:20px;
}
.language-select {
	top:110%;
	right:0;
	left:auto;
	width:110px;
	font-size:14px;
}
.language-select li {
	padding:8px 10px;
}
.language-select li a {
	font-size:14px;
}
.nav_menu {
	position:absolute;
	left:0;
	top:3.5rem;
	width:100%;
	height:calc(100vh - 3.5rem);
	overflow:auto;
	pointer-events:none;
	opacity:0;
	transition:top .4s,opacity .3s;
	background-color:#fff;
	border-top:1px solid #ddd;
}
.nav_menu::-webkit-scrollbar {
	width:0;
}
.nav_list {
	display:block;
	padding:1rem 0;
}
.nav_link {
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:0.5rem;
	height:auto;
	padding:1rem 1.5rem;
	font-size:1.05rem;
	color:#212529;
	border-bottom:1px solid #eee;
}
.nav_link:last-child {
	border-bottom:none;
}
.dropdown_arrow {
	margin-left:auto;
	order:2;
	font-size:1.25rem;
	color:#555;
	transition:transform 0.4s ease;
}
.dropdown_menu {
	position:static;
	max-height:0;
	overflow:hidden;
	margin:0.25rem 0 0 1.5rem;
	padding:0;
	background-color:#f9f9f9;
	border-radius:4px;
	box-shadow:0 4px 8px rgba(0,0,0,0.05);
	transition:max-height 0.4s ease-out,opacity 0.3s ease,visibility 0.3s;
}
.dropdown_menu.show_dropdown {
	max-height:1000px;
	opacity:1;
	visibility:visible;
	transition:max-height 0.4s ease-in,opacity 0.3s ease,visibility 0.3s;
}
.dropdown_link {
	display:flex;
	align-items:center;
	gap:0.5rem;
	padding:0.75rem 1rem;
	font-size:1rem;
	color:#333;
	background-color:transparent;
}
.dropdown_link:hover {
	color:#007BFF;
	background-color:#e6f0ff;
}
.show-menu {
	top:3.5rem;
	opacity:1;
	pointer-events:initial;
}
.show-icon .nav_burger {
	opacity:0;
	transform:rotate(90deg);
}
.show-icon .nav_close {
	opacity:1;
	transform:rotate(90deg);
}
.rotate-arrow {
	transform:rotate(180deg);
}
}@media screen and (max-width:575.98px) {
	.lang-toggle {
	width:88px;
	height:32px;
	padding:6px 10px;
	font-size:12px;
	border-radius:18px;
}
.language-select {
	top:105%;
	right:0;
	left:auto;
	width:88px;
	font-size:12px;
}
.language-select li {
	padding:6px 8px;
}
.language-select li a {
	font-size:12px;
}
}#main {
	flex:1;
	margin-top:88px;
}
@media screen and (max-width:1024px) {
	#main {
	margin-top:56px;
}
}.carousel {
	position:relative;
	overflow:hidden;
}
.carousel .slides {
	display:flex;
	transition:transform 0.5s ease-in-out;
}
.carousel .slides .slide {
	position:relative;
	min-width:100%;
	box-sizing:border-box;
}
.carousel .slides .slide img {
	width:100%;
	height:560px;
}
@media screen and (max-width:1024px) {
.carousel .slides .slide img {
	max-height:560px;
	height:auto;
}
}
.carousel .slides .slide .slide-info {
	position:absolute;
	bottom:2rem;
	left:50%;
	width:95%;
	transform:translateX(-50%);
	text-align:center;
	padding:30px;
	color:#fff;
	background:linear-gradient(135deg,rgba(0,0,0,0.8) 0%,rgba(50,50,50,0.6) 100%);
	border-radius:10px;
	box-shadow:0 4px 6px rgba(0,0,0,0.1);
	backdrop-filter:blur(5px);
	transition:all 0.3s ease;
}
.carousel .slides .slide .slide-info h2 {
	margin:0;
	font-size:calc(24px + 0.75vw);
	text-shadow:2px 2px 4px rgba(0,0,0,0.3);
}
@media screen and (max-width:1024px) {
	.carousel .slides .slide .slide-info {
	left:0;
	bottom:0;
	width:100%;
	padding:1rem;
	border-radius:0;
	transform:translateX(0)
}
}@media screen and (max-width:576px) {
	.carousel .slides .slide .slide-info h2 {
	font-size:14px;
}
}.carousel .prev,.carousel .next {
	position:absolute;
	top:50%;
	padding:15px 0;
	opacity:0;
	pointer-events:none;
	border:none;
	transform:translateY(-50%);
	background-color:rgba(0,0,0,0.5);
	transition:opacity 0.3s ease;
	cursor:pointer;
	z-index:10;
}
.carousel:hover .prev,.carousel:hover .next {
	opacity:1;
	pointer-events:auto;
}
.carousel .prev {
	left:0;
}
.carousel .next {
	right:0;
}
.carousel .prev .iconfont,.carousel .next .iconfont {
	font-size:42px;
}
.module {
	margin-top:100px;
}
.modules {
	margin-top:50px;
	margin-bottom:50px;
}
.module .head,.modules .head {
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:30px;
}
.module .head h2,.modules .head h2 {
	margin:0;
	padding-left:10px;
	font-weight:400;
	line-height:33px;
	font-size:36px;
	color:#333;
	border-left:3px solid #0168B7;
}
.module .head .more {
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	width:180px;
	height:50px;
	border:1px solid #ccc;
	border-radius:25px;
}
.module .head .more:hover {
	color:#fff;
	background:#0168B7;
}
.grid {
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}
.brand_module .brand_item {
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-start;
	text-align:center;
	width:calc((100% - 100px) / 6);
	padding:10px;
}
@media (max-width:768px) {
	.brand_module .brand_item {
	width:calc((100% - 20px) / 2);
}
}@media (max-width:576px) {
	.brand_module .brand_item {
	width:100%;
}
}.brand_module .brand_item .brand_img {
	width:100%;
	height:100px;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
}
.brand_module .brand_item .brand_img img {
	width:100%;
	height:100%;
}
.brand_module .brand_item .title {
	min-height:48px;
	margin-bottom:20px;
	font-size:16px;
	font-weight:bold;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}
@-webkit-keyframes brand_link {
	100% {
	top:-12px;
	right:-12px;
	bottom:-12px;
	left:-12px;
	opacity:0;
}
}@keyframes brand_link {
	100% {
	top:-12px;
	right:-12px;
	bottom:-12px;
	left:-12px;
	opacity:0;
}
}.brand_module .brand_item a.brand_link {
	position:relative;
	display:block;
	transform:translateZ(0px);
	box-shadow:rgba(0,0,0,0) 0px 0px 1px;
	backface-visibility:hidden;
	border-radius:50px;
	font-size:14px;
	background-color:#0168B7;
	color:white;
	text-decoration:none;
	padding:10px 20px;
}
.brand_module .brand_item a.brand_link::before {
	content:"";
	position:absolute;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	animation-duration:1s;
	border-width:6px;
	border-style:solid;
	border-color:#0168B7;
	border-radius:50px;
}
.brand_module .brand_item a.brand_link:hover::before {
	animation-name:brand_link;
}
.brand_module .brand_item a.brand_link:hover {
	background-color:#014e87;
}
.product_module .product_item {
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	overflow:hidden;
	width:calc((100% - 60px) / 4);
}
@media (max-width:768px) {
	.product_module .product_item {
	width:calc((100% - 20px) / 2);
}
}@media (max-width:576px) {
	.product_module .product_item {
	width:100%;
}
}.product_module .product_item::before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,0.5);
	z-index:1;
}
.product_module .product_item a {
	display:contents;
}
.product_module .product_img {
	flex:1;
	height:200px;
	overflow:hidden;
	position:relative;
	z-index:0;
}
.product_module .product_img img {
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform 0.5s ease-in-out;
}
.product_module .product_item:hover img {
	transform:scale(1.1);
}
.product_module .product_item .meta {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	position:absolute;
	z-index:2;
	width:80%;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
.product_module .product_item .title {
	font-size:28px;
	color:#fff;
	display:-webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}
.product_module .product_item .dash {
	margin-top:10px;
	background-color:#fff;
	width:10%;
	height:3px;
}
.company_module h2 {
	border-left:3px solid #0168B7;
	padding-left:10px;
	margin:0;
	font-weight:400;
	font-size:36px;
	color:#333;
	line-height:33px;
}
.company_module .profile,.company_module .company_img {
	width:calc((100% - 20px) / 2);
}
@media (max-width:768px) {
	.company_module .profile,.company_module .company_img {
	width:100%;
}
}.company_module .profile .intro {
	margin-top:40px;
}
.company_module .about_link {
	margin-top:40px;
	display:flex;
	flex-wrap:wrap;
}
.company_module .about_link a {
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	flex-direction:column;
	color:inherit;
	width:calc((100% - 40px) / 3);
	border:1px solid #dbdbdb;
	border-right:none;
}
.company_module .about_link a i {
	font-size:64px;
}
.company_module .about_link a span {
	font-size:14px;
}
.states_module {
	width:100%;
	height:240px;
	background:#131516;
}
@media (max-width:768px) {
	.states_module {
	height:120px;
}
}.states_module .container {
	height:100%;
}
.states_module .grid {
	display:flex;
	align-items:center;
	justify-content:center;
	height:100%;
	gap:20px;
}
.states_module .states_item {
	width:calc((100% - 40px) / 3);
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
	color:#fff;
}
.states_module .states_item .num {
	line-height:1.2;
}
.states_module .states_item .counter {
	font-size:72px;
	font-weight:bold;
}
@media (max-width:768px) {
	.states_module .states_item .counter {
	font-size:24px;
}
}.states_module .states_item em {
	margin-left:4px;
	font-size:14px;
	font-style:normal;
}
.states_module .states_item p {
	margin-top:8px;
	font-size:14px;
	color:#ccc;
}
.intro_module .intro_img {
	display:block;
	width:calc((100% - 20px) * 0.35);
	height:640px;
}
@media (max-width:768px) {
	.intro_module .intro_img {
	width:100%;
}
}.intro_module .intro_img img {
	width:100%;
	height:100%;
}
.intro_module .intro_list {
	display:flex;
	flex-direction:column;
	width:calc((100% - 20px) * 0.65);
	padding-left:35px;
}
@media (max-width:768px) {
	.intro_module .intro_list {
	width:100%;
	padding-left:0;
}
}.intro_module .intro_item {
	margin-bottom:40px;
	padding-bottom:20px;
	border-bottom:1px solid #ddd;
}
.intro_module .intro_item:last-child {
	margin-bottom:0;
}
.intro_module .intro_item:last-child {
	border-bottom:none;
}
.intro_module .intro_item h2 {
	margin:0 0 10px;
	font-weight:bold;
	font-size:24px;
}
.intro_module .intro_item p {
	margin:0;
	line-height:1.6;
	font-size:16px;
	color:#555;
}
.advantage_module {
	position:relative;
}
.advantage_module::before {
	content:'';
	position:absolute;
	top:0;
	right:0;
	width:200px;
	height:200px;
	background:#BDD7EE;
	border-radius:0 0 0 200px;
}
@media (max-width:576px) {
	.advantage_module::before {
	width:30px;
	height:30px;
}
}.advantage_module .advantage_head {
	display:flex;
	flex-direction:column;
	align-items:center;
	text-align:center;
	margin:0 auto;
	max-width:600px;
}
.advantage_module .advantage_head .title {
	font-size:42px;
	font-weight:bold;
	margin-bottom:30px;
	display:inline-block;
	border-bottom:4px solid #2c5caa;
	padding-bottom:5px;
	width:fit-content;
}
.advantage_module .advantage_head .meta p {
	margin-bottom:5px;
	text-align:left;
}
.advantage_module .advantage_head .meta p.bold {
	font-weight:600;
	font-size:24px;
}
.advantage_module .advantage_head .meta p.big {
	font-size:56px;
	display:inline-block;
	border-bottom:2px solid #000;
	width:fit-content;
}
.advantage_module .advantage_head .meta p.light {
	padding:5px 0;
	font-size:18px;
	letter-spacing:2;
}
.advantage_module .advantage_head  h2 {
	position:relative;
	display:inline-block;
	width:fit-content;
	margin-top:30px;
	font-size:32px;
	font-weight:bold;
	border-bottom:5px solid #31559A;
}
.flow_module {
	position:relative;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:120px;
	margin:30px auto 0;
}
@media (max-width:768px) {
	.flow_module {
	flex-direction:column;
	gap:80px;
}
}.flow_module .circle-block {
	position:relative;
	display:flex;
	flex-direction:column;
	align-items:center;
	width:280px;
	height:280px;
}
.flow_module .circle-layer {
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	width:100%;
	height:100%;
	border-radius:50%;
	background:radial-gradient(circle at center,rgba(44,92,170,0.1) 60%,transparent 100%);
	box-shadow:0 6px 16px rgba(0,0,0,0.1),inset 0 0 0 2px #2c5caa,inset 0 0 0 12px white;
}
.circle-block:nth-child(2) .circle-layer {
	box-shadow:0 6px 16px rgba(0,0,0,0.1),inset 0 0 0 2px #1F74AD,inset 0 0 0 12px white;
}
.circle-block:nth-child(3) .circle-layer {
	box-shadow:0 6px 16px rgba(0,0,0,0.1),inset 0 0 0 2px #3598DB,inset 0 0 0 12px white;
}
.circle-rotate-wrapper {
	position:relative;
	width:220px;
	height:220px;
	animation:rotate 12s linear infinite;
}
.circle-dashed {
	width:100%;
	height:100%;
	border:2px dashed #2c5caa;
	border-radius:50%;
}
.circle-block:nth-child(2) .circle-dashed {
	border:2px dashed #1F74AD;
}
.circle-block:nth-child(3) .circle-dashed {
	border:2px dashed  #3598DB;
}
.circle-inner {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:180px;
	height:180px;
	background-color:#2c5caa;
	color:white;
	font-size:18px;
	line-height:1.6;
	border-radius:50%;
	box-shadow:0 6px 12px rgba(0,0,0,0.15);
	display:flex;
	align-items:center;
	justify-content:center;
	padding:12px;
	text-align:center;
}
.circle-block:nth-child(2) .circle-inner {
	background-color:#1F74AD;
}
.circle-block:nth-child(3) .circle-inner {
	background-color:#3598DB;
}
.dot {
	position:absolute;
	width:42px;
	height:42px;
	background-color:#2c5caa;
	border-radius:50%;
}
.circle-block:nth-child(2) .dot {
	top:30px;
	left:20px;
	background-color:#1F74AD;
	z-index:99;
}
.circle-block:nth-child(3) .dot {
	bottom:17px;
	left:17px;
	background-color:#3598DB;
	z-index:99;
}
.circle-block:nth-child(4) .dot {
	top:30px;
	left:20px;
	z-index:99;
}
.dashed-line {
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	height:2px;
	transform:translateY(-50%);
	background-image:repeating-linear-gradient(
    to right,#cbd3e1,#cbd3e1 8px,transparent 8px,transparent 14px
  );
	z-index:-1;
}
@media (max-width:768px) {
	.dashed-line {
	display:none;
}
}.assurance_module .assurance_head {
	display:flex;
	justify-content:center;
	margin-bottom:16px;
}
.assurance_module .assurance_module h2 {
	display:inline-block;
	width:fit-content;
	font-weight:bold;
	font-size:32px;
	border-bottom:5px solid #31559A;
}
.assurance_module .assurance_item {
	display:flex;
	flex-wrap:wrap;
	gap:20px;
	margin-bottom:40px;
	padding-bottom:30px;
	border-bottom:1px solid #ddd;
}
.assurance_module .assurance_item img {
	width:calc((100% - 20px) * 0.1);
	height:auto;
	object-fit:cover;
	border-radius:8px;
	box-shadow:0 4px 8px rgba(0,0,0,0.15);
}
@media (max-width:768px) {
	.assurance_module .assurance_item img {
	width:calc((100% - 20px) * 0.2);
}
}@media (max-width:576px) {
	.assurance_module .assurance_item img {
	width:100%;
}
}.assurance_meta {
	flex:1;
	width:calc((100% - 20px) * 0.85);
}
@media (max-width:768px) {
	.assurance_module .assurance_meta {
	width:calc((100% - 20px) * 0.8);
}
}@media (max-width:576px) {
	.assurance_module .assurance_meta {
	width:100%;
}
}.assurance_module .assurance_meta h3 {
	font-size:22px;
	font-weight:bold;
	margin-bottom:10px;
	color:#000;
}
.assurance_module .assurance_meta p {
	line-height:2;
	letter-spacing:2px;
	font-size:16px;
	color:#333;
}
.banner_module {
	display:flex;
	flex-direction:column;
	gap:30px;
	position:relative;
}
.banner_module img {
	display:block;
	max-width:100%;
	height:auto;
	max-height:380px;
}
.banner_module h2.title {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color:#fff;
	font-size:48px;
}
@media (max-width:576px) {
	.banner_module h2.title {
	font-size:24px;
}
}.breadcrumb {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	gap:20px;
	padding:20px 0;
}
.category_name a {
	position:relative;
}
.category_name a:before {
	content:"";
	position:absolute;
	width:1px;
	height:15px;
	background:#ccc;
	top:50%;
	left:-15px;
	transform:translateY(-50%);
}
.search_module {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	gap:20px;
	padding:20px 0;
}
@media (max-width:576px) {
	.search_module {
	display:block;
	justify-content:initial;
	align-items:initial;
	flex-wrap:initial;
	gap:initial;
}
}.search_module h2 {
	margin:0;
	font-size:32px;
	line-height:1;
}
.search_module  .search {
	text-align:center;
	padding:20px 0;
}
.search_module  .search #searchform {
	display:flex;
	align-items:center;
	width:100%;
	background:#fff;
	border:1px solid #ddd;
	border-radius:4px;
	overflow:hidden;
	box-shadow:0 2px 5px rgba(0,0,0,0.1);
}
.search_module  .search #searchform .input_text {
	width:300px;
	height:40px;
	padding:10px 15px;
	font-size:16px;
	border:none;
	outline:none;
}
.search_module  .search #searchform .btn {
	display:flex;
	justify-content:center;
	align-items:center;
	width:80px;
	height:40px;
	background-color:#007BFF;
	color:#fff;
	font-size:16px;
	border:none;
	cursor:pointer;
}
.search_module  .search #searchform .btn:hover {
	background-color:#0056b3;
}
.search_module  .search #searchform .btn .iconfont {
	font-size:24px;
}
.stock_module {
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
	gap:50px;
	margin-top:30px;
	margin-bottom:50px;
}
.stock_module .stock_img,.stock_module .stock_name,.stock_module .stock_package,.stock_module .stock_tray,.stock_module .stock_contact {
	width:calc((100% - 80px) / 5);
	display:flex;
	flex-direction:column;
	gap:10px;
}
@media (max-width:576px) {
	.stock_module .stock_img,.stock_module .stock_name {
	width:calc((100% - 20px) / 2);
}
.stock_module .stock_package,.stock_module .stock_tray,.stock_module .stock_contact {
	width:calc((100% - 40px) / 3);
}
}.stock_module .stock_img img {
	width:80px;
	height:80px;
}
.stock_module .stock_name .maker {
	font-size:12px;
}
.stock_module .stock_package .type {
	font-size:14px;
}
.stock_module .stock_package .mun {
	font-size:12px;
	color:#d31531;
}
.stock_module .stock_tray .stock_down {
	display:flex;
	align-items:center;
	gap:10px;
}
.stock_module .stock_tray .stock_down i {
	line-height:1;
	font-size:36px;
}
.stock_module .stock_contact .way {
	display:flex;
	align-items:center;
	gap:5px;
}
.stock_module .stock_contact .way i {
	line-height:1;
	font-size:42px;
}
.article_head {
	display:flex;
	align-items:flex-start;
	gap:35px;
}
.article_img {
	display:flex;
	border-right:1px solid #e4e4e4;
	flex-shrink:0;
}
.article_img img {
	display:block;
	width:300px;
	height:300px;
	border-radius:16px;
}
.article_item {
	display:flex;
	flex-direction:column;
}
.article_item ul {
	display:flex;
	flex-direction:column;
	gap:10px;
}
.article_item ul li {
	font-size:14px;
	color:#666;
}
.article_item ul li a {
	font-size:14px;
	color:#666;
}
.article_item ul li span {
	font-size:14px;
	color:#000;
}
.article_item .tips {
	margin-top:15px;
	margin-bottom:15px;
	padding:10px 0;
	line-height:1.5em;
	font-size:15px;
	font-weight:bold;
	background-color:#f2f3f5;
	border:1px dashed #eee;
	border-radius:5px;
}
.contact_link {
	display:flex;
	align-items:center;
	gap:20px;
}
.contact_link img {
	width:64px;
	height:64px;
	border-radius:50px;
	flex-shrink:0;
}
.contact_link .meta {
	display:flex;
	flex-direction:column;
	gap:10px;
}
.contact_link .meta .tel span {
	padding-left:10px;
	font-size:17px;
	color:#090;
}
.contact_link .meta .qq {
	display:flex;
	align-items:center;
}
.contact_link .meta .qq a {
	display:flex;
	align-items:center;
	margin-left:10px;
	padding-right:6px;
	border:1px solid #ACC4E5;
	border-radius:4px;
	background:#E2ECFA;
}
.contact_link .meta .qq i {
	line-height:1;
	font-size:28px;
}
.contact_link .meta .qq a span {
	font-size:14px;
}
.brand_list .grid {
	gap:40px;
}
.brand_list ul li {
	width:calc((100% - 120px) / 4);
}
@media (max-width:768px) {
	.brand_list ul li {
	width:calc((100% - 80px) / 3);
}
}@media (max-width:576px) {
	.brand_list ul li {
	width:100%;
}
}.brand_list ul li a {
	position:relative;
	display:flex;
	flex-direction:column;
	gap:40px;
	align-items:center;
	justify-content:center;
	text-align:center;
	width:100%;
	transition:all .5s ease;
}
.brand_list ul li a::after {
	content:'';
	position:absolute;
	left:0px;
	bottom:0px;
	width:0px;
	height:2px;
	background-color:rgb(1,104,183);
	transition:all .5s ease;
}
.brand_list ul li a:hover::after {
	width:100%;
}
.brand_list ul li .title {
	position:relative;
	width:100%;
	text-align:center;
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	height:70px;
	line-height:70px;
}
.brand_list ul li .title .icon-search {
	position:absolute;
	left:5px;
	top:5px;
	display:block;
	font-size:28px;
	line-height:1;
}
.brand_list ul li .title::before {
	content:'';
	position:absolute;
	left:-170px;
	top:-70px;
	width:140px;
	height:140px;
	background-color:rgb(1,104,183);
	transform:rotate(45deg);
	transition:all .5s ease;
}
.brand_list ul li a:hover .title::before {
	left:-100px;
}
.brand_list ul li .brand_imgbox {
	width:80%;
	height:80px;
	overflow: hidden;
}
.brand_list ul li .brand_imgbox img {
	width:100%;
	height:100%;
}
.brand_list ul li .link_more {
	display:flex;
	align-items:center;
	justify-content:flex-start;
	text-align:center;
	padding:1rem 0px 2rem;
}
.brand_list ul li .link_more i {
	line-height:1;
	font-size:36px;
}
.pagelist {
	text-align:center;
	color:#666;
	width:100%;
	clear:both;
	margin:0 0 10px;
}
.pagelist a {
	color:#666;
	margin:0 5px 10px;
	padding:5px 10px;
	background:#F7F7F7;
	display:inline-block;
}
.pagelist a:hover,.pagelist>b {
	color:#3690cf;
	color:#FFF;
	background:#1C2327;
}
.pagelist>b {
	padding:5px 10px;
}
.plan_module .plan_item {
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	overflow:hidden;
	width:calc((100% - 40px) / 3);
}
@media (max-width:768px) {
	.plan_module .plan_item {
	width:calc((100% - 20px) / 2);
}
}@media (max-width:576px) {
	.plan_module .plan_item {
	width:100%;
}
}.plan_module .plan_item::before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,0.5);
	z-index:1;
}
.plan_module .plan_item a {
	display:contents;
}
.plan_module .plan_img {
	flex:1;
	height:320px;
	overflow:hidden;
	position:relative;
	z-index:0;
}
.plan_module .plan_img img {
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform 0.5s ease-in-out;
}
.plan_module .plan_item:hover img {
	transform:scale(1.1);
}
.plan_module .plan_item .meta {
	z-index:2;
}
.plan_module .plan_item .title {
	position:absolute;
	top:50%;
	left:10%;
	transform:translateY(-50%);
	font-size:18px;
	color:#fff;
	display:-webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}
.plan_module .plan_item .time {
	position:absolute;
	top:40px;
	left:80px;
	color:#fff;
}
.details_title {
	margin:30px 0;
	line-height:43px;
	text-indent:15px;
	font-size:16px;
	background-color:#f2f3f5;
	border:1px solid #eee;
	border-top:2px solid #0d0c22;
}
.article_tips {
	padding-bottom:20px;
}
.article_tips p {
	color:#666;
}
.article_content {
	padding:20px 0;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
}
.article_content li {
	padding-bottom:10px;
	color:#666;
}
#footer {
	padding-top:40px;
	background-color:#333;
	color:#fff;
	background-image:url('../images/footerBg.png');
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
	background-blend-mode:darken;
	background-color:rgba(51,51,51,0.8);
}
#footer .contact_module,#footer .nav_module,#footer .qr-codes {
	width:calc((100% - 40px) / 3);
}
@media (max-width:576px) {
	#footer .contact_module,#footer .nav_module,#footer .qr-codes {
	width:100%;
}
}#footer .contact_module .contact_title {
	border-left:3px solid #fff;
	padding-left:15px;
}
#footer .contact_module .contact_title h2 {
	font-size:32px;
	color:#fff;
	line-height:32px;
}
.contact_item {
	text-align:left;
	margin-top:20px;
	padding:15px 0 10px;
	border-top:1px solid rgba(255,255,255,0.15);
}
.contact_item p {
	margin-bottom:5px;
}
#footer .contact_module p,#footer .contact_module p a,#footer .nav_module ul li a {
	color:#fff;
	text-decoration:none;
}
.nav_module {
	text-align:center;
}
@media (max-width:576px) {
	.nav_module {
	text-align:left;
}
}.nav_module h3 {
	margin-bottom:15px;
	font-size:20px;
	color:#fff;
}
#footer  .nav_module h3 {
	margin-bottom:10px;
}
#footer  .nav_module ul {
	list-style:none;
	padding:0;
}
#footer  .nav_module ul li {
	margin-bottom:10px;
}
#footer .qr-codes {
	display:flex;
	align-items:center;
	gap:20px;
	justify-content:right;
}
@media (max-width:576px) {
	#footer .qr-codes {
	justify-content:left;
}
}#footer .qr-code {
	text-align:center;
}
#footer .qr-code p {
	display:block;
	font-size:14px;
	line-height:34px;
	color:#fff;
}
#footer .qr-code img {
	width:120px;
	height:120px;
}
.foot_module {
	margin-top:40px;
	padding:30px 0;
	border-top:1px solid rgba(255,255,255,0.15);
}
.foot_module .container {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	gap:20px;
}
.copyright {
	font-size:14px;
	color:#A9A9A9;
}
.copyright a {
	color:#A9A9A9;
}
.link_module {
	display:flex;
	gap:15px;
}
.link_module a {
	font-size:14px;
	color:#A9A9A9;
}
.sidebar_module {
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	position:fixed;
	top:70%;
	right:20px;
	transform:translateY(-70%);
}
@media (max-width:768px) {
	.sidebar_module {
	display:none;
}
}.sidebar_module .tel,.sidebar_module .mail,.sidebar_module .top {
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	width:70px;
	height:70px;
	margin-top:2px;
	background-color:rgba(1,104,183,0.8);
	border:1px solid #0168B7;
	border-right:none;
	box-sizing:border-box;
	transition:all .8s ease;
}
.sidebar_module .show,.sidebar_module .hover_show {
	position:absolute;
	left:0;
	top:0;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
	overflow:hidden;
	width:100%;
	height:100%;
	color:#fff;
	font-size:12px;
	white-space:nowrap;
	z-index:0;
	transition:opacity 0.3s ease;
}
.sidebar_module  .hover_show {
	display:none;
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%);
	z-index:1;
	background-color:transparent;
	pointer-events:none;
}
.sidebar_module .tel:hover,.sidebar_module .mail:hover {
	width:156px;
}
.sidebar_module .tel:hover .hover_show,.sidebar_module .mail:hover .hover_show {
	display:flex;
}
.sidebar_module .tel:hover .show,.sidebar_module .mail:hover .show {
	display:none;
}
.sidebar_module .tel::before,.sidebar_module .mail::before {
	content:"";
	position:absolute;
	height:100%;
	width:0;
	background-color:rgba(1,104,183,1);
	transition:all .8s ease;
	left:0;
}
.sidebar_module .tel:hover::before,.sidebar_module .mail:hover::before {
	width:100%;
}
.sidebar_module i.iconfont {
	font-size:42px;
	line-height:1;
}
.sidebar_module .top {
	display:none;
}
