• 2022-06-05 问题

    中国大学MOOC: 有关以下代码说法正确的有(    )。<style >   a{color:blue; text-decoration:none; }  a:link{color:blue;}  a:visited{color:green;}  a:hover{color:red;} </style> 

    中国大学MOOC: 有关以下代码说法正确的有(    )。<style >   a{color:blue; text-decoration:none; }  a:link{color:blue;}  a:visited{color:green;}  a:hover{color:red;} </style> 

  • 2022-05-26 问题

    下面代码使用HTML元素的id属性,将样式应用于网页上的某个段落:<p id="firstp">这是第一个段落</p> 以下关于样式规则定义正确的是(  )。 A: <style type="text/css">   p{color:red}</style> B: <style type="text/css">    #firstp {color:red}</style> C: <style type="text/css">   .firstp {color:red}</style> D: <style type="text/css">    p.firstp {color:red}</style>

    下面代码使用HTML元素的id属性,将样式应用于网页上的某个段落:<p id="firstp">这是第一个段落</p> 以下关于样式规则定义正确的是(  )。 A: <style type="text/css">   p{color:red}</style> B: <style type="text/css">    #firstp {color:red}</style> C: <style type="text/css">   .firstp {color:red}</style> D: <style type="text/css">    p.firstp {color:red}</style>

  • 2022-06-19 问题

    关于下面的代码,描述正确的是( )#menu{color: red;} A: B: menu是标记选择器 C: D: menu是元素选择器 E: F: menu是类选择器 G: H: menu是ID选择器

    关于下面的代码,描述正确的是( )#menu{color: red;} A: B: menu是标记选择器 C: D: menu是元素选择器 E: F: menu是类选择器 G: H: menu是ID选择器

  • 2022-05-26 问题

    下面代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:<P id="firstp">这是第一个段落</P>下面选项中,( )正确定义了上面代码引用的样式规则。 A: <STYLE TYPE="text/css">p{color:red}</STYLE> B: <STYLE TYPE="text/css"> C: firstp{color:red}</STYLE> D: <STYLE TYPE="text/css">.firstp {color:red}</STYLE> E: <STYLE TYPE="text/css">p.firstp{color:red}</STYLE>

    下面代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:<P id="firstp">这是第一个段落</P>下面选项中,( )正确定义了上面代码引用的样式规则。 A: <STYLE TYPE="text/css">p{color:red}</STYLE> B: <STYLE TYPE="text/css"> C: firstp{color:red}</STYLE> D: <STYLE TYPE="text/css">.firstp {color:red}</STYLE> E: <STYLE TYPE="text/css">p.firstp{color:red}</STYLE>

  • 2022-06-05 问题

    智慧职教: 有关下面代码片段的说法,( )是正确的。 <STYLE type="text/css"> A{ color:blue; text-decoration:none; } A:link{ color:blue; } A:hover{ color:red; } A:visited{ color:green; } </STYLE>

    智慧职教: 有关下面代码片段的说法,( )是正确的。 <STYLE type="text/css"> A{ color:blue; text-decoration:none; } A:link{ color:blue; } A:hover{ color:red; } A:visited{ color:green; } </STYLE>

  • 2022-05-26 问题

    在下面代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:&lt;P id=”firstp”&gt;这是一个段落&lt;/P&gt;下面选项中,( )正确将段落文字设置为红色。 A: <Style Type=”text/css”> P {color:red} </Style> B: <Style Type=”text/css”> C: firstp {color:red} </Style> D: <Style Type=”text/css”> .firstp {color:red} </Style> E: <Style Type=”text/css”> P.firstp {color:red} </Style>

    在下面代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:&lt;P id=”firstp”&gt;这是一个段落&lt;/P&gt;下面选项中,( )正确将段落文字设置为红色。 A: <Style Type=”text/css”> P {color:red} </Style> B: <Style Type=”text/css”> C: firstp {color:red} </Style> D: <Style Type=”text/css”> .firstp {color:red} </Style> E: <Style Type=”text/css”> P.firstp {color:red} </Style>

  • 2022-05-30 问题

    为了给页面所有〈h1〉标题创建样式规则,指定将所有的〈h1〉标题显示为蓝色,字体显示为Arial。下列操作正确的是(___)。 A: 〈style type="text/css"〉 h1{color: "blue"} h1{font-family: "arial"} 〈/style〉 B: 〈style type="text/css"〉 h1{color: "blue"; fontface: "arial"} 〈/style〉 C: 〈style type="text/css"〉 h1{color: "blue"; font-family: "arial"} 〈/style〉 D: 〈style type="text/css"〉 h1{color: "blue";} h1{fontface: "arial"} 〈/style〉

    为了给页面所有〈h1〉标题创建样式规则,指定将所有的〈h1〉标题显示为蓝色,字体显示为Arial。下列操作正确的是(___)。 A: 〈style type="text/css"〉 h1{color: "blue"} h1{font-family: "arial"} 〈/style〉 B: 〈style type="text/css"〉 h1{color: "blue"; fontface: "arial"} 〈/style〉 C: 〈style type="text/css"〉 h1{color: "blue"; font-family: "arial"} 〈/style〉 D: 〈style type="text/css"〉 h1{color: "blue";} h1{fontface: "arial"} 〈/style〉

  • 2022-06-06 问题

    在HTML中,使用HTML元素的class属性,将样式应用于网页上某个段落的代码如下所示:<Pclass=“firstp”>这是一个段落</P>下面选项中,()正确定义了上面代码引用的样式规则。 A: <style type="text/css">P{color:red}</style>  B: <style type="text/css">#firstp {color:red} </style>  C: <style type="text/css"> .firstp{color:red} </style>  D: <style type="text/css"> E: firstp{color:red}</style>

    在HTML中,使用HTML元素的class属性,将样式应用于网页上某个段落的代码如下所示:<Pclass=“firstp”>这是一个段落</P>下面选项中,()正确定义了上面代码引用的样式规则。 A: <style type="text/css">P{color:red}</style>  B: <style type="text/css">#firstp {color:red} </style>  C: <style type="text/css"> .firstp{color:red} </style>  D: <style type="text/css"> E: firstp{color:red}</style>

  • 2022-06-05 问题

    智慧职教: 定义内部CSS样式,则页面上段落文字的显示颜色是() <style type="text/css"> body{color:black;} .color_red{color:red;} p{color:blue;} </style>

    智慧职教: 定义内部CSS样式,则页面上段落文字的显示颜色是() <style type="text/css"> body{color:black;} .color_red{color:red;} p{color:blue;} </style>

  • 2021-04-14 问题

    <p style="font-size: medium;white-space: normal;line-height: 1.25px"><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">8.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px"><span style="font-family:宋体">下列酯在酸性条件下发生水解反应的速度次序是</span></span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">(&nbsp; &nbsp; &nbsp; )</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px"><span style="font-family:宋体">。</span></span></p><p style="font-size: medium;white-space: normal;text-indent: 32px;line-height: 1.25px"><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CO</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">C(CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">)</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">.CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CO</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">.CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CO</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH(CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">)</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">.CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CO</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub></p><p style="font-size: medium;white-space: normal;text-indent: 32px;line-height: 1.25px"><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">A.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;&nbsp;&nbsp;&nbsp;B.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span></p><p style="font-size: medium;white-space: normal;text-indent: 32px;line-height: 1.25px"><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">C.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;&nbsp;&nbsp;&nbsp;D.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span></p><p><br/></p>

    <p style="font-size: medium;white-space: normal;line-height: 1.25px"><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">8.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px"><span style="font-family:宋体">下列酯在酸性条件下发生水解反应的速度次序是</span></span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">(&nbsp; &nbsp; &nbsp; )</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px"><span style="font-family:宋体">。</span></span></p><p style="font-size: medium;white-space: normal;text-indent: 32px;line-height: 1.25px"><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CO</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">C(CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">)</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">.CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CO</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">.CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CO</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH(CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">)</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">.CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CO</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">2</span></sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">CH</span><sub><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px;vertical-align: sub">3</span></sub></p><p style="font-size: medium;white-space: normal;text-indent: 32px;line-height: 1.25px"><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">A.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;&nbsp;&nbsp;&nbsp;B.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span></p><p style="font-size: medium;white-space: normal;text-indent: 32px;line-height: 1.25px"><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">C.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&nbsp;&nbsp;&nbsp;&nbsp;D.</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">①</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">②</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">③</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">&gt;</span><span style="font-family: 宋体;line-height: 20px;color: rgb(17, 17, 17);font-size: 16px">④</span></p><p><br/></p>

  • 1 2 3 4 5 6 7 8 9 10