/*scrollbar*/
::-webkit-scrollbar{width:8px;height: 6px;}
::-webkit-scrollbar-track-piece{margin-right:10px; background-color:#EEE; -webkit-border-radius:8px;}
::-webkit-scrollbar-thumb:vertical{height:8px; background-color:#DDD; -webkit-border-radius:8px;}
::-webkit-scrollbar-thumb:horizontal{ width:6px; background-color:#EEE; -webkit-border-radius:8px;}

:root {
	--theme-width: 1200px;
	--theme-color: #00499a;
}
@media screen and (max-width:768px) {
	:root {
		--theme-width: 100vw;
	}
}

body {
	background-color: #f8f8f8;
}
.clear:after{
	display: block;
	content: '';
	clear: both;
}
a:hover {
	text-decoration: none;
	transition: box-shadow .3s, border .3s, background-color .3s, color .3s;
}
.header {
	position: relative;
	height: 80px;
	z-index: 1;
}
#top-navi {
	box-shadow: 0 1px 4px rgba(21,26,48,.08);
	background-color: #fff;
	position: fixed;
	width: 100%;
}
#mobile-menu,.mobile-tool,#mobile-product-menu,.mobile-show {
	display: none;
}
.top-navi-content {
	display: flex;
	margin: 0 auto;
	position: relative;
	line-height: 80px;
	width: var(--theme-width);
}
.top-navi-content .logo {
	width: 180px;
	height: 100%;
}
.top-navi-content .logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-navi-content .menu-box {
	flex: 1;
}
.top-navi-content .menu {
	display: flex;
	line-height: 80px;
	justify-content: flex-end;
}
.top-navi-content .menu li {
	padding: 0 20px;
	text-align: center;
	font-size: 16px;
}
.top-navi-content .menu li.current-menu-item,.top-navi-content .menu li.current-menu-item a,.top-navi-content .menu li:hover,.top-navi-content .menu li:hover a {
	color: var(--theme-color);
	font-weight: bold;
}
.top-navi-content .menu li a {
	display: block;
}

#home-slider .content-box-inner {
	background-position: 50% 50%; 
	background-size: cover; 
}
.content-box-inner .container {
	background-color: rgba(255, 255, 255, 0.8);
	width: 522px;
	height: 230px;
	margin: calc((650px - 230px - 30px) / 2) auto;
	padding: 15px;
}
.content-box-inner .container .border {
	border: 1px solid var(--theme-color);
	height: 100%;
	display: grid;
	place-content: center;
}
.content-box-inner .container .title {
	font-size: 54px;
	color: var(--theme-color);
	font-weight: bold;
	line-height: 1.5;
	margin: 0 10px;
}
.content-box-inner .container .subtitle {
	font-size: 24px;
	color: var(--theme-color);
	line-height: 1.5;
	margin: 0 10px;
}
#home-slider .layui-carousel-arrow {
	width: 34px;
	height: 58px;
	border-radius: 0;
}
.layui-carousel-ind ul {
	background-color: transparent;
}
.layui-carousel-ind ul li {
	background-color: rgb(0 0 0 / 60%);
}
.layui-carousel-ind ul li.layui-this {
	background-color: var(--theme-color);
}
.main-content {
	margin: 20px auto;
	width: var(--theme-width);
	position: relative;
}
.main-content .title {
	line-height: 1.75;
	font-size: 36px;
	text-align: center;
	word-wrap: break-word;
}
.main-content .item-wrap {
	margin-top: 30px;
}
.main-content .item-wrap li {
	margin-right: 20px;
	margin-bottom: 20px;
	width: calc((100% - 40px) / 3);
	border-radius: 5px;
	background-color: #fff;
	overflow: hidden;
	border: 1px solid #eee;
	box-sizing: border-box;
	float: left;
	transition: box-shadow .3s, border .3s, background-color .3s, color .3s, transform .3s;
}
.main-content .item-wrap li:hover {
	transform: translateY(-3px);
	box-shadow: 0 2px 10px rgba(0, 73, 154, 0.1);
}
.main-content .item-wrap li:nth-child(3n) {
	margin-right: 0;
}
.main-content .item-top {
	width: 100%;
	height: 180px;
}
.main-content .item-top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-content .item-bottom {
	position: relative;
	padding: 30px 25px;
}
.main-content .item-bottom .tag {
	position: absolute;
	background-color: var(--theme-color);
	width: 100px;
	height: 100px;
	border-radius: 100%;
	text-align: center;
	right: 25px;
	top: -50px;
	color: #fff;
	display: grid;
	place-content: center;
}
.main-content .item-bottom .tag .price,.main-content .item-bottom .tag .month {
	font-size: 14px;
	line-height: 1.5;
	font-family: sans-serif;
}
.main-content .item-bottom .tag .number {
	font-size: 22px;
	line-height: 1.5;
	font-weight: bold;
	font-family: sans-serif;
}
.main-content .item-bottom .name {
	font-size: 24px;
	text-align: left;
	line-height: 1.75;
	word-wrap: break-word;
}
.main-content .item-bottom .content {
	font-size: 14px;
	color: #666666;
	line-height: 1.75;
	text-align: left;
	margin: 20px 0;
	height: 72px;
}
.main-content .item-bottom .btn {
	font-size: 14px;
	color: var(--theme-color);
	border: 1px solid var(--theme-color);
	line-height: 34px;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	transition: border .3s, background-color .3s, color .3s;
}
.main-content .item-bottom .btn:hover {
	color: #fff;
	background-color: var(--theme-color);
}

.home-more-btn {
	text-align: center;
	margin: 50px auto;
	font-size: 16px;
	color: #fff;
	background-color: var(--theme-color);
	width: 280px;
	height: 50px;
	line-height: 50px;
	cursor: pointer;
	border-radius: 5px;
	display: block;
	transition: background-color .3s, color .3s,transform .3s;
}
.home-more-btn i {
	margin-right: 5px;
}
.home-more-btn:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 2px 10px rgba(0, 73, 154, 0.1);
	transition: background-color .3s, color .3s,transform .3s;
}

