/* 引用阿里图标库 */
.icon {
    width: 1em !important;
    height: 1em !important; 
    line-height: 1;
    vertical-align: -0.15em;
    fill: #4B5667;
    overflow: hidden;
    font-size: 24px;
 }
 svg.icon{background: none !important;display: inline-block !important;}
/* 引用阿里图标库 end*/
.f18{font-size: 18px;}

/* 重置标签样式 */
*{padding: 0;margin: 0;font-family: Inter, -apple-system, BlinkMacSystemFont, PingFang SC, Hiragino Sans GB, noto sans, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;}
body{
    color: #0D1C28;
    line-height: 1.5;
    font-size: 14px;
    box-sizing: border-box;
    overflow-x: auto !important;
}
img{border: 0;}
ul,li,ol,li{list-style: none;}
a{text-decoration: none;color: inherit;cursor: pointer;}
h1,h2,h3,h4,h5,h6{font-weight: normal;}
input::-ms-clear{display: none;}
/* input_text类名覆盖老样式border:0 */
input,input.input_text{
    border: 1px solid #E5E6EB;
    background: #fff;
    color: #0D1C28;
    outline: none;
    box-sizing: border-box;
    filter: none !important;
    /* cursor: pointer; */
    border-radius: 2px;
    font-size: 14px;
    width: 100%;
    transition: all .3s;
}
input.input_text{padding: 8px;height: 36px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap}
 /* 修改placeholder颜色 */
