/* 头部 */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 85px;
	background: #FFFFFF;
	box-shadow: 0px 1px 27px 0px rgba(91, 94, 96, 0.44);
	z-index: 5;
}

#header header {
	width: 1480px;
	height: 100%;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header .logo {
	display: block;
	width: 190px;
	float: left;
}

#header .nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

#header .nav .nav-lis {
	margin: 0 30px;
	text-align: center;

}

#header .nav .nav-lis>a {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 40px;
	padding: 15px 0;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000
}
#header .nav .nav-lis.active>a,
#header .nav .nav-lis:hover>a {
	color: #165DFF
}
#header .nav .nav-lis.active>a::after,
#header .nav .nav-lis:hover>a::after {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 29px;
	height:3px;
	background: #165DFF;
}
#header .nav .nav-lis:hover .navChild {
	display: block;
}

#header .nav .nav-lis .navChild {
	position: absolute;
	top: 70px;
	left: 0;
	width: 920px;
	background: #FFFFFF;
	box-shadow: 0px 3px 27px 0px rgba(91, 94, 96, 0.21);
	border-radius: 5px;
}

#header .nav .nav-lis .navChild a {
	display: block;
	font-size: 14px;
	line-height: 40px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}

#header .nav .nav-lis .navChild .navChild-lis.active a,
#header .nav .nav-lis .navChild a:hover {
	color: #0E9BF3
}

#header .nav .nav-lis .navChild .navChild-con {
	width: 670px;
	padding: 15px 0;
	text-align: left;
}

#header .nav .nav-lis .navChild .navChild-lis {
	width: 25%;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	padding: 0 20px;
}

#header .nav .nav-lis .navChild .course-lis {
	width: 211px;
	height: 59px;
	line-height: 59px;
	border-radius: 5px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FD8320;
	padding-left: 75px;
	background: url(../icon/nav-l1.png) no-repeat center left 25px;
	background-size: 38px;
	background-color: rgba(253, 131, 32, 0.17);
	margin-top: 17px;
	margin-right: 15px;
}

#header .nav .nav-lis .navChild .course-lis:nth-child(2) {
	color: #0E9BF3;
	background: url(../icon/nav-l2.png) no-repeat center left 25px;
	background-size: 38px;
	background-color: rgba(14, 155, 243, 0.17);
	margin-bottom: 17px;
}

#header .head-img {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:24px;
	position: relative;

}

#header .head-img .login {
	width: 110px;
	height: 40px;
	border: 1px solid #1395E7;
	border-radius: 21px;
	border:1px solid #155AF9;
	border-radius:5px;
	cursor: pointer;
	font-size: 14px;
	color: #155AF9;
	display: flex;
	align-items: center;
	justify-content: center;
}

#header .head-img .login span {
	display: inline-block;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #155AF9;
	position: relative;
	margin: 0 7px;
	cursor: pointer;
}

#header .head-img button {
	width: 110px;
	height: 40px;
	background:#FF7D00;
	border-radius:5px;
	cursor: pointer;
	font-size: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:4px;
}
#header .head-img .icon-plus {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
}
#header .head-img .icon-plus::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 2px;
	height: 100%;
	background: #fff;
	border-radius: 3px;
}
#header .head-img .icon-plus::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width:2px;
	height: 100%;
	background: #fff;
	transform: rotate(90deg);
	border-radius: 3px;
}
#header .head-img .head {
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	cursor: pointer;
}

#header .head-img .head-box{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}

#header .head-img .head-box .down-icon{
	width: 12px;
}
#header .head-img .popup {
	position: absolute;
	top: 85px;
	right: 0;
	width: 225px;
	background: #FFFFFF;
	box-shadow: 0px 3px 27px 0px rgba(91, 94, 96, 0.21);
	border-radius: 5px;
}

#header .head-img .popup .popup-top {
	width: 100%;
	min-height: 80px;
	padding-left: 80px;
	position: relative;
	background: url(../icon/bg.png) no-repeat center;
	background-size: 100%;
	border-radius: 5px 5px 0 0;
	display: flex;
	justify-content: center;
	flex-flow: column;
}