.home-project-popup-form {
	border-radius: 10px;
}
.home-project-popup-form .layui-layer-close {
	right: -5px;
	top: -5px;
	background-color: transparent;
	color: #787878;
	border: none;
}
.home-project-popup-form .layui-layer-close:hover {
	background-color: transparent;
	color: #333;
}
.home-project-popup-form .layui-layer-content {
	padding: 40px;
}
.popup-content-head img {
	width: 100%;
}
.popup-content-bottom .title {
	line-height: 1.75;
	font-size: 24px;
	margin: 20px 0;
}
.layui-table td, .layui-table th {
	text-align: center;
	border: 1px solid #787878;
}
.popup-content-bottom .hot,.popup-content-bottom .hot-2 {
	position: relative;
	background-color: #d9e2f3;
}
.popup-content-bottom tbody tr:hover {
	background-color: transparent;
}
.popup-content-bottom thead .one:before {
	position: absolute;
	left: 0px;
	top: -12px;
	z-index: 1;
}
.popup-content-bottom thead .two:before {
	position: absolute;
	right: -33px;
	top: -12px;
	z-index: 1;
}
.popup-content-bottom thead .hot:before {
	content: "推荐";
	color: #fff;
	width: 66px;
	height: 66px;
	background-image: url(../images/4780157.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	line-height: 60px;
	font-size: 16px;
	font-weight: bold;
}
.popup-content-bottom .btn-box td {
	border: none;
}
.popup-content-bottom .btn-box:hover {
	background-color: transparent;
}
.popup-content-bottom .btn-box .btn {
	height: 40px;
	line-height: 40px;
	width: 150px;
	margin: 0 auto;
	border-radius: 4px;
	background-color: var(--theme-color);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
	cursor: pointer;
	color: #fff;
	display: block;
	transition: background-color .3s, color .3s,transform .3s;
}
.popup-content-bottom .btn-box .btn:hover {
	background: #2188ca;
	transition: background-color .3s, color .3s,transform .3s;
}

.popup-content-bottom .text {
	display: flex;
	margin-bottom: 20px;
}
.popup-content-bottom .text.overflow {
	height: 330px;
	overflow: auto;
}
.popup-content-bottom .text>div {
	flex: 1;
}
.popup-content-bottom .text>div span {
	display: block;
	line-height: 1.75;
}
.popup-content-bottom .text>div p {
	margin: 10px 0;
}
.popup-content-bottom .text>div.right {
	margin-left: 50px;
}
.popup-content-bottom .btn-box {
	text-align: center;
}
.sidebar {
	position: fixed;
	right: 0;
	bottom: 10%;
	width: 60px;
}
.sidebar li {
	width: 60px;
	height: 60px;
	cursor: pointer;
	border-top: 1px solid #fff;
}
.sidebar li:first-child {
	border-top: none;
}
.sidebar li .icon {
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	background-color: var(--theme-color);
	position: absolute;
	z-index: 1;
}
.sidebar li .icon i {
	font-size: 30px;
	color: #fff;
}
.sidebar li .tips {
	width: 160px;
	visibility: hidden;
	background-color: var(--theme-color);
	position: absolute;
	right: 0;
	top: 0;
	height: 40px;
	padding: 10px;
	color: #fff;
	transition: background-color .3s, color .3s,right .3s;
}
.sidebar li:hover .icon,.sidebar li:hover .tips {
	background-color: #296cb7;
}
.sidebar li:hover .tips{
	visibility: visible;
	right: 60px;
	transition: background-color .3s, color .3s,right .3s;
}
.sidebar li .tips.qrcode {
	height: 185px;
}
.sidebar li .tips p {
	line-height: 1.5;
}
.sidebar li .tips p img {
	width: 160px;
	height: 160px;
}
.footer {
	background-color: #1a222b;
	color: #fff;
	height: 50px;
	line-height: 50px;
	text-align: center;
}

div[carousel-item]>* {
	text-align: center;
	line-height: 280px;
	color: #fff;
}


/*常见问题页面*/
.mian-head {
	height: 300px;
}
.mian-head .head-bg {
	background-position: 50% 50%; 
	background-size: cover;
	height: inherit;
}
.mian-head .head-bg .head-name {
	color: #01499a;
	font-size: 44px;
	font-weight: bold;
	line-height: 300px;
	width: var(--theme-width);
	margin: 0 auto;
}
.faqs-tab-box .layui-tab-content {
	width: var(--theme-width);
	margin: 0 auto;
}
.faqs-tab-box .card-item {
	padding: 20px 50px;
	margin-bottom: 20px;
}
.faqs-tab-box .card-item:nth-child(odd) {
	background-color: #e3eaf3;
}
.faqs-tab-box .card-item:nth-child(even) {
	background-color: #f3f3f3;
}
.faqs-tab-title {
	text-align: center;
	padding-bottom: 10px;
}
.faqs-tab-title li {
	font-size: 17px;
}
.faqs-tab-title li.layui-this,.faqs-tab-title li:hover {
	color: var(--theme-color);
	font-weight: bold;
}
.faqs-tab-title li:first-child:after {
	border-left: 0 !important;
}
.faqs-tab-title li:after {
	content: "" !important;
	border-width: 0 !important;
	border-left: 1px solid #eee !important;
	position: absolute !important;
	left: 0px !important;
	width: 100% !important;
	height: 40px !important;
	top: 0 !important;
}
.faqs-tab-box .card-item .title {
	font-size: 16px;
	color: #333333;
	line-height: 1.5;
	border-bottom: 1px solid #dddddd;
	padding: 10px 0;
}
.faqs-tab-box .card-item .content {
	color: #666666;
	font-size: 14px;
	line-height: 2;
	margin-top: 10px;
}
.faqs-tab-box .card-item .content p {
	margin: 10px auto;
}
.faqs-tab-box .card-item .content p span {
	display: block;
}
.faqs-tab-box .card-item .content p .indent {
	text-indent: 42px;
}
.faqs-tab-box .card-item .content p a {
	font-size: 16px;
	color: var(--theme-color);
}
.faqs-tab-box .apply-button {
	text-align: center;
	margin: 50px auto;
}
.faqs-tab-box .apply-button a {
	color: #fff;
	height: 36px;
	line-height: 36px;
	font-size: 16px;
	background-color: #3099dd;
	display: block;
	width: 135px;
	margin: 0 auto;
	border-radius: 5px;
	font-weight: bold;
}
.faqs-tab-box .apply-button a:hover {
	font-weight: lighter;
}
.faqs-tab-box .apply-button .tips {
	font-size: 14px;
	margin-top: 20px;
	color: #5f5f5f;
}

/*面包屑*/
.breadcrumb {
	width: var(--theme-width);
	margin: 0 auto;
	height: 40px;
	line-height: 40px;
	background-color: #f8f8f8;
}

/*联系我们*/
.contact-mian-wrap .contact-content .about-wrap {
	background-color: #fff;
	padding: 50px 0;
}
.contact-mian-wrap .contact-content .about {
	width: var(--theme-width);
	margin: 0 auto;
	display: flex;
}
.contact-content .about .left {
	position: relative;
	width: 533px;
	height: 658px;
	padding-left: 50px;
}
.contact-content .about .block {
	width: 100px;
	height: 100px;
	background-color: var(--theme-color);
}
.contact-content .about .image {
	width: 468px;
	height: 633px;
	position: absolute;
	top: 25px;
	left: 75px;
}
.contact-content .about .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact-content .about .right {
	flex: 1;
	padding-right: 50px;
}
.contact-content .about .right .title {
	font-size: 36px;
	color: var(--theme-color);
	line-height: 1.75;
	width: 306px;
	border-bottom: 2px solid var(--theme-color);
}
.contact-content .about .right .content {
	padding: 20px 0;
}
.contact-content .about .right .content p {
	font-size: 14px;
	color: #333;
	line-height: 1.75;
	margin: 10px 0;
	word-wrap: break-word;
}
.contact-content .about .right .content p span {
	display: block;
}
.contact-mian-wrap .contact-content .contact-wrap {
	width: var(--theme-width);
	margin: 0 auto;
	padding-bottom: 80px;
}
.contact-content .contact-wrap .contact {
	padding: 0 50px;
}
.contact-content .contact-wrap .contact>.title {
	line-height: 1.75;
	font-size: 36px;
	color: var(--theme-color);
	border-bottom: 2px solid var(--theme-color);
	width: 400px;
	text-align: center;
	margin: 50px auto 30px;
}
.contact-content .contact-wrap .message-form {
	display: flex;
	background-color: #fff;
}
.contact-wrap .message-form .left {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 500px;
	height: 600px;
	position: relative;
}
.contact-wrap .message-form .left:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgb(0 73 154 / 14%);
	z-index: 0;
}
.contact-wrap .message-form .left .layer {
	position: relative;
	z-index: 1;
}
.contact-wrap .message-form .left .logo {
	width: 225px;
	height: 62px;
	margin: 10px auto;
	padding: 10px 0;
}
.contact-wrap .message-form .left .logo img,.contact-wrap .message-form .left .box-qrcode img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact-wrap .message-form .left .box {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #607488;
	width: 290px;
	margin: 20px auto;
	padding-bottom: 20px;
	color: #fff;
}
.contact-wrap .message-form .left .box i {
	margin-right: 3px;
	font-size: 25px;
	width: 80px;
	text-align: center;
}
.contact-wrap .message-form .left .box .text {
	line-height: 1.75;
	font-weight: bold;
	font-size: 16px;
	width: 196px;
}
.contact-wrap .message-form .left .box-qrcode .qrcode {
	width: 180px;
	height: 180px;
	padding: 10px;
	border-radius: 20px;
	background-color: #fff;
	margin: 20px auto;
}
.contact-wrap .message-form .left .box-qrcode .tips {
	color: #ffffff;
	line-height: 1.5;
	text-align: center;
}
.contact-wrap .message-form .left .box-qrcode .tips span:not(.mobile-show) {
	display: block;
}
.contact-wrap .message-form .left .box-qrcode .tips span {
	font-size: 18px;
}
.contact-wrap .message-form .left .box-qrcode .tips em {
	font-style: normal;
	font-size: 16px;
}
.contact-wrap .message-form .right {
	padding: 60px;
	flex: 1;
}
.contact-wrap .message-form .right .title {
	color: #242424;
	font-size: 30px;
	line-height: 1.5;
}
.contact-wrap .message-form .right .layui-form {
	padding-top: 50px;
}
.contact-wrap .message-form .right .layui-form-label {
	color: #999999;
	font-size: 12px;
	width: 50px;
}
.contact-wrap .message-form .right .layui-input-block {
	margin-left: 80px;
}
.contact-wrap .message-form .right .message-btn {
	text-align: right;
}
.contact-wrap .message-form .right .layui-input, .contact-wrap .message-form .right .layui-textarea {
	background-color: #ecf1f4;
}
.contact-wrap .message-form .right .layui-textarea {
	min-height: 160px;
	resize:none
}
.contact-wrap .message-form .right .layui-form-item .layui-input-inline {
	width: 270px;
}
.contact-wrap .message-form .right .layui-form-item .captcha {
	height: 38px;
	width: 120px;
	float: right;
	cursor: pointer;
}
.contact-wrap .message-form .right .message-btn button {
	background-color: var(--theme-color);
	border-radius: 100px;
	height: 36px;
	line-height: 36px;
	font-size: 12px;
	transition: all 200ms linear;
	width: 98px;
}

