@charset "UTF-8";

body {
	width: 100%;
	overflow-x: hidden;
	position: relative;
	background-color: #F8F8F8;
}

.meet_text::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.meet_text::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
	background: rgba(255, 255, 255, 0.4);
	border-radius: 10px;
}

.meet_text::-webkit-scrollbar-thumb {
	-webkit-border-radius: 8px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
}

.meet_text::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 255, 255, 0.9);
}

:before,
:after {
	font-family: 'iconfont';
}

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.iconfont {
	font-family: 'iconfont';
}



/*浮动 清除浮动*/
.fl {
	float: left;
}

.fr {
	float: right;
}

.cf:after {
	display: block;
	content: "";
	height: 0;
	visibility: hidden;
	clear: both;
}

.cf {
	zoom: 1;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 100px;
}

body {
	font-size: 12px;
	font-family: Arial, "微软雅黑";
	color: #212121;
	-webkit-text-size-adjust: none;
	opacity: 0;
	-webkit-font-smoothing: antialiased;
}

body.show {
	opacity: 1;
}

a {
	color: #212121;
	text-decoration: none;
	outline: none;
}

a:active {
	star: expression(this.onFocus=this.blur());
}

a:link {
	text-decoration: none;
	outline: none;
}

a:visited {
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: none;
	color: #0048B4;
	outline: none;
}

li {
	list-style: outside none;
}

li {
	list-style-type: none;
}

h1 {
	font-size: 16px;
}

h2,
h3,
h4,
h5 {
	font-size: 14px;
}

h5 {
	font-size: 12px;
}

textarea,
input {
	background: transparent;
	font-size: 12px;
	font-family: Arial, "微软雅黑";
	color: #888;
	outline: none;
	border: 0;
}

em {
	font-style: normal;
}

img {
	vertical-align: middle;
	max-width: 100%;
	border: 0;
	object-fit: cover;
}

/* banner图 */
.banner {
	width: 100%;
	height: 300px;
	margin: 0px auto;
	background: url(banner.jpg) no-repeat top center;
	background-size: 1920px 300px;
}

.bannerContaner {
	width: 1100px;
	padding-top: 170px;
	margin: 0px auto;
}

.searchBox {
	display: flex;
	align-items: center;
	width: 500px;
	height: 50px;
	padding-left: 20px;
	border-radius: 6px;
	background-color: #FFFFFF;
	box-shadow: 0 0px 12px rgba(0, 0, 0, 5%);
}

.searchIcon {
	display: inline-block;
	width: 20px;
	height: 50px;
	background: url(search.png) no-repeat top center;
	background-size: 20px 20px;
	background-position: 0px 15px;
}

.searchText {
	flex: 1;
	height: 50px;
	font-size: 20px;
	line-height: 50px;
	padding: 0px 0px 0px 20px;
}

.searchClear {
	width: 20px;
	height: 50px;
	margin: 0px 20px;
	background: url(close.png) no-repeat top center;
	background-size: 20px 20px;
	background-position: 0px 15px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.searchClear.show {
	opacity: 1;
	visibility: visible;
	display: inline-block;
}

.searchBtn {
	display: inline-block;
	width: 80px;
	height: 50px;
	border-radius: 6px;
	background-color: #C40311;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	line-height: 50px;
}

.helpCenterBox {
	width: 1100px;
	min-height: 300px;
	border: 8px;
	padding: 20px 24px 70px 24px;
	margin: 0px auto;
	margin-top: 20px;
	background-color: #FFFFFF;
	box-shadow: 0 0px 12px rgba(0, 0, 0, 5%);
	position: relative;
}



.eachQA {
	font-size: 18px;
}

.questionBox {
	width: 100%;
	height: 74px;
	cursor: pointer;
	border-bottom: 1px solid #F8F8F8;
}

.questionIcon {
	display: inline-block;
	width: 22px;
	height: 74px;
	margin-right: 20px;
	background: url(qustion_icon.png) no-repeat top center;
	background-size: 22px 22px;
	background-position: 0px 26px;
}

.questionTitle {
	display: inline-block;
	width: 960px;
	line-height: 74px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.questionTitle.active{	
	height: 74px;
	line-height: 36px;
	overflow: unset;
	white-space: break-spaces;
	align-items: center;
}
	
.questionBtn {
	display: inline-block;
	width: 20px;
	height: 74px;
	margin-left: 20px;
	background: url(arrow.png) no-repeat top center;
	background-size: 20px 20px;
	background-position: 0px 27px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.answerBox {
	width: 100%;
	border-radius: 8px;
	padding: 0px 16px;
	line-height: 26px;
	font-size: 18px;
	background-color: #F8F8F8;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.answerBox.expanded {
	max-height: 500px;
	opacity: 1;
	overflow-y: scroll;
	padding: 20px 16px;
}

.questionBtn.expanded {
	background: url(arrow_dwon.png) no-repeat top center;
	background-size: 20px 20px;
	background-position: 0px 27px;
}
.answerBox p{
}

.imgItem {
    width: 100%;
    margin: 20px 0px;
    display: flex; 
    flex-direction: column;
    align-items: center;
}

.imgItem img {
    width: auto;
    height: 400px;
}


.imgItem .imgName {
    margin-top: 8px; 
    font-size: 16px;
    color: #333;
    text-align: center;
}


.title {
	font-size: 18px;
	color: #333;
	font-weight: bold;
}

.LJFK_box {
	width: 100%;
	height: 50px;
	margin: 20px 0px;
	padding: 0px 20px;
	line-height: 50px;
	font-size: 16px;
	background-color: #F8F8F8;
}

.LJFK {
	color: #C40311;
	cursor: pointer;
}

.LJFK:hover {
	color: #C40311;
}


/* 搜索结果列表相关 */
.highlight{
	color: #C40311;
}
.noResult {
	width: 200px;
	margin: 0px auto;
    text-align: center;
    padding: 60px 0px;
    color: #999; 
}
.noResult p {
    font-size: 16px;
	margin-top: 10px;
	letter-spacing: 1.2px;
}
.noData{
	display: inline-block;
	width: 200px;
	height: 200px;
	background: url(noData.png) no-repeat top center;
	background-size: 200px 200px;
	margin-bottom: 20px; 
}
.getAll_Btn{
    display: inline-block;
    width: 130px;
    height: 40px;
    margin-top: 20px;
    border-radius: 6px;
    background-color: #C40311;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
	cursor: pointer;
}

/* 搜索结果提示 */
.searchResultTips{
	display: none;
	align-items: center;
	justify-content: flex-start;
	width: 1100px;
	height: 30px;
	margin: 0px auto;
	margin-top: 20px;
}
.tipIcon{
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-right: 10px;
	background: url(infoFill.png) no-repeat top center;
}
.tipText{
	display: inline-block;
	width: 300px;
	height: 26px;
	font-size: 16px;
	font-weight: bold;
}

/* 点赞 */
.evaluation-box {
	width: 280px;
	margin-bottom: 10px;
	align-content: center;
	position: relative;
}

.btn {
	width: 130px;
	height: 40px;
	padding: 0px 0px 0px 16px;
	line-height: 40px;
	text-align: center;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #fff;
	color: #333;
	border: 1px solid #ddd;
}

#fullBtn {
	background-image: url('like_gray.png');
	background-repeat: no-repeat;
	background-position: 16px 10px;
	background-size: 18px 18px;
}

#fullBtn.active {
	background-color: #c30310;
	color: #fff;
}

#dissatisfyBtn {
	background-image: url('dislike_gray.png');
	background-repeat: no-repeat;
	background-position: 14px 12px;
	background-size: 18px 18px;
}

