body {
	background: #FBFBFB;
}

.person-con {
	position: relative;
	margin: 0 auto 40px;
	width: 1200px;
}

.person-con .person-left-con {
	position: absolute;
	left: 0;
	top: 0;
	width: 180px;
	background: #FFF;
	box-shadow: 0px 1px 6px 0px rgba(225, 225, 225, 0.5);
	border-radius: 5px;
}

.person-left-con .avatar-box {
	padding: 20px 0 10px;
	text-align: center;
}

.person-left-con .avatar-box img {
	width: 60px;
	height: 60px;
	border-radius: 30px;
}

.person-left-con .wel-name {
	text-align: center;
	font-size: 13px;
	color: #444;
}

.person-left-con .person-func-box {
	padding: 20px 0;
}

.person-left-con .person-func-box p {
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #555;
	font-size: 15px;
	margin-bottom: 10px;
	cursor: pointer;
}

t.person-left-con .person-func-box p:hover {
	color: var(--brand-blue);
	background: rgba(42, 103, 246, 0.06);
}

.person-left-con .person-func-box .cur-func {
	color: var(--brand-blue);
	background: rgba(42, 103, 246, 0.08);
}

.person-con .person-right-con {
	margin-left: 200px;
	min-height: 660px;
	background: #FFF;
	box-shadow: 0px 1px 6px 0px rgba(225, 225, 225, 0.5);
	border-radius: 5px;
	padding-bottom: 20px;
}

/* ---房源--- */
.person-right-con .pr-right-title {
	padding: 15px;
	font-size: 18px;
	color: #333;
	position: relative;
}

.person-right-con .pr-right-title .close {
	position: absolute;
	right: 15px;
	top: 17px;
	height: 22px;
	cursor: pointer;
}

.person-right-con .pr-right-title .new-add-btn {
	position: absolute;
	top: 12px;
	right: 20px;
	height: 30px;
	line-height: 30px;
	width: 72px;
	font-size: 13px;
	color: var(--brand-blue);
	text-align: center;
	border-radius: 5px;
	border: 1px solid var(--brand-blue);
	cursor: pointer;
	background: #FFF;
}

.person-right-con .pr-house-con {
	min-height: 500px;
}

.person-right-con .person-skeleton {
	padding: 0 15px 20px;
	min-height: 500px;
}

.person-skeleton .skeleton-card {
	margin-bottom: 16px;
	padding: 16px;
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 1px 6px 0px rgba(225, 225, 225, 0.35);
}

.person-skeleton .skeleton-line {
	height: 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, #f2f2f2 25%, #e9e9e9 37%, #f2f2f2 63%);
	background-size: 400% 100%;
	animation: person-skeleton-loading 1.4s ease infinite;
}

.person-skeleton .skeleton-line+.skeleton-line {
	margin-top: 12px;
}

.person-skeleton .skeleton-line.short {
	width: 24%;
}

.person-skeleton .skeleton-line.medium {
	width: 48%;
}

.person-skeleton .skeleton-line.long {
	width: 72%;
}