#header .head-img .popup .popup-top .img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 2px solid #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 14px;
	margin: auto 0;
}

#header .head-img .popup .popup-top .name {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
}

#header .head-img .popup .popup-top .id {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #F3F3F3;
}

#header .head-img .popup .popup-con .lis {
	padding: 0 0 0 40px;
	line-height: 55px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #3D3D3D;
	position: relative;
}

#header .head-img .popup .popup-con .recharge {
	position: absolute;
	top: 0;
	right: 15px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FF5B53;
}

#header .head-img .popup .popup-con .infor-num {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	min-width: 24px;
	height: 24px;
	background: #F30E34;
	text-align: center;
	line-height: 24px;
	border-radius: 12px;
	padding: 0 4px;
}

#header .head-img .popup .popup-con .lis.money {
	padding-left:15px;
	border-bottom: 1px solid #E5E5E5;
}

#header .head-img .popup .popup-con .lis.homepage {
	background: url(../icon/svg/home.svg) no-repeat center left 10px;
	background-size: 24px;
}

#header .head-img .popup .popup-con .lis.personal {
	background: url(../icon/personal.png) no-repeat center left 10px;
	background-size: 24px;
}

#header .head-img .popup .popup-con .lis.news {
	background: url(../icon/svg/info.svg) no-repeat center left 10px;
	background-size: 24px;
}

#header .head-img .popup .popup-con .lis.down {
	background: url(../icon/down2.png) no-repeat center left 10px;
	background-size: 24px;
}

#header .head-img .popup .popup-con .lis span {
	color: #155AF9;
}

#header .head-img .popup .popup-con .lis.exit {
	background: url(../icon/svg/exit.svg) no-repeat center left 10px;
	background-size: 24px;
}
#header .head-img .publish-con:hover .publish-box{
	display: block;
}
#header .head-img .publish-con::after{
	content: '';
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 30px;
	background: rgba(0, 0, 0, 0);
}
#header .head-img .publish-con{
	position: relative;
}
#header .publish-box{
	display: none;
	position: absolute;
	top: 63px;
	right: 0;
	width: 660px;
	height: 500px;
	background:url(../icon/publish-box-bg.png) no-repeat center;
	background-size: 100%;
	padding:70px 50px 30px;
}
#header .publish-box .publish-box-title{
	font-family: Source Han Sans;
	font-size: 40px;
	font-weight: bold;
	color: #000000;
	text-align: center;
}
#header .publish-box .desc{
	font-family: Source Han Sans;
	font-size: 24px;
	font-weight: normal;
	color: #6B7280;
	text-align: center;
	margin-top:10px;
}
#header .publish-box .publish-box-item-list{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top:70px;
}
#header .publish-box .publish-box-item-list .publish-box-item{
	flex:1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	cursor: pointer;
}
#header .publish-box .publish-box-item-list .publish-box-item img{
	width: 145px;
	height: 145px;
}
#header .publish-box .publish-box-item-list .publish-box-item span{
	font-family: Source Han Sans;
	font-size: 24px;
	font-weight: normal;
	color: #3D3D3D;
}
/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 30px;
}

.pagination .page-btn {
	width: 22px;
	height: 22px;
	border-radius: 2px;
	background: #FFFFFF;
	box-sizing: border-box;
	border: 1px solid #D8D8D8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #666666;
}
.pagination .page-btn.next::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url("../icon/left.png") no-repeat center;
	background-size: 100%;
}
.pagination .page-btn.prev::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url("../icon/right.png") no-repeat center;
	background-size: 100%;
}
.pagination .page-btn.active {
	background: #155AF9;
	border-color: #155AF9;
	color: #FFFFFF;
}
/* 尾部 */
.footer {
	min-width: 1480px;
	background: #1D2129;
	padding: 55px 0 10px;
	position: relative;
}
.footer .footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.footer .footer-left {
	display: flex;
	gap:180px;
}

