/* ===== 主卡片 ===== */
.user-container{
	margin-top:1.5rem;
}
.neighbor-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
/* ----- 顶部账号信息区 (渐变背景) ----- */
.profile-header {
    background: linear-gradient(145deg, #8a7862 0%, #5c5147 45%, #3d3d3d 100%);
    padding: 24px 20px 20px 20px;
    color: #fff;
    position: relative;
}

.profile-header .avatar {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    user-select: none;
}
.profile-header .avatar img {
    width: 100%;
    border-radius: 50%;
}

.profile-header .info-wrapper {
    padding-left: 14px;
    flex: 1;
    min-width: 0;
}

.profile-header .nickname {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.profile-header .nickname .badge-verify {
    color: #ffc107;
    font-size: 16px;
    line-height: 1;
}
.profile-header .nickname .badge-verify i {
    filter: drop-shadow(0 0 2px rgba(255, 193, 7, 0.4));
}

.profile-header .wechat-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    letter-spacing: 0.2px;
}
.profile-header .wechat-id i {
    font-size: 13px;
    margin-right: 2px;
}

.profile-header .bio {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    display: inline-block;
    white-space: break-spaces;
}
.profile-header .bio p {
    margin-bottom: 0;
}

.profile-header .stats {
    margin-top: 10px;
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}
.profile-header .stats .num {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}
.profile-header .stats .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.profile-header .actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}
.profile-header .actions .btn-follow {
    background: #ff3b5c;
    border: none;
    color: #fff;
    font-size: 13px;
    height:40px;
    line-height:40px;
    text-decoration:none;
    padding: 0 22px;
    border-radius: 20px;
    font-weight: 500;
    transition: background 0.2s;
}
.profile-header .actions .btn-follow:hover {
    background: #e62e4c;
}
.profile-header .actions .btn-msg {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 13px;
    height:40px;
    line-height:40px;
    text-decoration:none;
    padding: 0 20px;
    border-radius: 20px;
    font-weight: 400;
    transition: background 0.2s;
}
.profile-header .actions .btn-msg:hover {
    background: rgba(255, 255, 255, 0.12);
}

 /* ----- 导航标签 (Tabs) ----- */
.nav-tabs-wrapper {
    border-bottom: 1px solid #eee;
    background: #fff;
    padding: 0 16px;
}
.nav-tabs-wrapper .nav-tabs {
    border-bottom: none;
    gap: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.nav-tabs-wrapper .nav-tabs::-webkit-scrollbar {
    display: none;
}
.nav-tabs-wrapper .nav-link {
    border: none;
    color: #666;
    font-size: 14px;
    padding: 14px 12px 12px 12px;
    font-weight: 400;
    border-radius: 0;
    position: relative;
    white-space: nowrap;
    background: transparent;
    transition: color 0.2s;
}
.nav-tabs-wrapper .nav-link:hover {
    color: #222;
}
.nav-tabs-wrapper .nav-link.active {
    color: #222;
    font-weight: 500;
}
.nav-tabs-wrapper .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2.5px;
    background: #ff3b5c;
    border-radius: 2px 2px 0 0;
}
.nav-tabs-wrapper .nav-link .badge-count {
    color: #ff3b5c;
    font-weight: 400;
    font-size: 13px;
}

/* ----- 内容区 (卡片体) ----- */
.neighbor-body {
    padding: 18px 8px 18px;
}

.sort-btn-custom {
    padding: 6px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    font-size: 13px;
    background: white;
    color: #6B7280;
    transition: all 0.2s;
}
.sort-btn-custom:hover {
    border-color: #1677FF;
    color: #1677FF;
}
.sort-btn-custom.active {
    background: #1677FF;
    border-color: #1677FF;
    color: white;
}