input::input-placeholder,
textarea::input-placeholder{color:  #C9CDD4}
input::-webkit-input-placeholder{ /* WebKit browsers */ color: #C9CDD4 }
input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */ color: #C9CDD4}
input::-moz-placeholder{ /* Mozilla Firefox 19  */ color: #C9CDD4 }
input:-ms-input-placeholder { color: #C9CDD4 }
/* 获取焦点 placeholder消失-开始 */
input:focus::-webkit-input-placeholder{color: transparent;}
input:focus:-moz-placeholder{color: transparent;}
input:focus::-moz-placeholder{color: transparent;}
input:focus:-ms-input-placeholder{color: transparent;}
/* 鼠标移入 */
input:hover,input.input_text:hover{border-color: #4799EE;}
/* 聚焦 */
input:focus,input.input_text:focus{border-color: #2386EE;}

/* 旧页面头部使用头部宽度1200 */
.old_header_1200{
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px !important;
    padding: 0 20px;
    box-sizing: border-box;
}

.primary_color{color: #2386EE !important;}
.very_light_color{color: #86909C !important;}



/* 气泡提示 */
.tooltip_item{position: relative;cursor: pointer;display: inline-block;}
.tooltip_icon{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F2F3F5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
}
.tooltip_item .trigger_popup{
    position: absolute;
    top: 100%;
    padding-top: 8px;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    transition: all 0.15s;
}
.tooltip_item .tooltip_content{
    background: #4B5667;
    padding: 8px 16px;
    border-radius: 2px;
    white-space: nowrap;
    color: #FFFFFF;
}
.tooltip_item .trigger_arrow{
    width: 0;
    height: 0;
    border-bottom: 5px solid #4B5667;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position:absolute;
    top: 3px;
    left: calc(50% - 5px );
}
/* 气泡在上居中 */
.tooltip_item.top_center .trigger_popup {
    bottom: 100%;
    padding-bottom: 8px;
    top: auto;
    padding-top: unset;
}
.tooltip_item.top_center .trigger_arrow{bottom: 3px;transform: rotate(180deg);top: auto;}
/* 气泡右居中 */
.tooltip_item.center_right .trigger_popup {
    top: 50%;
    left: 100%;
    transform: translateY(-50%) scale(0);
    padding-left: 11px;
    padding-top: unset;
}
.tooltip_item.center_right .trigger_arrow{
    left: 4px;
    top: calc(50% - 4px);
    transform: rotate(-90deg);
}
/* 气泡左居中 */
.tooltip_item.center_left .trigger_popup {
    top: 50%;
    right: 100%;
    transform: translateY(-50%) scale(0);
    padding-right: 11px;
    padding-top: unset;
}
.tooltip_item.center_left .trigger_arrow{
    right: 4px;
    left: auto;
    top: calc(50% - 4px);
    transform: rotate(90deg);
}
/* 小的气泡提示 */
.tooltip_item.mini_tooltip .tooltip_content{padding: 4px 16px;}
.tooltip_item:hover .trigger_popup{opacity: 1;transform:scale(1);}
.tooltip_item.center_left:hover .trigger_popup,
.tooltip_item.center_right:hover .trigger_popup{transform:translateY(-50%) scale(1);}
.tooltip_item:hover .tooltip_icon{background-color:#E5E6EB;}
/* 气泡提示---------------------------------------------------------------------------------end */
.w1400{
    min-width: 1200px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    width: auto;
    box-sizing: border-box;
}
/* 头部 */
/* 间距 */
.header_space_left{margin-left: 24px;}
.header_space_left .iconfont{font-size: 24px;}
/* .header_space_v9{height: 72px;} */
/* 头部固定 */
.header_v9.header_fixed_v9{
    position: sticky;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}
/* 固定二级菜单 */
.secondary_nav_v9.secondary_nav_fixd_v9{
    position: sticky;
    left: 0;
    right: 0;
    top: 72px;
    width: 100%;
    z-index: 8;
}
.header_v9{
    box-shadow: 0px 2px 5px rgba(75, 86, 103, 0.1);
    background-color: #fff;
    min-width: 1200px;
    position: relative;
}
.header_v9 .w1400,
.header_v9 .old_header_1200{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.header_v9 .header_left{flex: 1;}
.header_v9 .header_right,
.header_v9 .header_left{display: flex;align-items: center;position: relative;}
/* logo */
.header_v9 .logo_v9{
    flex-shrink: 0;
    margin-right: 16px;
    height: 72px;
    line-height: 72px;
}
.header_v9 .logo_v9:hover ~ .individual_institution_switch {display: block;}
.header_v9 .logo_v9:hover .iconfont{color: #0D1C28;}
.header_v9 .logo_v9 img{width: 34px;height: 34px;border: 1px solid #FFF;border-radius: 50%;vertical-align: middle;}
.header_v9 .logo_v9 .iconfont{
    font-size: 12px;
    color: #86909C;
    margin-left: 8px;
}
.individual_institution_switch {
    position: absolute;
    top: 64px;
    left: -16px;
    background: #fff;
    padding: 8px 0;
    border-radius: 4px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0px 8px 24px 0px rgba(13, 28, 40, 0.20);
    display: none;
}
.individual_institution_switch:hover{
    display: block;
}
.individual_institution_switch .switchList{
    max-height: 456px;
    overflow-y: auto;
}
.individual_institution_switch .switchList li{
    padding: 8px 0;
    border-bottom: 1px solid #E5E6EB;
}
.individual_institution_switch .switchList li:last-of-type{
    border-bottom: 0;
}
.individual_institution_switch .switchList li .item{
    display: flex;
    align-items: center;
    padding: 12px 24px 12px 16px;
    cursor: pointer;
    background: #fff;
}
.individual_institution_switch .switchList li .item:hover{
    background: #F0F2F5;
}
.individual_institution_switch .switchList li .item img{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #FFF;
    background: #FFF;
    margin-right: 8px;
    flex-shrink: 0;
}
.individual_institution_switch .switchList li .item .info {
    flex: 1;
    overflow: hidden;
    line-height: 1;
}
.individual_institution_switch .switchList li .item .info .isTitle {
    display: flex;
    margin-bottom: 4px;
}
.individual_institution_switch .switchList li .item .info .isTitle .name{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    line-height: 20px;
    font-weight: 700;
}
.individual_institution_switch .switchList li .item .info .isTitle .tipButtom{
    border-radius: 4px;
    background: rgba(250, 140, 22, 0.10);
    padding: 0 8px;
    font-size: 12px;
    white-space: nowrap;
    line-height: 20px;
    color: #FA8C16;
    height: 20px;
    box-sizing: border-box;
    margin-left: 8px;
}
.individual_institution_switch .switchList li .item .info .isTitle .joinButtom{
    border-radius: 4px;
    border: 1px solid #C9CDD4;
    background:#FFF;
    padding: 0 8px;
    font-size: 12px;
    white-space: nowrap;
    line-height: 20px;
    color: #86909C;
    height: 20px;
    box-sizing: border-box;
    margin-left: 8px;
}
.individual_institution_switch .switchList li .item .info .isTitle .joinButtom:hover{
    color: #2386EE;
    border: 1px solid #2386EE;
}
.individual_institution_switch .switchList li .item .info .explain{
    font-size: 12px;
    color: #86909C;
}
.individual_institution_switch .switchList li .item .icon-check-crude{
    font-size: 20px;
    color: #2386EE;
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: block;
    margin-left: 8px;
    flex-shrink: 0;
}
.individual_institution_switch .createButton{
    width: calc(100% - 32px);
    height: 36px;
    padding: 0 16px;
    border: 1px solid #C9CDD4;
    border-radius: 80px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 16px;
    box-sizing: border-box;
    color: #4B5667;
    cursor: pointer;
}
.individual_institution_switch .createButton .iconfont{
    margin-right: 8px;
    color: #4B5667;
}
.individual_institution_switch .createButton:hover{
    border: 1px solid #2386EE;
    color: #2386EE;
}
.individual_institution_switch .createButton:hover .iconfont{
    color: #2386EE;
}
/* 头部搜索 */
.header_search_v9{flex: 1 1 auto;position: relative;max-width: 300px;}
.header_search_v9 .header_search_input{position: relative;}
.header_search_v9 .header_search_input .icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    fill: #86909C;
    font-size: 20px;
    cursor: pointer;
}
.header_search_v9 .header_search_input input{
    height: 36px;
    border-radius: 18px;
    background: #F0F2F5;
    padding-left: 40px;
    border-color: transparent;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 8px;
    width: 100%;
    cursor: pointer;
}
.header_search_v9 .header_search_input input:hover{
    border-color: #C9CDD4;
}
.header_search_con{
    width: 0;
    position: absolute;
    left: 0;
    top:-21px;
    opacity: 0;
    overflow: hidden;
    z-index: 99;
    visibility: hidden;
    transition: width .2s ease-in-out;
    box-shadow: 0px 4px 12px rgba(75, 86, 103, 0.15);
}
.header_search_v9 .header_search_content{
    border-radius: 4px;
    background-color: #fff;
    width: 560px;
    box-sizing: border-box;
    padding: 32px;
}
.header_search_v9 .header_search_content_tab{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E5E6EB;
    /* width: 496px; */
}
.header_search_v9 .header_search_content_tab ul{display: flex;}
.header_search_v9 .header_search_content_tab ul li{
    padding-bottom: 14px;
    margin-right: 40px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-size: 16px;
}
.header_search_v9 .header_search_content_tab ul li:hover{color: #2386EE;}
.header_search_v9 .header_search_content_tab ul li.active{
    border-color:#2386EE;
    color: #2386EE;
}
.header_search_v9 .header_search_content .search_input{
    position: relative;
    margin-top: 24px;
    /* width: 496px; */
}
.header_search_v9 .header_search_content .search_input input{
    height: 40px;
    padding-right: 38px;
    padding-left: 8px;
}
.header_search_v9 .header_search_content .header_search_close{
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}
.header_search_v9 .header_search_content .header_search_close:hover{background-color: #F2F3F5;}
.header_search_v9 .header_search_content .header_search_close:hover .icon{fill: #4B5667;}
.header_search_v9 .header_search_content .search_input .search_input_icon{
    width: 36px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    height: 40px;
    text-align: center;
    line-height: 40px;
}
.header_search_v9 .header_search_content .search_input .search_input_icon:hover .icon{fill: #2386EE;}
.header_search_v9 .nav_search_result_title{margin-top: 24px;color: #86909C;font-size: 14px;}
.header_search_v9 .nav_search_tag_blocks{
    display: flex;
    flex-wrap: wrap;
    /* width: 496px; */
}
.header_search_v9 .nav_search_tag_blocks li{
    margin: 12px 12px 0 0;
    height: 28px;
    line-height: 26px;
    color: #4B5667;
    padding: 0 8px;
    background: #F2F3F5;
    border-radius: 2px;
    border: 1px solid #F2F3F5;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 153px;
} 
.header_search_v9 .nav_search_tag_blocks li:hover{
    background-color: #fff;
    color: #2386EE;
    border-color: #2386EE;
} 
.header_search_v9.active .header_search_con{
    opacity: 1;
    width: 560px;
    visibility: visible;
}
.header_search_v9.active .header_search_content{
    
    /* width: 560px; */
    
    /* visibility: visible; */
}
/* 导航菜单 */
.header_v9 .header_left .nav_list{
    display: flex;
    font-size: 16px;
    margin-left: 64px;
    flex: 1 1 auto;
    height: 72px;
    line-height: 72px;
}
.header_v9 .header_left .nav_list .menu_item{position: relative;margin-right: 48px;}
.header_v9 .header_left .nav_list .menu_item>a{
    padding-bottom: 22px;
    color: #4B5667;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    height: 72px;
    box-sizing: border-box;
    border-bottom: 4px solid transparent;
    font-size: 16px;
}
.header_v9 .header_left .nav_list .menu_item>a::before{
    content: "";
    width: 100%;
    position: absolute;
    bottom: -4px;
    height: 4px;
    display: inline-block;
    background-color: #2386EE;
    opacity: 0;
    transition: all 0.3s;
}
.header_v9 .header_left .nav_list .menu_item:hover>a::before{opacity: 1;}
.header_v9 .header_left .nav_list .menu_item:hover>a{color: #0D1C28}
.header_v9 .header_left .nav_list .menu_item.active>a{color: #0D1C28;font-weight: 700;}
.header_v9 .header_left .nav_list .menu_item.active>a{border-color: #2386EE;}
/* 头部工作提醒徽标数定位 */
.header_v9 .header_right .badge_number {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 19px;
    background: rgba(255, 77, 77, 0.9);
    z-index: 2;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    position: absolute;
    top: -3px;
    left: 22px;
}
.header_v9 .header_right .avatar{position: relative;}
/* 头像下来悬浮层 */
.header_v9 .triangle_top{
    border-bottom: 8px solid #fff;
    border-top: 8px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    top: 4px;
    left: 42px;
    z-index: 9;
}
.header_v9 .header_right .avatar .avatar_info_wrap {
    position: absolute;
    left: -32px;
    top: calc(100% + -2px);
    padding-top: 20px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all .15s ease-in-out;
}

.header_v9 .header_right .avatar .avatar_info {
    box-shadow: 0px 2px 16px rgba(75, 86, 103, 0.2);
    background: #FFFFFF;
    width: 240px;
    border-radius: 4px;
}
.header_v9 .header_right .avatar .avatar_info .avatar_date {
    padding:12px;
    box-sizing: border-box;
    display: block;
}
.header_v9 .header_right .avatar .avatar_info .avatar_date .user_dropdown_info{
    display: flex;
    align-items: center;
    gap: 8px;
}
.header_v9 .header_right .avatar .avatar_info .avatar_date .user_dropdown_info .name_and_id .name{
    font-size: 16px;
    color: #0D1C28;
    font-weight: bold;
    display: block;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header_v9 .header_right .avatar .avatar_info .avatar_date .user_dropdown_info .name_and_id .name:hover{color: #0082EE;}
.header_v9 .header_right .avatar .avatar_info .avatar_date .user_dropdown_info .name_and_id .user_id{
    color: #4B5667;
    font-size: 12px;
    margin-top: 2px;
}
/*2025-03-06 会员标识新样式*/
.vip_symbol_style{
    margin-top: 12px;
    padding: 10px 10px 10px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(90deg, #E5F1FF 0%, #B9D7FF 100%);
}
.vip_symbol_style .left_part{
    flex: 1;
    color: #0082EE;
    font-weight: bold;
}
.vip_symbol_style .vip_style_desc{
    font-size: 12px;
    font-weight: normal;
}
.vip_symbol_style a{
    display: block;
    border-radius: 24px;
    height: 24px;
    line-height: 24px;
    color: #fff;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(90deg, #0082EE 0%, #4C3BE1 100%);
}
.vip_symbol_style a:hover{opacity: 0.8;color: #fff;}
/*已开通*/
.vip_symbol_style.opened a{background: #fff;color: #0082EE;border: 1px solid #0082EE;}
.vip_symbol_style.opened a:hover{background: #0082EE;color:#fff;opacity: 1;}
/*已过期*/
.vip_symbol_style.expire{background: linear-gradient(90deg, #E4E5E9 0%, #FEFEFE 62.62%, #E8E9EE 100%);}
.vip_symbol_style.expire .left_part{color: #0D1C28;}
.vip_symbol_style.expire .vip_style_desc{color: #4B5667;}
/*2025-03-06 新会员样式 end*/

/*2025-03-06 新增头部科创gpt按钮样式*/
.stigpt_btn_primary{
    display: inline-flex;
    height: 36px;
    width: auto;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 36px;
    color: #fff;
    font-weight: 600;
    background:linear-gradient(90deg, #0082EE 0%, #4C3BE1 100%);
}
.stigpt_btn_primary img{width: 20px;height: 20px;}
.stigpt_btn_primary:hover{color: #fff;opacity: 0.8;}
/*2025-03-06 新增头部科创gpt按钮样式 end*/

/*2025-03-06 群组管理按钮组样式*/
.manage-group-btn{
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
}
/*AI写作按钮*/
.manage-group-btn .stigpt-btn-line{
    display: flex;
    height: 32px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #0082EE;
    box-sizing: border-box;
    background: #FFF;
}
.manage-group-btn .stigpt-btn-line .gpt-icon-box{
    width: 18px;
    height: 18px;
    background-image: url("../images-v9/STIGPT-logo-colorful.svg");
    background-repeat: no-repeat;
    background-size: 100%;
}
.manage-group-btn .stigpt-btn-line .words{
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(90deg, #0082EE 0%, #4C3BE1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.manage-group-btn .stigpt-btn-line:hover{background: linear-gradient(90deg, #0082EE 0%, #4C3BE1 100%);border: 0;}
.manage-group-btn .stigpt-btn-line:hover .gpt-icon-box{background-image: url("../images-v9/STIGPT-logo.svg");}
.manage-group-btn .stigpt-btn-line:hover .words{-webkit-text-fill-color: #fff;color: #fff;}
/*设置图标*/
.manage-group-btn .settings-icon-btn{
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #C9CDD4;
    box-sizing: border-box;
    background: #FFF;
}
.manage-group-btn .settings-icon-btn i{font-size: 18px;color: #4B5667;cursor: pointer;}
.manage-group-btn .settings-icon-btn:hover{border: 1px solid #0068DD;}
.manage-group-btn .settings-icon-btn:hover i{color: #0082EE;}
/*2025-03-06 群组管理按钮组样式 end*/

.header_v9 .whether_vip_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
    font-size: 13px;
    margin-top: 2px;
    /* height: 24px; */
}
.header_v9 .whether_vip_wrap .btn_outline_v9{
    padding:0 16px;
    border: 1px solid #2386EE;
    box-shadow: 0px 2px 2px rgba(75, 86, 103, 0.1);
    height: 24px;
    border-radius: 12px;
    color: #2386EE;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_v9 .whether_vip_wrap .btn_outline_v9:hover{
    background-color: #4799EE;
    border-color: #4799EE;
    color: #fff;
}
.header_v9 .whether_vip_wrap .btn_outline_v9:active{
    color: #fff;
    border-color: #0068DD;
    background-color: #0068DD;
}
/* .header_v9 .whether_vip_wrap .btn_v9{margin-left: 6px;line-height: 1;} */
.header_v9 .whether_vip_wrap .primary_color{margin-right: 6px;}
.header_v9 .header_right .whether_vip_wrap .btn_primary_v9{
    padding:0 16px;
    height: 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: normal;
}
.header_v9 .header_right .avatar .avatar_info ul {
    padding: 8px 0;
    box-sizing: border-box;
    border-top: 1px solid #E5E6EB;
    border-bottom: 1px solid #E5E6EB;
}
.header_v9 .header_right .avatar .avatar_info ul li a {
    padding: 0 24px;
    font-size: 15px;
    box-sizing: border-box;
    display: flex;
    color: #0D1C28;
    height: 48px;
    align-items: center;
}
.header_v9 .header_right .avatar .avatar_info svg.icon,.header_v9 .header_right .avatar .avatar_info .iconfont {
    font-size: 18px;
    margin-right: 8px;
    display: inline-block;
}
.header_v9 .header_right .avatar .avatar_info .login_out a {
    padding: 0 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 56px;
    box-sizing: border-box;
    color: #86909C;
    font-size: 15px;
}
.header_v9 .header_right .avatar .avatar_info .login_out a .icon{fill: #86909C;}
.header_v9 .header_right .avatar:hover .avatar_info_wrap{opacity: 1;visibility: visible;}
.header_v9 .header_right .avatar .avatar_info ul li:hover,
.header_v9 .header_right .avatar .avatar_info .login_out:hover { background-color: #f2f3f5;}
/* 进入机构版链接 */
.header_v9 .get_into_scm_link a{color: #01BD88 !important;}
.header_v9 .get_into_scm_link .icon{fill: #01BD88;}
/* 会员服务按钮 */
.header_v9 .header_right .btn_primary_v9{
    height: 36px;
    min-width: 88px;
    padding: 0 24px;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .1s cubic-bezier(0,0,1,1);
    box-shadow: 0px 2px 2px rgb(75,86,103,0.1);
    background-color: #2386EE;
    border-color: #2386EE;
    color: #fff;
    border-radius: 18px;
    font-weight: 700;
    font-size: 16px;
}
.header_v9 .header_right .btn_v9 .icon,.header_v9 .header_right .btn_v9 .iconfont{font-size: 20px;margin-right: 4px;margin-top: 2px;fill: #fff;color: #ffffff;display: inline-block;}
/* 按钮的鼠标经过效果 */
.header_v9 .header_right .btn_v9:hover{/* 主按钮 */
    background-color: #4799EE;
    border-color:#4799EE ;
    color: #fff;
}
.header_v9 .header_right .btn_v9:active{/* 主按钮 */
    background-color: #0068DD;
    border-color: #0068DD;
}
/* 头部 ----------------------------------------------------------------end*/

/* 个人会员头部 */
.header_v9 .individual_member_header .header_left .nav_list .menu_item{margin-right: 64px;}

/* 二级导航 */
.secondary_nav_v9{
    background: #F2F3F5;
    font-size: 16px;
    min-width: 1200px;
}
/* 新页面添加secondary_nav加深二级颜色 */
.secondary_nav_v9.secondary_nav{background-color:#E5E6EB}
.secondary_nav_v9 .secondary_nav_list{
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}
.secondary_nav_v9 .secondary_nav_list a{margin:0 32px;color: #4B5667;line-height: 52px;font-size: 16px;position: relative;}
.secondary_nav_v9 .secondary_nav_list a:last-child{margin-right: 0;}
.secondary_nav_v9 .secondary_nav_list a:hover{color: #2386EE;}
.secondary_nav_v9 .secondary_nav_list a.active{color: #2386EE;font-weight: 700;}
.secondary_nav_v9 .secondary_nav_list a .badge_number {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 19px;
    background: rgba(255, 77, 77, 0.9);
    z-index: 2;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    position: absolute;
    top: 8px;
    right: -16px;
}

/* 未登录 */
.not_login_avatar{ display: flex; align-items: center;}
.not_login_avatar span{margin-left: 8px;font-weight: 700;font-size: 16px;color: #4B5667;}
.not_login_avatar:hover span{color: #2386EE;}


/* sie头部 */
.sie_header_v9{display: flex;align-items: center;padding: 0 32px;}
.company_wrap{position: relative;}
.company_wrap .company_name{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.company_wrap .company_name .company_img{
    width: 36px;
    height: 36px;
    border: 1px solid #E5E6EB;
    border-radius: 50%;
    overflow: hidden;
}
.company_wrap .company_name .company_img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.company_wrap .company_name .icon{font-size: 12px;fill: #86909C;}
.company_wrap .company_name span{
    max-width: 270px;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    margin: 0 8px;
    -moz-user-select:none; /* Firefox私有属性 */
    -webkit-user-select:none; /* WebKit内核私有属性 */
    -ms-user-select:none; /* IE私有属性(IE10及以后) */
    -khtml-user-select:none; /* Khtml内核私有属性 */
    -o-user-select:none; /* Opera私有属性 */
    user-select:none; /* CSS3属性 */
}
.company_wrap .company_name:hover span{color: #2386EE;}

.company_wrap .company_down{
    position: absolute;
    top: 55px;
    box-shadow: 0px 2px 16px rgb(75 86 103 / 20%);
    background: #FFFFFF;
    z-index: 4;
    border-radius: 4px;
    width: 100%;
    padding: 8px 0;
    max-height: 254px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition:all .2s ease-in-out
}
.company_wrap .company_down li{padding: 0px 16px;font-size: 15px;cursor: pointer;line-height: 48px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.company_wrap .company_down li:hover{background-color: #f2f3f5;}
.company_wrap .company_down li.active{background-color: #F0F5FF;color: #2386EE;}
.company_wrap .company_down.active{visibility: visible;opacity: 1;}


/* 二级菜单 */
.header_v9 .submenu_content{
    width: 136px;
    position: absolute;
    top: 68px;
    padding-top: 4px;
    display: none;
    left: -28px;
    z-index: 1;
}
.header_v9 .submenu_content ul{
    padding: 8px 0;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0px 2px 16px rgba(75, 86, 103, 0.2);
}
.header_v9 .submenu_content ul li{line-height: 1.5;}
.header_v9 .submenu_content ul li:nth-child(2n){margin-right: 0;}
.header_v9 .submenu_content ul li a{
    width: 100%;
    padding: 12px 28px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 16px;
    color: #4B5667;
}
.header_v9 .submenu_content ul li a:hover{background: #f2f3f5;}
.header_v9 .header_left .nav_list .menu_item:hover>a::before{opacity: 1;}
.header_v9 .header_left .nav_list .menu_item:hover>a{color: #0D1C28}
.header_v9 .header_left .nav_list .menu_item.active>a{color: #0D1C28;font-weight: 700;}
.header_v9 .header_left .nav_list .menu_item.active>a{border-bottom: 4px solid #2386EE;}
.header_v9 .header_left ul .menu_item:hover .submenu_content{display: block;}

/* 头部媒体查询 */
@media screen and (max-width:1250px){
    .sie_header_v9 .header_search_v9{flex: 0 0 36px;max-width: 36px;}
    .sie_header_v9 .header_search_v9 .header_search_input input{padding-left: 34px;padding-right: 0;}
    .sie_header_v9 .header_search_v9 .header_search_input .icon{left: 8px;}
}
@media screen and (max-width:1400px){.sie_header_v9 .header_space_left{margin-left: 16px;}}
@media screen and (max-width:1440px){.sie_header_v9 .company_wrap .company_name span{font-size: 16px;}}
@media screen and (max-width:1500px){.sie_header_v9 .header_left .nav_list .menu_item{margin-right: 28px;}}
@media screen and (max-width:1550px){.sie_header_v9 .logo_v9{margin-right: 20px;}.sie_header_v9 .header_left .nav_list{margin-left: 32px;}}



/* 英文版头部 */
.en_style .header_v9 .individual_member_header .header_left .nav_list .menu_item{
    margin-right: 48px;
}
.en_style .header_v9 .header_left .nav_list{margin-left: 48px;}
.en_style .header_v9 .header_right .whether_vip_wrap .btn_primary_v9{margin-top: 4px;}




/* 头像大小通用样式 */
.avatar_common{
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    border: 1px solid #f2f3f5;
    box-shadow: 0px 2px 5px rgb(75,86,103,0.1);
    border-radius: 50%;
    box-sizing: border-box;
    display: block;
}
.avatar_common img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
/*机器人*/
.avatar_common.robot{
    background: #e8f3ff;
}

/* vip图标通用样式 */
.vip_1:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: url(../images-v9/icon/vip_1.svg) no-repeat;
    background-size: cover;
}

.vip_2:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: url(../images-v9/icon/vip_2.svg) no-repeat;
    background-size: cover;
}

/*不同大小容器区别控制*/
.avatar_32 {width: 32px;height: 32px;}
.avatar_36 {width: 36px;height: 36px;}
.avatar_40 {width: 40px;height: 40px;}
.avatar_48 {width: 48px;height: 48px;}
.avatar_56 {width: 56px;height: 56px;}
.avatar_64 {width: 64px;height: 64px;}
.avatar_80 {width: 80px;height: 80px;}
.avatar_96 {width: 96px;height: 96px;}
.avatar_120 {width: 120px;height: 120px;}
.avatar_136 {width: 136px;height: 136px;}

/*VIP图标不同大小控制*/
.avatar_32:before {width: 12px;height: 12px;}
.avatar_36:before {width: 12px;height: 12px;}
.avatar_40:before {width: 13px;height: 13px;}
.avatar_48:before {width: 15px;height: 15px;}
.avatar_56:before {width: 16px;height: 16px;}
.avatar_64:before {width: 18px;height: 18px;right:2px;bottom:1px;}
.avatar_80:before {width: 20px;height: 20px;right:4px;bottom:2px;}
.avatar_96:before {width: 21px;height: 21px;right:7px;bottom:3px;}
.avatar_120:before {width: 22px;height: 22px;right:8px;bottom:6px;}
.avatar_136:before {width: 24px;height: 24px;right:10px;bottom:6px;}
/* 头像大小通用样式 ---------------------------------------------------------------end*/