.footer .footer-left .logo {
	width: 205px;
	margin-top:-18px;
}
.footer .footer-left .logo-text {
	font-size: 16px;
	color: #86909C;
	padding-left:20px;
	max-width: 360px;
}
.footer .footer-left .foot-tit {
	line-height: 30px;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
}
.footer .footer-left .foot-con {
	padding:10px 0;
}
.footer .footer-left .foot-con .lis a {
	line-height: 35px;
	font-size: 16px;
	color: #86909C;
}

.footer .foot-b {
	width: 100%;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #939393;
	text-align: center;
}

.footer .footer-right {
	display: flex;
	justify-content: space-between;
}

.footer .footer-right img {
	width: 155px;
	display: block;
}

.footer .footer-right p {
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #939393;
	padding-top: 10px;
	text-align: center;
}

.footer .footer-right .icon {
	display: inline-block;
	width: 20px;
	position: relative;
}
.footer .footer-right .qq-lis-tit {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.footer .footer-right .qq-lis {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #E2D8D8;
	margin-right: 25px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap:10px;
}


/* 登录与注册弹窗 */
.register-q {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 10;
}

.register-q .register {
	width: 905px;
	height: 570px;
	background: #FFFFFF;
	box-shadow: 0px 12px 27px 0px #5B5E60;
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	overflow: hidden;
}

.register-q .register .register-l {
	width: 410px;
	height: 100%;
}

.register-q .register .register-l .swiper-container {
	width: 100%;
	height: 100%;
}

.register-q .register .register-l .swiper-pagination {
	text-align: left;
	padding: 0 10px;
}

.register-q .register .register-l .swiper-pagination-bullet {
	background: #EAEAEA;
	opacity: 1;
}

.register-q .register .register-l .swiper-pagination-bullet-active {
	background: #929292;
}

.register-q .register .register-r {
	width: 495px;
	padding: 0 40px 0 53px;
	position: relative;
}

.register-q .register .register-r .tit {
	font-size: 22px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	text-align: center;
	padding: 30px 0;
}

.register-q .register .register-r .ewm {
	width: 64px;
	height: 64px;
	position: absolute;
	top: 12px;
	right: 12px;
	background: url(../icon/ewm.png) no-repeat center;
	background-size: 100%;
}

.register-q .register .register-r .ewm.on {
	background: url(../icon/ewm1.png) no-repeat center;
	background-size: 100%;
}

.register-q .register .register-r .register-lis {
	width: 100%;
	height: 58px;
	margin-bottom: 21px;
	position: relative;
}

.register-q .register .register-lis.code {
	padding-right: 150px;
}

.register-q .register .register-lis.code .identif {
	position: absolute;
	top: 0;
	right: 0;
	width: 135px;
	height: 58px;
	background: #E0F2FD;
	border-radius: 10px;
	text-align: center;
	line-height: 58px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #2CAEFF;
	cursor: pointer;
}

.register-q .register .register-r .inp {
	width: 100%;
	height: 100%;
	border: 1px solid #EBEBEB;
	border-radius: 10px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	padding: 0 20px 0 75px;
}

.register-q .register .register-r .inp.on {
	border: 1px solid #2CAEFF;
	box-shadow: 0px 7px 27px 0px rgba(44, 174, 255, 0.2);
}

.register-q .register .register-lis.phone .inp {
	background: url(../icon/phone.png) no-repeat center left 18px;
	background-size: 19px;
}

.register-q .register .register-lis.code .inp {
	background: url(../icon/code.png) no-repeat center left 17px;
	background-size: 21px;
}

.register-q .register .register-lis.pass .inp {
	background: url(../icon/pass.png) no-repeat center left 14px;
	background-size: 18px;
}

.register-q .register .register-lis.compass .inp {
	background: url(../icon/pass.png) no-repeat center left 14px;
	background-size: 18px;
}

.register-q .register .agree {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
}

.register-q .register .agree::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0;
	width: 20px;
	height: 20px;
	background: #F6F6F6;
	border: 1px solid #ECECEC;
	border-radius: 2px;
	z-index: 1;
}

