/*
* 产品：罗文静
* 设计：陈梦奇
* 后端：孙建旺
* 前端：段宇龙
* 时间：2025.04.14
*/
@charset "UTF-8";
@font-face{font-family:'D-DIN';src:url(../../common/font/D-DIN.ttf);}

/* 公共- 属性 */
.d_mt20{margin-top:20px;}
.d_ml10{margin-left: 10px;}
.d_mt10{margin-top: 10px;}
.d_mt5{margin-top: 5px;}
.d_mt15{margin-top: 15px;}
.d_pd20{padding:20px;}
.d_pd30{padding:30px;}
.d_hidden_text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.d_hidden_line2{display:-webkit-box !important;line-clamp:2 !important;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.d_colorBlue{color:#3A8BFF;}

/* 公共-页面 */
.d_medicinal_page{width:1200px;margin:auto;margin-bottom: 20px}
.d_medicinal_page *{word-break:break-all;}
.d_medicinal_page *::-webkit-scrollbar{width:8px;height:8px;}
.d_medicinal_page *::-webkit-scrollbar-track{background:transparent;}
.d_medicinal_page *::-webkit-scrollbar-thumb{background:#DADFE5;border-radius:99px;cursor:pointer;}

/* 公共-卡片 */
.d_medicinal_card{background:#FFFFFF;border-radius:8px;}

/* 公共-按钮 */
.d_medicinal_btn{flex-shrink: 0; position: relative; display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;height:36px;padding:0 29px;border-radius:6px;border:1px solid #8CBBFF;font-weight:400;font-size:14px;color:#3A8BFF;background-color:#fff;}
.d_medicinal_btn:hover{background:#EAF0FF;}
.d_medicinal_btn:active{background:#E4ECFF;}
.d_medicinal_btn.disabled::before{opacity: .4;}
.d_medicinal_btn.disabled:hover,
.d_medicinal_btn.disabled:active,
.d_medicinal_btn.disabled{cursor:no-drop;background-color: #ffffff;border-color: #8CBBFF66;color:#3A8BFF66;border-color: #8CBBFF66;}

.d_medicinal_btn.primey.disabled::before{opacity: 1;}
.d_medicinal_btn.primey.disabled:hover,
.d_medicinal_btn.primey.disabled:active,
.d_medicinal_btn.primey.disabled{cursor:no-drop;background-color: #3A8BFF66;border:unset;color:#ffffff;}
.d_medicinal_btn.primey{background-color:#3A8BFF;border: unset; color:#fff;}
.d_medicinal_btn.primey:hover{background-color:#599EFF;border-color:#599EFF;color:#fff;}
.d_medicinal_btn.primey:active{background-color:#2F70CC;border-color:#2F70CC;color:#fff;}
.d_medicinal_btn.permission:hover::after{display:flex;}
.d_medicinal_btn.permission::after{content:'暂无权限';display:none;position:absolute;top:-44px;z-index:999;align-items:center;justify-content:center;box-sizing:border-box;width:90px;height:40px;padding:0 16px;border-radius:10px;font-weight:400;font-size:14px;color:#474C59;box-shadow:0px 2px 12px 0px #00255933;background-color:#fff;}

.d_medicinal_btn.share::before{content:'';width:14px;height:14px;margin-right:4px;background:url(../images/icon-20250414-share.png) no-repeat center / 14px 14px;}
.d_medicinal_btn.download::before{content:'';width:14px;height:14px;margin-right:4px;background:url(../images/icon-20250414-dowload2.png) no-repeat center / 14px 14px;}
.d_medicinal_btn.collect::before{content:'';width:14px;height:14px;margin-right:4px;background:url(../images/icon-20250414-save2.png) no-repeat center / 14px 14px;}
.d_medicinal_btn.quote::before{content:'';width:14px;height:14px;margin-right:4px;background:url(../images/icon-20250414-link.png) no-repeat center / 14px 14px;}

/* 公共-tab */
.d_medicinal_tabs{display:flex;align-items:center;justify-content: space-between; width:100%;border-radius: 8px 8px 0 0; border-bottom:1px solid #F2F2F2;background-color:#fff;}
.d_medicinal_tab{position:relative;text-align: center; box-sizing: border-box; width: 100px; padding:15px;font-weight:400;font-size:15px;color:#474C59;cursor:pointer;}
.d_medicinal_tab.active{font-weight:600;color:#131B26;}
.d_medicinal_tab.active::before{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:28px;height:4px;border-radius:999px;background:#3A8BFF;}
.d_medicinal_tabs.big .d_medicinal_tab{width:200px;font-size:18px;padding:17.5px;}
.d_medicinal_tab.big.active::before{width:32px;}

/* 公共-toast */
.c_message_wrapper{width:fit-content;display:flex;padding:14px 20px;align-items:center;border-radius:8px;background:#4F5B62;box-shadow:0px 4px 10px 0px rgba(0,0,0,0.10);position:fixed;left:50%;top:180px;transform:translate(-50%,0);z-index:99999;}
.c_message_wrapper.c_warning_type .c_message_content{color:#fff;}
.c_message_wrapper.c_warning_type{background:#4F5762FA;}
.c_message_wrapper .c_base_icon{display:flex;align-items: center;justify-content: center; margin-right:10px;width:24px;height:24px;border-radius:50%;}
.c_message_wrapper .c_message_content{color:#fff;font-size:14px;text-align:center;}
.c_message_wrapper .c_close_btn{display:block;transform:translateY(1px);width:10px;height:10px;cursor:pointer;}
@keyframes fadeInDown{from{opacity:0;transform:translate3d(-50%,-100%,0);}
to{opacity:1;transform:translate3d(-50%,0,0);}
}
.c_message_fadeInDown{animation-name:fadeInDown;animation-duration:0.5s;}
.c_message_wrapper.loading .c_base_icon{background:url(../images/icon-loading.png) no-repeat center;background-size:18px 18px;animation:spin 1s linear infinite;}
@keyframes spin{0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

/* 顶部 */
.d_medicinal_top{display:flex;align-items:stretch;height: 610px;margin-top: 20px;}
.d_medicinal_top *{
    user-select: text;
}
.d_medicinal_resources{box-sizing:border-box;flex: 1;overflow: hidden;}
.d_medicinal_title{position: relative; display:flex;align-items:center;height:36px;}
.d_medicinal_title>.d_icon{width:25px;height:25px;}
.d_medicinal_h2{position: relative; flex:1;font-weight:600;font-size:22px;color:#131B26;overflow: hidden;}
.d_medicinal_title:has(.d_medicinal_h2>.d_text:hover) .d_cover_box{display:block;}
.d_medicinal_h2>.d_text{display:block;}
.d_cover_box{display:none;position:absolute;z-index:9999;bottom:-10px;left:40px;opacity:0.8;width:100%;max-width:750px;}
.d_cover_box .arrow{position:absolute;left:25px;top:-3px;width:10px;height:10px;border-radius:3px;background-color:#181E33;transform:rotate(45deg);}
.d_cover_box .content{position:absolute;box-sizing:border-box;padding:10px 16px;border-radius:4px;font-size:14px;font-weight:400;line-height:20px;color:#FFFFFF;background-color:#181E33;}

.d_medicinal_operate{position:relative;font-size: 0;}
.d_medicinal_operate:hover .d_operate_box{display:block;}
.d_operate_box{display:none;position:absolute;z-index: 100002; width:100%;padding-top:4px;}
.d_operate_ul{box-sizing:border-box;width:100%;padding:5px 0;border-radius:6px;box-shadow:0px 2px 12px 0px #00255933;background-color:#fff;}
.d_operate_li{padding:10px;font-weight:400;font-size:12px;color:#474C59;cursor:pointer;}
.d_operate_li:hover{color:#3A8BFF;background:#F0F6FF;}

.d_medicinal_details{width:360px;}
.d_details_ul{font-weight:400;font-size:14px;line-height:20px;color:#131B26;}
.d_details_li{display:flex;align-items:flex-start;padding-bottom:10px;}
.d_details_li:last-child{padding-bottom:0;}
.d_details_li>.d_label{flex-shrink: 0; color:#8A8B99;}
.d_details_li>.d_text{width:250px;padding-left:5px;}

.d_medicinal_evaluate{display:flex;align-items:center;height:24px;}
.d_medicinal_evaluate>.d_label{font-weight:400;font-size:14px;color:#8A8B99;}
.d_medicinal_evaluate>.d_score{margin-left:10px;font-size:14px;color:#474C59;}
.d_medicinal_evaluate.yellow>.d_score{margin-left:14px;font-family:D-DIN;font-weight:600;font-size:22px;color:#FFAF40;}
.d_medicinal_evaluate.yellow>.d_label{color:#131B26;}
.d_medicinal_evaluate.yellow .d_evaluate_star{cursor:pointer;}
.d_evaluate_stars{display:flex;align-items:center;height:24px;}
.d_evaluate_star{position: relative; width:24px;height:24px;background:url(../images/icon-20250414-star-empty.png) no-repeat center / 24px 24px;margin-right:4px;}
.d_evaluate_star:last-child{margin-right:0;}
.avg_star .d_evaluate_star.active{background:url(../images/icon-20250414-star-full.png) no-repeat center / 24px 24px;}
.comment_star .d_evaluate_star.active{background:url(../images/icon-20250414-star-full.png) no-repeat center / 24px 24px;}
/* 2025-04-17 更新 半颗星 */
.avg_star .d_evaluate_star.active.half{background:url(../images/icon-20250417-star-half.png) no-repeat center / 24px 24px;}
.comment_star .d_evaluate_star.active.half{background:url(../images/icon-20250417-star-half.png) no-repeat center / 24px 24px;}
.select_star .d_evaluate_half{
    position: absolute;
    left: 0;
    width: 12px;
    height: 24px;

}
.select_star .d_evaluate_full{
    position: absolute;
    right: 0;
    width: 12px;
    height: 24px;
}
.select_star .d_evaluate_star:has(.d_evaluate_half.active)
{
    background:url(../images/icon-20250417-star-half.png) no-repeat center / 24px 24px;
}
.select_star .d_evaluate_star:has(.d_evaluate_full.active)
{
     background:url(../images/icon-20250414-star-full.png) no-repeat center / 24px 24px;
 }

.d_medicinal_msgs{display:flex;align-items:center;line-height: 18px}
.d_medicinal_msg{display:flex;align-items:center;margin-right:30px;font-weight:400;font-size:14px;color:#8A8B99;}
.d_medicinal_msg>.d_label{display:flex;align-items:center;}
.d_medicinal_msg>.d_label.watch::before{content:'';width:12px;height:12px;background:url(../images/icon-20250414-eye.png) no-repeat center / 12px 12px;margin-right:5px;}
.d_medicinal_msg>.d_label.dowload::before{content:'';width:12px;height:12px;background:url(../images/icon-20250414-dowload.png) no-repeat center / 12px 12px;margin-right:5px;}
.d_medicinal_msg>.d_label.save::before{content:'';width:12px;height:12px;background:url(../images/icon-20250414-save.png) no-repeat center / 12px 12px;margin-right:5px;}
.d_medicinal_msg>.d_label.commen::before{content:'';width:12px;height:12px;background:url(../images/icon-20250414-common.png) no-repeat center / 12px 12px;margin-right:5px;}
.d_medicinal_msg>.d_label.quote::before{content:'';width:12px;height:12px;background:url(../images/icon-20250414-enter.png) no-repeat center / 12px 12px;margin-right:5px;}

.d_medicinal_preview{position:relative;width:790px;height:400px;border-radius:8px;overflow:hidden;}
.d_medicinal_preview:hover .d_medicinal_mask{transition:all .2s;opacity:1;}


.d_medicinal_btns{font-size:0;}
.d_medicinal_btns>.d_medicinal_btn{margin-right:16px;}
.d_medicinal_picture{width:100%;height:100%;object-fit:cover;}

.d_medicinal_permission{position:absolute;left:50%;bottom:50px;transform:translateX(-50%);display:flex;align-items:center;padding:0 26px;height:44px;border-radius:6px;background:#00000099;backdrop-filter:blur(10px);font-weight:400;font-size:16px;text-align:center;color:#fff;}
.d_medicinal_permission.no::before{content:'';width:16px;height:16px;background:url(../images/icon-20250414-info.png) no-repeat center / 16px 16px;margin-right:4px;}
.d_medicinal_permission.yes{cursor:pointer;}

.d_medicinal_cover{position:absolute;top:10px;right:10px;width:30px;height:30px;border-radius:6px;background:url(../images/icon-20250414-privew.png) #00000099 no-repeat center / 16px 16px;backdrop-filter:blur(10px)}
.d_medicinal_mask{position:absolute;z-index: 99999; width:100%;height:100%;left:0;top:0;background:linear-gradient(180deg,rgba(16,26,41,0) 0%,rgba(16,26,41,0.7) 100%);opacity:0;transition:all .2s;}

.d_progress_vedio{width:100%;height:100%;}
.d_details_video{width:100%;height:100%;}
.video-js .vjs-big-play-button{ left:50% !important;top:50% !important;transform:translate(-50%,-50%);backdrop-filter:unset !important;background-color: unset !important;}
.vjs-poster{background-size:cover !important;}
.d_progress_audio .video-js .vjs-tech{object-fit: cover;}

/* 相关推荐 */
.d_recommend_ul{display: flex;flex-wrap: wrap;align-content: flex-start; padding:30px 10px 0 30px;}
.d_recommend_li{display: inline-block;box-sizing: border-box; width:365px;margin:0 20px 20px 0; border-radius:10px;border:1px solid #E1E7F0;background-color:#fff;overflow:hidden;}
.d_recommend_li>.d_img{width:100%;height:180px}
.d_recommend_info{padding:15px 20px;}
.d_recommend_title{display:flex;align-items:center;height:25px;}
.d_recommend_title>.d_icon{width:20px;height:20px;}
.d_recommend_title>.d_title{margin-left:5px;font-weight:600;font-size:18px;color:#131B26;}
.d_recommend_message{padding-top:10px;display:flex;align-items:center;justify-content:space-between;font-weight:400;font-size:14px;color:#8A8B99;line-height:19px}
.d_recommend_message>.d_teacher{display:flex;align-items:center;font-weight:400;font-size:14px;color:#8A8B99;}
.d_recommend_message>.d_text{display:flex;align-items:center;}
.d_recommend_message>.d_text::before{content:'';width:12px;height:12px;margin-right:5px;}
.d_recommend_message>.d_text.teacher::before{background:url(../images/icon-20250414_msg1.png) no-repeat center / 12px 12px;}
.d_recommend_message>.d_text.time::before{background:url(../images/icon-20250414_msg2.png) no-repeat center / 12px 12px;}
.d_recommend_message>.d_text.views::before{background:url(../images/icon-20250414_msg3.png) no-repeat center / 12px 12px;}
.d_recommend_message>.d_text.downloads::before{background:url(../images/icon-20250414_msg4.png) no-repeat center / 12px 12px;}
.d_recommend_message>.d_text.quotes::before{background:url(../images/icon-20250414_msg5.png) no-repeat center / 12px 12px;}

.d_recommend_pagination .paginationjs{padding:40px 0 30px 0; justify-content: center;}

.d_discover_ul{padding:0 30px;}
.d_discover_li{display:flex;padding:35px 0;border-bottom:1px solid #F2F2F2;font-weight:400;line-height:22px;font-size:14px;color:#131B26;}
.d_discover_li:last-child{border-bottom:none;}
.d_discover_cover{flex-shrink:0;width:130px;height:180px;border-radius:8px;overflow:hidden;}
.d_discover_cover>.d_img{width:100%;height:100%;object-fit:cover;}
.d_discover_msg{box-sizing:border-box;padding-left:20px;flex:1;}
.d_discover_title{position: relative; display:flex;align-items:center;height:25px;}
.d_discover_title>.d_tag{flex-shrink:0;height:22px;padding:0 8px;border-radius:4px;font-weight:400;line-height:22px;font-size:12px;color:#fff;}
.d_discover_title>.d_tag.type1{background:#398CFF;}
.d_discover_title>.d_tag.type2{background:#6CB3D9;}
.d_discover_title>.d_tag.type3{background:#C4AAF2;}
.d_discover_title>.d_tag.type4{background:#F16A6A;}
.d_discover_title>.d_tag.type5{background:#FE9F7F;}
.d_discover_title>.d_title{flex:1;padding-left:10px;font-weight:600;font-size:18px;color:#131B26;}
.d_discover_line .d_text{display:block;width: 940px;}
.d_discover_title>.d_title>.d_text{display:block;width: 930px;}
.d_discover_parents{position: relative;}
.d_discover_parents:hover .d_cover_box{display:block;}

.d_discover_line{padding-top:10px;display:flex;}
.d_discover_line>.d_label{flex-shrink:0;color:#8A8B99;}
.d_medicinal_comment{display:flex;}
.d_medicinal_input{position:relative;flex:1;display:flex;}
.d_medicinal_input>.d_input{display: block; box-sizing:border-box;width:100%;min-height:36px;padding:7px 65px 8px 15px;font-weight:400;line-height: 20px; font-size:14px;border-radius:4px;border:1px solid #D4D6D9;background-color:#fff;transition:all .2s;}
.d_medicinal_input>.d_input:focus{border:1px solid #3A8BFF;transition:all .2s;}
.d_medicinal_input>.d_input:focus-visible{outline:none;}
.d_medicinal_input>.d_info{position:absolute;top:0;right:15px;font-weight:400;font-size:14px;line-height:38px;color:#D4D6D9;}
.d_input:empty::before {
    content: attr(placeholder);
}
.placeholder-text{color:#D4D6D9;}

.d_comment_box{padding-top:40px;}
.d_comment_total{font-weight:400;font-size:14px;color:#000000;}
.d_comment_number{color:#3A8BFF;}

.d_comment_ul{margin-top:20px;}
.d_comment_li{display:flex;padding:20px 0;border-bottom:1px solid #F2F2F2;}
.d_comment_li:last-child{border-bottom:none;}
.d_comment_header{width:30px;height:30px;border-radius:999px;overflow:hidden;}
.d_comment_header>.d_img{width:100%;height:100%;object-fit:cover;}
.d_comment_content{margin-left:10px;}
.d_comment_user{line-height:30px;}
.d_comment_user>.d_name{font-weight:600;font-size:16px;color:#131B26;}
.d_comment_user>.d_type{padding-left:15px;font-weight:400;font-size:16px;color:#474C59;}
.d_comment_text{font-weight:400;font-size:16px;color:#131B26;}

.d_empty_box{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px 0;}
.d_empty_box>.d_empty{width:240px;height:200px;}
.d_empty_box>.d_info{font-weight:400;font-size:16px;padding-top:10px;color:#8A8B99;}

.d_recognition_query{display:flex;align-items:center;box-sizing:border-box;justify-content:space-between;width:100%;padding:15px;}
.d_recognition_setting{width:20px;height:20px;background:url(../images/icon-20250414-setting.png) no-repeat center / 20px 20px;}
.d_recognition_search{display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;width:290px;height:36px;padding:0 14px;border-radius:4px;border:1px solid #D4D6D9;background-color:#fff;}
.d_recognition_search>.d_input{flex:1;border:0;height:100%;font-weight:400;font-size:14px;}
.d_recognition_search>.d_input::placeholder{color:#ACB4BF;}
.d_recognition_search>.d_search{width:18px;height:18px;margin-left:6px;background:url(../images/icon-20250414-search.png) no-repeat center / 18px 18px;}

.d_recognition_ul{position:relative;overflow:auto;box-sizing:border-box;max-height:490px;padding:0 10px 0 15px;margin-right:5px;}
.d_recognition_ul::before{content:'';box-sizing:border-box;position:absolute;top:0;left:24px;height:100%;border-left:1px solid #E4ECFF;}
.d_recognition_li{display:flex;font-weight:400;font-size:14px;line-height:20px;}
.d_recognition_li>.d_icon{position:relative;z-index:99;flex-shrink:0;width:20px;height:20px;background:url(../images/icon-20250414-player.png) no-repeat center / 20px 20px;}
.d_recognition_msg{box-sizing:border-box;padding-left:10px;}
.d_recognition_msg>p{padding-bottom:10px;}

.d_broadcast_ul{box-sizing:border-box;padding:5px 15px;height:560px;width:100%;overflow:auto;}
.d_broadcast_li{display:flex;cursor:pointer;padding:15px 0;}
.d_broadcast_cover{flex-shrink:0;width:122px;height:72px;border-radius:6px;overflow:hidden;}
.d_broadcast_cover>.d_cover{width:100%;height:100%;object-fit:cover;}
.d_broadcast_info{margin-left:10px;flex:1;}
.d_broadcast_info>.d_title{font-weight:600;font-size:16px;color:#131B26;line-height:22px;}
.d_broadcast_info>.d_desc{font-weight:400;font-size:14px;color:#8A8B99;line-height:20px;padding-top:5px;}
.d_broadcast_msg{display:flex;flex-direction:column;justify-content:space-between;height:72px;padding-left:12px;}
.d_broadcast_msg>.d_title{font-weight:600;font-size:14px;color:#131B26;}
.d_broadcast_msg>.d_time{display:flex;align-items:center;height:17px;font-weight:400;font-size:12px;color:#8A8B99;}
.d_broadcast_msg>.d_time::before{content:'';width:14px;height:14px;font-weight:400;font-size:12px;background:url(../images/icon-20250414-stop.png) no-repeat center / 14px 14px;margin-right:8px;}
.d_broadcast_li.active .d_title,.d_broadcast_li.active .d_time{color:#3A8BFF;}
.d_broadcast_li.active .d_time::before{background:url(../images/icon-20250414_start.png) no-repeat center / 14px 14px;}

.d_hotwords_box{margin:12px auto;}
div.jqcloud a{font-size:inherit;text-decoration:none;}
div.jqcloud span{cursor: pointer;}
div.jqcloud span:hover{opacity: .7;}
div.jqcloud span.w10{font-size:42px;font-weight: 600; color:#48D2C8;}
div.jqcloud span.w9{font-size:39px;color:#fc9208;}
div.jqcloud span.w8{font-size:36px;color:#ffbf00;}
div.jqcloud span.w7{font-size:33px;color:#a1dc37;}
div.jqcloud span.w6{font-size:30px;color:#3fdad4;}
div.jqcloud span.w5{font-size:28px;color:#6da0f3;}
div.jqcloud span.w4{font-size:36px;color:#a48ce9;}
div.jqcloud span.w3{font-size:24px;color:#57b9fb;}
div.jqcloud span.w2{font-size:22px;color:#9ad6ff;}
div.jqcloud span.w1{font-size:20px;color:#9ad6ff;}
div.jqcloud{color:#09f;}
div.jqcloud a{color:inherit;}
div.jqcloud{overflow:hidden;position:relative;}
div.jqcloud span{padding:0;}

/* 图片预览 */
.d_preview_picture::before{content:'';position:fixed;left:0;top:0;right:0;bottom:0;z-index:100000;width:100%;height:100vh;background:#101A29C2;}
.d_preview_img{position:absolute;z-index:100001;left:50%;top:50%;transform:translate(-50%,-50%);}
.d_preview_operate{position:fixed;z-index:100002;left:50%;bottom:70px;transform:translateX(-50%);display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;width:348px;height:70px;padding:0 20px;border-radius:8px;font-weight:500;font-size:18px;color:#fff;background:#101A29C2;}
.d_preview_btn{width:30px;height:30px;}
.d_preview_btn.big{background:url(../images/icon-20250415-big.png) no-repeat center / 30px 30px;}
.d_preview_btn.small{background:url(../images/icon-20250415-small.png) no-repeat center / 30px 30px;}
.d_preview_btn.preview{background:url(../images/icon-20250415-privew.png) no-repeat center / 30px 30px;}
.d_preview_btn.full{background:url(../images/icon_20250415_fit.png) no-repeat center / 30px 30px;filter: brightness(100);}
.d_preview_btn.rotate{background:url(../images/icon-20250415-rotate.png) no-repeat center / 30px 30px;}
.d_preview_hr{width:1px;height:24px;border-radius:999px;background:#303A47;}
.d_preview_pictureClose{position:absolute;z-index:100002;top:40px;right:40px;width:30px;height:30px;background:url(../images/icon-20250415-close.png) no-repeat center / 30px 30px;}
.d_preview_ratio{width:50px;text-align:center;}
.d_preview_picture.full .d_preview_img{width:100%;height: 100%;object-fit: cover;}


/* 文件预览 */
.d_preview_file_content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:1140px;height:calc(100vh - 200px);min-height:600px;max-height:850px;border-radius:10px;background-color:#fff;}
.d_preview_file *::-webkit-scrollbar{width:8px;height:8px;}
.d_preview_file *::-webkit-scrollbar-track{background:transparent;}
.d_preview_file *::-webkit-scrollbar-thumb{background:#DADFE5;border-radius:99px;cursor:pointer;}
.d_preview_file{position:fixed;left:0;top:0;right:0;bottom:0;z-index:99999;width:100%;height:100vh;background:#101A29C2;}
.d_preview_file_header{flex-shrink:0;display:flex;align-items:center;height:60px;padding:0 30px;border-bottom:1px solid #F2F2F2;}
.d_preview_file_header>.d_icon{width:24px;height:24px;}
.d_preview_file_header>.d_name{flex:1;padding:0 30px 0 6px;font-weight:600;font-size:18px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#131B26;}
.d_preview_fullScreen{width:20px;height:20px;background:url(../images/icon-20250415-full.png) no-repeat center / 20px 20px;}
.d_preview_fileClose{width:20px;height:20px;margin-left:30px;background:url(../images/icon-20250415-close2.png) no-repeat center / 20px 20px;}
.d_preview_file_content{display:flex;flex-direction:column;}
.d_preview_file_main{flex:1;height:100%;margin-right:10px;overflow:hidden;}
.d_preview_file_scroll{box-sizing:border-box;width:100%;height:100%;padding:20px 20px 20px 30px;overflow:auto;}
.d_preview_file_scroll>.d_img{width:100%;}
.d_preview_file_content.fullScreen{width:100%;height:100%;border-radius:0;max-height:unset;}
.d_preview_file_content.fullScreen .d_preview_fullScreen{background:url(../images/icon-20250415-quite.png) no-repeat center / 20px 20px;}

.d_medicinal_mask.introduction{background:unset;}
.d_medicinal_introduction{position:absolute;right:20px;bottom:20px;width:30px;height:30px;background:url(../images/icon-20250415-show.svg) no-repeat center / 30px 30px;}

.zyk_resource_index #imgDownload, .zyk_resource_index #imgReport,
.zyk_resource_index .active .imghover{display: none !important;}

/* 公共-新版泛雅-加载状态 */
.fyLoading{position:relative;width:100%;display:flex;align-items:center;justify-content:center;}
.fyLoading_icon{width:18px;height:18px;background:url(../images/icon-loading.png) no-repeat center left;background-size:18px 18px;animation:fyLoadingRotation 1s infinite linear;}
@keyframes fyLoadingRotation{0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}