1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="MobileOptimized" content="240"/>
- <meta name="viewport" content="width=device-width; initial-scale=1.4; minimum-scale=1.0; maximum-scale=1.4"/>
- <title>串联式停车</title>
- <style>
- html, body, div, span, applet, object, iframe, table, caption,
- tbody, tfoot, thead, tr, th, td, del, dfn, em, font, img, ins,
- kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
- h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr,
- acronym, address, big, cite, code, dl, dt, dd, ol, ul, li,
- fieldset, form, label, legend {
- padding: 0;
- margin: 0;
- border: 0;
- list-style:none;
- }
- html {
- height:100%;
- }
- body {
- line-height:3em;
- min-height:100%;
- color:#444;
- -webkit-text-size-adjust:none;
- font-family: "微软雅黑";font-size:62.5%; }
- body, div, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td {margin:0;padding:0;}
- header, footer, section, article, nav, figure, figcaption, aside, canvas { display:block}
- ul, li {list-style:none;margin:0;padding:0;}
- input, textarea {
- margin: 0;
- padding: 0;
- border:none;
- border-radius: 0;
- -webkit-border-radius:0;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- -o-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- }
- img {border:none}
- a {text-decoration:none;color:#444}
- /*select{height:22px; line-height:18px; padding:2px 0;font-size: 12px;}*/
- input, img {vertical-align:middle}
- /* iphone按钮初始化 */
- input[type="submit"], input[type="reset"], input[type="button"], button {-webkit-appearance: none;}
- .content{ padding:15px 15px 25px 15px; font-family:"微软雅黑";}
- .content h6{font-size:1.3em; color:#5d5d5d; margin-bottom:1.1em; line-height:1.3em; margin-top:1em; }
- .content h2{ font-size:1.6em; color:#5d5d5d;}
- .content p{font-size:1.2em; color:#606060; line-height:1.5em; margin-bottom:0.5em;}
- .content span{font-size:1.2em; color:#535353; line-height:1.5em; margin-bottom:0.5em;}
- .content img{width:100%;}
- </style>
- </head>
- <body>
- <div class="content">
- <h2>串联式停车</h2>
- <p>所谓“串联式”停车位,其实指的就是沿路边设置的车头挨车尾的那种停车位。这也是令新手最容易犯晕的停车位。由于一不小心就会让自己爱车的车头与前车的车尾来次“亲密接触”。可过分关注了车头的位置,却很容易造成回轮太晚,从而导致右后轮磕在路沿上而不能停进车位。面对这种车位该如何“拆招”呢?</p>
- <p>小编支招:在路边这种“串联式”停车位上停车时,找好停车位后将车停在前车左侧的平行位置,并且两车要有大约50厘米左右的间隔。倒车进位时,自己所驾车辆的车外右后视镜与前车B柱(也就是安装驾驶席安全带的那根柱子)在一个水平面时,往右打满轮继续倒车,当自己所驾车辆和前车成45度夹角时,立刻往左打满轮继续倒车,便可以顺利将车辆停入车位了。如果进入车位后车辆位置稍有偏差,再前后修正一下位置就可以了。</p>
- </div>
- </body>
- </html>
|