.register-q .register .agree.on::after {
	background: none;
	border: 1px solid #2CAEFF;
}

.register-q .register .agree.on::before {
	content: '';
	position: absolute;
	top: -3px;
	left: 9px;
	bottom: 0;
	margin: auto 0;
	width: 5px;
	height: 10px;
	border: 1px solid #2CAEFF;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 2;
}

.register-q .register .agree a {
	color: #2CAEFF;
}

/* 记住密码 */
.register-q .register .forget-l {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
}

.register-q .register .forget-l::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0;
	width: 20px;
	height: 20px;
	border: 1px solid #2CAEFF;
	border-radius: 2px;
	z-index: 1;
}

.register-q .register .forget-l.on::before {
	content: '';
	position: absolute;
	top: -3px;
	left: 9px;
	bottom: 0;
	margin: auto 0;
	width: 5px;
	height: 10px;
	border: 1px solid #2CAEFF;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 2;
}

.register-q .register .forget-r {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #ADADAD;
}

.register-q .register .btn-li {
	width: 100%;
	height: 66px;
	background: #2CAEFF;
	border-radius: 10px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin: 20px 0;
}

.register-q .register .goto {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	text-align: center;
}

.register-q .register .goto span {
	color: #2CAEFF;
}

.register-q .register .wechat .tit {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #202020;
}

.register-q .register .wechat img {
	display: inline-block;
	width: 49px;
	position: relative;
	top: 10px;
	margin-right: 15px;
}

.register-q .register .wechat .wechat-img {
	display: block;
	width: 337px;
	height: 337px;
	background: #FFFFFF;
	border: 1px solid #F0F0F0;
	padding: 20px;
	box-shadow: 0px 1px 21px 0px rgba(152, 150, 150, 0.38);
	margin: 0 auto;
}

/* 忘记密码 */
.forget-v {
	height: 550px;
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	margin: 24px auto;
	padding: 30px 24px;
}

.forget-v .forget-tit {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #000000;
}

.forget-v .forget-con {
	padding: 50px 0 0;
	text-align: center;
	width: 524px;
	margin: 0 auto;
}

.forget-v .forget-con .forget-lis {
	margin-bottom: 20px;
	position: relative;
}

.forget-v .forget-con .forget-lis label {
	display: inline-block;
	width: 120px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
	text-align: right;
}

.forget-v .forget-con .forget-lis input {
	width: 400px;
	height: 58px;
	background: #FFFFFF;
	border: 1px solid #D0D0D0;
	border-radius: 10px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	padding: 0 20px;
}

.forget-v .forget-con .forget-lis.code {
	padding-right: 160px;
}

.forget-v .forget-con .forget-lis.code input {
	width: 240px;
}

.forget-v .forget-con .forget-lis.code .identif {
	position: absolute;
	top: 0;
	right: 0;
	width: 140px;
	height: 58px;
	border-radius: 10px;
	border: 1px solid #0F9CF7;
	text-align: center;
	line-height: 58px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #2CAEFF;
	cursor: pointer;
}

.forget-v .forget-con .forget-lis .submit {
	background: #0F9CF7;
	color: #fff;
}