/*产品项目模板*/
.product-mian-wrap {
	background-color: #fff;
	padding-bottom: 50px;
}
.product-mian-wrap .product-content {
	width: var(--theme-width);
	margin: 50px auto;
	display: flex;
}
.product-content .left-menu {
	width: 280px;
}
.product-content .left-menu .product-title {
	background-color: #00499a;
	line-height: 60px;
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
	height: 60px;
}
.product-content .left-menu .product-item {
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
	box-sizing: border-box;
}
.product-content .left-menu .product-item li {
	background-color: #f3f3f3;
	padding: 0 35px 0 10px;
	border-bottom: 1px solid #eee;
}
.product-content .left-menu .product-item li.parent .parent-label {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 15px;
	color: #444444;
	font-weight: bold;
	height: 50px;
	line-height: 50px;
	cursor: pointer;
	user-select: none;
}
.product-content .left-menu .product-item li.parent:hover .parent-label {
	color: var(--theme-color);
}
.product-content .left-menu .product-item li.parent .parent-label i {
	display: inline-block;
	transition: transform .2s linear;
}
.product-content .left-menu .product-item li.parent.is-collapsed .parent-label i {
	transform: rotate(-90deg);
}
.product-content .left-menu .product-item li i {
	font-size: 15px;
	margin-right: 5px;
	font-weight: lighter;
}
.product-content .left-menu .product-item li.child {
	background-color: #fff;
}
.product-content .left-menu .product-item li.child.is-hidden {
	display: none;
}
.product-content .left-menu .product-item li.child a {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
	color: #444444;
	height: 48px;
	line-height: 48px;
}
.product-content .left-menu .product-item li.child:hover,.product-content .left-menu .product-item li.child.on {
	background-color: var(--theme-color);
}
.product-content .left-menu .product-item li.child:hover a,.product-content .left-menu .product-item li.child.on a {
	color: #fff;
}
.product-content .left-menu .product-item li.child i {
	font-size: 14px;
}
.product-content .right-content {
	margin-left: 30px;
	position: relative;
	flex: 1;
}
.product-content .right-content .bg {
	height: 44px;
}
.product-content .right-content .bg img {
	width: 100%;
	height: 100%;
}
.product-content .right-content .name {
	font-size: 24px;
	line-height: 44px;
	position: absolute;
	top: 0;
	left: 10px;
	color: #fff;
}
.product-content .right-content .subtitle {
	font-size: 22px;
	line-height: 44px;
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	background-color: #f6a000;
	min-width: 250px;
	padding: 0 24px;
	text-align: center;
	box-sizing: border-box;
}
.product-content .right-content .title {
	width: 100%;
	height: auto;
	color: #404040;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	line-height: 100px;
	word-wrap: break-word;
	word-break: normal;
	margin: 0 10px;
}
.product-content .right-content .steps {
	background-color: #f2f6fa;
	height: 85px;
	line-height: 85px;
	margin-top: 70px;
	display: flex;
}
.product-content .right-content .steps .step {
	flex: 1;
	text-align: center;
	font-size: 16px;
	position: relative;
	padding-left: 30px;
}
.product-content .right-content .steps .step em {
	font-size: 114px;
	color: var(--theme-color);
	font-weight: bold;
	position: absolute;
	width: 75px;
	left: 25px;
	bottom: 24px;
}
.product-content .right-content .content-box {
	background-color: #f4f8ff;
	padding: 50px 20px;
}
.product-content .right-content .content-box .apply-btn {
	display: block;
	width: 120px;
	margin: 0 auto;
}
.product-content .right-content .content-box .apply-btn span {
	background-color: var(--theme-color);
	color: #fff;
	font-size: 16px;
	display: block;
	text-align: center;
	border-radius: 4px;
	padding: 10px 0;
	cursor: pointer;
}
.product-content .right-content .content-box .content {
	padding: 40px 0;
}
.right-content .content-box table {
	margin-bottom: 10px;
	border-collapse: collapse;
	display: table;
	width: 100%;
}
.right-content .content-box td, .right-content .content-box th {
	padding: 5px 10px;
	border: 1px solid #DDD;
	line-height: 25px;
}
.right-content .content-box td[colspan] {
	text-align: center;
}
.right-content .content-box table tbody tr:first-child {
	background-color: #eeeeee;
	font-size: 15px;
	font-weight: bold;
}
.right-content .content-box p {
	line-height: 18px;
	margin-bottom: 10px;
	text-align: left;
}

