<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="Width =device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes,viewport-fit=cover">
    <title>title</title>
    <meta name="keywords" content="title" />
    <meta name="description" content="title" />
    <link href="css/css_zsy.css" rel="stylesheet" type="text/css" />
    <link href="css/style.css" rel="stylesheet" type="text/css" />
    <style>
        .rdwd{
     width: 90%;
     margin: 0 auto;
     margin-top: 1rem;
}
.rdwd_title{
     text-align: center;
     color: #00c8aa;
     font-weight: bold;
     font-size: 0.7 rem;
}
.rdwd_box{
    width: 100%;
    height: 10rem;
    overflow-y: auto;
    margin-top:0.5 rem; 
}
.rdwd_box::-webkit-scrollbar {
    display: none;
}
.rdwd_box01 {
    overflow: hidden;
}

.rdwd_box02 {
    overflow: hidden;
}
.rdwd_box1
{
margin-top:0.5 rem; 
}
.rdwd_box2{
margin-top:0.5 rem;
}
.rdwd_box3{
margin-top:0.5 rem;
}
.rdwd_box1 p:nth-child(1){
    color: #fd9c2b;
    margin-bottom:0.2 rem; 
}
.rdwd_box1 p:nth-child(2) {
    color: # 666666;
    text-align: justify;
    font-size: 0.55 rem;
}
.rdwd_box2 p:nth-child(1) {
    color: #fd9c2b;
    margin-bottom:0.2 rem;
}

.rdwd_box2 p:nth-child(2) {
    color: # 666666;
    text-align: justify;
    font-size: 0.55 rem;
}
.rdwd_box3 p:nth-child(1) {
    color: #fd9c2b;
    margin-bottom:0.2 rem;
}

.rdwd_box3 p:nth-child(2) {
    color: # 666666;
    text-align: justify;
    font-size: 0.55 rem;
}

    </style>
</head>

<body>
    <! -- Hot questions and Answers -->
    <div class="rdwd">
        <div class="rdwd_title">Hotspot question and answer</div>
        <div class="rdwd_box" id="rdwd_box">
            <div class="rdwd_box01" onMouseOut="Up()" onMouseOver="Stop()" id="rdwd_box_1">
                <div class="rdwd_box1">
                    <p><span style="color:#fd9c2b; font-weight:bold; Margin - right: 0.2 rem; ">Q:</span>Is congenital heart disease treatment charge how many? Can I reimburse it?</p>
                    <p>
                        <span style="color:#666666; font-weight:bold; Margin - right: 0.2 rem.">A:</span>Taian Maternity and Child Health care hospital is the only one of the three grade a maternity and child health care hospital in Taian city, charging the same as other hospitals, in line with the charging regulations. In addition, Tai 'an Maternal and child Health Care Hospital is a medical insurance hospital, and the new rural cooperative medical insurance, urban medical insurance, international insurance have cooperation, meet the requirements of a certain proportion of reimbursement.</p>
                </div>
                <div class="rdwd_box2">
                    <p><span style="color:#fd9c2b; font-weight:bold; Margin - right: 0.2 rem.">Q:</span>How does congenital heart disease treat effect?</p>
                    <p>
                        <span style="color:#666666; font-weight:bold; Margin - right: 0.2 rem.">A:</span>There are many therapeutic methods for children with congenital heart disease, and the therapeutic effect depends on the severity of the disease and whether the treatment is timely. With the development of medical technology, simple congenital heart disease such as ventricular septal defect and ventricular septal defect can be basically restored to normal people, while the quality of life of patients with complex congenital heart disease can be greatly improved after treatment.</p>
                </div>
                <div class="rdwd_box3">
                    <p><span style="color:#fd9c2b; font-weight:bold; Margin - right: 0.2 rem.">Q:</span>Can congenital heart disease be hereditary?</p>
                    <p>
                        <span style="color:#666666; font-weight:bold; Margin - right: 0.2 rem.">A:</span>Congenital heart disease is not a definite hereditary disease, but has a certain familial tendency. Congenital heart disease can be caused by environmental factors, genetic factors or both, and genetic counseling and prenatal care are recommended during pregnancy.</p>
                </div>
            </div>
            <div class="rdwd_box02" id="rdwd_box_2"></div>
        </div>
    </div>
</body>
<script src="Js/jquery - 1.9.1. Min. Js." "></script>
<script src="js/viewport.js" type="text/javascript"></script>
<script src="js/js.js" type="text/javascript"></script>
<script>
    var box = document.getElementById("rdwd_box");
    var con1 = document.getElementById("rdwd_box_1");
    var con2 = document.getElementById("rdwd_box_2");
    var speed = 100;
    console.log(con1.innerHTML)
    con2.innerHTML = con1.innerHTML;

    function ScrollUp() {
        if (box.scrollTop >= con1.scrollHeight) {
            box.scrollTop = 0;
        } else
            box.scrollTop++;
    }
    var i = setInterval("ScrollUp()", speed);

    function Stop() {
        clearInterval(i);
    }

    function Up() {
        i = setInterval("ScrollUp()", speed);
    }








/ / adapt iphonex
/ / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
if ($(window).width() === 375 && $(window).height() === 812 && window.devicePixelRatio === 3) {$("body").css("padding-bottom"."34px");
}
/ / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
</script>

</html>
Copy the code