@charset "utf-8";

/* 字体引入 */
@font-face {
font-family: 'iconfont';
 src: url('/static/font/iconfont.eot');
 src: url('/static/font/iconfont.eot?#iefix') format('embedded-opentype'),  url('/static/font/iconfont.woff') format('woff'),  url('/static/font/iconfont.ttf') format('truetype'),  url('/static/font/iconfont.svg#iconfont') format('svg');
}
.iconfont {
	font-family:"iconfont" !important;
	font-size:16px;
	font-style:normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;
}
/* 底部联系栏 */
.footer_lxfs {
	width: 100%;
	height: 40px;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 9999;
	background: #8B5A2B;
	transition: all 0.3s ease-in-out;
}
.foot-relative {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
}
.foot-relative a {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	height: 100%;
	font-size: 18px;
}
.foot-relative a:hover {
	color: #6aff85;
}
.foot-relative a i.ppim {
	font-size: 18px;
}
.foot-relative a h3 {
	font-size: 12px;
	font-weight: normal;
}
/* 弹窗样式 */
.tan_wx {
	color: #f00;
	border: 1px solid #3c0;
	width: 90%;
	margin: 10px 5%;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 3px 3px 1px #888;
}
.sld_wx {
	width: 100%;
	border-radius: 10px;
}
/* 微信弹窗 */
#sldwx, #sldwx2, #sldpp, #sldqq, #sldqqun {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	z-index: 1000;
	display: none;
	background: rgba(0, 0, 0, 0.6);
}
.nrdf {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 300px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0px 2px 10px #333;
	border-radius: 10px;
	text-align: center;
}
.nrdf img {
	width: 80%;
	margin: 0 auto 15px;
}
.nrdf p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 15px;
}
.nrdf i {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	background: #333;
	border-radius: 50%;
	cursor: pointer;
	font-style: normal;
}
.nrdf span {
	display: inline-block;
	padding: 8px 15px;
	line-height: 1;
	background-color: #009882;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
}
.nrdf span.wx {
	padding-left: 35px;
	background-image: url(../img/wx.png);
	background-size: 20px;
	background-position: 10px center;
	background-repeat: no-repeat;
}
/* 复制提示 */
#weixin {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999999;
	font-size: 16px;
	color: #fff;
	width: 80%;
	max-width: 300px;
	line-height: 40px;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 5px;
	display: none;
}
/* 提示框基础样式 */
    .custom-toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.95);
	background-color: rgba(0, 0, 0, 0.85);
	color: white;
	border-radius: 8px;
	padding: 16px 24px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 12px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 9999;
	max-width: 300px;
	text-align: center;
}
/* 显示状态 */
    .custom-toast.show {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}
/* 图标样式 */
    .toast-icon {
	font-size: 20px;
	background-color: #4CAF50;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* 消息样式 */
    .toast-message {
	font-size: 16px;
	font-weight: 500;
}
    
    /* 移动端适配 */
    @media (max-width: 600px) {
 .custom-toast {
 padding: 12px 18px;
 max-width: 80%;
}
 .toast-icon {
 width: 28px;
 height: 28px;
 font-size: 16px;
}
 .toast-message {
 font-size: 14px;
}
}