.product-content .right-content .apply-form {
	margin: 40px 0;
}
.apply-form .layui-form-item {
	padding: 0 30px;
}
.apply-form .layui-form-item .tips {
	font-size: 12px;
	color: #333;
}
.apply-form .layui-form-label {
	float: none;
	text-align: left;
	padding: 9px 0;
	width: auto;
}
.apply-form .layui-input-block {
	margin-left: 0;
}
.apply-form .layui-form-label em,.apply-form .layui-form-item .tips em {
	color: #e75845;
	font-family: Tahoma;
	font-style: normal;
	margin: 0 2px;
	box-sizing: content-box;
}
.right-content .apply-form .form-title {
	background-color: var(--theme-color);
	height: 44px;
	line-height: 44px;
	font-size: 14px;
	color: #fff;
	padding: 0 30px;
	margin-bottom: 20px;
}
.layui-laydate-footer span:hover,.layui-form-radio:hover *, .layui-form-radioed, .layui-form-radioed>i {
	color: var(--theme-color);
}
.product-content .right-content .product-apply-btn {
	width: 166px;
	margin: 0 auto;
}
.product-content .right-content .product-apply-btn span {
	display: block;
	background-color: #fba337;
	line-height: 36px;
	color: #fff;
	text-align: center;
	transition: background-color 300ms linear;
	cursor: pointer;
}
.product-content .right-content .product-apply-btn span:hover {
	background-color: var(--theme-color);
	transition: background-color 300ms linear;
}
.product-content .right-content .product-success {
	padding: 45px 0 70px;
	text-align: center;
}
.product-content .right-content .product-success-card {
	background-color: #f4f7fd;
	border-radius: 10px;
	padding: 72px 36px 62px;
	margin: 0 4px 58px;
}
.product-content .right-content .product-success-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 300px;
	height: 78px;
	padding: 0 42px;
	border: 1px solid #24d28c;
	border-radius: 44px;
	color: #24d28c;
	font-size: 30px;
	box-sizing: border-box;
}
.product-content .right-content .product-success-badge i {
	font-size: 30px;
}
.product-content .right-content .product-success-title {
	margin-top: 48px;
	color: #1f1f1f;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6;
}
.product-content .right-content .product-success-text {
	margin-top: 12px;
	color: #333;
	font-size: 14px;
	line-height: 2;
}
.product-content .right-content .product-success-text p {
	margin: 0;
}
.product-content .right-content .product-success-text em {
	color: #f03b56;
	font-style: normal;
}
.product-content .right-content .product-success-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 34px;
}
.product-content .right-content .product-success-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 250px;
	height: 50px;
	padding: 0 32px;
	border: 2px solid var(--theme-color);
	color: var(--theme-color);
	background-color: #fff;
	font-size: 22px;
	font-weight: bold;
	box-shadow: 2px 3px 0 rgba(0, 0, 0, .18);
	box-sizing: border-box;
	transition: background-color .2s linear, color .2s linear;
}
.product-content .right-content .product-success-actions a:hover {
	background-color: var(--theme-color);
	color: #fff;
}
.product-content .right-content .product-success-actions span {
	font-size: 28px;
	line-height: 1;
}


/*递签攻略*/
.visum-content,.single-mian-wrap {
	padding-bottom: 50px;
	background-color: #fff;
}
.visum-content-head {
	padding: 40px 0 20px 0;
	border-bottom: 1px solid #eeeeee;
}
.visum-content-head .title {
	text-align: center;
	font-size: 24px;
}
.visum-category {
	font-size: 15px;
	text-align: center;
	line-height: 30px;
	width: var(--theme-width);
	margin: 25px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.visum-category li {
	flex: 1;
	position: relative;
	max-width: 130px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}
.visum-category a {
	color: #383838;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.visum-category a:hover,.visum-category li.on a {
	color: var(--theme-color);
	font-weight: bold;
}
.visum-category em {
	border-left: 1px solid var(--theme-color);
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}
.visum-category li:last-child em {
	display: none;
}
.visum-content-wrap,.single-content-box {
	width: var(--theme-width);
	margin: 30px auto;
	padding: 50px 0;
}
.visum-content-item {
	display: none;
}
.visum-content-item.on {
	display: block;
}
.visum-content-item .title {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.75;
	margin: 10px 0 22px;
}
.visum-content-item .description {
	font-size: 18px;
	line-height: 1.75;
	color: #333;
	margin: 10px 0 42px;
}
.visum-content-item .description em {
	font-style: normal;
	color: #ff0000;
	margin-right: 2px;
}

.visum-content-item li {
	padding-bottom: 15px;
	margin-bottom: 15px;
	position: relative;
	min-height: 88px;
	border-bottom: 1px dashed #e3eaf3;
	display: flex;
}
.visum-content-item .contents {
	margin-top: 20px;
	position: relative;
}
.visum-content-item li .content {
	flex: 1;
	margin-left: 0;
}
.visum-content-item li .cover + .content {
	margin-left: 22px;
}
.visum-content-item li .content .title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	line-height: 24px;
	font-size: 12px;
	margin: 0;
}
.visum-content-item li .content .title a {
	font-size: 15px;
	font-weight: bold;
	color: #404040;
	line-height: 24px;
	display: block;
}
.visum-content-item li .content .title a:hover {
	color: #222;
	text-decoration: underline;
}
.visum-content-item li .desc {
	margin-top: 5px;
	line-height: 18px;
	font-size: 14px;
	color: #999;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	overflow: hidden;
	text-overflow: ellipsis;
}
.visum-content-item li .cover {
	width: 88px;
	height: 88px;
	overflow: hidden;
}
.visum-content-item li .cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s linear;
}
.visum-content-item li .cover a:hover img {
	transform: scale(1.1);
}
.visum-content-wrap .paging {
	display: none;
	margin: 20px auto;
	text-align: center;
}
.visum-content-wrap .paging.on {
	display: block;
}
.visum-content-wrap .paging .layui-laypage a,.visum-content-wrap .paging .layui-laypage span {
	margin-right: 10px;
	border: 1px solid #ccc;
	overflow: hidden;
	color: #666;
}
.visum-content-wrap .paging .layui-laypage a:last-child {
	margin-right: 0;
}
.visum-content-wrap .paging .layui-laypage .layui-laypage-curr em {
	color: #666;
}
.visum-content-wrap .paging .layui-laypage a:not(.layui-disabled):hover {
	background-color: #eee;
}

.single-content-box .title {
	color: #404040;
	font-size: 24px;
	text-align: center;
	line-height: 34px;
	word-wrap: break-word;
	word-break: normal;
	margin-bottom: 50px;
}
.single-content-box .content,.comment-form-wrap,.comment-tips {
	width: 800px;
	margin: 0 auto;
}
.single-content-box .content p {
	margin: 10px 0;
	line-height: 1.75;
}
.single-content-box .content img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}



