.rightAll {
    display: none;
}

.userMain {
    width: 1090px;
    margin-left: 170px;
}

.user-info-header {
    padding: 30px 30px 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
}

.user-info {
    display: flex;
    align-items: center;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff9966;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.username {
    font-size: 20px;
    font-weight: bold;
}

.location {
    color: #999;
    font-size: 14px;
}

.profile-name {
    font-size: 24px;
    font-weight: 500;
    color: #3D3D3D;
}

.profile-btn {
    padding: 8px 15px;
    background-color: #ff9966;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.user-sidebar {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.user-sidebar-item {
    cursor: pointer;
    padding: 15px 20px;
}

.user-sidebar-item.active {
    color: #FF7500;
    border-bottom: 2px solid #FF7500;
}

.userMain-content {
    padding: 30px;
    display: flex;
    position: relative;
}

.userMain-content-1{
    padding: 30px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: baseline;
}


.profile-card {}

.profile-top {
    display: flex;
    align-items: center;
}

.profile-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}

.profile-label {
    width: 120px;
    color: #999;
}

.profile-value {
    flex: 1;
}

.edit-btn {
    color: #ff9966;
    cursor: pointer;
    background: url('/static/web/img/user修改.svg') no-repeat center left;
    font-size: 14px;
    padding-left: 25px;
}

.dele-btn {
    color: #ff9966;
    cursor: pointer;
    background: url('/static/web/img/user删除.svg') no-repeat center left;
    font-size: 14px;
    padding-left: 25px;
}

.experience-item,
.education-item {
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.02);
}

