Files
2026-01-16 22:06:46 +08:00

1214 lines
93 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html><html lang="en" class="layout-ready" style="font-size: 34.46px;"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="description" content="">
<meta name="author" content="">
<meta name="format-detection" content="telephone=no">
<link rel="icon" href="/static/favicon.ico">
<title>郑州长江中医院</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
max-height: 100000px;
}
html, body {
display: block;
width: 100%;
height: 100%;
-webkit-text-size-adjust:none;
overflow: hidden;
-webkit-touch-callout: none;
}
#app {
height: 100%;
}
.layout-ready {
position: relative;
}
.layout-fixed {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
/* 地图定位sdk会插入iframe,点输入框失焦后会影响页面展现display:none后可解 */
iframe[src*="api.map.baidu.com"] {
display: none!important;
}
@media screen and (min-width: 1025px) {
.app-PC {
overflow: hidden;
}
#newGuaranteePopper.guarantee-mobile {
width: 428px !important;
left: 50% !important;
margin-left: -214px !important;
}
.popover-content .guarantee-actions {
width: 428px !important;
left: 50% !important;
margin-left: -214px !important;
padding-left: 0 !important;
padding-right: 0 !important;
}
}
/* 新验证码弹层背景色透明度调整 */
.passMod_dialog-mask {
background-color: rgba(0, 0, 0, 0.55)!important;
}
.passMod_dialog-wrapper {
z-index: 1001!important;
}
</style>
<script src="https://dlswbr.baidu.com/heicha/mw/abclite-2046-s.js?v=0.19195489432748813"></script><script src="https://xlab.baidu.com/res/bundle.i.php"></script><script>
window.onerror = function (message, source, lineNo, colNo, error) {
var msg = message;
if (source) {
msg += "\n" + source.replace(location.origin, '');
}
if (lineNo || colNo) {
msg += ':' + lineNo + ':' + colNo;
}
globalLog({
type: 'fe-error',
from: 'imlp',
content: decodeURIComponent(msg)
});
};
function globalLog(param) {
param['timestamp'] = Date.now();
param['xst'] = 'm1YKmWYYnj7jPbRkwbuanD7awHndwRfdwjN7f1K7fW0zwWFjfs715HnLPHc3nj6kn1DvPHcznNtYn1Nxn07L5TWQ8pidknopEJEi8ejWEQBY1o5F8pmKTHLczehbzVJSJq2JV8jFvTX8YUYKIHYzPW0snWc1Pf7Y5HDLPW6YPjT1PWnKUgDqnfcs0_WQ8pH2voloYJJv3nMukl3Kmv6quhnKTMfqn0DzP1RvrHDLPHc1';
param['pvKey'] = 'b0fc4a2975ab3e656c33c53c316d2329';
param['app_id'] = 'xyl_ad';
param['abTest'] = 'new_action';
param['client'] = 'H5';
param['imid'] = '5ab0af63f266d043d00c30613ad940dd';
send(buildReqSrc(param));
/**
* 获得日志服务URL
*
* @return {string}
*/
function getServiceUrl() {
return location.host === 'zxy.baidu.com'
? 'https://zxy.baidu.com/nclick-imlp/index?'
: 'https://ada.baidu.com/nclick-imlp/index?';
}
/**
* 发送日志
* @param {string} src 日志请求
*/
function send(src) {
var img = new Image();
// 重试次数
var retry = 2;
var n = 'log_' + (new Date()).getTime();
img.onload = img.onerror = img.onabort = function (e) {
// 失败时,尝试重试
if ('load' !== e.type) {
if (retry--) {
setTimeout(function () {
img.src = src + '&n=' + n;
}, 1000);
} else {
img = null;
}
} else {
img = null;
}
};
img.src = src;
}
function buildReqSrc(params) {
var a = [];
for (var key in params) {
var value = params[key];
if (typeof(value) === 'object') {
value = JSON.stringify(value);
}
var q = key + '=' + encodeURIComponent(value);
a.push(q);
}
var src = getServiceUrl() + a.join('&');
return src;
}
}
</script>
<script>
window.performance && window.performance.mark && window.performance.mark('layout');
var psdWidth = 1242;
var maxRem = 100;
var PAGE_WIDTH_DEFAULT = 375;
var PAGE_WIDTH_MIN = 320;
var ch = document.documentElement.clientHeight || PAGE_WIDTH_DEFAULT;
var cw = document.documentElement.clientWidth || PAGE_WIDTH_DEFAULT;
// PC端渲染h5的情况下使用兼容模式
var PAGE_WIDTH_MOBILE_MAX = 1024;
var PAGE_WIDTH_PC = 428;
if (document.documentElement.clientWidth > PAGE_WIDTH_MOBILE_MAX) {
cw = PAGE_WIDTH_PC;
}
var pageWidth;
var calcRem = function () {
pageWidth = window.orientation && (window.orientation == 90 || window.orientation == -90) ? ch : cw;
pageWidth = Math.max(pageWidth, PAGE_WIDTH_MIN);
var rem = (pageWidth / psdWidth * 100).toFixed(2);
rem = Math.min(rem, maxRem);
var htm = document.getElementsByTagName('html')[0];
htm.style.fontSize = rem + 'px';
//解决小米手机字体缩放带来的问题
var real = window.getComputedStyle(htm).fontSize.split('px')[0];
rem = Math.pow(rem, 2) / real;
htm.style.fontSize = rem + 'px';
};
calcRem();
window["onorientationchange" in window ? "onorientationchange" : "onresize"] = calcRem;
</script>
<script charset="utf-8" src="/static/imlp/static/js/components/vendors~guarantee_popper.chunk.min.be62cfc7a8d7d510ea8f.js"></script><script charset="utf-8" src="/static/imlp/static/js/components/boxx.chunk.min.3ebfc6afb9eb4610eb72.js"></script><script charset="utf-8" src="https://hm.baidu.com/j.js?2600223540d371767a7b64de6ed45ea"></script><script charset="utf-8" src="/static/imlp/static/js/components/vendors~formconvertor.chunk.min.b0972e96553a0cfdac52.js"></script><script charset="utf-8" src="/static/imlp/static/js/components/vendors~formsdk.chunk.min.8d81cb12acede25daf0b.js"></script><script charset="utf-8" src="/static/imlp/static/js/components/formsdk.chunk.min.54e8d7d15581cbd19b88.js"></script><style id="guarantee-popper-style" type="text/css">._one_ellipse{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#newGuaranteePhonePopper,#newGuaranteePopper{position:fixed;right:0;bottom:0;left:0;color:#1f1f1f}.darkmode #newGuaranteePhonePopper,.darkmode #newGuaranteePopper{color:hsla(0,0%,100%,.8)}#newGuaranteePhonePopper img,#newGuaranteePhonePopper li,#newGuaranteePhonePopper ul,#newGuaranteePopper img,#newGuaranteePopper li,#newGuaranteePopper ul{padding:0;margin:0;list-style:none}#newGuaranteePhonePopper img,#newGuaranteePopper img{border:0}#newGuaranteePhonePopper a,#newGuaranteePopper a{text-decoration:none;color:#1f1f1f}.darkmode #newGuaranteePhonePopper a,.darkmode #newGuaranteePopper a{color:hsla(0,0%,100%,.8)}#newGuaranteePhonePopper.guarantee-mobile,#newGuaranteePopper.guarantee-mobile{width:100%;animation:bounce-in .24s}#newGuaranteePhonePopper.guarantee-mobile .popover-content,#newGuaranteePopper.guarantee-mobile .popover-content{width:100%;position:relative;border-radius:23px 23px 0 0;font-family:PingFangSC-Regular;background-color:#4e6ff2}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content{background-color:#4e6ef2}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title{display:flex;display:-webkit-flex;flex-direction:row;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:0 17px 0 11px;background-color:#4e6ff2;border-radius:21px 21px 0 0;height:53px}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title{background-color:#4e6ef2}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left,#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right{display:flex;display:-webkit-flex;flex-direction:row;align-items:center;-webkit-align-items:center;justify-content:flex-start;-webkit-justify-content:flex-start}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left a,#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right a,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left a,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right a{font-family:PingFangSC-Medium}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left span,#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right span,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left span,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right span{padding:8px 11px;background-color:hsla(0,0%,100%,.15);border-radius:17px;margin-right:18px;text-align:center;font-size:14px;line-height:13px;color:#fff}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left span,.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right span,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left span,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right span{background-color:hsla(0,0%,100%,.15);color:#fff}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left span:active,#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right span:active,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left span:active,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right span:active{opacity:.2}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left i.close-icon,#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right i.close-icon,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left i.close-icon,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right i.close-icon{height:22px;width:22px;display:inline-block;background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_close.png) no-repeat 100% 100%/cover}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left i.go-baoZhang,#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right i.go-baoZhang,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left i.go-baoZhang,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-right i.go-baoZhang{display:inline-block;width:31px;height:36px;background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_bao.png) no-repeat 100% 100%/cover;position:relative;margin-right:5px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left{font-weight:500;font-size:19px;color:#fff}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title .guarantee-left{color:#fff}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-title a,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-title a{flex:1}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list,#newGuaranteePopper.guarantee-mobile .popover-content .show-list{width:inherit;overflow-y:auto;border-radius:18px 18px 0 0;background-color:#fff}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list{background-color:#222}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-company,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-company{display:flex;display:-webkit-flex;flex-direction:row;align-items:flex-start;-webkit-align-items:flex-start;justify-content:space-between;-webkit-justify-content:space-between;padding:20px 17px 10px;background-color:#fff;text-align:left;font-family:PingFangSC-Medium}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-company,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-company{background-color:#222}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-company span,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-company span{font-size:19px;margin-right:19px;line-height:20px;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#1f1f1f}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-company span,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-company span{color:hsla(0,0%,100%,.8)}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-company i.go-arrow,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-company i.go-arrow{display:inline-block;width:19px;height:19px;background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_arrow.png) no-repeat 100% 100%/cover}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-company i.go-arrow,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-company i.go-arrow{background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_arrow_dark.png) no-repeat 100% 100%/cover}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list{position:relative;display:block;background-color:#fff;padding:12px 17px 10px;width:100%;box-sizing:border-box;font-size:15px}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list{background-color:#222}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px{position:relative}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px:before,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px:before{content:"";position:absolute;top:0;left:0;width:200%;height:200%;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:0 0;transform-origin:0 0;pointer-events:none;border-bottom:1px solid #eee}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px:before,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px:before{border-bottom:1px solid hsla(0,0%,40%,.4)}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px.top,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px.top{padding-top:10px;margin:0 27px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px.bottom,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .border-1px.bottom{margin:13px 27px 0}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list.url .promise-info,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list.url .promise-info{min-width:0;width:calc(100% - 46px);margin-right:7px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list.url .zhanwei,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list.url .zhanwei{width:19px;height:19px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info{width:calc(100% - 28px);box-sizing:border-box}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info.parent .iconname,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info.parent .iconname{margin-bottom:6px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info .iconname,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info .iconname{display:block;font-family:PingFangSC-Medium;padding-top:3px;margin-bottom:5px;line-height:15px;color:#1f1f1f;font-weight:500;text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info .iconname,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info .iconname{color:hsla(0,0%,100%,.8)}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info .desc,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info .desc{color:#858585;line-height:21px;text-align:left;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit--clamp:2;line-clamp:2;-webkit-box-orient:vertical;text-overflow:-o-ellipsis-lastline}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info .desc,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-info .desc{color:hsla(0,0%,100%,.5)}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content{display:flex;display:-webkit-flex;flex-direction:row;align-items:flex-start;-webkit-align-items:flex-start;justify-content:flex-start;-webkit-justify-content:flex-start}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content i.go-arrow,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content i.go-arrow{flex-shrink:0;display:inline-block;width:19px;height:19px;background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_arrow.png) no-repeat 100% 100%/cover}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content i.go-arrow,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content i.go-arrow{background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_arrow_dark.png) no-repeat 100% 100%/cover}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content .icon,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content .icon{width:20px;height:20px;margin-right:7px;background-repeat:no-repeat;background-position:100% 100%;background-size:cover;flex-shrink:0;position:relative;top:1px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content .promise-info .iconname,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content .promise-info .iconname{font-size:17px;line-height:17px;color:#1f1f1f}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content .promise-info .iconname,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-content .promise-info .iconname{color:hsla(0,0%,100%,.8)}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-child,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-child{margin:14px 0 0 27px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-child.first,#newGuaranteePopper.guarantee-mobile .popover-content .show-list .guarantee-list .promise-item-child.first{margin-top:8px}@media screen and (max-width:320px){#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-list,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-list{padding:2px 17px}}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-actions,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-actions{position:fixed;bottom:0;left:0;right:0;display:flex;display:-webkit-flex;flex-direction:row;align-items:flex-start;-webkit-align-items:flex-start;justify-content:flex-start;-webkit-justify-content:flex-start;font-size:15px;padding:13px 17px calc(13px + env(safe-area-inset-bottom));background-color:#fff}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-actions,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .guarantee-actions{background-color:#222}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-actions span,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-actions span{cursor:pointer}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-actions .guarantee-btn,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-actions .guarantee-btn{background-color:#f5f5f5;display:flex;display:-webkit-flex;flex-direction:row;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;border-radius:9px;height:33px;margin:0 5px;-webkit-flex:1;flex:1;cursor:pointer}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-actions .guarantee-btn,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .guarantee-actions .guarantee-btn{background-color:#333}#newGuaranteePhonePopper.guarantee-mobile .popover-content .guarantee-actions .guarantee-btn:active,#newGuaranteePopper.guarantee-mobile .popover-content .guarantee-actions .guarantee-btn:active{opacity:.2}#newGuaranteePhonePopper.guarantee-mobile .popover-content .bottom-zhanwei,#newGuaranteePopper.guarantee-mobile .popover-content .bottom-zhanwei{height:calc(59px + constant(safe-area-inset-bottom));height:calc(59px + env(safe-area-inset-bottom))}#newGuaranteePhonePopper.guarantee-mobile .popover-content .header,#newGuaranteePopper.guarantee-mobile .popover-content .header{display:flex;display:-webkit-flex;flex-direction:row;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;color:#1f1f1f;font-size:18px;height:48px;background-color:#fff;font-family:PingFangSC-Medium}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .header,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .header{color:hsla(0,0%,100%,.8);background-color:#222}#newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list,#newGuaranteePopper.guarantee-mobile .popover-content .concat-list{background-color:#fff;box-sizing:border-box;width:100%;padding:0 20px}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .concat-list{background-color:#222}#newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list .item,#newGuaranteePopper.guarantee-mobile .popover-content .concat-list .item{color:#1f1f1f;display:flex;display:-webkit-flex;flex-direction:row;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;min-height:48px;font-size:16px}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list .item,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .concat-list .item{color:hsla(0,0%,100%,.8)}#newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list .item .phone-info,#newGuaranteePopper.guarantee-mobile .popover-content .concat-list .item .phone-info{display:flex;display:-webkit-flex;flex-direction:row;align-items:center;-webkit-align-items:center;justify-content:flex-start;-webkit-justify-content:flex-start;color:#1f1f1f;font-size:16px}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list .item .phone-info,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .concat-list .item .phone-info{color:hsla(0,0%,100%,.8)}#newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list .item .phone-info .phone-num,#newGuaranteePopper.guarantee-mobile .popover-content .concat-list .item .phone-info .phone-num{margin:0 10px 0 17px;line-height:18px;font-size:18px;font-family:PingFangSC-Medium}#newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list .item .phone-info .phone-desc,#newGuaranteePopper.guarantee-mobile .popover-content .concat-list .item .phone-info .phone-desc{box-sizing:border-box;background:hsla(0,0%,52.2%,.06);border:1px solid hsla(0,0%,52.2%,.5);border-radius:24px;font-size:10px;color:#858585;padding:2px 5px;line-height:10px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list i.icon-w,#newGuaranteePopper.guarantee-mobile .popover-content .concat-list i.icon-w{width:16px;height:16px}#newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list i.icon-concat,#newGuaranteePopper.guarantee-mobile .popover-content .concat-list i.icon-concat{background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_concat.png) no-repeat 100% 100%/cover}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list i.icon-concat,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .concat-list i.icon-concat{background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_concat_dark.png) no-repeat 100% 100%/cover}#newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list i.icon-phone,#newGuaranteePopper.guarantee-mobile .popover-content .concat-list i.icon-phone{background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_tel.png) no-repeat 100% 100%/cover}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .concat-list i.icon-phone,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .concat-list i.icon-phone{background:url(https://fe-trust.cdn.bcebos.com/guarantee-popper/resource/icon_tel_dark.png) no-repeat 100% 100%/cover}#newGuaranteePhonePopper.guarantee-mobile .popover-content .line,#newGuaranteePopper.guarantee-mobile .popover-content .line{width:100%;height:9px;background-color:#f5f5f5}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .line,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .line{background-color:#292929}#newGuaranteePhonePopper.guarantee-mobile .popover-content .cancle-btn,#newGuaranteePopper.guarantee-mobile .popover-content .cancle-btn{display:flex;display:-webkit-flex;flex-direction:row;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;height:48px;color:#1f1f1f;font-size:16px;background-color:#fff}.darkmode #newGuaranteePhonePopper.guarantee-mobile .popover-content .cancle-btn,.darkmode #newGuaranteePopper.guarantee-mobile .popover-content .cancle-btn{color:hsla(0,0%,100%,.8);background-color:#222}#guaranteeMask{width:100%;height:100vh;background-color:rgba(0,0,0,.6);position:fixed;right:0;bottom:0;left:0;z-index:10}.darkmode #guaranteeMask{background-color:rgba(8,8,8,.8)}@keyframes bounce-in{0%{transform:translateY(100%)}to{transform:translateY(0)}}</style></head>
<body class="layout-ready" style="--theme-color: #4e6ef2; --theme-core-fold-bg: #f6f6f6; --theme-light-bg: rgba(78,110,242,.1); --theme-project-card-bg: #F6F9FF; --theme-project-even-bg: #E4EAFE; --theme-project-odd-bg: #CFF0E9; --theme-form-top-1-bg: url(&quot;https://imlp-static.cdn.bcebos.com/img/icon-form-order.png&quot;); --theme-form-top-2-bg: url(&quot;https://imlp-static.cdn.bcebos.com/img/icon-form-price.png&quot;); --theme-form-top-3-bg: url(&quot;https://imlp-static.cdn.bcebos.com/img/icon-form-discounts.png&quot;); --theme-local-top-bg: url(&quot;https://imlp-static.cdn.bcebos.com/img/user_phone_header.png&quot;); --theme-checked-bg: url(&quot;https://imlp-static.cdn.bcebos.com/img/check_box_on.png&quot;); --theme-evaluate-up-bg: url(&quot;https://imlp-static.cdn.bcebos.com/img/evaluate-hand-up-active.png&quot;); --theme-evaluate-down-bg: url(&quot;https://imlp-static.cdn.bcebos.com/img/evaluate-hand-down-active.png&quot;); --theme-question-icon: url(&quot;https://imlp-static.cdn.bcebos.com/img/qa-card-title-icon.png&quot;); --theme-question-top-bg: url(&quot;https://imlp-static.cdn.bcebos.com/img/qa-card-bg.png&quot;);">
<div id="app" class="app-PC">
<!-- 如果是 h5 && 命中实验展现loading样式 -->
<style type="text/css">
.layout-ready {
padding-top: 0;
margin-top: 0;
}
.layout-ready .imlp-app-skeleton {
display: none;
animation: imlp-skeleton-hide 1s;
}
@keyframes imlp-skeleton-hide {
from {
display: flex;
}
to {
display: none;
}
}
.imlp-app-skeleton {
position: fixed;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
z-index: 100000;
transition: all 1s;
animation: imlp-skeleton-hide 1s;
}
/* chatview */
.imlp-app-chatview {
order: 2;
flex: 1;
width: 100%;
background: #f5f5f5;
}
/*H5 typebbox*/
.imlp-app-typebox {
order: 3;
position: relative;
display: flex;
padding: 10px 0;
width: 100%;
min-height: 32px;
align-items: flex-end;
box-sizing: border-box;
background-color: #fff;
border-top: 1px solid #d8d8d8;
}
.imlp-app-typebox-menu {
margin: 0 0 7px 10px;
width: 22px;
height: 22px;
background-image: url(//imlp-static.cdn.bcebos.com/img/icon-typebox-menu.png);
background-size: 100%;
border-radius: 2px;
}
.imlp-app-typebox-text {
margin-right: 10px;
height: 16px;
-webkit-box-sizing: content-box;
box-sizing: content-box;
resize: none;
border: 1px solid #d8d8d8;
border-radius: 3px;
color: #000;
vertical-align: middle;
max-height: 120px;
padding: 10px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-items: center;
}
.imlp-app-typebox-text-input {
overflow-y: auto;
width: calc(100% - 45px);
height: 20px;
font-size: 15px;
line-height: 20px;
max-height: 120px;
border: none;
-webkit-appearance: none;
-webkit-user-select:text;
user-select: text;
word-break: break-all;
outline: none;
text-align: left;
position: absolute;
top: 10px;
left: 10px;
resize: none;
}
.imlp-app-typebox-send {
width: 58px;
height: 38px;
line-height: 38px;
text-align: center;
background-color: #3998fc;
color: #FFF;
border-radius: 3px;
font-size: 15px;
flex-shrink: 0;
flex-grow: 0;
margin: 0 10px 0 0;
}
.imlp-app-typebox-plus {
margin: 0 10px 6px;
width: 23px;
height: 23px;
line-height: 23px;
text-align: center;
font-size: 24px;
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat;
background-image: url(//imlp-static.cdn.bcebos.com/img/icon-plus-new.png);
}
.imlp-app-typebox-emoji {
position: absolute;
display: inline-block;
height: 20px;
width: 20px;
right: 10px;
bottom: 8px;
background-image: url(//imlp-static.cdn.bcebos.com/img/icon-emoji-2.png);
background-size: 100%;
background-repeat: no-repeat;
}
.imlp-app-typebox-text-input::-webkit-input-placeholder {
color: #d8d8d8;
}
/*HN typebbox*/
.imlp-app-newtypebox {
display: flex;
position: relative;
width: 100%;
min-height: 1.8rem;
box-sizing: border-box;
background-color: #fff;
border-top: 0;
padding: .3rem .51rem;
align-items: end;
order: 3;
}
.imlp-app-newtypebox-textarea-container {
display: flex;
position: relative;
flex: 1;
height: .56rem;
margin-right: .42rem;
border-radius: .6rem;
color: #1f1f1f;
background: #f1f1f1;
border: 1px solid rgba(0,0,0,.05);
padding: .3rem;
box-sizing: content-box;
vertical-align: middle;
box-shadow: none;
align-items: center;
}
.imlp-app-newtypebox-textarea {
position: absolute;
resize: none;
top: .25rem;
left: .39rem;
height: .69rem;
font-size: .48rem;
line-height: .69rem;
background: #f1f1f1;
border: 0;
-webkit-appearance: none;
}
.imlp-app-newtypebox-textarea::placeholder {
color: #1f1f1f;
}
.imlp-app-newtypebox-emoji {
position: absolute;
display: inline-block;
height: .66rem;
width: .66rem;
right: .27rem;
background-image: url(//imlp-static.cdn.bcebos.com/img/icon-hn-emoji.png);
background-size: 100%;
background-repeat: no-repeat;
}
.imlp-app-newtypebox-plus {
width: .66rem;
height: .66rem;
margin: 0 .42rem .27rem 0;
background-image: url(//imlp-static.cdn.bcebos.com/img/icon-hn-plus.png);
line-height: 23px;
text-align: center;
font-size: 24px;
background-size: 100% 100%;
background-position: 50%;
background-repeat: no-repeat;
}
.imlp-app-newtypebox-send {
width: 1.8rem;
height: .96rem;
background: #4E6EF2;
border-radius: .24rem;
font-size: .42rem;
margin: 0 0 .14rem;
display: flex;
align-items: center;
justify-content: center;
line-height: normal;
color: #FFFFFF;
}
.imlp-app-chatview {
overflow: hidden;
}
.imlp-app-skeleton-image {
width: 100%;
}
@media screen and (min-width: 1025px) {
.imlp-app-skeleton {
width: 428px;
margin: auto;
left: 50%;
margin-left: -214px;
}
}
</style>
<style>
/* header */
.imlp-app-header {
order: 1;
display: flex;
flex-direction: column;
width: 100%;
}
.imlp-app-header .imlp-app-header-head {
display: flex;
flex-direction: row;
align-items: center;
padding: .42rem .51rem .28rem;
}
.imlp-app-header .imlp-app-header-avatar {
width: 1.42rem;
height: 1.42rem;
border: .003rem solid #e5e5e5;
border-radius: 50%;
background: #f5f5f5;
}
.imlp-app-header .imlp-app-header-title-box {
margin: .07rem .9rem .07rem .27rem;
}
.imlp-app-header-title {
width: 4rem;
height: .6rem;
background: #f5f5f5;
}
.imlp-app-header-tags {
display: flex;
align-items: center;
}
.imlp-app-header-tag {
width: 2rem;
height: .32rem;
padding: .06rem .15rem;
margin: .13rem .18rem .08rem 0;
border-radius: 1rem;
background: #f5f5f5;
}
.imlp-app-header .imlp-app-header-guaranteebar {
width: auto;
height: .73rem;
margin: 0 .51rem .2rem;
background: #f5f5f5;
}
</style>
<div class="imlp-app-skeleton" id="imlpAppSkeleton">
<div class="imlp-app-header">
<div class="imlp-app-header-head">
<div class="imlp-app-header-avatar"></div>
<div class="imlp-app-header-title-box">
<div class="imlp-app-header-title"></div>
<div class="imlp-app-header-tags">
<div class="imlp-app-header-tag"></div>
<div class="imlp-app-header-tag"></div>
</div>
</div>
</div>
<div class="imlp-app-header-guaranteebar"></div>
</div>
<div class="imlp-app-chatview">
<img class="imlp-app-skeleton-image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAb8AAAKDCAMAAAC9nfQLAAAAq1BMVEUAAAAAAAD9/f3+/v7////BwcH////////9/f39/f3////////////////+/v7+/v7////+/v7////9/f3X19f////29vb////v7+/////////+/v76+vr19fX////////5+fnt7e3////9/f35+fn////////////8/Pz7+/v9/f36+vr////8/Pz8/Pz+/v719fX////9/f309PT5+fn39/f7+/vw8PD6+vo4KSHZAAAAMHRSTlMDAWf1rwuRjoKJi4rYk4Z/lYRwfQbsI5cSv8efQRj2mDML0l0u5OGlSTl3KrdWT2lLtN93AAAPCUlEQVR42uzaz07yQBRA8fEz+VasDBr/uzAakU2ngQnv/2TGuIIOhUCl98g5r/DLvU1nJl3sLNlIXewuqRe53X7qxW6Xn3rR6/eTL359RuoB6vGTD9FWJvUYbfOTj1JdSj5MVSr1ONX85ANV8ZOPVNdPPlQdP/lYbfrJB2vDTz5a637y4er41fnmn3eTy2yj1r7dv3xMq4D9frO7bEG6vppuA0x1vulLtkBN5lsAU5Xv1uEL1uVHHTBVp0++cD3P+vzSWi7PgL09dQHrfrNsAXuobdBUGT+3Z8ja+X5+82wh+18ZwNQdv89sIXuv+bk+Od10AVOHL02yxewxrffjlzbyzDNqr3v5ZQvav7TRt1/Sj5J+7Gp+ST9MHb+kH6lD/BbnWJtDdohfc47px04/dvqx04+dfuz0Y6cfO/3Y6cdOP3b6sdOPnX7s9GOnHzv92OnHTj92+rH7Q36rxRn2h/wsTvqx04+dfuz0Y6cfO/3Y6cdOP3ZH+bXlLI9iTtuqtL/jV5aNnaRlGd6vVe+ELcvAfqWxk1aO8ZNv/FZH+MkXoHKMnze449cO5bdqbIQWB/s5fiFqD/Xz6xeiMozforFRWg7j55/7fuln6/n+k51+7PRjpx87/djpx04/dvqx04+dfuz0Y6cfO/3Y6cdOP3b6sdOPnX7s9GOnHzv92OnHTj92+rHTj51+7PRjpx87/djpx04/dvqx04+dfuz0Y6cfO/3Y6cdOP3b6sdOPnX7s9GOnHzv92OnHTj92+rHTj51+7PRjpx87/djpx04/dvqx0++LPTogAQAAABD0/3U7hLyg7T/bf7b/bP/Z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">
</div>
<div class="imlp-app-newtypebox">
<div class="imlp-app-newtypebox-plus"></div>
<div class="imlp-app-newtypebox-textarea-container">
<textarea contenteditable="true" class="imlp-app-newtypebox-textarea" placeholder="请您输入..."></textarea>
<span class="imlp-app-newtypebox-emoji"></span>
</div>
<div class="imlp-app-newtypebox-send" style="background:">发送</div>
</div>
</div>
<div class="imlp-app-container
imlp-popup-start-">
<div class="imlp-widget-toast-group false">
<!--3-->
</div>
<div class="imlp-app-top-content-fold">
<!--5-->
<div>
<!--7-->
<div class="imlp-component-header-exp ">
<img class="imlp-component-header-exp-img" src="https://imagelib.cdn.bcebos.com/cip_ml_picf368cd66-894c-432a-8f5e-361529b61974.png_zXw200Xh200Xq90.png"><!--10-->
<div class="imlp-component-header-exp-content
" style="justify-content: space-between;">
<div class="imlp-component-header-exp-content-main">
<div class="imlp-component-header-exp-text" style="-webkit-line-clamp: 1;">郑州长江中医院</div>
<!--11-->
</div>
<div class="widget-tags widget-tags-undefined
">
<!--16-->
<div class="widget-tag-obj widget-tag-obj-blue">
<div class="widget-tag-img">
<img src="https://bj.bcebos.com/v1/imlp-static/img/tag_auth.png">
</div><!--18-->
<div class="widget-tag-text
widget-tag-blue
widget-tag-icon
" style="">
资质认证
</div>
</div><!--17-->
<!--16--><!--19-->
<div class="widget-tag-obj widget-tag-obj-gold">
<div class="widget-tag-img">
<img src="https://bj.bcebos.com/v1/imlp-static/img/tag_star.png">
</div><!--21-->
<div class="widget-tag-text
widget-tag-gold
widget-tag-icon
" style="">
医保定点
</div>
</div><!--20-->
<!--19--><!--22-->
<div class="widget-tag-str">五星服务</div><!--23-->
<!--22--><!--24-->
<div class="widget-tag-str" style="display: none;">二级医院</div><!--25-->
<!--24--><!--15-->
</div><!--14--><!--12-->
</div>
<div class="imlp-component-header-exp-tel
">
<i class="c-icon"></i><!--27-->
<span>电话</span>
</div><!--26-->
</div><!--8-->
</div>
<!--5--><!--4-->
<!--29-->
<div class="imlp-component-topcontent imlp-app-container-top-data">
<div class="imlp-component-topcontent-icon"></div>
<div class="imlp-component-topcontent-text">
<!--33-->
登录享保障,遇虚假欺诈,百度助你维权
<!--33--><!--32-->
</div>
<div class="imlp-component-topcontent-arrow"></div><!--34-->
</div><!--31-->
<!--29--><!--28-->
<!--35-->
</div>
<!--36-->
<!--38-->
<div class="imlp-component-chatview " data-selector="chatview" style="scroll-behavior: smooth;">
<div class="component-chatview-wrapper component-chatview-wrapper--ready" style="">
<div class="empty-top"></div>
<!--41-->
<!--42-->
<!--44-->
<div class="imlp-chatview-empty"></div>
<!--44--><!--43-->
<!--46-->
<!--47-->
<!--48-->
<!--49-->
<!--50-->
<!--51-->
<!--52-->
<!--53-->
<!--54-->
<!--55-->
<!--56-->
<!--57-->
<!--59-->
<div class="imlp-combinedcard
imlp-combinedcard-HL1
imlp-combinedcard-newstyle-HC8-undefined" data-index="0" style="background-image: url(&quot;&quot;);">
<!--61-->
<!--62-->
<!--63-->
<div ref="card-children-scroll-area" class="imlp-combinedcard-content">
<!--65-->
<div class="imlp-combinedcard-list imlp-combinedcard-list-undefined">
<div class="
imlp-standard
imlp-standard-
imlp-standard-splitline1
imlp-standard-HC8
imlp-standard-theme-undefined" style="">
<div class="imlp-standard-split"></div><!--68-->
<!--69-->
<div class="imlp-standard-widgetlist imlp-standard-newstyle-">
<!--71-->
<div class="imlp-standard-widget
imlp-standard-widget-video
">
<!--72-->
<div class="widget-videobase ">
<div class="widget-videobase-inner">
<div class="widget-videobase-content">
<img class="widget-videobase-content-image" src="http://vcp.baidu.com/8d0d74bff9c9ab603024d3c9a931c993.png?isDigital=1">
<div class="widget-videobase-content-play"></div>
<div class="widget-videobase-content-title">不孕不育疾病症状</div><!--75-->
</div>
<div class="widget-videobase-play-end" style="background-image: url(&quot;http://vcp.baidu.com/8d0d74bff9c9ab603024d3c9a931c993.png?isDigital=1&quot;);">
<div class="widget-videobase-inner-background">
<div class="widget-videobase-play-endtext">本视频仅作知识科普不作就医参考,如有异议请向院方反馈</div>
<div class="widget-videobase-play-end-btngroup">
<div class="widget-videobase-play-end-repeat">
<div class="widget-videobase-play-end-item">
<div class="widget-videobase-play-end-logo"></div>
</div>
<div class="widget-videobase-play-end-btntext">重播</div>
</div>
<div class="widget-videobase-play-end-consult">
<div class="widget-videobase-play-end-item">
<div class="widget-videobase-play-end-logo"></div>
</div>
<div class="widget-videobase-play-end-btntext">咨询</div>
</div>
</div>
</div>
</div>
<div class="widget-videobase-play-replay" style="background-image: url(&quot;http://vcp.baidu.com/8d0d74bff9c9ab603024d3c9a931c993.png?isDigital=1&quot;);">
<div class="widget-videobase-inner-background">
<div class="widget-videobase-play-endtext">本视频仅作知识科普不作就医参考,如有异议请向院方反馈</div>
<div class="widget-videobase-play-replay-btn"></div>
<div class="widget-videobase-play-consult-btn">立即咨询</div>
</div>
</div>
<div class="widget-videobase-video">
<video webkit-playsinline="true" x5-playsinline="true" t7-video-player-type="h5" playsinline="true" controls="" controlslist="nodownload" poster="http://vcp.baidu.com/8d0d74bff9c9ab603024d3c9a931c993.png?isDigital=1" src="http://nadvideo2.baidu.com/8d0d74bff9c9ab603024d3c9a931c993_1920_1080.mp4"></video>
</div>
</div>
</div><!--73-->
<!--76-->
<!--77-->
<!--78-->
<!--79-->
<!--80-->
<!--81-->
<!--82-->
<!--83-->
<!--84-->
<!--85-->
<!--86-->
<!--87-->
<!--88-->
<!--89-->
<!--90-->
<!--91-->
<!--92-->
<!--93-->
<!--94-->
<!--95-->
<!--96-->
<!--97-->
<!--98-->
</div>
<!--71--><!--99-->
<div class="imlp-standard-widget
imlp-standard-widget-detailBase
">
<div class="widget-detailbase widget-detailbase-undefined" data-track="不孕不育" style="">
<div class="widget-detailbase-content">
<div class="widget-detailbase-avatar widget-detailbase-avatar-left">
<img src="https://imagelib.cdn.bcebos.com/cip_ml_picaabaea62-e822-41fe-b38b-81b948d5eb0c.jpeg_zXw500Xh500Xq90.jpeg" class="widget-detailbase-avatar-main widget-detailbase-avatar-round0">
<!--103-->
<!--104-->
<!--105-->
</div><!--102-->
<!--106-->
<div class="widget-detailbase-main widget-detailbase-main-newstyle-">
<!--108-->
<div class="widget-subtitle
widget-subtitle-newstyle-undefined" style="-webkit-line-clamp: 2; font-weight: bold;">
<!--111-->
<span class="widget-subtitle-text">不孕不育</span>
<!--112-->
<!--113-->
</div><!--109-->
<!--114-->
<!--115-->
<!--116-->
<!--117-->
<!--118-->
<!--119-->
<!--120-->
<!--121-->
<!--108--><!--122-->
<!--123-->
<!--124-->
<div class="widget-tags widget-tags-undefined
">
<!--129-->
<div class="widget-tag-str">妇产科</div><!--130-->
<!--129--><!--128-->
</div><!--127--><!--125-->
<!--131-->
<!--132-->
<!--133-->
<!--134-->
<!--135-->
<!--136-->
<!--122--><!--107-->
</div>
</div>
</div><!--100-->
<!--137-->
<!--138-->
<!--139-->
<!--140-->
<!--141-->
<!--142-->
<!--143-->
<!--144-->
<!--145-->
<!--146-->
<!--147-->
<!--148-->
<!--149-->
<!--150-->
<!--151-->
<!--152-->
<!--153-->
<!--154-->
<!--155-->
<!--156-->
<!--157-->
<!--158-->
<!--159-->
<!--160-->
</div>
<!--99--><!--161-->
<div class="imlp-standard-widget
imlp-standard-widget-tabs
">
<!--162-->
<!--163-->
<!--164-->
<!--165-->
<!--166-->
<!--167-->
<!--168-->
<!--169-->
<!--170-->
<!--171-->
<!--172-->
<div class="imlp-tabs-card
imlp-tabs-card-noTitle
imlp-tabs-card-newstyle-undefined" style="">
<div class="imlp-tabs-card-subtitle imlp-tabs-card-subtitle-noTitle">
<div class="imlp-tabs-card-subtitle-text"></div>
<!--175-->
</div>
<div class="imlp-tabs-card-tabs">
<div>
<div class="imlp-tabs-card-tab imlp-tabs-card-tab-active" data-index="0" data-tab="病因">病因</div>
<div class="imlp-tabs-card-tab-split imlp-tabs-card-tab-split-active"></div>
</div><div>
<div class="imlp-tabs-card-tab " data-index="1" data-tab="症状">症状</div>
<div class="imlp-tabs-card-tab-split "></div>
</div><div>
<div class="imlp-tabs-card-tab " data-index="2" data-tab="危害">危害</div>
<div class="imlp-tabs-card-tab-split "></div>
</div><div>
<div class="imlp-tabs-card-tab " data-index="3" data-tab="注意">注意</div>
<div class="imlp-tabs-card-tab-split "></div>
</div><div>
<div class="imlp-tabs-card-tab " data-index="4" data-tab="介绍">介绍</div>
<div class="imlp-tabs-card-tab-split "></div>
</div><!--177-->
</div><!--176-->
<!--272-->
<div>
<div class="imlp-tabs-card-description" style="-webkit-line-clamp: 6;">女性不孕原因1、排卵功能障碍2、输卵管因素3、卵巢因素4、宫颈病变5、子宫畸形等6、免疫学因素7、其他不孕原因 男性不育的病因1、精液异常精液异常主要包括有无精、少精弱精、血精、精子畸形和死精等。2、生精障碍如精索静脉曲张、先天性睾丸发育不良、隐睾、睾丸炎、内分泌疾病等因素。3、输精受阻如附睾、输精管、射精管和尿道的病变。4、射精障碍如阳痿、外生殖器畸形、外伤以致不能性生活或早泄、逆行射精。<br></div>
</div><!--273-->
<!--272--><!--178-->
<!--179-->
<!--274-->
<a class="imlp-tabs-card-consult">
<div class="imlp-tabs-card-consult-icon
">
</div><!--276-->
<span class="imlp-tabs-card-consult-text">女性不孕不育是什么原因引起的</span>
</a><!--275-->
<!--274--><!--180-->
<!--181-->
<!--182-->
</div><!--173-->
<!--183-->
<!--184-->
<!--185-->
<!--186-->
<!--187-->
<!--188-->
<!--189-->
<!--190-->
<!--191-->
<!--192-->
<!--193-->
<!--194-->
<!--195-->
</div>
<!--161--><!--70-->
</div>
<!--196-->
<div class="imlp-standard-morelink">
<div class="imlp-standard-morearea">
<div>收起</div>
<div class="imlp-standard-morearea-arrow" style="transform: rotate(-90deg);">
<div class="imlp-icon-arrow-grey">
<img src="https://imlp-static.cdn.bcebos.com/img/common/arrow-grey-more.png">
</div>
</div>
</div>
</div>
</div><!--66-->
</div>
<!--65--><!--64-->
</div>
<div class="imlp-combinedcard-morelink">
<div class="imlp-combinedcard-morearea">
<div>收起</div>
<div class="imlp-combinedcard-morearea-arrow" style="transform: rotate(-90deg);">
<div class="imlp-icon-arrow-grey">
<img src="https://imlp-static.cdn.bcebos.com/img/common/arrow-grey-more.png">
</div>
</div>
</div>
</div>
<!--199-->
</div>
<!--59--><!--58-->
<!--200-->
<!--201-->
<!--202-->
<!--203-->
<!--204-->
<!--205-->
<!--206-->
<!--207-->
<!--208-->
<!--41--><!--277-->
<!--278-->
<!--279-->
<!--280-->
<!--281-->
<!--283-->
<div class="imlp-component-chatviewbase-container
imlp-component-chatviewbase-container-show
">
<div class="imlp-component-chatviewbase row-flex">
<div class="imlp-component-chatviewbase-avatar-container">
<!--286-->
<div class="imlp-component-chatviewbase-avatar imlp-component-chatviewbase-avatar-service" style="background-image: url(&quot;https://imagelib.cdn.bcebos.com/cip_ml_picf368cd66-894c-432a-8f5e-361529b61974.png_zXw200Xh200Xq90.png&quot;);"></div>
<!--287-->
<!--286-->
</div>
<div class="imlp-component-chatviewbase-bubble-container imlp-component-chatviewbase-bubble-container-read- row-flex imlp-component-chatviewbase-bubble-container-welcome">
<div class="imlp-component-chatviewbase-bubble imlp-component-chatviewbase-text left-chatviewbase-bubble ">
<!--288--><div>
<div class="imlp-component-text "><!--291-->
您好,是想了解生殖健康与不孕不育方面的问题吗?有什么可以帮您解答的,请讲
<!--291--></div><!--289-->
</div><!--288-->
</div>
<!--292-->
</div>
</div>
<div class="imlp-component-chatviewbase-recommend-none">
<!--295-->
</div><!--293-->
<!--296-->
<!--297-->
<!--298-->
<!--299-->
</div><!--284-->
<!--300-->
<!--283--><!--282-->
<!--301-->
<!--302-->
<!--303-->
<!--304-->
<!--305-->
<!--306-->
<!--307-->
<!--308-->
<!--309-->
<!--310-->
<!--311-->
<!--312-->
<!--313-->
<!--314-->
<!--315-->
<!--316-->
<!--317-->
<!--318-->
<!--319-->
<!--277--><!--320-->
<!--321-->
<!--322-->
<!--323-->
<!--324-->
<!--326-->
<div class="imlp-component-chatviewbase-container
imlp-component-chatviewbase-container-show
">
<div class="imlp-component-chatviewbase imlp-component-chatviewbase-user row-reverse-flex">
<div class="imlp-component-chatviewbase-avatar-container">
<!--329-->
<div class="imlp-component-chatviewbase-avatar imlp-component-chatviewbase-avatar-user" style="background-image: url(&quot;https://imlp-static.cdn.bcebos.com/img/user_avatar.png&quot;);"></div>
<!--330-->
<!--329-->
</div>
<div class="imlp-component-chatviewbase-bubble-container imlp-component-chatviewbase-bubble-container-read- row-reverse-flex imlp-component-chatviewbase-bubble-container-preset">
<div class="imlp-component-chatviewbase-bubble imlp-component-chatviewbase-text right-chatviewbase-bubble ">
<!--331--><div>
<div class="imlp-component-text "><!--334-->
多久着床
<!--334--></div><!--332-->
</div><!--331-->
</div>
<div class="imlp-component-chatviewbase-status-container imlp-component-chatviewbase-status-container-preset">
<div class="imlp-component-chatviewbase-preset-status">
<span>未发送</span><!--337-->
</div><!--336-->
</div><!--335-->
</div>
</div>
<!--338-->
<!--339-->
<div class="imlp-component-chatviewbase-preset">
<div class="imlp-component-chatviewbase-preset-send">发送</div>
<div>编辑</div>
</div><!--340-->
<!--341-->
<!--342-->
</div><!--327-->
<!--343-->
<!--326--><!--325-->
<!--344-->
<!--345-->
<!--346-->
<!--347-->
<!--348-->
<!--349-->
<!--350-->
<!--351-->
<!--352-->
<!--353-->
<!--354-->
<!--355-->
<!--356-->
<!--357-->
<!--358-->
<!--359-->
<!--360-->
<!--361-->
<!--362-->
<!--320--><!--40-->
<!--209-->
<div class="empty-bottom"></div>
</div>
<!--210-->
</div>
<!--38--><!--37-->
<div class="imlp-popup-small-message" style="display: none;">
<div class="imlp-popup-small-message-avatar" style="background-image: url(&quot;https://imagelib.cdn.bcebos.com/cip_ml_picf368cd66-894c-432a-8f5e-361529b61974.png_zXw200Xh200Xq90.png&quot;);">
<!--212-->
<!--213-->
</div>
<div class="imlp-popup-small-message-content">
<div class="imlp-popup-small-message-list" style="transform: translate(0px, 0px);">
<div class="imlp-popup-small-message-item">
<div class="imlp-popup-small-message-text"><!--215-->您好,是想了解生殖健康与不孕不育方面的问题吗?有什么可以帮您解答的,请讲<!--215--></div>
</div><!--214-->
</div>
</div>
</div>
<!--217-->
<div class="imlp-component-newtypebox
imlp-component-newtypebox-hn
">
<div class="imlp-component-newtypebox-miui-back">
点击收起
</div>
<!--221-->
<div class="imlp-component-sugSlider">
<div class="imlp-component-sugSlider-box">
<!--227-->
<div class="imlp-component-sugSlider-box-item
imlp-component-sugSlider-highlight-item
">
<i class="c-icon"><!--230-->
<!--230--></i><!--229-->
<div class="imlp-item-icon imlp-item-icon-tel"></div>电话咨询
</div><!--228-->
<!--227--><!--231-->
<div class="imlp-component-sugSlider-box-item
">
<!--233-->
<div class="imlp-item-icon imlp-item-icon-url"></div>去官网
</div><!--232-->
<!--231--><!--234-->
<div class="imlp-component-sugSlider-box-item
">
<!--236-->
<div class="imlp-item-icon imlp-item-icon-qa"></div>客服满意度
</div><!--235-->
<!--234--><!--226-->
</div><!--225-->
</div><!--224--><!--222-->
<!--237-->
<!--238-->
<!--221--><!--220-->
<div class="imlp-component-newtypebox-typezone imlp-component-newtypebox-typezone-normal">
<div class="imlp-component-newtypebox-plus c-icon
"></div>
<div class="imlp-component-newtypebox-textarea-container" style="height: 19px;">
<textarea contenteditable="true" class="imlp-component-newtypebox-textarea" placeholder="请您输入..." style="height: 23px;"></textarea>
<span class="imlp-component-newtypebox-emoji
"></span><!--239-->
</div>
<div class="imlp-component-newtypebox-send" style="">
发送
</div>
</div>
<div class="imlp-component-newtypebox-bottom-box" style="display: none;">
<!--240-->
<!--241-->
</div>
<!--242-->
<!--243-->
<!--244-->
</div><!--218-->
<!--245-->
<!--217--><!--216-->
<!--247-->
<div class="imlp-component-mask imlp-component-maskouter-notice
imlp-component-mask-none
">
<!--250-->
<div class="imlp-component-masknotice">
<div class="imlp-component-masknotice-title">
用户须知
</div>
<!--252-->
<div class="imlp-component-masknotice-content">
尊敬的用户您好为便于您与医院进行线上沟通本网站ada.baidu.com/site将提供在线沟通技术服务。特此网站请您注意以下事项1、由于网络沟通场景无法使医生明确了解您的真实情况医生仅能根据您的描述内容为您提供咨询建议但任何关于疾病的网络建议都不能替代医生的面对面诊断因此请您完成咨询后选择线下就医。2、为了能够让医生给您提供更准确的建议请您在线上沟通时务必如实陈述若因您虚假陈述导致的后果均与医院、医生及本站无关。3、本站仅提供技术服务无法追踪、核查您与对方的沟通内容网友、医生言论仅代表其个人观点不代表本站立场请谨慎参阅本站不承担由此引起的法律责任。4、如果您在线上沟通过程中遇到问题请您反馈至以下邮箱iimlp@baidu.com。
</div><!--253-->
<div class="imlp-component-masknotice-btn-verify">
关闭
</div>
</div>
<!--250--><!--249-->
<!--254-->
<!--255-->
<!--256-->
<!--257-->
<!--258-->
<!--259-->
<!--260-->
<!--261-->
<!--262-->
<!--263-->
<!--264-->
<!--265-->
<!--266-->
<!--267-->
<!--268-->
<!--269-->
</div>
<!--247--><!--246-->
<!--270-->
<!--271-->
<rendermark></rendermark>
</div></div>
<link rel="stylesheet" href="//imlp-static.cdn.bcebos.com/css/imlpstyle.commons.min_8122af0.css">
<link rel="stylesheet" href="//imlp-static.cdn.bcebos.com/css/imlpstyle.iclient.min_b2cfb6f.css">
<script src="https://hectorstatic.baidu.com/408319cc28713236.js" defer="defer"></script>
<script crossorigin="" src="//imlp-static.cdn.bcebos.com/js/monitor.min_b95c48b.js"></script>
<script crossorigin="" src="https://imlp-static.cdn.bcebos.com/js/bundle_8505386.js"></script>
<script type="text/javascript" crossorigin="" src="//imlp-static.cdn.bcebos.com/js/vendor.bundle.min_f3e65c5.js"></script>
<script type="text/javascript" crossorigin="" src="//imlp-static.cdn.bcebos.com/js/sdk.bundle.min_d3f4b98.js"></script>
<script type="text/javascript" crossorigin="" src="//imlp-static.cdn.bcebos.com/js/runtime.bundle.min_b75d2e5.js"></script>
<script type="text/javascript" crossorigin="" src="//imlp-static.cdn.bcebos.com/js/commons.chunk.min_e9ee63b.js"></script>
<script type="text/javascript" crossorigin="" src="//imlp-static.cdn.bcebos.com/js/iclient.chunk.min_73450f5.js"></script><script type="text/javascript" src="https://api.map.baidu.com/api?v=2.0&amp;ak=lqHMW2OpQb3ChBcZ123HpaXlr6KBvIP8&amp;callback=initBMap"></script>
<script type="text/javascript" src="https://passport.baidu.com/static/sdk-machine/js/mkd_v2.js?v=98405"></script>
<script type="text/javascript">!function() {
window.performance && window.performance.mark && window.performance.mark('skeletonEnd');
}();
!function() {
window.bigdata = {"title":"郑州长江中医院","tt":"dJ5yLUrbEpLyYP2qdQC","header":{"title":"郑州长江中医院","logo":"https://imagelib.cdn.bcebos.com/cip_ml_picf368cd66-894c-432a-8f5e-361529b61974.png_zXw200Xh200Xq90.png"},"notification":{"text":"咨询软件由[忠仕网站商务通]提供,下述咨询内容均由[郑州长江中医院]提供,网络信息不能替代医师面诊,请谨慎参阅","payload":{"childcomponent":"notice"},"triggertext":"查看须知"},"service":{"avatar":"https://imagelib.cdn.bcebos.com/cip_ml_picf368cd66-894c-432a-8f5e-361529b61974.png_zXw200Xh200Xq90.png"},"user":{"avatar":"https://imlp-static.cdn.bcebos.com/img/user_avatar.png"},"contactNumber":"037155522983","feedbackURL":"","message":[{"name":"standard","style":"HC24","type":"titleCard","title":"","content":{"action":{"type":"async-popup","actionType":"async","mat":{"cardType":"6019","cardValue":"{\"telWidget\":{\"text\":\"电话咨询\",\"type\":\"tel\",\"value\":{\"number\":\"037155522983\",\"shortcut\":true,\"solutionID\":\"4347535\"}},\"userId\":26002235}"}},"list":[{"type":"detailBase","name":"detailBase","image":{"type":"image","src":"https://imagelib.cdn.bcebos.com/cip_ml_picf368cd66-894c-432a-8f5e-361529b61974.png_zXw200Xh200Xq90.png","round":0,"location":"left","width":56,"height":56},"info":[{"type":"subtitle","text":"郑州长江中医院","size":18,"color":"#333","lineNumber":1},{"type":"tags","value":[{"icon":"https://bj.bcebos.com/v1/imlp-static/img/tag_auth.png","theme":"blue","text":"资质认证"},{"icon":"https://bj.bcebos.com/v1/imlp-static/img/tag_star.png","theme":"gold","text":"医保定点"},"五星服务","二级医院"]}]},{"type":"tel","text":"电话咨询","value":{"number":"037155522983","shortcut":true,"solutionID":"4347535"}}]},"depth":0,"platform":"H5","log":{"style":"HC24","material":"IMLP:cip.hospital_26002235","isMainCard":true,"card_type":"hospital"},"isMainCard":true},{"name":"combined","style":"HL1","type":"card","ext":"noHasMainCard","content":{"list":[{"name":"standard","style":"HC8","type":"card","title":"不孕不育","content":{"list":[{"type":"video","name":"video","data":{"cover":"http://vcp.baidu.com/8d0d74bff9c9ab603024d3c9a931c993.png?isDigital=1","video":"http://nadvideo2.baidu.com/8d0d74bff9c9ab603024d3c9a931c993_1920_1080.mp4","title":"不孕不育疾病症状","duration":38,"id":"4061886682","capacity":"1.52","category":"医院介绍"}},{"type":"detailBase","name":"detailBase","around":1,"image":{"type":"image","src":"https://imagelib.cdn.bcebos.com/cip_ml_picaabaea62-e822-41fe-b38b-81b948d5eb0c.jpeg_zXw500Xh500Xq90.jpeg","round":0,"location":"left","width":56,"height":56},"info":[{"type":"subtitle","text":"不孕不育","size":16,"weight":"bold","color":"#333","lineNumber":2,"more":0,"arrow":false},{"type":"tags","value":["妇产科"]}]},{"type":"tabs","info":[{"tab_id":1,"log":{"ext":{"data":[{"card_type":"cip.disease","tab_data":"病因","card_id":554065}],"type":"card_tab"},"material":"LPAS:main.cip.knowledge_disease_554065_disease_cause","is_use_aigc":0},"bottom":{"data":{"theme":1,"bottomMessage":"女性不孕不育是什么原因引起的","text":"女性不孕不育是什么原因引起的"},"name":"zixun","type":"zixun"},"action":{"type":"popup","value":{"log":{"material":"none","style":"HC13","isMainCard":true},"title":"病因","type":"card","content":{"list":[{"color":"#333","type":"subtitle","size":16,"text":"病因"},{"more":1,"dataType":"abstract","type":"description","text":"女性不孕原因1、排卵功能障碍2、输卵管因素3、卵巢因素4、宫颈病变5、子宫畸形等6、免疫学因素7、其他不孕原因 男性不育的病因1、精液异常精液异常主要包括有无精、少精弱精、血精、精子畸形和死精等。2、生精障碍如精索静脉曲张、先天性睾丸发育不良、隐睾、睾丸炎、内分泌疾病等因素。3、输精受阻如附睾、输精管、射精管和尿道的病变。4、射精障碍如阳痿、外生殖器畸形、外伤以致不能性生活或早泄、逆行射精。\n","lineNumber":1000}]},"platform":"H5","mainCardTag":true,"depth":1,"name":"standard","style":"HC13"}},"text":"女性不孕原因1、排卵功能障碍2、输卵管因素3、卵巢因素4、宫颈病变5、子宫畸形等6、免疫学因素7、其他不孕原因 男性不育的病因1、精液异常精液异常主要包括有无精、少精弱精、血精、精子畸形和死精等。2、生精障碍如精索静脉曲张、先天性睾丸发育不良、隐睾、睾丸炎、内分泌疾病等因素。3、输精受阻如附睾、输精管、射精管和尿道的病变。4、射精障碍如阳痿、外生殖器畸形、外伤以致不能性生活或早泄、逆行射精。\n","lineNumber":6,"title":"病因","selected":"1"},{"tab_id":2,"log":{"ext":{"data":[{"card_type":"cip.disease","tab_data":"症状","card_id":554065}],"type":"card_tab"},"material":"LPAS:main.cip.knowledge_disease_554065_symptom","is_use_aigc":0},"bottom":{"data":{"theme":1,"bottomMessage":"女人不孕不育的症状有哪些","text":"女人不孕不育的症状有哪些"},"name":"zixun","type":"zixun"},"action":{"type":"popup","value":{"log":{"material":"none","style":"HC13","isMainCard":true},"title":"症状","type":"card","content":{"list":[{"color":"#333","type":"subtitle","size":16,"text":"症状"},{"more":1,"dataType":"abstract","type":"description","text":"男性不孕不育的症状主要表现为1、不射精精液过少2、精索静脉曲张3、白浊4、生殖器痒5.、隐睾6、阳痿早泄7.血精。女性不孕不育症状1月经紊乱2闭经3痛经4月经前后诸症5白带异常6腹痛7溢乳.\n","lineNumber":1000}]},"platform":"H5","mainCardTag":true,"depth":1,"name":"standard","style":"HC13"}},"text":"男性不孕不育的症状主要表现为1、不射精精液过少2、精索静脉曲张3、白浊4、生殖器痒5.、隐睾6、阳痿早泄7.血精。女性不孕不育症状1月经紊乱2闭经3痛经4月经前后诸症5白带异常6腹痛7溢乳.\n","lineNumber":6,"title":"症状","selected":"0"},{"tab_id":3,"log":{"ext":{"data":[{"card_type":"cip.disease","tab_data":"危害","card_id":554065}],"type":"card_tab"},"material":"LPAS:main.cip.knowledge_disease_554065_harm","is_use_aigc":0},"bottom":{"data":{"theme":1,"bottomMessage":"不孕不育什么危害","text":"不孕不育什么危害"},"name":"zixun","type":"zixun"},"action":{"type":"popup","value":{"log":{"material":"none","style":"HC13","isMainCard":true},"title":"危害","type":"card","content":{"list":[{"color":"#333","type":"subtitle","size":16,"text":"危害"},{"more":1,"dataType":"abstract","type":"description","text":"病因诊断依次是排卵障碍、精液异常、输卵管异常、不明原因的不孕、子宫内膜异位症和其他如免疫学不孕。另外因素是宫颈因素包括占所有宫颈因素超过5%的宫颈狭窄。女性不孕主要以排卵障碍,输卵管因素,子宫内膜容受性异常为主,男性不孕主要是生精异常及排精障碍。","lineNumber":1000}]},"platform":"H5","mainCardTag":true,"depth":1,"name":"standard","style":"HC13"}},"text":"病因诊断依次是排卵障碍、精液异常、输卵管异常、不明原因的不孕、子宫内膜异位症和其他如免疫学不孕。另外因素是宫颈因素包括占所有宫颈因素超过5%的宫颈狭窄。女性不孕主要以排卵障碍,输卵管因素,子宫内膜容受性异常为主,男性不孕主要是生精异常及排精障碍。","lineNumber":6,"title":"危害","selected":"0"},{"tab_id":4,"log":{"ext":{"data":[{"card_type":"cip.disease","tab_data":"注意","card_id":554065}],"type":"card_tab"},"material":"LPAS:main.cip.knowledge_disease_554065_attention","is_use_aigc":0},"bottom":{"data":{"theme":1,"bottomMessage":"不孕不育的注意事项","text":"了解不孕不育注意事项"},"name":"zixun","type":"zixun"},"action":{"type":"popup","value":{"log":{"material":"none","style":"HC13","isMainCard":true},"title":"注意","type":"card","content":{"list":[{"color":"#333","type":"subtitle","size":16,"text":"注意"},{"more":1,"dataType":"abstract","type":"description","text":"不孕不育注意要控制性生活的频度,因为过度频繁的性生活往往会使精子的质量下降,也会使女方的内分泌系统紊乱,导致月经不调,更不利于受孕。饮食要以温补为主。","lineNumber":1000}]},"platform":"H5","mainCardTag":true,"depth":1,"name":"standard","style":"HC13"}},"text":"不孕不育注意要控制性生活的频度,因为过度频繁的性生活往往会使精子的质量下降,也会使女方的内分泌系统紊乱,导致月经不调,更不利于受孕。饮食要以温补为主。","lineNumber":6,"title":"注意","selected":"0"},{"tab_id":5,"log":{"ext":{"data":[{"card_type":"cip.disease","tab_data":"介绍","card_id":554065}],"type":"card_tab"},"material":"LPAS:main.cip.knowledge_disease_554065_description","is_use_aigc":0},"bottom":{"data":{"theme":1,"bottomMessage":"不孕不育是什么意思","text":"不孕不育是什么意思"},"name":"zixun","type":"zixun"},"action":{"type":"popup","value":{"log":{"material":"none","style":"HC13","isMainCard":true},"title":"介绍","type":"card","content":{"list":[{"color":"#333","type":"subtitle","size":16,"text":"介绍"},{"more":1,"dataType":"abstract","type":"description","text":"不孕不育(分为不孕症和不育症)是指成人男女双方同居一处并有正常性生活一年以上,没有采用避孕措施的情况下几次没有怀孕就可以诊断。想要孩子同居一年未避孕还没有怀上孩子就叫不孕症。虽能受孕但因种种原因导致流产、死胎而不能获得存活婴儿的称为不育症。因男性原因导致配偶不孕者,称男性不孕症或男性不育症,习惯称男性不育。\n","lineNumber":1000}]},"platform":"H5","mainCardTag":true,"depth":1,"name":"standard","style":"HC13"}},"text":"不孕不育(分为不孕症和不育症)是指成人男女双方同居一处并有正常性生活一年以上,没有采用避孕措施的情况下几次没有怀孕就可以诊断。想要孩子同居一年未避孕还没有怀上孩子就叫不孕症。虽能受孕但因种种原因导致流产、死胎而不能获得存活婴儿的称为不育症。因男性原因导致配偶不孕者,称男性不孕症或男性不育症,习惯称男性不育。\n","lineNumber":6,"title":"介绍","selected":"0"}]}],"splitLine":1,"showCount":3},"depth":1,"platform":"H5","log":{"style":"HC8","material":"LPAS:main.cip.knowledge_disease_554065_disease_cause_symptom_harm_attention_description_rank0","isMainCard":false,"ext":{"data":[{"card_type":"cip.disease","card_id":554065}],"type":"card_click"},"card_type":"disease"},"hasBrotherCards":false,"isMainCard":false}]},"depth":0,"platform":"H5","log":{"style":"HL1[HC8]","material":"none[LPAS:main.cip.knowledge_disease_554065_disease_cause_symptom_harm_attention_description_rank0]","isMainCard":false,"ext":{"data":[{"card_type":"cip.disease","card_message":["女性不孕不育是什么原因引起的","女人不孕不育的症状有哪些","不孕不育什么危害","不孕不育的注意事项","不孕不育是什么意思"],"card_id":554065,"card_intent":["病因","症状","危害","注意","介绍"]}],"rank":0,"type":"card_data"},"card_type":"disease","is_use_aigc":0,"is_full_use_aigc":0},"isMainCard":false}],"autoConnect":1,"preview":{"on":false,"src":""},"welcomeWord":"您好,是想了解生殖健康与不孕不育方面的问题吗?有什么可以帮您解答的,请讲","presetMessage":{"enabled":1,"from":"fc-question","message":"多久着床","showType":5,"config":{"open":1,"action":"send"},"mipPresetUpdate":1},"typeboxConfig":{"inputSuggest":{"static":[{"type":"tel","text":"电话咨询","value":{"number":"037155522983","shortcut":true,"solutionID":"4347535"},"icon":"phone"},{"type":"url","text":"去官网","value":"https://sjh.baidu.com/site/fk.zzcjyyzy.com/300cea9f-6856-49ce-835d-c20195a2ce76","actionType":"","icon":""},{"type":"qa","text":"客服满意度","value":{"type":"evaluate"},"icon":""}]}},"channel":"fc","level1":"KMZ51712023","level2":"","level3":"","plat":"h5","pageTitle":"郑州长江中医院","logo":"https://imagelib.cdn.bcebos.com/cip_ml_picf368cd66-894c-432a-8f5e-361529b61974.png_zXw200Xh200Xq90.png","address":"河南省郑州市二七区碧云路9号","serviceAvatar":"https://imagelib.cdn.bcebos.com/cip_ml_picf368cd66-894c-432a-8f5e-361529b61974.png_zXw200Xh200Xq90.png","xst":"m1YKmWYYnj7jPbRkwbuanD7awHndwRfdwjN7f1K7fW0zwWFjfs715HnLPHc3nj6kn1DvPHcznNtYn1Nxn07L5TWQ8pidknopEJEi8ejWEQBY1o5F8pmKTHLczehbzVJSJq2JV8jFvTX8YUYKIHYzPW0snWc1Pf7Y5HDLPW6YPjT1PWnKUgDqnfcs0_WQ8pH2voloYJJv3nMukl3Kmv6quhnKTMfqn0DzP1RvrHDLPHc1","pageInfo":{"app":"xyl","type":13},"notifyIM":"","params":"","offlineFormMat":{"mat":"{\"ext\":{\"imid\":\"62babb67b30ad932145ca81da207ab97\"},\"service\":0,\"type\":\"E0002\",\"value\":26002235}"},"button":"","robot":{},"interaction":{"phone":{"protectPrivacy":true,"fbu":"nWmsnjczn1R","solutionID":"4347535"}},"config":{"show_type":5,"preset_message":"多久着床"},"phoneModal":false,"copConfigSwitch":{"invalidFilterAge":false},"floatCustom":{},"baozhangUrlPlus":"https://baozhang.baidu.com/guarantee/mobile?from=consult#/service/index","theme":{},"topic":{},"ip":"1.197.67.228","terminal":"H5","detain":1,"userIdBase64FC":"nWmsnjczn1R","pp":"","passportLoggedIn":false,"recommend":false,"baozhangUrl":"https://baozhang.baidu.com/guarantee-wise/#/home?from=BCP","typeboxbottombox":"","back":{"payload":{"childcomponent":""}},"sendImage":true,"mask":{"show":false,"childcomponent":"notice","data":{}},"cards":{},"aiService":1,"tplName":"bcp","page":{"init":false},"session":{"sessionid":"","connecting":false,"failed":false,"connected":false,"chatCount":0,"closed":false,"forbidden":false,"total":0,"hiddenMsg":0,"initMsg":0,"hasMissKefuMsg":false,"hasFirstKefuMsg":false,"currentUserMsgCount":0,"sendedMsgCount":0,"delayTime":400,"cardShow":true,"leaveWordShowed":false,"userMsgCache":[]},"leaveWord":{"title":"您好!您方便留下您的联系方式吗?我会尽快联系您,为您做详细解答。"},"isNeedScrollToBottom":false,"imageList":{},"notificationMap":{},"cardTrack":[],"touchmoved":false,"touchpageXY":0,"videoId":0,"historyLen":{"user":0,"service":0},"awake":"0","ssid":"","rebound":false,"fixed":true,"cipTrack":"","fixedRefs":[],"fixedRefPrefix":"","smartprogram":false,"originUrl":"","shopid":"","showInvite":true,"anti":{"captcha":{},"acid":"","strategyid":""},"passportUrl":"https://wappass.baidu.com/passport/login?tpl=lbs_msgmcp&u=","entrySiteTime":{"now":0,"enter":0},"track":{"input":{}},"videoList":[],"query":"人工授精要多少钱","mode":"product","bdtj":{"sk":"n1TdnW6srjD1nHmdnWckg1f1PNtk","ch":"fc"},"pvKey":"b0fc4a2975ab3e656c33c53c316d2329","abTest":"new_action","effectiveTest":false,"disables":["yinlibo_v7","history","yimei_popup_image","detention_new","yimei_popup_1","baozhang_btn","huanran_all","antou_reverse","newsdk","lemon_project_card","keyboard_auto","phone_modal_off","track","typebox3","link","render_off","float_phone","heatTime","telcopy","auto_invite","xhtest","video2","doctor_redirect","skeleton_first","yxt_off","phone_modal_on"],"enables":["new_action","guess","new_recommend","msg_format","new_detention_style","kefu_input_status","huanran","avatar","article_video","typebox2","dynamic3","typebox","input_case","standardcard_video","standardcard","theme","dynamic_card_3","dynamic_5","skeleton","video","heatTotal","consultWord","show_unread_message","invite","anti_js","message_read1","phone_plus_off","page_navigation","cardpopup_style","hospital_address","offline_form","115108-1","156nj-0","136822-1","142424-1"],"expidlist":["115108-1","156nj-0","136822-1","142424-1"],"expParamsList":[{"module_name":"imlp","exp_ids":["115108-1","136822-1","142424-1"],"params":[{"name":"kefu_phone_replace","value":"1"},{"name":"get_dynamic_data_exp","value":"show"},{"name":"mbot_digital_interaction_exp","value":"show"}]}],"xhinfo":{"waked":false,"xh":"","url":"//bcp.baidu.com/static/xcx/index.html","login":false,"on":false,"active":true,"ready":false,"binding":false,"binded":false,"calling":false,"scene":0,"state":0},"weixin":{},"weixinreplace":{"open":"0"},"feature":{"rebound":true,"predictor":true,"topic":true,"track":true,"invite":true,"link":true,"ai_00001":true,"dynamic_00002":true,"order_by_interest":true,"slide_menu":true,"back_notice":true,"guess_card":true,"consult_widget":true,"custom_awake":true,"iframe_back":true,"safe_number":true,"xhtest":true,"native_phone":true,"baozhang":true,"telcopy":true,"telblue":true,"native_card":true,"standardcard":true,"standardcard_video":true,"typebox":true,"typebox2":true,"typebox3":true,"kefu_input_status":true,"render_off":true,"input_case":true,"lemon_ask_doctor":true,"phone_modal_on":true,"message_read1":true,"keyboard_auto":true,"cardpopup_style":true,"offline_form":true,"huanran":true},"app":"xyl","reserve":{"solutionList":[{"type":"phoneAppointment","id":"21413114"},{"type":"hospitalAppointment","id":"21413113"}]},"megTrade":{"tradeId1st2b":2001,"tradeId2nd2b":200116},"trInfo":{"ct":"92","dct":"18"},"bcpMbot":false,"xylBot":false,"log":{"medicalInstitutionInfo":{"level":"LEVEL_2","medicare":true}},"registerInfoVO":{"apply":false,"applyType":"all"},"ucUserInfo":{"company":"郑州长江中医院"},"solutionLocalPhoneSwitch":1,"cmatch":"435","im_type":1,"typeboxtext":"多久着床","imid":"5ab0af63f266d043d00c30613ad940dd","appid":"xyl_ad","user_id":26002235,"aduserid":26002235,"content_provider":["fc:userid:26002235"],"time_before_connect":3,"manual_connect_strategy":"focus","bd_bxst":"","leavecardext":{"type":"4006","time":"3","mat":{"service":2,"cardType":"4006","cardValue":{"userid":26002235,"app":"xyl","page_type":0,"disease_name":""},"ext":{"open":"1","time":"3","action":"input"}}},"wechatModal":false,"landpageurl":"https://sjh.baidu.com/site/fk.zzcjyyzy.com/300cea9f-6856-49ce-835d-c20195a2ce76","wechat":{"account":""},"switch":{"Header":1,"Notification":0,"ChatView":1,"TypeBox":1,"Mask":1},"httpKey":"title|tt|header|notification|service|user|contactNumber|feedbackURL|message|autoConnect|preview|welcomeWord|presetMessage|typeboxConfig|channel|level1|level2|level3|plat|pageTitle|logo|address|serviceAvatar|xst|pageInfo|notifyIM|params|offlineFormMat|button|robot|interaction|config|phoneModal|copConfigSwitch|floatCustom|baozhangUrlPlus|theme|topic|ip|terminal|detain|userIdBase64FC|pp|passportLoggedIn|recommend|baozhangUrl|typeboxbottombox|back|sendImage|mask|cards|aiService|tplName|page|session|leaveWord|isNeedScrollToBottom|imageList|notificationMap|cardTrack|touchmoved|touchpageXY|videoId|historyLen|awake|ssid|rebound|fixed|cipTrack|fixedRefs|fixedRefPrefix|smartprogram|originUrl|shopid|showInvite|anti|passportUrl|entrySiteTime|track|videoList|query|mode|bdtj|pvKey|abTest|effectiveTest|disables|enables|expidlist|expParamsList|xhinfo|weixin|weixinreplace|feature|app|reserve|megTrade|trInfo|bcpMbot|xylBot|log|registerInfoVO|ucUserInfo|solutionLocalPhoneSwitch|cmatch|im_type|typeboxtext|imid|appid|user_id|aduserid|content_provider|time_before_connect|manual_connect_strategy|bd_bxst|leavecardext|wechatModal|landpageurl|wechat|switch","newSkeleton":true,"pvSt":1768447375767,"sk":"mWKhm1w9nWbLPy7BnvRvPHuWn1PWPHPWn1Dvujc1nWbkP1m3PjfLn1TdP1mL"} || {};
}();
!function() {
window.imlpapp(window.bigdata);
}();
!function() {
var enables = ["new_action","guess","new_recommend","msg_format","new_detention_style","kefu_input_status","huanran","avatar","article_video","typebox2","dynamic3","typebox","input_case","standardcard_video","standardcard","theme","dynamic_card_3","dynamic_5","skeleton","video","heatTotal","consultWord","show_unread_message","invite","anti_js","message_read1","phone_plus_off","page_navigation","cardpopup_style","hospital_address","offline_form","115108-1","156nj-0","136822-1","142424-1"] || [];
asyncLoadJs('https://xlab.baidu.com/res/bundle.i.php');
asyncLoadJs('https://dlswbr.baidu.com/heicha/mw/abclite-2046-s.js?v=' + Math.random());
function asyncLoadJs (src, crossorigin, defer) {
var sio = document.createElement("script");
sio.src = src;
crossorigin && sio.setAttribute && sio.setAttribute('crossorigin','anonymous');
if (defer) {
sio.setAttribute && sio.setAttribute('defer','defer');
document.body.appendChild(sio);
}
else {
var smo = document.getElementsByTagName("script")[0];
smo.parentNode.insertBefore(sio, smo);
}
}
}();</script><script src="https://api.map.baidu.com/getscript?v=2.0&amp;ak=lqHMW2OpQb3ChBcZ123HpaXlr6KBvIP8&amp;services=&amp;t=20260113105647"></script>
<script src="https://hector.baidu.com/a.js" defer=""></script></body></html>