/*评论*/
.comment-form-wrap {
	padding-bottom: 50px;
}
.comment-tips {
	font-size: 16px;
	color: var(--theme-color);
	margin-bottom: 10px;
}
.comment-form-wrap textarea {
	resize: none;
}
.comment-form-wrap button {
	background-color: var(--theme-color);
}
.comment-bottom {
	margin-top: 10px;
	height: 38px;
	box-sizing: content-box;
}
.comment-form-email {
	margin-right: 10px;
}
.comment-bottom,#comment-author-info,.comment-form-email,.comment-form-captcha {
	display: flex;
	line-height: 38px;
	position: relative;
}
#comment-author-info {
	flex: 1;
}
.comment-form-wrap .comment-form-captcha input {
	width: 100px;
}
.comment-author-info #change-comment-captcha {
	height: 38px;
}
.comment-bottom .cancel-reply {
	color: #787878;
	margin-right: 20px;
	cursor: pointer;
	display: none;
}
.comment-bottom .cancel-reply i {
	vertical-align: bottom;
}
.comment-bottom .cancel-reply:hover {
	color: var(--theme-color);
}
.comment-list .cancel-reply {
	display: block;
}
.comment-list>li {
	padding-top: 18px;
}
.comment-body {
	position: relative;
	min-height: 76px;
}
.comment-avatar-area {
	position: absolute;
}

.comment-avatar-area >.avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 0;
	vertical-align: middle;
	user-select: none;
}

.comment-list>li:after {
	content: "";
	display: block;
	height: 1px;
	background-color: #e5e9ef;
	margin-top: 20px;
}

.comment-content-user {
	line-height: 18px;
	padding-bottom: 5px;
	display: block;
	word-wrap: break-word;
}

.comment-content-user .comment-auth, .comment-content-user .comment-auth a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	word-wrap: break-word;
	color: #6d757a;
	cursor: pointer;
}

.comment-content-text {
	line-height: 1.8;
	padding: 6px 0;
	text-shadow: none;
	overflow: hidden;
	word-wrap: break-word;
	word-break: break-word;
}

.comment-content-text p, .comment-content-text blockquote {
	margin: 0 0 10px;
}

.comment-content-text >*:last-child {
	margin-bottom: 0;
}

.comment-awaiting-moderation {
	color: #eb5055;
}

.comment-content-info {
	margin-top: 6px;
	margin-bottom: 12px;
	font-size: 16px;
}

.comment-content-info, .comment-content-info a {
	color: #99a2aa;
	text-decoration: none;
}

.comment-content-info span {
	margin-right: 10px;
}

.comment-content-area, .comment-list >.depth-1 >.children, .comment-list >li:after, .comment-list >.depth-1 >#respond {
	margin-left: 74px;
}

.comment-list .depth-1>.children .comment-body {
	margin-top: 22px;
}

.comment-list .depth-1>.children .comment-avatar-area>.avatar {
	width: 42px;
	height: 42px;
}

.comment-list .depth-1>.children .comment-content-area {
	margin-left: 56px;
}

.comment-at {
	color: #eb5055;
	border: 0;
	margin-right: 5px
}

.comment-reply-link {
	cursor: pointer;
}
.comment-reply-link:hover {
	color: var(--theme-color);
}
.post-download {
	display: block;
	margin: 10px 0;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}