.experience-item-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company,
.school {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.position,
.degree {
    color: #666;
    margin-bottom: 5px;
}

.duration {
    color: #999;
    font-size: 14px;
}

.action-btn {
}

.action-btn span {
    color: #ff9966;
    cursor: pointer;
}

.user-add-btn {
    color: #ff9966;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: url('/static/web/img/user添加.svg') no-repeat center left;
    padding-left: 25px;
}


.social-account {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.account-item {
    background: rgba(0, 0, 0, 0.02);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.account-item-1{
    display: flex;
    align-items: center;
    gap: 20px;
}

.account-item-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.account-name {
    font-weight: bold;
}

.account-link {
    color: #999;
    word-break: break-all;
    font-size: 14px;
}

.qr-code {
    color: #ff9966;
    cursor: pointer;
}

.private-tag {
    display: inline-block;
    padding: 2px 5px;
    background-color: #f0f0f0;
    color: #999;
    font-size: 12px;
    border-radius: 3px;
    margin-left: 5px;
}

.user-info-data {
    background: #fff;
    border-radius: 10px;
    padding-bottom: 50px;
}

.user-content-1 {
    margin-right: 20px;
}

.user-content-1 img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.user-section-1 {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}

.profile-section {
    flex: 1;
}

.profile-social {
    display: flex;
    gap: 40px;
}
.perInfomation{
    background: rgba(255, 117, 0, 0.1);
    color: #FF7500;
    font-size: 12px;
    padding: 3px 15px;
    border-radius: 6px;
    right: 30px;
    top: 30px;
    position: absolute;
}



  /* 弹窗样式 */
 

.modal-user {
    background-color: white;
    border-radius: 8px;
    max-width: 1000px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}




.modal-body {
    padding: 30px;
}

.modal-title {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

/* 行业角色弹窗 - 多选 */
.option-list {
    display: grid;
    flex-direction: column;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.option-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.option-item:hover {
    border-color: #ff9966;
}

.option-item.selected {
    border-color: #ff9966;
    background-color: #fff8f5;
}

.option-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-color: #ff9966;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.option-text {
    flex: 1;
}

.option-desc {
    color: #999;
    font-size: 12px;
}

/* 专业级别弹窗 - 单选 */
.level-option-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.level-option-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.level-option-item:hover {
    border-color: #ff9966;
}

.level-option-item.selected {
    border-color: #ff9966;
    background-color: #fff8f5;
}

.level-option-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.level-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-color: #ff9966;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.level-name {
    font-weight: bold;
    font-size: 14px;
}

.level-desc {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.modal-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: center;  
}

.save-btn {
    background-color: #ff9966;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 auto;
}

.search-btn-style{
    position: absolute;
    background: #ff9966;
    color: #fff;
    right: 5px;
    border-radius: 4px;
    padding: 5px 33px;
}

.search-box-button{
    position: relative;
    flex: 1;
    align-items: center;
    display: flex
}


/* 新增的添加微信弹窗样式 */
.wechat-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}



.wechat-modal-header {
    background-color: #ff9966;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.wechat-close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}





.wechat-form-group {
    margin-bottom: 20px;
}





.wechat-form-hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.wechat-upload-area {
    border: 1px dashed #ddd;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.wechat-upload-icon {
    font-size: 24px;
    color: #ff9966;
    margin-bottom: 10px;
}

.wechat-upload-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.wechat-upload-hint {
    font-size: 12px;
    color: #999;
}

.wechat-example-link {
    color: #ff9966;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.wechat-example-image {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
}




/* 预览图片样式 */
.wechat-preview-container {
    display: none;
    margin-top: 10px;
    position: relative;
}

.wechat-preview-image {
    max-width: 100%;
    max-height: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.wechat-remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    cursor: pointer;
}

#qrPreviewModal{
    display: none;
}

/* 个人中心-收藏夹 */
.collect-main{
    display: flex;
    flex-direction: column;
    gap:30px;
    width: 100%;
}
.collect-item {
    background: rgba(0, 0, 0, 0.02);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.collect-item .collect-name{
    font-size: 18px;
    font-weight: 500;
}

.collect-item .collect-Introduction{
    font-size: 14px;
    font-weight: normal;
    color: #666666;
}

.collect-item .collect-time{
    font-size: 12px;
    color: #999999;
}

.collect-item .collect-default{
    padding: 6px 16px;
    background: rgba(255, 117, 0, 0.1);
    color: #999999;
    font-size: 14px;
    border-radius: 6px;
}

.collect-item-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collect-item-1-1{
    display: flex;
    align-items: center;
    gap: 10px;
}

.collect-item .collect-private{
    padding: 6px 16px;
    color: #999999;
    font-size: 14px;
    background: rgba(153, 153, 153, 0.1);
    border-radius: 6px;
}

.seeMoreContent{
    border-radius: 6px;
    border: 1px solid #FF7500;
    padding: 13px 52px;
    color: #FF7500;
    margin: 0 auto;
    display: block;
}

.styleFavorite{
    background: #FFFFFF;
box-sizing: border-box;
border: 1px solid rgba(255, 117, 0, 0.2);
padding: 10px 15px;
border-radius: 6px;
color: #FF7500;
margin-bottom: 30px;
cursor: pointer;
}

/* 个人中心-互动提醒 */

.interaction-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interaction-filter{
    display: flex;
    align-items: center;
    gap:20px;
}

.interaction-filter a{
    border-radius: 6px;
    padding: 10px 35px;
    color: #FF7500;
    border: 1px solid rgba(255, 117, 0, 0.2);
}

.interaction-filter .active{
    background: #FF7500;
    color: #fff !important;
}

.interaction-top{
    display: flex;
    align-items: center;
    gap: 10px;
}

.interaction-img{
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.interaction-top-data{
    display: flex;
    flex-direction: column;
}

.interaction-top-data p{
    
}


.interaction-top-data div{
    display: flex;
    align-items: center;
    gap: 10px;
}

.interaction-top-data div span:nth-child(1){
    font-size: 14px;
}

.interaction-top-data div span:nth-child(2){
    font-size: 14px;
    font-weight: 300;
    color: #999999
}


.interaction-comment{
    font-size: 18px;
    font-weight: normal;
    color: #3D3D3D;
}

.interaction-item{
    background: rgba(0, 0, 0, 0.02);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interaction-item a{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interaction-item .interaction-name{
    font-size: 18px;
    font-weight: 500;
    color: #3D3D3D;
}

.interaction-item-1{
    display: flex;
    align-items: center;
    gap: 30px;
}


/* 个人中心-浏览历史 */

/* 个人中心-安全中心 */
.safety-item {
    margin-bottom: 30px;
}
.safety-item p{
    font-size: 20px;
    font-weight: 500;
    color: #3D3D3D;
}

.js-switch{
    opacity: 0;
    position: absolute;
    pointer-events: none;
}




/* 个人主页 */
.homePgeMain{
    width: 1090px;
    margin-left: 170px;
}
.homePage-item{
    display: flex;
    justify-content: space-between;
}
.homePage-item-left{
    width: 820px;
    padding: 20px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.homePage-item-right{
    width: 250px;
    display: flex;
    flex-direction: column;
}
.home-tab{
    display: flex;
    gap: 20px;
    font-size: 14px;
}
.home-tab .active{
    background: #FF6C27 !important;
    color: #fff !important;
}
.home-tab .tab-item{
    border-radius: 3px;
    background: #fff;
    color: #FF7500;
    border: 1px solid #FF7500;
    padding: 5px 25px;
    cursor: pointer;
}
.homeMain-content-1{
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 30px 0;
    gap: 30px;
}

.introduction{
    color: #999999;
    font-size: 14px;
}

.header-div{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.homePage-btn{
    padding: 10px 35px;
    background-color: #ff9966;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.person-top-div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.person-top-div{
    font-size: 12px;
    color: #999999;
    text-align: center;
}

.person-top-div span{
    color: #3D3D3D !important;
}

.home-rightAll{
    width: 250px;
    display: grid;
    gap: 20px;
}
.home-right-title{
    font-size: 18px;
font-weight: 500;
}

.home-rightMain{
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    background: #fff;
    gap: 20px;
}

.contact-detail{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.qrcode-img{
        width: 200px;
    height: 200px;
    display: none;
    position: absolute;
    right: 20px;
    bottom: 0px;
}

.contact-detail-1{
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.contact-detail-1 .contact-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-detail-1 .contact-text p:nth-of-type(1){
    font-size: 14px;
}

.contact-detail-1 .contact-text p:nth-of-type(2){
    font-size: 12px;
    color: #999999;
}

.contact-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-rightMain .education-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-rightMain .education-info p:nth-of-type(1){
    font-size: 14px;
    color: #333333;
}

.home-rightMain .education-info p{
    color: #999999;
    font-size: 12px;
}

.home-rightMain .interaction-info p{
    font-size: 14px;
}

.home-rightMain .interaction-info p span{
    color: #FF7500 
}

.safe-button{
    border: 1px solid #FF7500;
    padding: 10px 35px;
    background-color: #fff;
    color:#FF6C27;
    cursor: pointer;
   border-radius: 6px;
   margin-bottom: 30px;
}

.btn-send-code {
    color: #FF7500;
    font-size: 16px;
    position: absolute;
    right: 10px;
}

.input-box{
    position: relative;
    position: relative;
    display: flex;
    align-items: center;
}

/* 微信文章仓库 */
.article_list_header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.article_list_wx-tabs {
    display: flex;
    margin-right: 15px;
}

.wx-tab {
    padding: 10px 35px;
    background-color: #fff;
    color:#FF6C27;
    margin-right: 10px;
    cursor: pointer;
    border: 1px solid rgba(255, 117, 0, 0.2);
    border-radius: 6px;
}

.wx-tab.active {
    background-color: #FF6C27;
    position: relative;
    color: #fff
}

.article_list_url-section {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 15px;
}

.url-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 500px;
    margin-right: 10px;
}

.import-btn {
    background-color: #FF6C27;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.info-bar {
    color: #CBCBCB;
    font-size: 12px;
    margin-bottom: 15px;
}

.search-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.wx-search-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 300px;
}

.wx-search-btn{
    background-color: #FF6C27;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.clear-btn {
    background-color: #fff;
    color: #FF6C27;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #FF7500;
}

.action-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.action-btn {
    color: white;
    border: none;
    cursor: pointer;
}

.article-wx-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.article-wx-table th, .article-wx-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.article-wx-table th {
    background-color: #fafafa;
    font-weight: bold;
}

.article-wx-table tr:hover {
    background-color: #f9f9f9;
}

.status-unprocessed {
    color: #FF6C27;
}

.status-processed {
    color: #666;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 5px;
}

.pagination-btn.active {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.pagination-dropdown {
    margin: 0 10px;
    padding: 8px;
}