.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}
.meta-tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}
.tag-venue {
    background: #EFF6FF;
    color: #1D4ED8;
}
.tag-contract {
    background: #ECFDF5;
    color: #047857;
}
.tag-contract-warning {
    background: #FEF2F2;
    color: #DC2626;
}
.tag-coach {
    background: #FEF3C7;
    color: #D97706;
}
.bill-tip-box {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: #4B5563;
    margin-top: 12px;
    text-align:left;
}
/*** 训考场 ***/
.venue-grid {
    display: grid;
    gap: 20px;
}
.venue-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .venue-grid { grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); }
}
.venue-grid  .venue-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eef2f8;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
.venue-grid  .venue-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.venue-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.venue-content { padding: 16px; }
.venue-footer {
    padding: 10px 16px 16px;
    border-top: 1px dashed #e2e8f0;
    margin: 0 12px;
}
.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}
.venue-name { font-size: 1.15rem; font-weight: 700; line-height: 1.3; color:#1a1a2e; }
.venue-rating {
    background: #fff6e5;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
}
.customer-rating{
	font-size:12px;
}
.customer-rating .star-score {
    position: relative;
    display: block;
    height: 1.2em;
    width: 5.2em;
}
.customer-rating .star-score .star {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 5em;
    height: 1.04em;
    background-repeat: no-repeat;
}
.customer-rating .star-score .star .normal {
    background: url(../../../../../img/star5-bg.png) center left no-repeat;
    z-index: 2;
    background-size: 5em .8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    word-wrap: break-word;
}
.customer-rating .star-score .star .light {
    background: url(../../../../../img/star5-highlight.png) center left no-repeat;
    z-index: 3;
    width: 0;
    background-size: 5em .8em;
}
.location-area {
    color: #5d7b9c;
    font-size: 0.75rem;
    margin: 8px 0 6px;
}
.schools-list {
    margin: 12px 0;
    font-size: 0.85rem;
    line-height: 1.5;
}
.school-link {
    color: #1d6f3f;
    text-decoration: none;
    font-weight: 500;
    margin-right: 6px;
}
.schools-suffix { color: #1d6f3f; font-weight: 500; }
.price-range {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 10px;
}
.price-item {
    background: #f0f4f9;
    border-radius: 24px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 500;
}
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.region-tag {
    background: #eef2ff;
    color: #2c5a7a;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 30px;
    text-decoration: none;
}
.btn-outline-red {
    display: inline-block;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}
.btn-outline-red:hover {
    background: var(--primary);
    color: white;
}
.traffic-section {
  background-color: #f8f9ff;
  border-radius: 12px;
  padding: 15px 6px;
  margin-bottom: 20px;
}

.traffic-mode {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px; /* 进一步减小间距 */
  margin-bottom: 10px;
  font-size: 16px;
}

.traffic-mode:last-child {
  margin-bottom: 0;
}

.traffic-mode .mode-icon {
  font-size: 18px;
}

.traffic-mode .route {
  display: inline;
  word-break: break-word; /* 允许在长单词处换行 */
}

.traffic-mode .mode-label {
  font-weight: 500;
  color: #2c3e50;
}

.traffic-mode .route-info {
  color: #666;
  font-size: 14px;
}

.traffic-mode .distance {
  color: #3498db;
  font-size: 20px;
  font-weight: 700;
}

.traffic-mode .time-separator {
  color: #999;
}

.traffic-mode .time {
  color: #2c3e50;
  font-weight: 600;
}

.traffic-mode .transport-note {
  margin: 0 2px;
  color: #3498db;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  padding: 0;
}
.traffic-mode .time-value {
  font-size: 22px;
  font-weight: 800;
  color: #3498db;
  margin: 0 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/** 教练 **/
.trainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}



.trainer-card {
    background-color: var(--card-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    color: #3E3E3E;
    flex:1;
}

.trainer-card:hover {
    transform: translateY(-5px);
    text-decoration:none;
}

.trainer-avatar {
    width: 80px;
    height:80px;
    object-fit:cover;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--secondary-color);
}

.trainer-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color:#333;
}

.trainer-level {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.coach-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.75rem;
    margin: 8px 0;
    flex-wrap: wrap;
}
.coach-stats span {
    background: #f0f4f9;
    padding: 3px 10px;
    border-radius: 20px;
    color:#1a1a2e ;
}
.coach-venue {
    font-size: 0.75rem;
    color: #5d7b9c;
    background: #f0f4f9;
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    margin: 6px auto;
}

.trainer-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--light-text);
}
.trainer-stats .stat{
	line-height:20px;
}
@media (max-width: 1024px) {
    .trainer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trainer-grid {
        grid-template-columns:repeat(2 ,1fr);
        gap:8px;
    }
    .trainer-card{
    	padding:4px;
    }
 }