@media screen and (max-width:768px) {
	.header {
		height: 54px;
		z-index: 997;
	}
	.top-navi-content {
		line-height: 54px;
	}
	.top-navi-content .logo {
		text-align: center;
	}
	.top-navi-content .logo img {
		height: 31px;
		width: 115px;
	}
	.layui-carousel {
		height: 180px !important;
	}
	#home-slider .layui-carousel-arrow {
		display: none;
	}
	#mobile-menu {
		display: flex;
		color: var(--theme-color);
		line-height: 54px;
		height: 54px;
		position: absolute;
		right: 20px;
	}
	#mobile-menu em {
		font-style: normal;
		font-size: 15px;
	}
	#menu-btn .menu-btn-bar {
		position: relative;
		display: block;
		width: 15px;
		height: 2px;
		margin: 3px 0;
		background-color: var(--theme-color);
		border-radius: 1px;
		box-sizing: border-box;
		top: 18px;
		left: 4px;
	}
	.main-menu-on #menu-btn .menu-btn-bar:nth-of-type(1) {
		-webkit-transform: translateY(5px) rotate(-45deg);
		-moz-transform: translateY(5px) rotate(-45deg);
		-ms-transform: translateY(5px) rotate(-45deg);
		-o-transform: translateY(5px) rotate(-45deg);
		transform: translateY(5px) rotate(-45deg)
	}
	.main-menu-on #menu-btn .menu-btn-bar:nth-of-type(2) {
		opacity: 0
	}
	.main-menu-on #menu-btn .menu-btn-bar:nth-of-type(3) {
		-webkit-transform: translateY(-5px) rotate(45deg);
		-moz-transform: translateY(-5px) rotate(45deg);
		-ms-transform: translateY(-5px) rotate(45deg);
		-o-transform: translateY(-5px) rotate(45deg);
		transform: translateY(-5px) rotate(45deg)
	}
	.sidebar {
		display: none;
	}
	.top-navi-content .menu-box {
		position: fixed;
		top: 0;
		bottom: 0;
		right: 100%;
		width: 65%;
		z-index: 999;
		overflow-y: auto;
		transition: transform .3s linear;
		z-index: 2;
	}
	.main-menu-on .top-navi-content .menu-box {
		box-shadow: 0 0 15px 0 #9c9c9c;
		transform: translateX(100%);
		-o-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		background-color: var(--theme-color);
	}
	.top-navi-content .menu li {
		text-align: left;
	}
	.top-navi-content .menu li a {
		color: #fff;
	}
	.top-navi-content .menu li.current-menu-item {
		background-color: #fff;
	}
	.top-navi-content .menu li:hover {
		background-color: var(--theme-color);
	}
	.top-navi-content .menu li:hover a {
		color: #fff;
	}
	.top-navi-content .menu li.current-menu-item:hover a {
		color: var(--theme-color);
	}
	.top-navi-content .menu {
		display: block;
		height: 100%;
		line-height: unset;
	}
	.main-content .title {
		font-size: 16px;
		font-weight: bold;
	}
	.main-content .item-wrap li {
		width: 90%;
		float: unset;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 20px;
	}
	.main-content .item-wrap li:nth-child(3n) {
		margin-right: auto;
	}
	.main-content .item-bottom .tag {
		width: 70px;
		height: 70px;
		top: -35px;
	}
	.main-content .item-bottom .tag .price, .main-content .item-bottom .tag .month {
		font-size: 12px;
		line-height: 1;
	}
	.main-content .item-bottom .tag .number {
		font-size: 16px;
		line-height: 1.2;
	}
	.comment-content-area, .comment-list >.depth-1 >.children, .comment-list >li:after, .comment-list >.depth-1 >#respond {
		margin-left: 64px
	}
	.content-box-inner .container {
		width: 80%;
		height: 100px;
		margin: calc((180px - 100px - 30px) / 2) auto;
	}
	.content-box-inner .container .title {
		font-size: 20px;
	}
	.content-box-inner .container .subtitle {
		font-size: 14px;
	}
	.mobile-tool {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		bottom: 0;
		height: 50px;
		left: 0;
		width: 100%;
		color: #fff;
		background-color: var(--theme-color);
		z-index: 996;
	}
	.mobile-tool a {
		flex: 1;
		color: #fff;
		text-align: center;
		display: block;
		height: 100%;
		line-height: 50px;
		border-right: 1px solid #fff;
	}
	.mobile-tool a:last-child {
		border-right: none;
	}
	.home-more-btn {
		width: 80%;
	}
	.hyth-layer {
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: rgb(0 0 0 / 44%);
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1;
	}
	.home-project-popup-form {
		width: 90vw !important;
		max-height: 80vh !important;
	}
	.home-project-popup-form .table {
		position: relative;
		overflow-x: auto;
	}
	.home-project-popup-form .layui-layer-content {
		padding: 20px;
	}
	.mian-head {
		height: 120px;
	}
	.mian-head .head-bg {
		width: 100% !important;
		height: 120px !important;
	}
	.mian-head .head-bg .head-name {
		font-size: 18px;
		line-height: 120px;
		width: 80vw;
	}
	.breadcrumb {
		display: none;
	}
	.contact-content {
		position: relative;
	}
	.contact-mian-wrap .contact-content .about {
		display: block;
	}
	.contact-content .about .right .title {
		font-size: 16px;
		position: absolute;
		height: 30px;
		width: 90vw;
		left: 5vw;
		right: 5vw;
		top: 10px;
		z-index: 2;
		display: block;
		text-align: center;
		font-weight: bold;
	}
	.contact-content .about .block {
		height: 80px;
		width: 100%;
		left: 0px;
		top: 0;
		z-index: 4;
		position: absolute;
	}
	.contact-content .about .image {
		height: 160px;
		width: 90vw;
		left: 5vw;
		top: 5vw;
		right: 5vw;
		z-index: 5;
		position: absolute;
	}
	.contact-content .about .left {
		position: relative;
		width: 100%;
		height: 180px;
		padding-left: 0;
	}
	.contact-content .about .right {
		padding-right: 0;
		margin: 0 5vw;
	}
	.contact-content .about .right .content {
		padding: 0;
	}
	.contact-content .contact-wrap .contact {
		padding: 0;
		margin: 0 5vw;
	}
	.contact-content .contact-wrap .contact>.title {
		font-size: 16px;
		width: 90vw;
		text-align: center;
		margin: 20px auto;
		padding-bottom: 12px;
		font-weight: bold;
	}
	.contact-content .contact-wrap .message-form {
		display: block;
	}
	.contact-wrap .message-form .left {
		width: 100%;
	}
	.contact-wrap .message-form .right {
		padding: 5vw;
	}
	.contact-wrap .message-form .right .title {
		text-align: center;
		font-size: 18px;
		font-weight: bold;
	}
	.contact-wrap .message-form .right .layui-form {
		padding-top: 5vw;
	}
	.contact-wrap .message-form .right .layui-form-label {
		display: none;
	}
	.contact-wrap .message-form .right .layui-input-block {
		margin-left: 0;
	}
	.contact-wrap .message-form .right .layui-form-item .layui-input-inline {
		margin: 0 0 10px 0;
		width: 45vw !important;
		display: inline-block;
	}
	.visum-content-wrap, .single-content-box {
		width: 90vw;
		margin: 5vw;
		padding: 0;
	}
	.visum-category {
		width: 90vw;
		margin: 5vw;
		flex-wrap: wrap;
	}
	.visum-category li {
		max-width: unset;
		flex: unset;
		width: calc((100% / 3) - 5vw);
		margin-right: 5vw;
	}
	.visum-category li:nth-child(3n) {
		margin-right: 0;
	}
	.visum-category em {
		display: none;
	}
	.single-content-box .content, .comment-form-wrap, .comment-tips {
		width: 90vw;
	}
	.comment-tips,.comment-form-wrap {
		margin-left: 5vw;
		margin-right: 5vw;
	}
	.comment-form-email {
		margin-right: 0;
		display: block;
		margin-bottom: 10px;
	}
	#comment-author-info {
		display: block;
	}
	.comment-form-wrap .comment-form-captcha input {
		width: 100%;
		flex: 1;
	}
	.comment-bottom {
		height: 135px;
	}
	.comment-bottom .cancel-reply {
		position: absolute;
		bottom: 0;
		left: 0;
		border: 1px solid #eee;
		padding: 0 10px;
	}
	.comment-form-submit {
		position: absolute;
		right: 0;
		bottom: 0;
	}
	.product-content .right-content .bg,.product-content .right-content .subtitle {
		display: none;
	}
	.product-content .right-content {
		margin-left: 0;
	}
	.product-content .right-content .name {
		color: #333;
		font-size: 16px;
		font-weight: bold;
		width: 98vw;
		left: 0;
		top: 44px;
		padding: 0 2vw;
	}
	.product-content .left-menu {
		position: fixed;
		top: 0;
		bottom: 0;
		right: 100%;
		width: 65%;
		z-index: 997;
		overflow-y: auto;
		transition: transform .3s linear;
	}
	.product-mian-wrap .product-content {
		width: 100vw;
		margin: 0;
		display: block;
	}
	.product-content .right-content .steps {
		position: relative;
		margin-right: 5vw;
		margin-left: 5vw;
	}
	.product-content .right-content .steps .step {
		word-wrap: break-word;
		line-height: 1.5;
		padding: 0 2vw;
		margin-top: 30px;
		font-size: 14px;
		color: #666;
	}
	.product-content .right-content .steps .step em {
		font-size: 50px;
		line-height: 1.2;
		bottom: 54px;
	}
	#mobile-product-menu {
		display: flex;
		background-color: var(--theme-color);
		height: 44px;
		line-height: 44px;
		position: relative;
		color: #fff;
		padding: 0 5vw;
	}
	#mobile-product-menu span {
		font-weight: bold;
		font-size: 16px;
		flex: 1;
	}
	#mobile-product-menu>div {
		display: flex;
		justify-content: flex-end;
		position: relative;
	}
	#mobile-product-menu em {
		font-style: normal;
		font-size: 16px;
		padding-right: 20px;
	}
	#menu-btn-2 {
		position: absolute;
	}
	#menu-btn-2 .menu-btn-bar {
		position: relative;
		display: block;
		width: 15px;
		height: 2px;
		margin: 3px 0;
		background-color: #fff;
		border-radius: 1px;
		box-sizing: border-box;
		top: 13px;
		left: 0;
	}

	.menu-on #menu-btn-2 .menu-btn-bar:nth-of-type(1) {
		-webkit-transform: translateY(5px) rotate(-45deg);
		-moz-transform: translateY(5px) rotate(-45deg);
		-ms-transform: translateY(5px) rotate(-45deg);
		-o-transform: translateY(5px) rotate(-45deg);
		transform: translateY(5px) rotate(-45deg)
	}
	.menu-on #menu-btn-2 .menu-btn-bar:nth-of-type(2) {
		opacity: 0
	}
	.menu-on #menu-btn-2 .menu-btn-bar:nth-of-type(3) {
		-webkit-transform: translateY(-5px) rotate(45deg);
		-moz-transform: translateY(-5px) rotate(45deg);
		-ms-transform: translateY(-5px) rotate(45deg);
		-o-transform: translateY(-5px) rotate(45deg);
		transform: translateY(-5px) rotate(45deg)
	}

	.menu-on .left-menu {
		box-shadow: 0 0 15px 0 #9c9c9c;
		transform: translateX(100%);
		-o-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		background-color: var(--theme-color);
	}
	.product-content .left-menu .product-title {
		display: none;
	}
	.contact-wrap .message-form .left .box-qrcode .tips span:not(.mobile-show),.contact-wrap .message-form .left .box-qrcode .tips em {
		display: none;
	}
	.contact-wrap .message-form .left .box-qrcode .tips span.mobile-show,.contact-wrap .message-form .left .box-qrcode .tips em.mobile-show {
		display: block;
	}
}

