/**
 * 
 * pz.app.css
 * 
 * 应用特定css
 * 
 * @package: 
 * @author:	gaus
 * @date：	2024.4.16
 * 
 * 
 * http://www.pingzhun.cc
 */

/************************************************************/


body {
	margin: 0;
	padding: 0;
}

.page-content {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #576B95;
}

a:hover {
	color: #9DA8C1;
	cursor: pointer;
}



/************************************************/


.product-header {
	background: url(../../banner/bg.png) center/cover no-repeat;
	background-size: 100% 100%;
	width: 100%;
	padding: 40px 0;
	text-align: center;
	overflow: hidden;

	display: flex;
	justify-content: center;
	align-items: center;

	height: 20vh;
	@media (min-width: 768px) {
		height: 40vh;
	}
}

.product-subtitle {
	font-family: "Microsoft YaHei", "Heiti SC", sans-serif;
	font-weight: 700;
	color: #DD524D;
	margin: 25px 10px;
	font-style: italic;
	text-align: center;
	letter-spacing: 1px;

	font-size: 16px;
	@media (min-width: 768px) {
		font-size: 20px;
	}
}


.intro-box {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;

	margin-top: 0;
	@media (min-width: 768px) {
		margin-top: 6em;
	}
}

.intro-box img {
	width: 30vw;
	height: 20vh;
}

.intro-list p {
	font-family: "Microsoft YaHei", "Heiti SC", sans-serif;
	padding: 0;
	margin: 0;
	font-weight: 700;
	color: #fff;
	line-height: 1.6;

	font-size: 16px;
	@media (min-width: 768px) {
		font-size: 20px;
	}
}


/********************************/

.item-box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1020px;
	margin: 0 auto;
}

.item-card {
	border: 1px solid #efefef;
	background: #fefefe;
	border-radius: 12px;
	padding: 20px;
	margin: 15px;
	box-shadow: 
		0 1px 2px rgba(0,0,0,0.08),
		0 2px 4px rgba(0,0,0,0.08),
		0 4px 8px rgba(0,0,0,0.08);
	transition: 
  		transform 0.3s ease,
  		box-shadow 0.3s ease;
	transform: perspective(1000px) translateZ(0); /* 初始化3D空间 */

	@media (min-width: 768px) {
		width: 260px;
	}
}

.item-card:hover {
	cursor: pointer;
	transform: perspective(1000px) scale(1.0) translateZ(20px); /* Zoom放大并增加Z轴深度 */
	box-shadow: 
		0 10px 25px rgba(0,0,0,0.1),
		0 20px 50px rgba(0,0,0,0.15);
}

.item-header {
	display: flex;
	align-items: center;
}

.item-image {
	width: 50px;
	height: 50px;

	@media (min-width: 768px) {
		width: 100px;
		height: 100px;
	}
}

.item-title {
	color: #2d497c;
	font-weight: 700;
	text-indent: 25px;

	font-size: 18px;
	@media (min-width: 768px) {
		font-size: 20px;
	}
}

.item-body {
	color: #4a5568;
	line-height: 1.7;

	font-size: 13px;
	@media (min-width: 768px) {
		font-size: 14px;
	}
}



/************************************************/

/*ul.ul-checklist li 打勾前缀列表样式 */

.ul-checklist {
	list-style: none;
	padding-left: 0;
	margin: 1em 0;
}

.ul-checklist li {
	position: relative;
	padding-left: 2em;
	margin-bottom: 0.5em;
	line-height: 1.6;
}

.ul-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	width: 1.5em;
	color: #4CAF50; /* 绿色打勾 */
	font-weight: bold;
	text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.ul-checklist li {
		padding-left: 1.8em;
		font-size: 0.95em;
	}
	
	.ul-checklist li::before {
		width: 1.3em;
	}
}



/************************************************/



.layout {
	background-image: url(../../static/image/worldmap.webp), url(../../static/image/worldmap.gif);
	background-repeat: no-repeat;
	background-size: contain;
	background-size: 960px;
	background-position: 0 10px;
}

.layout-header .layout-header-title {
	padding: 40px 60px;
}