@media (max-width: 1480px) {
	#header header {
		width: 1200px;
	}

	#header .search {
		width: 240px;
	}

	.maxwidth {
		width: 1200px;
	}

	.footer {
		min-width: 1200px;
	}

	.footer .footer-left {
		width: 73%;
	}

	.dtl .dtl-top .dtl-right .top .down {
		width: 180px;
	}

	.dtl .dtl-top .dtl-right .join .join-lis {
		width: 75px
	}

	.about .about-con .left {
		width: 200px;
	}

	.about .about-con .right {
		width: 980px;
	}

	.content .menu .menu-nav {
		width: 90%;
	}

	.engineer .content .lis-v {
		width: 590px;
		height: auto;
	}

	.engineer .content .lis-v .join .join-lis {
		width: 90px;
	}

	.engineer .content .lis-v .lis-con .con-lis {
		width: 170px;
		height: auto;
	}

	.engineer .content .lis-v .lis-con .con-lis img {
		height: 125px;
	}

	.personal .personal-con .left {
		width: 260px;
	}

	.personal .personal-con .right {
		width: 920px;
	}

	.right.info .info-con .open {
		width: 700px
	}

	.change .change-upload {
		width: 1000px
	}

	.change .flow-con .li {
		width: 380px;
		margin-right: 30px;
	}

}

/* 聊天 */
.chat {
	width: 900px;
	height:calc(100% - 340px);
	margin: 20px auto;
	padding: 0 0 65px;
	background: #fff;
	position: relative;
	border-radius: 10px;
}
.chat .chat-content{
	padding: 20px 20px 0;
	height: 100%;
	overflow-y: auto;
}
/* 宽、高分别为垂直滚动条、水平滚动条的尺寸 */
.chat .chat-content::-webkit-scrollbar {
	width: 10px;
    height: 10px;
	
}

/* 滚动条轨道 */
.chat .chat-content::-webkit-scrollbar-track {
    background-color: rgba(15,156,247,0.1);
}

/* 滚动条滑块 */
.chat .chat-content::-webkit-scrollbar-thumb {
    background-color: #0F9CF7;
	border-radius: 5px;
}

/* 鼠标悬停在滚动条上的滑块 */
.chat .chat-content::-webkit-scrollbar-thumb:hover {
    background-color: #0F9CF7;
}
.chat .chat-li {
	position: relative;
	padding-left: 50px;
	margin: 20px 0;
}

.chat .chat-li .avatar {
	position: absolute;
	top: 10px;
	left: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.chat .chat-li .chat-con {
	max-width: 80%;
	display: inline-block;
	padding: 10px;
	border-radius: 5px;
	background: #f3f3f3;
}

.chat .chat-li .chat-con .top {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 5px;
}

.chat .chat-li .chat-con .name {
	color: #0F9CF7;
	font-size: 13px;
	margin-right: 10px;
}

.chat .chat-li .chat-con .time {
	color: #666;
	font-size: 12px;
}

.chat .chat-li .chat-con .con {
	color: #333;
	font-size: 13px;
	line-height: 20px;
}

.chat .chat-li .chat-con .con div {
	display: inline;
}

.chat .chat-li .chat-con .con .model {
	padding: 0 5px;
	color: #666
}

.chat .chat-li .chat-con .con .model span {
	color: #FB8102;
	padding: 0 5px;
}

.chat .chat-li.right {
	padding-left: 0;
	padding-right: 50px;
	display: flex;
	justify-content: flex-end;
}

.chat .chat-li.right .avatar {
	left: auto;
	right: 0;
}

.chat .chat-li.right .chat-con {
	background: #C9E2FF;
}

.chat .chat-li.right .chat-con .top {
	justify-content: flex-end;
}

.chat .chat-li.right .chat-con .name {
	margin-left: 10px;
	margin-right: 0
}

.chat .chat-but {
	position: absolute;
	left: 0;
	bottom: 10px;
	right: 0;
	margin: 0 auto;
	width: 320px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #0F9CF7;
	font-size: 15px;
	color: #fff;
	border-radius: 5px;
}
/* 筛选区域 */
.common-filter-section {
	padding: 20px 0;
}

.common-filter-wrapper {
	background: #FFFFFF;
	border-radius: 16px;
	padding:14px 20px;
	box-shadow: 0 8px 30px rgba(29, 46, 114, 0.08);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.common-filter-rows {
	display: flex;
}

.common-filter-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding:14px 0;
}

.common-filter-row .common-filter-label {
	font-size: 14px;
	color: #666;
}

.common-filter-row .common-filter-options {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.common-filter-row .common-filter-option {
	padding: 0 10px;
	font-size: 14px;
	color: #000000;
	cursor: pointer;
	background: #F5F6F7;
	border-radius: 40px;
	text-align: center;
	min-width: 60px;
	height:35px;
	line-height: 35px;
}

.common-filter-option.active {
	color: #fff;
	background: #155AF9;
}
.common-filter-sort{
	display: flex;
	align-items: center;
	padding-top: 23px;
	padding-bottom: 10px;
}
.common-filter-sort-option{
	padding: 0px 10px;
	font-size: 14px;
	color: #000000;
	cursor: pointer;
	border: 1px solid #D6D8E0;
	display: flex;
	align-items: center;
	gap:5px;
}
.common-filter-sort-option::after{
	content: '';
	display: block;
	width: 8px;
	height: 12px;
	background: url("../icon/down2.png") no-repeat center;
	background-size: 100%;
}
.common-filter-sort-option.active{
	color: #fff;
	background:#155AF9;
	border-color: #155AF9;
}
.common-filter-sort-option.active::after{
	background: url("../icon/down1.png") no-repeat center;
	background-size: 100%;
}
/* 筛选 */
.common-results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 0 15px;
}

.common-results-count {
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
}

.common-results-number {
	color: #165DFF;
	font-weight: bold;
}

.common-sort-select-wrapper {
	position: relative;
	display: inline-block;
}

.common-sort-select {
	padding: 8px 30px 8px 12px;
	border: 1px solid #D8D8D8;
	border-radius: 10px;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	background: #FFFFFF;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.common-sort-arrow {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 11px;
	pointer-events: none;
}
/* ============================================
   模块2: 面包屑导航
   ============================================ */
.common-detail-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 60px;
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	color: #666666;
	margin-bottom: 20px;
	margin-top:20px;
}