/*YXYH-20260522-0054-调整主题页面布局*/
.main-content .item-wrap {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.main-content .item-wrap:after {
	content: none;
	display: none;
}
.main-content .item-wrap li {
	float: none;
	margin: 0;
	width: auto;
	order: 20;
}
.main-content .item-wrap li:nth-child(1) {
	order: 3;
}
.main-content .item-wrap li:nth-child(2) {
	order: 2;
}
.main-content .item-wrap li:nth-child(3) {
	order: 1;
}
.home-more-btn {
	width: 320px;
	height: 56px;
	line-height: 56px;
	font-size: 20px;
	border-radius: 5px;
}
.product-content .right-content .title {
	text-align: center;
	margin: 0;
	line-height: 1.5;
	padding: 45px 0 28px;
	font-size: 28px;
}
.product-content .right-content .content-box {
	padding: 45px 38px;
}
.product-content .right-content .content-box .content {
	text-align: center;
}
.product-content .right-content .product-intro {
	background-color: #f4f8ff;
	border: 1px solid #e5edf8;
	padding: 24px 26px;
	margin: 0 auto 24px;
	color: #3f3f3f;
	font-size: 18px;
	line-height: 2;
	text-align: left;
}
.product-content .right-content .product-intro p {
	margin: 0;
	text-align: left;
}
.product-content .right-content .product-intro strong {
	color: var(--theme-color);
}
.product-content .right-content .product-terms-link {
	font-size: 15px;
	color: #5f5f5f;
	line-height: 1.8;
	margin: -12px 0 28px;
	text-align: left;
}
.product-content .right-content .product-terms-link a {
	color: #4c99f7;
	margin-left: 2px;
}
.right-content .content-box table {
	margin-left: auto;
	margin-right: auto;
}
.right-content .content-box td, .right-content .content-box th {
	text-align: center;
	vertical-align: middle;
}
.right-content .content-box p {
	line-height: 1.8;
	text-align: center;
}
.right-content .content-box .content>strong {
	display: block;
	text-align: center;
	margin: 24px 0 12px;
}
.right-content .apply-form .form-title {
	background-color: transparent;
	color: var(--theme-color);
	font-size: 22px;
	font-weight: bold;
	padding: 22px 30px 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #e5edf8;
	height: auto;
	line-height: 1.5;
}
.apply-form .purpose-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
}
.apply-form .purpose-options .layui-form-radio {
	margin: 6px 0;
}
.apply-form .terms-item {
	border-top: 1px solid #e5edf8;
	padding-top: 20px;
}
.apply-form .terms-item .layui-form-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: auto;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}
.apply-form .terms-item .layui-form-checkbox span {
	order: 2;
	height: auto;
	line-height: 1.6;
	padding: 0;
	background: transparent;
	color: #333;
	font-size: 15px;
	white-space: normal;
}
.apply-form .terms-item .layui-form-checkbox i {
	order: 1;
	position: static;
	width: 16px;
	height: 16px;
	line-height: 16px;
	border: 1px solid #a8a8a8;
	border-radius: 50%;
	background: transparent;
	color: transparent;
	font-size: 11px;
	box-sizing: border-box;
}
.apply-form .terms-item .layui-form-checkbox:hover i {
	border-color: var(--theme-color);
}
.apply-form .terms-item .layui-form-checkbox.layui-form-checked i {
	border-color: var(--theme-color);
	background: var(--theme-color);
	color: #fff;
}
.apply-form .terms-item .layui-form-checkbox.layui-form-checked span {
	background: transparent;
	color: #333;
}
.apply-form .terms-item .terms-tips {
	color: #333;
	font-size: 15px;
	line-height: 1.8;
	margin-top: 12px;
}
.apply-form .terms-item a {
	color: #4c99f7;
}
.visum-category li {
	max-width: 170px;
}
.contact-about-wrap {
	width: var(--theme-width);
	margin: 70px auto 20px;
	display: flex;
	align-items: flex-start;
	background-color: #fff;
}
.contact-about-visual {
	position: relative;
	width: 520px;
	min-height: 640px;
	padding-left: 42px;
	box-sizing: border-box;
}
.contact-about-visual .contact-about-block {
	width: 104px;
	height: 104px;
	background-color: var(--theme-color);
}
.contact-about-visual img {
	position: absolute;
	left: 70px;
	top: 48px;
	width: 445px;
	height: 590px;
	object-fit: cover;
}
.contact-about-content {
	flex: 1;
	padding: 18px 10px 0 58px;
	color: #4a4a4a;
	box-sizing: border-box;
}
.contact-about-title {
	color: var(--theme-color);
	font-size: 40px;
	line-height: 1.35;
	text-align: center;
}
.contact-about-line {
	width: 380px;
	height: 3px;
	background-color: var(--theme-color);
	margin: 18px auto 36px;
}
.contact-about-content p {
	font-size: 17px;
	line-height: 2;
	margin: 0 0 22px;
	text-align: left;
}
.contact-about-content strong {
	color: var(--theme-color);
}
.contact-about-content ul {
	margin: 0 0 26px 0;
	padding-left: 0;
	list-style: none;
}
.contact-about-content li {
	position: relative;
	font-size: 17px;
	line-height: 2;
	margin-bottom: 4px;
	padding-left: 24px;
}
.contact-about-content li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #111;
}
.contact-simple-wrap {
	width: var(--theme-width);
	margin: 60px auto 80px;
}
.contact-simple-title {
	color: var(--theme-color);
	font-size: 40px;
	line-height: 1.4;
	text-align: center;
}
.contact-simple-line {
	width: 430px;
	height: 3px;
	background-color: var(--theme-color);
	margin: 26px auto 48px;
}
.contact-simple-card {
	display: flex;
	background-color: #dce8f7;
	box-shadow: 0 4px 20px rgba(0, 73, 154, 0.08);
}
.contact-simple-image {
	flex: 1.08;
	min-height: 560px;
	background-color: #eef5fb;
}
.contact-simple-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact-simple-info {
	flex: .9;
	color: var(--theme-color);
	padding: 68px 92px 50px;
	box-sizing: border-box;
}
.contact-simple-logo {
	width: 270px;
	margin: 0 auto 46px;
}
.contact-simple-logo img {
	width: 100%;
	height: auto;
}
.contact-simple-block {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 22px;
	align-items: center;
	border-bottom: 1px solid rgba(0, 73, 154, 0.45);
	padding: 22px 0;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.7;
}
.contact-simple-block i {
	font-size: 34px;
}
.contact-simple-qrcode {
	text-align: center;
	margin-top: 42px;
	font-size: 24px;
	line-height: 1.6;
}
.contact-simple-qrcode img {
	width: 210px;
	height: 210px;
	padding: 14px;
	background-color: #fdfdfc;
	border-radius: 12px;
	object-fit: contain;
}
.contact-simple-qrcode p {
	margin-top: 22px;
}
.contact-simple-qrcode span {
	display: block;
}
.applications-wrap {
	width: var(--theme-width);
	margin: 50px auto 70px;
}
.applications-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.applications-title {
	font-size: 24px;
	line-height: 34px;
	font-weight: bold;
	color: #222;
}
.applications-subtitle {
	margin-top: 4px;
	font-size: 14px;
	color: #888;
}
.applications-admin-link {
	height: 34px;
	line-height: 34px;
	padding: 0 18px;
	border: 1px solid var(--theme-color);
	color: var(--theme-color);
	font-size: 14px;
}
.applications-admin-link:hover {
	background-color: var(--theme-color);
	color: #fff;
}
.applications-empty {
	padding: 60px 20px;
	text-align: center;
	color: #999;
	background-color: #f8fafc;
	border: 1px solid #e7edf5;
}
.applications-table-wrap {
	overflow-x: auto;
	border: 1px solid #e7edf5;
}
.applications-table {
	width: 100%;
	min-width: 1080px;
	border-collapse: collapse;
	background-color: #fff;
}
.applications-table th {
	height: 46px;
	background-color: #f3f7fb;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	padding: 0 14px;
	white-space: nowrap;
}
.applications-table td {
	padding: 14px;
	border-top: 1px solid #e7edf5;
	color: #555;
	font-size: 14px;
	line-height: 22px;
	vertical-align: top;
}
.applications-table td a {
	color: var(--theme-color);
}
.applications-table td span {
	display: block;
	color: #999;
}
.applications-status {
	display: inline-block !important;
	color: var(--theme-color) !important;
	white-space: nowrap;
}
.applications-detail summary {
	cursor: pointer;
	color: var(--theme-color);
	white-space: nowrap;
}
.applications-detail-panel {
	position: absolute;
	right: 70px;
	width: 420px;
	margin-top: 10px;
	padding: 18px;
	background-color: #fff;
	border: 1px solid #dbe6f2;
	box-shadow: 0 10px 30px rgba(20, 48, 82, .15);
	z-index: 5;
	pointer-events: none;
}
.applications-detail-row {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #eef3f8;
}
.applications-detail-row:last-child {
	border-bottom: 0;
}
.applications-detail-row span {
	color: #888;
}
.applications-detail-row p {
	margin: 0;
	color: #333;
	word-break: break-all;
}
.applications-pagination {
	margin-top: 24px;
	text-align: center;
}
.applications-pagination .page-numbers {
	display: inline-block;
	min-width: 34px;
	height: 34px;
	line-height: 34px;
	margin: 0 3px;
	padding: 0 10px;
	background-color: #f5f8fb;
	color: #555;
}
.applications-pagination .page-numbers.current,
.applications-pagination .page-numbers:hover {
	background-color: var(--theme-color);
	color: #fff;
}

