body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td { margin:0; padding:0; }   
body { background:#ffffff; color:#333; font-size:14px; font-family: "Source Han Sans CN", "微软雅黑",'Arial Regular', Verdana, Helvetica, sans-serif; }   
td,th,caption { font-size:14px;}
a { color:#333; text-decoration:none; transition: all .3s; -webkit-transition: all .3s; -moz-transition: all .3s; -o-transition: all .3s;}   
a:hover { text-decoration:none; transition: .3s all;-webkit-transition: .3s all;-moz-transition: .3s all;-o-transition: .3s all;}   
img { border:none; }   
ol,ul,li { list-style:none; }   
input, textarea, select, button { font:14px "Source Han Sans CN", "微软雅黑", 'Arial Regular', Verdana,Helvetica,Arial,sans-serif; }   
table { border-collapse:collapse; }   
html {overflow-y: auto;}   

a,button{cursor:pointer;}
input,textarea,button{outline: none;}
textarea{resize:none;}

.clearfix:after{clear:both;content:""; display:block; visibility:hidden; height:0;overflow: hidden;}	
.fl{float: left;}
.fr{float: right;}
.show{display:block !important;}
.hide{display: none !important;}

.toast {
	position: fixed;
	top: 5%;
	left: 50%;
	z-index: 9999;
	width: auto;
	white-space: nowrap;
	line-height: 40px;
	padding: 0 20px;
	border-radius: 6px;
	background: rgba(0, 0, 0, .8);
	color: #fff;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	opacity: 1;
	transition: opacity 0.5s;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.container{
	width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
/* 变成小手 */
.pointer{
    cursor: pointer;
}
body{
	/* width: 1200px; */
	margin: 0 auto;
}
.flex{
	display: flex;
}
.flex-center{
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex-all-end{
	display: flex;
	align-items: flex-end;
}
.flex-between{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex-all-center{
	display: flex;
	align-items: center;
}
/* 一行显示 */
/* 1.文字 */

.com-text-one {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	/* 以下 代码 主要只为了适配 scroll-view 中换行问题 */
	white-space: normal !important;
}


.com-text-two {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* 以下 代码 主要只为了适配 scroll-view 中换行问题 */
	white-space: normal !important;
}

.com-text-three {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	/* 以下 代码 主要只为了适配 scroll-view 中换行问题 */
	white-space: normal !important;
}




/* 底部分页 */
.template-right-page{
    margin-bottom: 74px;
    margin-top: 40px;
    justify-content: center;
    padding-right: 20px;
    box-sizing: border-box
}
.page-jump{
    width: 138px;
    height: 40px;
    /* gray-300 */
    border: 1px solid rgb(222, 226, 231);
    border-radius: 6px;
    background: rgb(255, 255, 255);
    padding: 0 10px;
    box-sizing: border-box;
    color: rgb(28, 28, 28);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    margin-right: 10px;
    /*  */
}
.page-jump select{
    background: none;
    border: none;
}
.page-item div{
    width: 48px;
    height: 40px;
    /* gray-300 */
    border: 1px solid rgb(222, 226, 231);
    /* white */
    background: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-item div img{
    width: 8px;
    height: 14px;
}
.page-item div:first-child{
    border-radius: 6px 0px 0px 6px;
}
.page-item div:last-child{
    border-radius: 0px 6px 6px 0px;
}
.page-item div.active{
    background: rgb(239, 242, 244);
    color: rgb(139, 150, 165);
}


/* ----------------弹窗-------------------- */
.mask{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.3);
	z-index: 99;
	display: none;
}
.mask img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 40vh;
}


/* ---------------评价的弹框----------------- */
#overlay {
	display: none; /* 初始隐藏 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000; /* 确保在最高层 */
}

#popup {
	width: 400px;
	height: 200px;
	position: absolute;
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	z-index: 1001; /* 确保在overlay之上 */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#popup .popup-top{
    display: flex;
	align-items: center;
	justify-content: center;
}
#popup select{
	width: 300px;
	height: 30px;
}
#popup p{
	margin-right: 20px;
}
#popup .star-wrap{
	display: flex;
	align-items: center;
}
#popup .star-wrap img{
	width: 50px;
	height: 50px;
	margin-left: 10px;
}
#popup .popup-btn{
    width: 60%;
    height: 40px;
    border-radius: 6px;
    background: rgb(24, 144, 255);
    color: rgb(255, 255, 255);
    font-family: 思源黑体;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    line-height: 40px;
    cursor: pointer;
}







