:root {
	--menuHeight: 68px;
	--formHighlightColor:rgb(233,159,65);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;/*移除点击时的蓝色背景 button,.nav-item,.noHighlight*/
	-webkit-touch-callout: none;/*禁用了长按链接或图片时弹出的菜单*/
	-webkit-user-select: none;/*禁止用户在iOS设备上选择文本*/
	-khtml-user-select: none;/*这4行确保在不同浏览器中禁用文本选择*/
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
body {
	background-color: #e6f3ff;
	font-family: Arial, sans-serif;
	padding-bottom: var(--menuHeight);
}
.hidden{display:none}
.all_header{
    background: rgba(255, 255, 255, 0.98);
	width:100%;
    height: 24px;
    padding: 40px 15px 25px 15px;
    display: flex;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.all_header.fixed{position:sticky;top:0;}
.all_header.rIco{justify-content: space-between;}
.all_header.rIco .rightBt{font-size: 24px;}
.all_header_back,.all_header_back.fa{
	font-size: 24px;
    color: #333;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    align-items: center;
    border-radius: 50%;
	line-height: 40px;
}
.all_header_title{
	font-size: 18px;
    font-weight: bold;
    color: #333;
	line-height: 40px;
}
.all_header .headerRBt{position:fixed;top:16px;right:30px;z-index: 100;}
.all_header .headerRBt.noBt{top:27px;}
.all_header .headerRBt.noBt.gray{color:#999}
.all_header .headerRBt.noBt.red{color:#ff6666}
.all_header .headerRBt button {
	background-color: #59a4ff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: var(--articleList_border-radius);
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: var(--articleList_transition);
	font-weight: 500;
	box-shadow: var(--articleList_shadow);
}
.all_header .headerRBt button:hover {
	background-color: var(--articleList_primary-dark);
	transform: translateY(-2px);
}
.all_header .headerRBt button i {
	margin-right: 8px;
}
.noCt{text-align:center;width:100%;}
.noCt img{max-width:90%;}
.noCtInfo{color:#999}
.pic_upload{display:none}
/*上传预览*/
.previewWrapper{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}
.imagePreview {
	width: 100px;
	height: 100px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	animation: imagePreview_fadeIn 0.3s ease;
}
@keyframes imagePreview_fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.imagePreview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.imagePreview_deleteBtn {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 22px;
	height: 22px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 12px;
	transition: background-color 0.3s ease;
}

.imagePreview_deleteBtn:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

/* QR Code Modal */
#qrcodeModal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

#qrcodeContainer {
	width: 320px;
	background-color: #fff;
	border-radius: 12px;
	padding: 20px;
	position: relative;
	animation: fadeIn 0.3s ease;
}

#qrcodeClose {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 18px;
	color: #888;
	cursor: pointer;
}

#qrcodeTitle {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

#qrcodeImage {
	width: 200px;
	height: 200px;
	margin: 0 auto 15px;
	border: 1px solid #eee;
}

#qrcodeUrl {
	text-align: center;
	font-size: 14px;
	color: #666;
	word-break: break-all;
}
#footer_nav_msg{position:relative}
.bubble_dot{display:none;background-color:rgb(246,80,102);  border-radius:10px; width:10px; height:10px; font-size:12px; top:0px; right:30%; position:absolute}

/*弹窗*/
.win_pop{
  width: 100%; 
  position: fixed; 
  bottom: -120vh; 
  background-color: #fff; 
  text-align: center; 
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  border-radius: 12px 12px 0 0;
  transition: all 0.3s ease;
}
.win_pop.halfHeight{max-height: 50vh;overflow-y: scroll;scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  &::-webkit-scrollbar {
    display: none; /* WebKit */
  }
}
win_pop .label{margin: 10px auto;}
.win_pop ul{
  padding: 0; 
  background-color: #fff; 
  margin: 0;
  border-radius: 12px 12px 0 0;
}
.win_pop li{
  cursor:pointer;
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
  clear: both; 
  background-color: inherit;
  padding: 14px 20px;
  font-size: 16px;
}

.win_pop li:hover {background-color: #f9f9f9;}
.win_pop li:last-child{border-bottom: none;}
.win_pop li.selected{color: rgb(246,80,102);}
.win_pop li i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: #666;
}
.win_pop li.selected i {color: rgb(246,80,102);}
#mask{
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-color: #666; 
  opacity: 0.5; 
  display: none; 
  z-index: 98;
}
.win_pop.massTxt{height:50vh;overflow-y:scroll}
.win_pop.massTxt .lb{text-align: left;text-indent: 20px;font-size: 18px;font-weight: bold;}
.win_pop.massTxt ul{text-align: left;margin-top: 15px;}
.win_pop.massTxt li{border-bottom: 1px solid #e7e7e7;padding: 6px 10px;margin: 0 6px 10px 0;text-indent: 20px;}
.win_pop.massTxt.center li{text-align:center;text-indent:0}
.win_pop .yes.topright{width: 100px;display: inline;margin-right: 10px;}
.win_pop .yes.fixed{position:fixed; bottom:calc( 50vh - 46px ); right:20px; width:80px; margin:0; display:none}
.win_pop .multiTip{margin-top:10px;font-size:14px;text-align: left;text-indent: 20px;color:var(--btColor)}
.win_pop .edit input{padding-right:0;}
.nav .win_pop{color:#666;}
.win_pop ul.links{background-color: #fff;}
.win_pop ul.links>li{padding: 14px 20px;}
.hasBubbleDot{position: relative;}
#toast{display:none;position: fixed; top: 50vh; left: 50%; transform: translateX(-50%) translateY(-50%);background-color: rgba(0,0,0,0.7); 
	color: white; padding: 10px 20px;border-radius: 8px; z-index: 1000;}
.bottomBt {
	width: 100%;
	margin: 50px auto;
	padding: 15px;
	background: linear-gradient(to right, #FF6B6B, #FF9042);
	color: white;
	border: none;
	border-radius: 15px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
	transition: transform 0.3s, box-shadow 0.3s;
}

.bottomBt:active {
	transform: translateY(2px);
	box-shadow: 0 2px 5px rgba(255, 107, 107, 0.2);
}