.person-skeleton .skeleton-house {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.person-skeleton .skeleton-thumb {
	width: 205px;
	height: 150px;
	border-radius: 8px;
	flex: 0 0 auto;
	background: linear-gradient(90deg, #f2f2f2 25%, #e9e9e9 37%, #f2f2f2 63%);
	background-size: 400% 100%;
	animation: person-skeleton-loading 1.4s ease infinite;
}

.person-skeleton .skeleton-content {
	flex: 1 1 auto;
	padding-top: 4px;
}

.person-skeleton .skeleton-table {
	padding: 4px 0;
}

.person-skeleton .skeleton-table .skeleton-line {
	height: 16px;
}

@keyframes person-skeleton-loading {
	0% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0 50%;
	}
}

.person-right-con .pr-house-box {
	height: 168px;
	margin-bottom: 16px;
	position: relative;
	border-radius: 24px;
	border: 1px solid rgba(220, 231, 245, 0.9);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 14px 30px rgba(28, 69, 133, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.person-right-con .pr-house-box:hover {
	transform: translateY(-3px);
	border-color: rgba(173, 202, 242, 0.92);
	box-shadow: 0 18px 34px rgba(28, 69, 133, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.pr-house-box .house-img-box {
	position: absolute;
	top: 12px;
	left: 14px;
	height: 144px;
	width: 214px;
	overflow: hidden;
	border-radius: 18px;
}

.pr-house-box .house-img-box .auction-status {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 60;
	height: 32px;
	line-height: 32px;
	min-width: 88px;
	padding: 0 14px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 10px 20px rgba(17, 46, 92, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
	background: linear-gradient(135deg, #4cbe8e 0%, #2e9b73 100%);
}

.pr-house-box .house-img-box .auction-status.auctioning {
	background: linear-gradient(135deg, #3d86ff 0%, #255fcb 100%);
}

.pr-house-box .house-img-box .auction-status.auction-pending {
	background: linear-gradient(135deg, #4cbe8e 0%, #2e9b73 100%);
}

.pr-house-box .house-img-box .auction-status.auction-end {
	background: linear-gradient(135deg, #8393a7 0%, #5e6e84 100%);
}

.pr-house-box .house-img-box .house-cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}

.pr-house-box .house-img-box .house-cover-img.img-end {
	opacity: 0.6;
}

.person-right-con .pr-house-box:hover .house-cover-img {
	transform: scale(1.05);
}

.pr-house-box .house-img-box .house-time {
	position: absolute;
	padding: 8px 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: rgba(248, 251, 255, 0.96);
	line-height: 17px;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(10, 26, 52, 0.16) 0%, rgba(10, 26, 52, 0.62) 100%);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.pr-house-box .house-info-box {
	padding: 20px 20px 0 248px;
	position: relative;
}

.pr-house-box .house-info-box .h-info-name {
	font-size: 19px;
	color: #183861;
	font-weight: 600;
	letter-spacing: 0.01em;
	margin-right: 20px;
	transition: color .22s ease, text-shadow .22s ease;
}

.person-right-con .pr-house-box:hover .house-info-box .h-info-name {
	color: var(--brand-blue);
	text-shadow: 0 4px 12px rgba(42, 103, 246, 0.12);
}

.pr-house-box .house-info-box .h-info-p {
	margin-top: 10px;
	font-size: 12px;
	color: #6f8399;
	line-height: 1.7;
}

.pr-house-box .house-info-box .h-info-price {
	margin-top: 10px;
	font-size: 13px;
	color: #6c7f95;
	font-weight: 600;
}

.pr-house-box .house-info-box .h-info-price .light-price {
	font-size: 32px;
	color: #63C36A;
	padding: 0 8px 0 10px;
	font-weight: 900;
	letter-spacing: -0.03em;
	text-shadow: 0 3px 10px rgba(42, 103, 246, 0.08);
}

.pr-house-box .house-info-box .light-price.auctioning {
	color: var(--brand-blue);
}

.pr-house-box .house-info-box .light-price.auction-pending {
	color: #31a478;
}

.pr-house-box .house-info-box .light-price.auction-end {
	color: #6C6B6B;
}

.pr-house-box .house-info-box .delete-span {
	position: absolute;
	top: 18px;
	right: 18px;
	font-size: 12px;
	color: #5d7088;
	padding: 6px 10px;
	background-color: rgba(237, 242, 250, 0.92);
	border: 1px solid rgba(216, 226, 241, 0.9);
	border-radius: 999px;
	cursor: pointer;
}

.pr-house-box .delete-el {
	position: absolute;
	top: 0;
	right: 20px;
	padding: 6px 8px;
	font-size: 13px;
}

.person-right-con .my-info-box {
	margin: 15px;
}

.person-right-con .back-box {
	padding: 15px 15px 0;
}

.person-right-con .back-box img {
	height: 16px;
	cursor: pointer;
}

.person-right-con .my-info-box .my-input-box {
	height: 38px;
	line-height: 38px;
	margin-bottom: 20px;
}

.person-right-con .my-info-box .my-input-box label {
	font-size: 14.2px;
	color: #444;
	width: 58px;
	display: inline-block;
	text-align: right;
}

.person-right-con .my-info-box .my-input-box input {
	height: 38px;
	line-height: 38px;
	font-size: 15px;
	color: #444;
	padding: 0 10px;
	border: 1px solid rgba(199, 211, 230, 0.9);
	width: 280px;
	margin-left: 10px;
	border-radius: 10px;
	outline: none;
	background: rgba(255, 255, 255, 0.8);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.person-right-con .my-info-box .my-input-box input:focus {
	border-color: var(--brand-blue);
	box-shadow: 0 0 0 3px rgba(42, 103, 246, 0.08);
}

.person-right-con .my-info-box .my-input-box input::-webkit-input-placeholder {
	/* placeholder颜色 */
	color: #aab2bd;
	/* placeholder字体大小 */
	font-size: 14px;
}

.person-right-con .my-info-box .my-avatar-con {
	padding-left: 30px;
}

.person-right-con .my-info-box .my-avatar-con label {
	font-size: 14.2px;
	color: #444;
	padding-right: 10px;
	vertical-align: top;
}

.person-right-con .my-avatar-con .my-avatar-box {
	display: inline-block;
	margin-right: 15px;
	height: 120px;
	width: 120px;
	position: relative;
	background-color: #EFEFEF;
}

.person-right-con .my-avatar-con .my-avatar-box .avatar-remind {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 6;
	height: 28px;
	line-height: 28px;
	text-align: center;
	color: #fff;
	background: var(--brand-blue);
	opacity: 0.6;
	font-size: 13px;
}

.person-right-con .my-avatar-con .my-avatar-box input {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8;
	opacity: 0;
	cursor: pointer;
}

.person-right-con .my-avatar-con .my-avatar-box img {
	height: 120px;
	width: 120px;
}

.person-right-con .save-btn {
	margin: 80px 0 60px 110px;
	width: 180px;
	height: 38px;
	line-height: 38px;
	font-size: 15px;
	text-align: center;
	color: #fff;
	border-radius: 5px;
	background: var(--brand-blue);
	cursor: pointer;
}

.right-search-con {
	padding: 10px;
}

.right-search-con label {
	font-size: 13.6px;
	color: #333;
	padding: 0 10px 0 15px;
	font-weight: bold;
}

.right-search-con .search-input {
	font-size: 14px;
	color: #333;
	padding: 0 10px;
	height: 32px;
	line-height: 32px;
	border: 1px solid #dcdfe6;
	margin-bottom: 15px;
	border-radius: 5px;
}

.right-search-con .search-input::-webkit-input-placeholder {
	/* placeholder颜色 */
	color: #aab2bd;
	/* placeholder字体大小 */
	font-size: 13.5px;
}

.right-search-con .search-btn {
	height: 34px;
	line-height: 34px;
	width: 60px;
	font-size: 14.6px;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	background: var(--brand-blue);
	border: 0;
	margin-left: 15px;
	cursor: pointer;
}

.right-search-con .reset-btn {
	height: 34px;
	line-height: 34px;
	width: 60px;
	font-size: 14.6px;
	color: var(--brand-blue);
	text-align: center;
	border-radius: 5px;
	background: rgba(42, 103, 246, 0.08);
	border: 0;
	margin-left: 10px;
	cursor: pointer;
}

.pfmance-box {
	min-height: 500px;
}

.pfmance-box table {
	width: 100%;
	border-spacing: 0px;
}

.pfmance-box .pfmance-tr-light {
	background: rgba(42, 103, 246, 0.08);
}

.pfmance-box th {
	font-size: 14.6px;
	padding: 11px 0;
	background: #F0F0F0;
	color: #212121;
}

.pfmance-box td {
	text-align: center;
	font-size: 13px;
	padding: 12px 0;
	color: #444;
}

.pfmance-box td.light-text {
	color: var(--brand-blue);
}

.person-right-con .right-search-con .search-select {
	width: 145px;
	margin-right: 10px;
	margin-bottom: 10px;
	height: 34px;
	border-radius: 10px;
	outline: none;
	padding: 0 8px;
	font-size: 14px;
	color: #333;
	background: rgba(255, 255, 255, 0.8);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.person-right-con .right-search-con .search-select:focus {
	border-color: var(--brand-blue);
	box-shadow: 0 0 0 3px rgba(42, 103, 246, 0.08);
}

.person-right-con .my-customer-con {
	padding: 0 15px;
	min-height: 500px;
}

.my-customer-con .my-customer-box {
	background: #FFFFFF;
	box-shadow: 0px 0px 4px 0px rgba(148, 148, 148, 0.5);
	border-radius: 5px;
	height: 140px;
	margin-bottom: 15px;
	position: relative;
}

.my-customer-box .customer-header-box {
	height: 46px;
	line-height: 46px;
	border-bottom: 1px dashed #EBEBEB;
	position: relative;
}

.my-customer-box .customer-header-box .name-sp {
	font-size: 16px;
	color: #333;
	font-weight: bold;
	margin-left: 15px;
	vertical-align: middle;
}

.my-customer-box .customer-header-box .level-sp {
	font-size: 12px;
	color: #45BE43;
	background: #E2FFE2;
	border-radius: 2px;
	padding: 2px 12px;
	margin-left: 5px;
	vertical-align: middle;
}

.my-customer-box .customer-header-box .new-sp {
	font-size: 12px;
	color: var(--brand-blue);
	background: rgba(42, 103, 246, 0.08);
	border-radius: 2px;
	padding: 2px 12px;
	vertical-align: middle;
	margin-left: 5px;
}

.my-customer-box .customer-header-box .phone-sp {
	font-size: 12px;
	color: #333333;
	background: #ECF5FF;
	border-radius: 2px;
	padding: 2px 12px;
	vertical-align: middle;
	margin-left: 5px;
}

.my-customer-box .customer-header-box .money-sp {
	font-size: 12px;
	color: #333333;
	background: #EBEBEB;
	border-radius: 2px;
	padding: 0 12px;
	vertical-align: middle;
	margin-left: 5px;
	max-width: 320px;
	overflow: hidden;
	height: 21px;
	line-height: 21px;
	display: inline-block;
}

.my-customer-box .customer-header-box .quality-sp {
	position: absolute;
	height: 46px;
	line-height: 46px;
	font-size: 12px;
	color: #AAA;
	top: 0;
	right: 75px;
}

.my-customer-box .customer-header-box .btn-sp {
	position: absolute;
	height: 46px;
	line-height: 46px;
	font-size: 14px;
	color: var(--brand-blue);
	top: 0;
	right: 15px;
	cursor: pointer;
}

.my-customer-box .btn-gain {
	position: absolute;
	height: 46px;
	line-height: 46px;
	font-size: 14px;
	color: var(--brand-blue);
	top: 0;
	right: 15px;
	cursor: pointer;
}

.my-customer-box .customer-body-box {}

.my-customer-box .customer-body-box .customer-son-box {
	float: left;
	width: 50%;
}

.my-customer-box .customer-body-box .customer-son-box .time-p {
	color: #444;
	font-size: 12px;
	margin: 10px 15px;
}

.my-customer-box .customer-body-box .customer-son-box .content-p {
	color: #444;
	font-size: 13.5px;
	margin: 0 40px 10px 15px;
	height: 44px;
	line-height: 22px;
	overflow: hidden;
}

.customer-info-con .customer-info-header {
	height: 60px;
	line-height: 60px;
	position: relative;
}

.customer-info-con .customer-info-header .i-name {
	font-size: 20px;
	color: #333;
	font-weight: bold;
	margin-left: 15px;
	vertical-align: middle;
}

.customer-info-con .customer-info-header .i-level {
	font-size: 12px;
	color: #45BE43;
	background: #E2FFE2;
	border-radius: 2px;
	padding: 2px 12px;
	margin-left: 5px;
	vertical-align: middle;
}

.customer-info-con .customer-info-header .i-new {
	font-size: 12px;
	color: var(--brand-blue);
	background: rgba(42, 103, 246, 0.08);
	border-radius: 2px;
	padding: 2px 12px;
	vertical-align: middle;
	margin-left: 5px;
}

.customer-info-con .customer-info-header .i-quality {
	font-size: 13.6px;
	color: #333333;
	vertical-align: middle;
	margin-left: 8px;
}

.customer-info-con .customer-info-header .i-quality .i-release {
	font-size: 13px;
	color: #666;
	padding-left: 10px;
}

.customer-info-con .customer-info-header .ct-info-btn {
	float: right;
	margin: 13px 10px 0 0;
	height: 30px;
	line-height: 28px;
	font-size: 14px;
	border: 1px solid var(--brand-blue);
	padding: 0 8px;
	color: var(--brand-blue);
	border-radius: 5px;
	cursor: pointer;
}

.customer-info-con .customer-info-header .ct-info-btn img {
	height: 16px;
	vertical-align: middle;
}

.customer-info-con .customer-info-header .ct-info-btn span {
	vertical-align: middle;
}

.customer-info-con .customer-info-header .ct-info-btn-unlock {
	border: 1px solid var(--brand-blue);
	background: var(--brand-blue);
	color: #FFF;
}

.customer-info-con .ct-info-left-con {
	float: left;
	width: 50%;
	padding: 5px 0;
}

.customer-info-con .ct-info-left-box {
	margin: 0 10px 10px 15px;
	border-radius: 10px;
	border: 1px solid #E9E9E9;
	padding-bottom: 15px;
	overflow: hidden;
}

.customer-info-con .ct-info-left-box .ct-info-box-t {
	background-color: #E9E9E9;
	line-height: 40px;
	height: 40px;
	padding-left: 10px;
	font-size: 15px;
	font-weight: bold;
	position: relative;
}

.customer-info-con .ct-info-left-box .ct-info-box-t .edit-btn {
	position: absolute;
	font-size: 14px;
	top: 0;
	right: 10px;
	line-height: 40px;
	height: 40px;
	color: #555;
	cursor: pointer;
	font-weight: normal;
}

.customer-info-con .ct-info-left-box .ct-info-box-s {
	float: left;
	width: 45%;
	margin: 15px 0 0 10px;
	font-size: 14px;
	color: #333;
}

.customer-info-con .ct-info-left-box .ct-info-box-b {
	float: left;
	width: 90%;
	margin: 10px 0 0 10px;
	font-size: 14px;
	color: #333;
}

.customer-info-con .ct-info-right-con {
	float: right;
	width: 50%;
	padding: 5px 0;
}

.customer-info-con .ct-info-right-box {
	margin-right: 15px;
	border: 1px solid #E9E9E9;
	border-radius: 10px;
	overflow: hidden;
}

.ct-info-right-box .ct-info-header {
	background-color: #E9E9E9;
	line-height: 40px;
	height: 40px;
	padding-left: 10px;
	font-size: 15px;
	font-weight: bold;
	position: relative;
}

.ct-info-right-box .ct-info-header .edit-btn {
	position: absolute;
	font-size: 14px;
	top: 0;
	right: 10px;
	line-height: 40px;
	height: 40px;
	color: #555;
	cursor: pointer;
	font-weight: normal;
}

.ct-info-right-box .ct-info-item {
	margin: 10px;

}

.ct-info-right-box .ct-info-item .ct-info-item-h {
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	color: #333333;
}

.ct-info-right-box .ct-info-item .ct-info-item-h span {
	color: var(--brand-blue);
	padding-right: 8px;
}

.ct-info-right-box .ct-info-item .ct-info-item-b {
	border: 1px solid #E9E9E9;
	border-radius: 10px;
	overflow: hidden;
	padding-bottom: 10px;
}

.ct-info-right-box .ct-info-item-b .ct-item-u {
	margin: 10px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	padding-left: 40px;
	position: relative;
}

.ct-info-right-box .ct-info-item-b .ct-item-u img {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 15px;
	height: 30px;
}

.ct-info-right-box .ct-info-item-b .ct-item-s {
	float: left;
	width: 45%;
	margin: 5px 0 0 10px;
	font-size: 13px;
	color: #333;
}

.ct-info-right-box .ct-info-item-b .ct-item-s span {
	padding-left: 10px;
	color: var(--brand-blue);
}

.ct-info-right-box .ct-info-item-b .ct-item-s-t {
	float: left;
	width: 12%;
	margin: 15px 0 0 10px;
	font-size: 13px;
	color: #333;
}

.ct-info-right-box .ct-info-item-b .ct-item-s-c {
	float: left;
	width: 80%;
	margin: 15px 0 0 5px;
	font-size: 13px;
	color: #212121;
}