Commit 58a7219efcf2cf3552bde827198352574c86d137
1 parent
435e435d
add 二维码
Showing
5 changed files
with
52 additions
and
0 deletions
images/rnt_APPico.png
0 → 100644
22 KB
images/rnt_andoird.png
0 → 100755
2.53 KB
images/rnt_ios.png
0 → 100755
2.24 KB
index.html
... | ... | @@ -176,6 +176,15 @@ |
176 | 176 | <li>大数据资产管理、商业运营分析、资产经营决策建议</li> |
177 | 177 | |
178 | 178 | </ul> |
179 | + <div class="features-download"> | |
180 | + <div class="features-ico float-left rnt_pos_rel"> | |
181 | + <div class="features-apptit rnt_pos_abs">任你停APP下载</div> | |
182 | + </div> | |
183 | + <div class="features-ewm float-left"> | |
184 | + <div class="features-ewmios"></div> | |
185 | + <div class="features-ewmard"></div> | |
186 | + </div> | |
187 | + </div> | |
179 | 188 | </div> |
180 | 189 | |
181 | 190 | </div> | ... | ... |
style.css
... | ... | @@ -2507,3 +2507,46 @@ a:hover{ |
2507 | 2507 | /*=================== |
2508 | 2508 | End Footer CSS |
2509 | 2509 | =====================*/ |
2510 | +/*二维码 下载 */ | |
2511 | +.features-download{ | |
2512 | + width: 360px; | |
2513 | + height: 260px; | |
2514 | +} | |
2515 | +.features-ico{ | |
2516 | + width: 120px; | |
2517 | + height: 120px; | |
2518 | + background: url("images/rnt_APPico.png") no-repeat; | |
2519 | + margin: 48px 29px 15px 15px; | |
2520 | +} | |
2521 | +.float-left{ | |
2522 | + float: left; | |
2523 | +} | |
2524 | +.features-ewm{ | |
2525 | + width: 135px; | |
2526 | + height: 106px; | |
2527 | + margin-top: 58px; | |
2528 | +} | |
2529 | +.features-ewmios{ | |
2530 | + background: url("images/rnt_ios.png") no-repeat; | |
2531 | + width: 135px; | |
2532 | + height: 42px; | |
2533 | + cursor: pointer; | |
2534 | +} | |
2535 | +.features-ewmard{ | |
2536 | + margin-top: 18px; | |
2537 | + background: url("images/rnt_andoird.png") no-repeat; | |
2538 | + width: 135px; | |
2539 | + height: 42px; | |
2540 | + cursor: pointer; | |
2541 | +} | |
2542 | +.features-apptit{ | |
2543 | + width: 120px; | |
2544 | + height: 12px; | |
2545 | + text-align: center; | |
2546 | + font-size: 12px; | |
2547 | + font-weight: 500; | |
2548 | + color: rgba(0,0,0,0.5); | |
2549 | + bottom: -20px; | |
2550 | + left: 0px; | |
2551 | +} | |
2552 | + | ... | ... |