.common-detail-breadcrumb a {
	color: #666666;
	text-decoration: none;
	transition: color 0.3s;
}

.common-detail-breadcrumb a:hover {
	color: #165DFF;
}

.common-detail-breadcrumb .separator {
	margin: 0 4px;
	color: #666666;
}

.common-detail-breadcrumb .current {
	color: #666666;
}
/* 按钮 */
.more-btn{
	display: flex;
	align-items: center;
	justify-content: center;
}
.more-btn .link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 197px;
	height: 60px;
	border-radius: 10px;
	box-sizing: border-box;
	border: 1px solid #86909C;
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	color: #86909C;
	margin-top:80px;
}
.more-btn .link-a{
	color: #3D3D3D;
	margin-top: 0;
}
.more-btn .link::after {
	content: '';
	display: inline-block;
	width:13px;
	height:10px;
	background:url(../icon/jiantou.png) no-repeat center center;
	background-size: 100% 100%;
}
.more-btn.on .link{
	color: #165DFF;
	border-color: #165DFF;
}
.more-btn.on .link::after{
	background:url(../icon/jiantou-blue.png) no-repeat center center;
	background-size: 100% 100%;
}
/* 弹窗 */
.popup-overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: none;
}
.popup-overlay .popup-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 314px;
	border-radius: 10px;
	background: #FFFFFF;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
	padding:35px 20px;
}
.popup-overlay .popup-content .popup-content-text{
	font-family: Source Han Sans;
	font-weight: 400;
	font-size: 14px;
	color: #000000;
	text-align: center;
}
.popup-overlay .popup-content .popup-content-text span{
	color: #165DFF;
}
.popup-overlay .popup-content .popup-footer{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin-top: 24px;
}
.popup-overlay .popup-content .popup-footer .popup-btn{
	width: 60px;
	height: 30px;
	border-radius: 5px;
	background: #165DFF;
	color: #FFFFFF;
}
.popup-overlay .popup-content .popup-footer .popup-btn.cancel-btn{
	background: #D8D8D8;
	color: #3D3D3D;
}