.btn:hover,
.btn.active {
	background-color: #c30310;
	color: #fff;
}

#fullBtn:hover,
#fullBtn.active {
	background-image: url('like_white.png');
}

#dissatisfyBtn:hover,
#dissatisfyBtn.active {
	background-image: url('dislike_white.png');
}

.alertBox {
	color: #999;
	width: 100%;
	line-height: 30px;
	font-size: 16px;
	text-align: left;
	margin: 0px auto;
}

/* 不满意弹框容器（默认隐藏，绝对定位在按钮下方） */
.dissatisfy-popup {
	position: absolute;
	width: 280px;
	margin-top: 50px;
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 16px;
	display: none;
	animation: slideUp 0.3s ease;
	z-index: 999;
}

/* 弹框内容区域 */
.popup-content {
	position: relative;
}

/* 弹框标题 */
.title {
	margin: 0 0 8px;
	font-weight: bold;
	color: #333;
	text-align: left;
}

/* 输入框样式 */
.reason-input {
	width: 100%;
	height: 120px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px;
	resize: none;
	margin-bottom: 12px;
	font-size: 14px;
}

/* 按钮组 */
.btn-group {
	width: 100%;
	text-align: right;
}
.popupBtn{
	background-color: #fff;
	color: #333;
	border: 1px solid #ddd;
	padding: 10px;
	cursor: pointer;
}
.popupBtn.active{
	background-color: #c30310;
	color: #fff;
	border: none;
	padding: 10px;
}



/* 分页样式 */
.pagination-container{
	width: 1052px;
	position: absolute;
	left: 24px;
	bottom: 20px;
	display: flex;
	justify-content: center;
	font-size: 16px;
}
.data-container {
	max-width: 1000px;
	margin: 32px auto;
	padding: 24px;
	background: white;
	border-radius: 8px;
}

.data-list {
	margin-bottom: 20px;
	border: 1px solid #ccc;
	padding: 10px;
}

.data-list li {
	padding: 8px;
	border-bottom: 1px dashed #ccc;
}

.data-list li:last-child {
	border-bottom: none;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	list-style: none;
}

/* 页码项基础样式 */
.page-item {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 1px solid #ccc;
	margin: 0 5px;
	/* 10px间距 */
}
.page-btn{
	height: 32px;
	line-height: 32px;
	margin: 0px 10px;
}
.page-text{
	height: 32px;
	line-height: 32px;
	margin: 0px 10px;
}
/* 当前页样式 */
.page-item.active {
	background-color: rgba(196, 3, 17, 1);
	color: white;
	font-weight: 500;
}

/* 输入框样式 */
.page-input {
	width: 32px;
	height: 32px;
	border: 1px solid #ccc;
	text-align: center;
	outline: none;
}

.page-input:focus {
	border-color: rgba(196, 3, 17, 1);
}

/* 省略号样式 */
.ellipsis {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
	cursor: default;
}

/* 容器样式 */
.middle-container,
.jump-container {
	display: flex;
	align-items: center;
}

/* 总条数和跳转区域间距 */
.total-items {
	margin-right: 16px;
	width: 80px;

}

.jump-container {
	margin-left: 16px;
}

/* 禁用状态样式 */
.page-item.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.prevBtn{
	width: 32px;
	height: 32px;
	background: url(arr_L.png) no-repeat top center;
	background-size: 20px 20px;
	background-position: 6px;
}

.nextBtn{
	width: 32px;
	height: 32px;
	background: url(arr_R.png) no-repeat top center;
	background-size: 20px 20px;
	background-position: 6px;
}