.layout-body {
	margin-top: 60px;
	margin: 0 auto;
	max-width: 960px;
}


.ol {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	justify-content: space-between;
}

.ol .li {
	display: flex;
	flex-direction: column;
	padding: 20px;
	overflow: hidden;
	margin: 15px 5px;
	width: 26%;
	border-bottom: none;
}

.ol .li:hover {
	cursor: pointer;
	
	.block-title {
		color: #007787;;
	}
}


.block-title {
	display: flex;
	font-size: 16px;
	color: #06090c;
	line-height: 1.6;
	min-height: 50px;
}

.block-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	font-size: 12px;
}

.btn-more-block {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background-color: #f8f8f8;
	border: 1px solid #dedede;
	border-radius: 5px;
	color: #6b6b6b;
	font-size: 14px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.btn-more-block:hover {
	cursor: pointer;
	background-color: #F1F1F1;
	color: #2b2b2b;
}


.c-link {
	color: #006cb4;
}

.c-text {
	color: #1e1e1e;
}

.bg-quote {
	background-color: #f3f3f3;
}

.c-footer {
	color: #363636;
}

.bg-footer {
	background-color: #f2f2f2;
}


.header-simple {
	min-height: 60px;
	padding: 15px 25px;
}

.header-title {
	font-size: 26px;
	color: #1e1e1e;
	font-weight: 700;
}

.header-subtitle {
	margin-top: 10px;
	font-size: 16px;
	color: #5a5a5a;
}

.header-desc {
	margin-top: 10px;
	color: #363636;
	line-height: 1.8;
	font-size: 13px;
}


/*********************************/


.header-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-content: center;
	height: 44px;
	line-height: 44px;
	padding: 0 10px;
	border-bottom: 1px solid #efefef;
	overflow: hidden;
	z-index: 996;
	opacity: 1;
	background-color: #fff;
}

.header-bar .header-bar-title {
	position: absolute; left: 50%; top: 50%;
	transform: translate(-50%, -50%); /* 50%为自身尺寸的一半 */
	text-align: center;
	max-width: 70%;
	overflow: hidden;
	
	display: -webkit-box;
	overflow: hidden;
	white-space: normal !important;
	text-overflow: ellipsis;
	word-wrap: break-word;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.header-bar .iconfont {
	font-size: 20px;
	color: #888;
	padding: 10px;
	margin: -10px;
}


.header-bar-bottom {
	margin-bottom: 44px;
}


/*****************************/
/*pc顶栏样式*/

.header-menu-box {
	position: relative;
	box-sizing: border-box;
	z-index: 98;
	overflow: hidden;
}

.header-menu-box .header-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	display: flex;
	justify-content: space-around;
	height: 60px;
	background-color: #fff;

	border-bottom: 1px solid #e6d2d3;
	box-shadow: 0 1px 2px rgba(150, 150, 150, .1);
	margin: 0 auto;
}

.header-menu .header-logo {
	display: flex;
	align-items: center;
}

.header-menu .header-logo:hover {
	cursor: pointer;
}


.header-menu .header-logo img {
	width: 120px;
	height: 40px;
}


.header-menu .header-ul,
.header-menu .header-login {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 360px;
}

.header-menu .header-ul .header-li {
	padding: 20px;
	font-size: 15px;
	color: #000;
	padding-left: 30px;
	padding-right: 30px;
}

.header-menu .header-ul .header-li:hover {
	color: #8b2b2b;
	cursor: pointer;
}


/*****************************/


.footer-nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

    font-size: 12px;
    line-height: 22px;

	padding: 0 15px;
	margin: auto 0;

    border-top: none;
    color: #f0f0f0;

    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-ul {
	display: flex;
	align-items: center;
}

.footer-li {
	font-size: 12px;
	color: #777;
	padding: 0 10px;
}

.footer-li:hover {
	color: #222;
	cursor: pointer;
	text-decoration: underline;
}

.footer-copyright {
	color: #aaa;
	text-decoration: none;
	margin-top: 5px;
}

.footer-icp {
	color: #ccc;
	text-decoration: none;
	margin-top: 5px;
}

.footer-link {
	display: flex;
	align-items: center;
}