/*** 课程卡片 ***/
/* 课程卡片 */
.course-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
    margin-bottom: 18px;
    cursor:pointer;
}
.course-card .img-wrap {
    width: 25%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.course-card .img-wrap .watermark {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 6px;
    pointer-events: none;
}
.course-card .info-wrap {
    flex: 1;
    padding: 10px 14px 10px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.course-card .info-wrap .title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 2px;
}
.course-card .info-wrap .sub-loc {
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}
.course-card .info-wrap .price {
    font-size: 14px;
    color: #ff3b5c;
    font-weight: 500;
    margin-bottom: 2px;
}
.course-card .info-wrap .course-label {
    font-size: 12px;
    color: #888;
}
.course-card .info-wrap .follow-count {
    font-size: 12px;
    color: #ff3b5c;
    margin-top: 2px;
}
/* 正文段落 */
.content-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}
.content-text p {
    margin-bottom: 10px;
}
.content-text .highlight-link {
    color: #2b7af1;
    text-decoration: none;
}
.content-text .highlight-link:hover {
    text-decoration: underline;
}

/* 列表项 (选择好场地) */
.feature-list .list-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}
.feature-list .item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.feature-list .item .arrow {
    color: #ff3b5c;
    font-size: 16px;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-list .item .text strong {
    font-weight: 600;
    color: #222;
}

/* 小屏适配 */
@media (max-width: 576px) {
	.user-container{
		margin-top:0;
	}
	.nav-tabs-wrapper{
		padding:0 6px;
	}
    .profile-header {
        padding: 18px 14px 16px 14px;
    }
    .profile-header .avatar {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }
    .profile-header .avatar svg {
        width: 32px;
        height: 32px;
    }
    .profile-header .nickname {
        font-size: 16px;
    }
    .profile-header .bio {
        font-size: 12px;
    }
    .profile-header .stats {
        font-size: 12px;
        gap: 12px;
    }
    .profile-header .stats .num {
        font-size: 14px;
    }
    .nav-tabs-wrapper .nav-link {
        font-size: 13px;
        padding: 12px 10px 10px 10px;
    }
    .course-card .img-wrap {
        width: 24%;
        min-height: 90px;
    }
    .course-card .info-wrap .title {
        font-size: 14px;
    }
    .course-card .info-wrap .price {
        font-size: 13px;
    }
    .neighbor-body {
        padding: 14px 2px 20px 2px;
    }
    .content-text {
        font-size: 13px;
    }
    .feature-list .item {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .profile-header .stats {
        gap: 8px;
        flex-wrap: wrap;
    }
    .course-card .img-wrap {
        width: 24%;
    }
    .course-card .info-wrap .title {
        font-size: 13px;
    }
}

.sec-jx{
    margin-top:5px;
    padding: 4px 8px;
}
.sec-jx .jx-tit{
    height: 45px;
    line-height: 45px;
    padding-left: 15px;
    font-weight: bold;
    font-size: 16px;
    margin-top:10px;
    display: flex;
    justify-content: space-between;
    overflow:hidden;
    /*border-top:5px solid #f7f7f7;*/
}
.sec-jx .jx-tit i{
    font-size: 30px;
    font-weight: normal;
}
.sec-jx .jx-tit a.more{
	display: flex;
    color: #999;
}
.sec-jx .jx-tit a.more span{
	margin-right:-9px;
	font-size:12px;
}
.sec-jx .jxclass-info{
    
}
.sec-jx .jxclass-info ul.jxclass-tab{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.sec-jx .jxclass-info ul li{
    align-self: center;
    padding:6px 3px;
    text-align: center;
    min-width: 40px;
}
.sec-jx .jxclass-info ul li.active{
    border-bottom:3px solid #e49900;
}
.sec-jx .jxclass-info ul li.active a{
    color:#e49900;
}

.sec-jx .jxclass-info dl.jxclass-list{
    display: flex;
    width: 100%;
    margin-top:10px;
    border-bottom:1px solid #f7f7f7;
    padding-bottom:10px;
}
.sec-jx .jxclass-info dl.jxclass-list:last-child{
    border-bottom:none;
}
.sec-jx .jxbase-info dl.jxclass-list:first-child{
    padding-top:5px;
}
.sec-jx .jxclass-info dl.jxclass-list dt{
    width: 80px;
    overflow: auto;
    margin-right:10px;
    padding-left:10px;
}
.sec-jx .jxclass-info dl.jxclass-list dt img{
    width: 100%;
    object-fit: contain;
}
.sec-jx .jxclass-info dl.jxclass-list dd{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.sec-jx .jxclass-info dl.jxclass-list dd .jxclass-left{
    width: 58%;
}
.sec-jx .jxclass-info dl.jxclass-list dd .jxclass-left span.price{
    color:#e49900;
    font-weight:bold;
    font-size:15px;
}
.sec-jx .jxclass-info dl.jxclass-list dd .jxclass-btn{
    align-self: center;
}
.sec-jx .jxclass-info dl.jxclass-list dd .bc-text{
    font-size:12px;
    margin:5px 0;
    color:#737373;
}
.sec-jx .jxclass-info dl.jxclass-list dd .bc-text-gray{
    font-size:12px;
    margin:5px 0;
    color:#999;
    word-break: break-all;
}

.sec-jx .jxclass-info dl.jxclass-list dd .bc-text-gray span{
	color: #e49900;
	border-right: 1px solid #d8d8d8;
	padding-right: 5px;
	
}
.sec-jx .jxclass-info dl.jxclass-list dd .bc-text-gray span:last-child {
    border-right: none;
}
.sec-jx .jxclass-info dl.jxclass-list dd .bc-text-gray span:first-child {
    color: #999;
}

.sec-jx .jxclass-info dl.jxclass-list dd .jxclass-btn a{
    padding:5px 15px;
    border-radius: 5px;
    color: #e49900;
    background-color:white;
    font-size:12px;
    margin-right:10px;
    border:1px solid #e49900;
}
.sec-jx .jxclass-info dl.jxclass-list dd .jxclass-btn span{
    align-self: center;
    color:#e49900;
    font-size:14px;
}
.sec-jx .jxclass-info .list-img{
	
	border-bottom: 1px solid #e5e5e5;
	min-height:75px;
}
.sec-jx .jxclass-info .list-img:last-child{
	border-bottom: none;
}
.sec-jx .jxclass-info .list-img .info{
	
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sec-jx .jxclass-info .list-img .km{
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size:12px;
}
.sec-jx .jx-intro{
    line-height:25px;
    margin:10px 15px;
    letter-spacing:2px;
}
.sec-jx .jx-intro a{
    color: #4e64ff;
}
.comment-items {
    position: relative;
    padding-left:0;
}

.reds-box.flex {
    display: inline-flex
}

.reds-box.flex.block {
    display: flex
}

.reds-box.fill {
    flex: 1;
    min-width: 0
}

.reds-box.winkblank {
    margin-left: 15PX;
    margin-right: 15PX
}

.reds-box.winkblank-padding {
    padding-left: 5PX;
    padding-right: 5PX
}

.reds-box.x-left {
    justify-content: left
}

.reds-box.x-center {
    justify-content: center
}

.reds-box.x-right {
    justify-content: right
}

.reds-box.x-between {
    justify-content: space-between
}

.reds-box.y-top {
    align-items: flex-start
}

.reds-box.y-middle {
    align-items: center
}

.reds-box.y-bottom {
    align-items: flex-end
}

.comment-header {
    position: relative
}

.reds-avatar {
    border-radius: 1000PX;
    box-shadow: 0 0 0 .5PX #e6e6e6;
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.reds-avatar .onix-image {
    align-items: center;
    border-radius: inherit;
    display: flex;
    justify-content: center
}

.reds-avatar img {
    border-radius: inherit;
    height: 100%!important;
    object-fit: cover;
    width: 100%!important
}

.reds-avatar-flag {
    bottom: 0;
    position: absolute;
    right: 0
}

.comment-box {
    padding-bottom: 1px;
    position: relative;
    z-index: 1
}

.comment-box.light-theme {
    background-color: #fff
}

.comment-box.light-theme .comment-count {
    color: #333
}

.comment-box.light-theme .comment-tip {
    color: #666
}

.comment-box.light-theme .comment-text-box {
    color: #333
}

.comment-box.light-theme .reds-hr.item-hr {
    background-color: #e6e6e6!important;
    color: #e6e6e6!important
}

.comment-box.light-theme .comment-title {
    color: #999
}

.comment-box.light-theme .comment-text-trigger,.comment-box.light-theme .comment-text-trigger:before,.comment-box.light-theme .reply-btn,.comment-box.light-theme .reply-link {
    color: #133667
}

.comment-box.light-theme .comment-main,.comment-box.light-theme .default-text {
    color: #333
}

.comment-box.light-theme .reply-tips {
    color: #133667
}
.icon-send-message {
  width: 30px;
  height: 30px;
  background: url(../../../images/icons/chat-send.png) no-repeat;
  background-size: contain;
  background-color: #999999;
  border-radius:100%;
  }
.chat-enter-active{
	background-color: #ff9902;
}
.line-clamp-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.p-relative {
    position: relative;
}
.fs15 {
    font-size: 15PX;
    line-height: 23PX;
}
.fs14 {
    font-size: 14PX;
    line-height: 18PX;
}
.fs11 {
    font-size: 22PX;
    line-height: 13PX;
    transform: scale(.5);
    transform-origin: 0 50%;
}
.comment-item {
    color: #d5d7dd;
    display: block;
    padding-bottom: 15PX;
    padding-top: 8PX;
    position: relative
}

.comment-avatar {
    box-shadow: none;
    margin-right: 2PX
}

.comment-title {
    color: #6c717a;
    line-height: 17PX;
    margin-bottom: 3PX;
    text-decoration:none;
}

.comment-operate {
    align-items: center;
    display: flex;
    line-height: 17PX;
    margin-left: 8PX;
    position: absolute;
    right: 22PX
}

.comment-header {
    margin-bottom: 2PX
}

.comment-like svg,.comment-reply {
    margin: 0 3PX 0 4PX
}

.likes-count {
    text-align: center
}

.comment-item .expand-wx-open-launch {
    height: 40PX;
    top: -12PX
}

.reply-tips {
    color: #c6d9ef;
    font-size: 14PX;
    margin-left: 36PX
}

.default-text {
    color: #d5d7dd;
    font-size: 14PX
}

.comment-text-wrapper {
    display: flex;
    position: relative
}

.comment-text-box {
    font-size: 14PX;
    line-height: 22PX;
}

.comment-text-trigger {
    clear: both;
    color: #c6d9ef;
    content: "展开";
    float: right;
    line-height: 22PX;
    margin-left: 12PX;
    position: relative
}

.comment-text-trigger:before {
    color: #fff;
    content: "...";
    left: -2px;
    position: absolute;
    transform: translateX(-100%)
}

.comment-text-date {
    display: inline;
    font-size: 12PX;
    line-height: 16PX;
    margin-left: 4PX;
    margin-top: 2PX
}

.reds-icon {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor
}

.comment-item .tag {
    margin-left: 4px;
    padding: 3px 6px;
    font-size: 10px;
    color: #33333399;
    background: #00000008;
    border-radius: 10.5px;
    font-weight: 500;
}

.user-qrcode-card{
	
			display: flex;
            justify-content: center;
            align-items: center;
            min-height: 86vh;
            margin: 0;
}

.user-qrcode-card .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    width: 300px;
    text-align: center;
}
 .user-qrcode-card .location {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }
.user-qrcode-card  .nickname{
	
			font-size: 20px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #333;
}
.user-qrcode-card .scan-tip{
			color: #999;
            font-size: 13px;
            margin: 12px 0;
	
}