@media screen and (max-width:768px) {
	.main-content .item-wrap {
		display: grid;
		grid-template-columns: 1fr;
	}
	.main-content .item-wrap li {
		width: auto;
		margin: 0 5vw;
	}
	.home-more-btn {
		width: 86vw;
		height: 48px;
		line-height: 48px;
		font-size: 17px;
	}
	.product-content .right-content .title {
		font-size: 20px;
		padding: 70px 5vw 20px;
		line-height: 1.5;
		width: 90vw;
	}
	.product-content .right-content .content-box {
		padding: 5vw;
	}
	.product-content .right-content .product-intro {
		padding: 18px;
		font-size: 15px;
		line-height: 1.9;
	}
	.product-content .right-content .product-terms-link {
		font-size: 14px;
		margin: -4px 0 24px;
		text-align: center;
	}
	.product-content .right-content .product-success {
		padding: 34px 5vw 58px;
	}
	.product-content .right-content .product-success-card {
		padding: 50px 18px 44px;
		margin: 0 0 42px;
		border-radius: 8px;
	}
	.product-content .right-content .product-success-badge {
		min-width: 0;
		width: 76vw;
		max-width: 320px;
		height: 64px;
		padding: 0 20px;
		font-size: 24px;
	}
	.product-content .right-content .product-success-badge i {
		font-size: 24px;
	}
	.product-content .right-content .product-success-title {
		margin-top: 34px;
		font-size: 18px;
	}
	.product-content .right-content .product-success-text {
		font-size: 13px;
		line-height: 1.9;
		text-align: left;
	}
	.product-content .right-content .product-success-actions {
		gap: 24px;
	}
	.product-content .right-content .product-success-actions a {
		width: 78vw;
		min-width: 0;
		height: 48px;
		padding: 0 16px;
		font-size: 18px;
	}
	.apply-form .purpose-options {
		display: block;
	}
	.contact-about-wrap {
		width: 90vw;
		margin: 32px auto 10px;
		display: block;
	}
	.contact-about-visual {
		width: 100%;
		min-height: 360px;
		padding-left: 0;
	}
	.contact-about-visual .contact-about-block {
		width: 68px;
		height: 68px;
	}
	.contact-about-visual img {
		left: 24px;
		top: 28px;
		width: calc(100% - 24px);
		height: 330px;
	}
	.contact-about-content {
		padding: 28px 0 0;
	}
	.contact-about-title {
		font-size: 28px;
	}
	.contact-about-line {
		width: 56vw;
		margin: 16px auto 26px;
	}
	.contact-about-content p,
	.contact-about-content li {
		font-size: 15px;
		line-height: 1.9;
	}
	.contact-about-content li:before {
		top: 11px;
	}
	.contact-simple-wrap {
		width: 90vw;
		margin: 30px auto 70px;
	}
	.contact-simple-title {
		font-size: 24px;
	}
	.contact-simple-line {
		width: 58vw;
		margin: 18px auto 28px;
	}
	.contact-simple-card {
		display: block;
	}
	.contact-simple-image {
		min-height: 280px;
	}
	.contact-simple-info {
		padding: 34px 30px 38px;
	}
	.contact-simple-logo {
		width: 210px;
	}
	.contact-simple-block {
		grid-template-columns: 42px 1fr;
		gap: 14px;
		font-size: 18px;
	}
	.contact-simple-qrcode img {
		width: 180px;
		height: 180px;
	}
	.applications-wrap {
		width: 90vw;
		margin: 30px auto 60px;
	}
	.applications-head {
		display: block;
	}
	.applications-admin-link {
		display: inline-block;
		margin-top: 14px;
	}
	.applications-detail-panel {
		left: 5vw;
		right: auto;
		width: 80vw;
	}
	.applications-detail-row {
		grid-template-columns: 88px 1fr;
	}
}
