web课程设计网页规划与设计:鲜花网站设计——基于HTML+CSS+JavaScript制作网上鲜花网页设计(5页)

🎉精彩专栏推荐 💭文末获取联系
✍️ 作者简介: 一个热爱把逻辑思维转变为代码的技术博主
💂 作者主页: 【主页——🚀获取更多优质源码】
🎓 web前端期末大作业: 【📚毕设项目精品实战案例 (1000套) 】
🧡 程序员有趣的告白方式:【💌HTML七夕情人节表白网页制作 (110套) 】
🌎超炫酷的Echarts大屏可视化源码:【🔰 Echarts大屏展示大数据平台可视化(150套) 】
🔖 HTML+CSS+JS实例代码: 【🗂️HTML+CSS+JS实例代码 (炫酷特效网页代码) 继续更新中…】
🎁 免费且实用的WEB前端学习指南: 【📂web前端零基础到高级学习视频教程 120G干货分享】
🥇 关于作者: 💬历任研发工程师,技术组长,教学总监;曾于2016年、2020年两度荣获CSDN年度十大博客之星。 十载寒冰,难凉热血;多年过去,历经变迁,物是人非。 然而,对于技术的探索和追求从未停歇。 💪坚持原创,热衷分享,初心未改,继往开来!



一、👨‍🎓网站题目

🌹 鲜花网页设计 、🌷鲜花商城网页制作、🌼在线花店网站、💐盆栽网、花卉网等网站的设计与制作。


二、✍️网站描述

🏷️HTML鲜花网页设计,采用DIV+CSS布局,共有多个页面,排版整洁,内容丰富,主题鲜明,首页使用CSS排版比较丰富,色彩鲜明有活力。顶部导航及底部区域背景色为100%宽度,主体内容区域宽度

🏅 一套优质的💯网页设计应该包含 (具体可根据个人要求而定)

  1. 页面分为页头、菜单导航栏(最好可下拉)、中间内容板块、页脚四大部分。
  2. 所有页面相互超链接,可到三级页面,有5-10个页面组成。
  3. 页面样式风格统一布局显示正常,不错乱,使用Div+Css技术。
  4. 菜单美观、醒目,二级菜单可正常弹出与跳转。
  5. 要有JS特效,如定时切换和手动切换图片轮播。
  6. 页面中有多媒体元素,如gif、视频、音乐,表单技术的使用。
  7. 页面清爽、美观、大方,不雷同。 。
  8. 不仅要能够把用户要求的内容呈现出来,还要满足布局良好、界面美观、配色优雅、表现形式多样等要求。

三、📚网站介绍

📔网站布局方面:计划采用目前主流的、能兼容各大主流浏览器、显示效果稳定的浮动网页布局结构。

📓网站程序方面:计划采用最新的网页编程语言HTML5+CSS3+JS程序语言完成网站的功能设计。并确保网站代码兼容目前市面上所有的主流浏览器,已达到打开后就能即时看到网站的效果。

📘网站素材方面:计划收集各大平台好看的图片素材,并精挑细选适合网页风格的图片,然后使用PS做出适合网页尺寸的图片。

📒网站文件方面:网站系统文件种类包含:html网页结构文件、css网页样式文件、js网页特效文件、images网页图片文件;

📙网页编辑方面:网页作品代码简单,可使用任意HTML编辑软件(如:Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++ 等任意html编辑软件进行运行及修改编辑等操作)。
其中:
(1)📜html文件包含:其中index.html是首页、其他html为二级页面;
(2)📑 css文件包含:css全部页面样式,文字滚动, 图片放大等;
(3)📄 js文件包含:js实现动态轮播特效, 表单提交, 点击事件等等(个别网页中运用到js代码)。


四、💠网站演示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述


五、⚙️ 网站代码

🧱HTML结构代码

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/web.js" type="text/javascript"></script>
</head>

<body>
<div class="header">
  <div class="logo"><a href=""><img src="picture/logo.jpg"></a></div>
  <div class="nav">
    <ul>
      <li><em><span>首页</span><a href="index.html">HOME</a></em></li>
      <li><em><span>关于我们</span><a href="about.html">ABOUT</a></em></li>
      <li><em><span>永生花</span><a href="flowers-ysh.html">LIVING</a></em>
          <ul>
              <li><a href="">大地农园</a></li>
              <li><a href="">厄瓜多尔</a></li>
              <li><a href="">苔藓</a></li>
              <li><a href="">荷兰进口棉花</a></li>
          </ul>
      </li>
      <li class="cur"><em><span>鲜花</span><a href="flowers.html">FLOWERS</a></em>
          <ul>
              <li><a href="">玫瑰</a></li>
              <li><a href="">多肉植物</a></li>
              <li><a href="">绣球花</a></li>
              <li><a href="">薰衣草</a></li>
              <li><a href="">太阳花</a></li>
          </ul>
      </li>
     
      </li>
    </ul>
    <div class="clear"></div>
  </div>
  <div class="header_r">
    <div class="search_form fr">
      <form>
        <input type="text" class="search_text" placeholder="产品搜索">
        <input type="button" class="search_btn" value="">
      </form>
    </div>
  </div>
  <div class="clear"></div>
</div>
<div class="pages_banner" style="background:url(images/flowers_banner.jpg) no-repeat center top">
  <div class="posi">
    <h2>鲜花</h2>
    <p><a href="">首页</a> / <a href="" class="cur">鲜花</a></p>
  </div>
</div>
<div class="wrap">
  <div class="products_bar fl">
    <div class="knowledge_form">
      <input type="text" class="search_text">
      <input type="button" class="search_btn" value="">
    </div>
    <div class="products_menu">
      <div class="title">所有产品</div>
      <ul class="menulist">
        <li class="cur"> <a href="" class="sub_links">玫瑰</a>
          <ul>
            <li><a href="">红玫瑰</a></li>
            <li><a href="">6支装玫瑰</a></li>
            <li><a href="">8支装玫瑰</a></li>
            <li><a href="">9支装玫瑰</a></li>
            <li><a href="">24支装玫瑰</a></li>
            <li><a href="">蓝色妖姬</a></li>
            <li><a href="">黄玫瑰</a></li>
          </ul>
        </li>
        <li><a href="" class="sub_links">多肉植物</a></li>
        <li><a href="" class="sub_links">绣球花</a></li>
        <li><a href="" class="sub_links">薰衣草</a></li>
        <li><a href="" class="sub_links">太阳花</a></li>
      </ul>
    </div>
  </div>
  <div class="products_main fr">
    <div class="select_box">
      <dl>
        <dt>品牌:</dt>
        <dd><a href="" class="red">全部</a> <a href="">SLYUKJ</a> <a href="">NIHDS</a> <a href="">KHIJDY</a> <a href="">AHGYDI</a> <a href="">KXNCU</a> <a href="">GUIDSD</a> <a href="">FHEI</a> <a href="">SLYUKJ</a> <a href="">NIHDS</a> <a href="">KHIJDY</a> <a href="">AHGYDI</a> <a href="">KXNCU</a> <a href="">GUIDSD</a> <a href="">FHEI</a><span class="open"></span></dd>
      </dl>
      <div class="clear"></div>
    </div>
    <div class="products_tit">
      <p align="right"><span><a href="">新品</a></span> <span><a href="">热销</a></span> <span>价格<a class="topico"></a><a class="bottomico"></a></span></p>
    </div>
    <div class="index_products">
      <div class="box">
        <ul class="clearfixed">
          <li>
            <div class="img"><img src="picture/img1.jpg">
              <div class="price_box">
                <p class="show_link"><a href="flowers-1.html">查看详细</a></p>
                <p class="price_link">¥56</p>
              </div>
            </div>
            <div class="text">
              <p><a href="flowers-1.html">产品名称</a></p>
              <p> HYDRANGEAS</p>
            </div>
          </li>
          <li>
            <div class="img"><img src="picture/img2.jpg">
              <div class="price_box">
                <p class="show_link"><a href="flowers-1.html">查看详细</a></p>
                <p class="price_link">¥56</p>
              </div>
            </div>
            <div class="text">
              <p><a href="flowers-1.html">产品名称</a></p>
              <p> HYDRANGEAS</p>
            </div>
          </li>
          <li>
            <div class="img"><img src="picture/img3.jpg">
              <div class="price_box">
                <p class="show_link"><a href="flowers-1.html">查看详细</a></p>
                <p class="price_link">¥56</p>
              </div>
            </div>
            <div class="text">
              <p><a href="">产品名称</a></p>
              <p> HYDRANGEAS</p>
            </div>
          </li>
          <li>
            <div class="img"><img src="picture/img4.jpg">
              <div class="price_box">
                <p class="show_link"><a href="">查看详细</a></p>
                <p class="price_link">¥56</p>
              </div>
            </div>
            <div class="text">
              <p><a href="">产品名称</a></p>
              <p> HYDRANGEAS</p>
            </div>
          </li>
          <li>
            <div class="img"><img src="picture/img1.jpg">
              <div class="price_box">
                <p class="show_link"><a href="">查看详细</a></p>
                <p class="price_link">¥56</p>
              </div>
            </div>
            <div class="text">
              <p><a href="">产品名称</a></p>
              <p> HYDRANGEAS</p>
            </div>
          </li>
          <li>
            <div class="img"><img src="picture/img2.jpg">
              <div class="price_box">
                <p class="show_link"><a href="">查看详细</a></p>
                <p class="price_link">¥56</p>
              </div>
            </div>
            <div class="text">
              <p><a href="">产品名称</a></p>
              <p> HYDRANGEAS</p>
            </div>
          </li>
          <li>
            <div class="img"><img src="picture/img3.jpg">
              <div class="price_box">
                <p class="show_link"><a href="">查看详细</a></p>
                <p class="price_link">¥56</p>
              </div>
            </div>
            <div class="text">
              <p><a href="">产品名称</a></p>
              <p> HYDRANGEAS</p>
            </div>
          </li>
          <li>
            <div class="img"><img src="picture/img4.jpg">
              <div class="price_box">
                <p class="show_link"><a href="">查看详细</a></p>
                <p class="price_link">¥56</p>
              </div>
            </div>
            <div class="text">
              <p><a href="">产品名称</a></p>
              <p> HYDRANGEAS</p>
            </div>
          </li>
        </ul>
        <div class="pagemenu"><span><a href="#" class="first"></a></span><a class="prev"></a><a class="current">1</a><a href="meal.php?&amp;p=2">2</a><a href="meal.php?&amp;p=3">3</a><a href="meal.php?&amp;p=4">4</a> <a class="next"></a> <a href="meal.php?&amp;p=4" class="last"></a> </div>
      </div>
    </div>
  </div>
  <div class="clear"></div>
</div>
<div class="friend_links wrap">
  <ul>
    <li><a href=""><img src="picture/links01.png"></a></li>
    <li><a href=""><img src="picture/links02.png"></a></li>
    <li><a href=""><img src="picture/links03.png"></a></li>
    <li><a href=""><img src="picture/links04.png"></a></li>
    <li><a href=""><img src="picture/links05.png"></a></li>
  </ul>
  <div class="clear"></div>
</div>
<div class="footer">
  <div class="wrap fot_info">
    <div class="fot_links fl">
      <dl>
        <dt>关于我们</dt>
        <dd><a href="">关于我们</a></dd>
        <dd><a href="">企业文化</a></dd>
        <dd><a href="">合作伙伴</a></dd>
      </dl>
      <dl>
        <dt>服务中心</dt>
        <dd><a href="">订购指南</a></dd>
        <dd><a href="">常见问题</a></dd>
        <dd><a href="">售后服务</a></dd>
      </dl>
      <dl>
        <dt>人才发展</dt>
        <dd><a href="">人才政策</a></dd>
        <dd><a href="">工作机会</a></dd>
      </dl>
      <div class="clear"></div>
    </div>
    <div class="fot_contact fr">
      <p class="font01">Contact US</p>
      <p>Tel:(021)678XX638</p>
      <p>E-mail:xxx@xxx.com</p>
      <p>地址:上海省徐家汇XXXXXXXXX89-号7号办公楼</p>
      <div class="fot_search">
        <form>
          <input type="text" class="search_text">
          <input type="button" class="search_btn" value="提交">
        </form>
      </div>
    </div>
    <div class="clear"></div>
  </div>
  <div class="fot_bottom">
    <div class="box">
      <p class="fr">COPYRXXX© 2084 MORE 备沪7636XXXI</p>
      <div class="icons">
        <ul>
          <li><a href="" class="icon01"></a></li>
          <li><a href="" class="icon02"></a>
            <div class="ico_box"><img src="picture/wx.png"><span class="cur"></span></div>
          </li>
          <li><a href="" class="icon03"></a></li>
        </ul>
        <div class="clear"></div>
      </div>
    </div>
  </div>
</div>
<div class="youce">
  <ul>
    <li><a title="返回顶部" class="yc1" href="javascript:void(0)" id="gotop" style="display: block;"></a><!--置顶--></li>
    <li><a class="yc2" href="javascript:window.external.AddFavorite(location.href,document.title);"></a><!--加入收藏--></li>
    <li> <a title="淘宝店铺" class="yc3" href="#">
      <div class="wx_box">
        <div class="yc_weixin"><span>淘宝店铺</span> </div>
      </div>
      </a><!--淘宝店铺--> 
    </li>
    <li> <a title="阿里巴巴店铺" class="yc4" href="#">
      <div class="wx_box">
        <div class="yc_weixin"><span>阿里巴巴店铺</span> </div>
      </div>
      </a><!--阿里巴巴店铺--> 
    </li>
    <li> <a title="客服" class="yc5" href="#">
      <div class="wx_box">
        <div class="yc_weixin"><span>客服</span> </div>
      </div>
      </a><!--阿里巴巴店铺--> 
    </li>
  </ul>
</div>
</body>
</html>




💒CSS样式代码


/* CSS Initializing */
pre{white-space: normal;}
body,dl,dd,ul,ol,h1,h2,h3,h4,h5,h6,form,p{margin:0px;padding:0px;}
body{font-size:12px;font-family:'微软雅黑';color: #010101;line-height:23px;background:#f0f0f0;background-size:100%;}
img{border:0;}
ul,li{list-style:none;list-style-type: none}
h1, h2, h3, h4, h5, h6 { font-size: 100% } /* 字体加粗与否,视页面标题更改 */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{ font-weight:bold;} /* 字体加粗与否,视页面标题更改 */
i,b{ font-size:12px; font-weight:normal;font-style: normal;}
input,button, textarea, select{ vertical-align: middle;}
input{ height:18px; color:#000000; line-height:18px;}
select{ height:23px; color:#000000; line-height:23px;}
button { cursor: pointer }
em, cite { font-style: normal; }
a{color:#010101;text-decoration:none;}
a:hover{color: #da0e78;text-decoration: none; list-style:none;}
.txtlf{ text-align:left;}
.txtrg{ text-align:right;}
.fl{ float:left;}
.fr{ float:right;}
.fix:after {content:'.';display:block;clear:both;visibility:hidden;height:0px;}/*清除浮动的一种方法,将此class名写在内部有浮动的标签中,便可清除子字元素的浮动,使用非常方便*/
.fix {zoom:1;}
.clearfixed:after { content: "."; clear: both; display: block; height: 0; overflow: hidden }
.clearfixed { zoom: 1 } /* 增加清除浮动样式时,要注意当前元素是否为块结构,如果不是,要添加属性 display: block */
.clear { display: block!important; float: none!important; clear: both; width: auto!important; height: 0;margin: 0 auto!important; padding: 0!important; font-size: 0; line-height: 0 }
.brank{ line-height:8px; clear:both; height:8px;margin: 0 auto!important; padding: 0!important; font-size: 0; float: none!important;}
.none{ display:none;}
table{<!--border-collapse:collapse;-->}
.header{height:112px;width:100%;position:relative;background:#fff;box-shadow:1px 1px 3px #999;}
.header .logo{width:178px;position:absolute;left:40px;top:18px;}
.header .nav{width:736px;margin:0 auto;}
.header .header_r{width:235px;position:absolute;right:40px;top:48px;}
.header .header_r a{font-size:14px;color:#010101;}
.header .header_r .search_form{width:127px;height:20px;background:url(../images/searchbg.png) no-repeat;}
.header .header_r .search_form .search_text{border:none;background:none;width:94px;padding:0 6px;height:20px;line-height:20px;vertical-align:top;}
.header .header_r .search_form .search_btn{border:none;background:none;width:20px;height:20px;cursor:pointer; vertical-align:top;}
.header .nav li{float:left;width:104px;height:112px;text-align:center;position:relative;}
.header .nav li a{display:inline-block;width:104px;height:94px;padding-top:18px;line-height:94px;font-size:14px;color:#010101;overflow:hidden}
.header .nav li span{display:block;width:104px;height:94px;padding-top:18px;line-height:94px;font-size:14px;color:#010101;overflow:hidden;margin-top:0;}
.header .nav li em{display:block;width:104px;height:112px;overflow:hidden;}
.header .nav li:hover a,.header .nav li.cur a{color:#fff;background:#dd137b;vertical-align:top;}
.header .nav li:hover span,.header .nav li.cur span{margin-top:-112px; }
.header .nav li ul{position:absolute;width:192px;background:#fff; z-index:9;display:none;}
.header .nav li ul li{width:192px;height:33px;line-height:33px;text-align:left;}
.header .nav li ul li a{height:33px;line-height:33px;width:174px;padding:0 0 0 18px;background:#fff !important;color:#010101 !important;}
.header .nav li ul li a:hover{background:#000000 !important;color:#fff !important;}
.wrap{width:1116px;margin:0 auto;}
/**首页轮播**/
.flash{height:500px;overflow:hidden;position:relative;}
.fadearry li {height:500px;}
.fadearry li a{display:block;width:100%;height:500px;}
.fadearry li img{}
.buttons{position:absolute;right:160px;bottom:16px;}
.buttons li{float:left;margin-right:8px;}
.buttons li a{float:left;background:#fff;width:14px;height:4px;display:inline-block;}
.buttons li a:hover,.buttons li.current a{background:#da0e78;}
.container{width:1000px;margin:14px auto 0;position:relative;}
/**首页关于我们**/
.index_about{padding:30px 0;}
.index_about .font01{font-size:36px;line-height:50px;font-weight:bold;}
.index_about .font02{font-size:24px;}
.index_about .info{margin-top:30px;}
/**首页分类****/
.index_fllist{height:247px;background:url(../images/flbg.jpg) no-repeat center center;}
.case_img_scroll{width:1116px;height:247px;position:relative;}
.case_img_scroll .prev,.case_img_scroll .next { position:absolute; top:105px;cursor:pointer;width:14px;height:30px;cursor:pointer; z-index:9;}
.case_img_scroll .prev:hover,.case_img_scroll .next:hover{filter:alpha(opacity=70); /*IE滤镜,透明度50%*/-moz-opacity:0.7; /*Firefox私有,透明度50%*/opacity:0.7;/*其他,透明度50%*/}
.case_img_scroll .prev{background:url(../images/leftbtn.png) no-repeat;left:-34px}
.case_img_scroll .next{background:url(../images/rightbtn.png) no-repeat; right:-34px}
.case_img_scroll .img_list { position:relative; width:1116px;overflow:hidden;padding-top:32px;}
.case_img_scroll .img_list ul { width:9999px;}
.case_img_scroll .img_list li { float:left;width:370px;margin-right:11px;text-align:center;}
.case_img_scroll .img_list li img{height:108px;width:90px;}
.case_img_scroll .img_list li p{height:65px;line-height:65px;}
.case_img_scroll .img_list li p a{font-size:14px;color:#fff;}
/**首页最新产品****/
.index_products {padding:28px 0;}
.index_products .tags_title {text-align:right;}
.index_products .tags_title .font01{font-size:36px;line-height:50px;font-weight:bold;}
.index_products .tags_title  .font02{font-size:24px;}
.index_products .box{margin-bottom:15px;}
.index_products .box .title{font-size:24px;line-height:48px;border-bottom:1px solid #a0a0a0;}
.index_products .box ul {padding:20px 0;}
.index_products .box ul li{float:left;width:278px;text-align:center;}
.index_products .box ul li .img,.index_products .box ul li .img img{width:278px;height:193px;}
.index_products .box ul li .img{position:relative;}
.index_products .box ul li .img .price_box{position:absolute;left:0;bottom:0;width:278px;display:none;}
.index_products .box ul li .img .price_box .show_link{height:56px;line-height:56px;background:url(../images/titbg01.png) repeat;}
.index_products .box ul li .img .price_box .price_link{height:40px;line-height:40px;background:#fff;}
.index_products .box ul li .text{height:54px;padding-top:12px;}
.index_products .box ul li:hover .text{background:#dd137b;color:#fff;}
.index_products .box ul li:hover .text a{color:#fff;}
a.show_more{color:#fff;font-size:18px;height:40px;line-height:40px;background:#e13f92;padding:0 36px;display:inline-block;}
a.show_more:hover,a.buy_btn:hover,.contact_btn:hover{filter:alpha(opacity=70); /*IE滤镜,透明度50%*/-moz-opacity:0.7; /*Firefox私有,透明度50%*/opacity:0.7;/*其他,透明度50%*/}
/**首页友情链接****/
.friend_links{border-top:1px solid #dcdcdc;border-bottom:1px solid #dcdcdc;padding:20px 0;}
.friend_links li{float:left;background:url(../images/line.png) no-repeat right center;width:220px;text-align:center;height:40px;}
.friend_links li a{display:block;height:61px;}
/**footer****/
.footer .fot_info{padding:35px 0 0px;}
.footer .fot_info .fot_links{width:420px;}
.footer .fot_info .fot_contact{width:500px;border-left:1px dashed #ccc;color:#838282;padding-left:34px;}
.footer .fot_info .fot_contact p{line-height:30px;}
.footer .fot_info .fot_links dl{float:left;width:128px;height:30px;line-height:30px;}
.footer .fot_info .fot_links dl dd {height:30px;line-height:30px;}
.footer .fot_info .fot_links dl dd a{color:#838282;}
.footer .fot_info .fot_contact .font01{color:#000;font-size:24px;}
.footer .fot_info .fot_contact .fot_search{margin-top:6px;}
.footer .fot_info .fot_contact .fot_search .search_text{border:1px solid #bfbfbf;height:32px;line-height:32px;padding:0 24px;width:246px;background:url(../images/list01.png) no-repeat 3px center;}
.footer .fot_info .fot_contact .fot_search .search_btn{background:#bfbfbf;color:#fff;border:1px solid #bfbfbf;height:34px;width:88px;}
.footer .fot_bottom{background:#de1e81;padding:20px 0;color:#fff;margin-top:90px;}
.footer .fot_bottom li{float:left;width:31px;margin-left:18px;position:relative;}
.footer .fot_bottom li a{display:inline-block;width:31px;height:27px;}
.footer .fot_bottom li a.icon01{background:url(../images/icon04.png) no-repeat center center;}
.footer .fot_bottom li a.icon02{background:url(../images/icon05.png) no-repeat center center;}
.footer .fot_bottom li a.icon03{background:url(../images/icon06.png) no-repeat center center;}
.footer .fot_bottom li a:hover{filter:alpha(opacity=70); /*IE滤镜,透明度50%*/-moz-opacity:0.7; /*Firefox私有,透明度50%*/opacity:0.7;/*其他,透明度50%*/}
.footer .fot_bottom li .ico_box{position:absolute;width:175px;height:118px;background:#000;padding-top:24px;text-align:center;left:-80px;top:-172px;display:none;}
.footer .fot_bottom li .ico_box .cur{display:inline-block;width:22px;height:11px;background:url(../images/list02.png) no-repeat;position:absolute;bottom:-11px;left:80px;}
.footer .fot_bottom .box{background:#dd137b;padding:10px 15px 0px 0;}
/****/
.youce{width:50px; float:right; position:fixed; right:0px; bottom:170px;
_position:absolute;
_bottom:auto;
_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));
_margin-bottom:15px; z-index:10000;
}
.youce ul li{width:50px; background:#606060;}
.youce ul li:hover{background:#dd137b;}
.youce ul li a{display:block; width:50px; height:50px;}
.youce ul li a.yc1{background:url(../images/yc_01.png) no-repeat center;}
.youce ul li a.yc2{background:url(../images/yc_02.png) no-repeat center;}
.youce ul li a.yc3{background:url(../images/yc_03.png) no-repeat center; width:50px; height:50px; position:relative;}
.youce ul li a.yc4{background:url(../images/yc_04.png) no-repeat center; width:50px; height:50px; position:relative;}
.youce ul li a.yc5{background:url(../images/yc_05.png) no-repeat center; width:50px; height:50px; position:relative;}
.youce ul li a.yc3 .wx_box,.youce ul li a.yc4 .wx_box,.youce ul li a.yc5 .wx_box{width:153px; padding-right:9px; display:none; cursor:default; position:absolute; bottom:0px; right:40px;}
.youce ul li a.yc3 .yc_weixin,.youce ul li a.yc4 .yc_weixin,.youce ul li a.yc5 .yc_weixin{background:#dd137b;}
.youce ul li a.yc3 .yc_weixin span,.youce ul li a.yc4 .yc_weixin span,.youce ul li a.yc5 .yc_weixin span{display:block; line-height:50px; color:#fff; text-align:center;}
.youce ul li a.yc3:hover .wx_box,.youce ul li a.yc4:hover .wx_box,.youce ul li a.yc5:hover .wx_box{display:inline;}
/**服务中心****/
.pages_banner{height:173px;}
.pages_banner .posi{padding:34px 0 0 54px;}
.pages_banner .fontposi,.pages_banner .fontposi a{color:#fff;}
.pages_banner .posi h2{line-height:60px;font-size:30px;font-weight:normal;}
.pages_banner .posi a.cur{ text-decoration:underline;}
.order_box .title span{margin-top:28px;}
.order_box .title span a{display:inline-block;width:82px;height:26px;text-align:center;line-height:20px;cursor:pointer;}
.order_box .title span a:hover,.order_box .title span a.cur{background:url(../images/titbg02.png) no-repeat;color:#fff;}
.white_bg{background:#fff;}
.order_box .order_cont{padding:26px 0 50px;}
/**常见问题****/
.question_box{background:url(../images/questionbg.jpg) no-repeat center top;padding-top:186px;padding-bottom:100px;}
.question_box .title{height:225px;background:url(../images/questionimg.jpg) no-repeat;}
.question_box li{border:1px solid #000;padding:26px 22px;margin-top:18px;}
.question_box li .tit{background:url(../images/list03.png) no-repeat left center;font-size:18px;padding-left:48px;cursor:pointer;}
.question_box li .question_cont{margin-top:20px;display:none;}
.question_box li.open .question_cont{display:block;}
.question_box li.open .tit{background:url(../images/list04.png) no-repeat left center;}
.service_customer{}
.service_customer .img,.service_customer .img img{width:347px;height:240px;}
.service_customer .text{width:710px;background:#fff;padding:24px;height:192px;}
.h320{height:320px;}
.about_box {position:relative;top:-68px;background:#fff url(../images/line01.jpg) repeat-x left bottom;padding-bottom:65px;}
.about_box .about_tit{height:68px;line-height:68px;background:#dd137b;color:#fff;text-align:center;font-size:30px;}
.about_box .about_mk{padding:30px 25px;}
.about_box .about_mk .tit{font-size:18px;}
/**花卉知识****/
.left_main{width:736px;margin-top:30px;}
.right_bar{width:336px;margin-top:30px;}
.knowledge_list{}
.knowledge_list li{padding-bottom:25px;border-bottom:1px solid #ccc;margin-bottom:25px;}
.knowledge_list li.noborder{border:none;}
.knowledge_list .data_time{width:166px;background:#fff;}
.knowledge_list .right_text{width:546px;}
.knowledge_list .data_time .mk01{height:64px;background:#010101;}
.knowledge_list .data_time .mk01 span.time{background:#da0e78;height:52px;color:#fff;font-size:18px;width:82px;text-align:center;display:inline-block;padding-top:12px;}
.knowledge_list .data_time .mk01 span.time em{font-size:32px;}
.knowledge_list .data_time .mk01 span.ll_box{font-size:18px;width:82px;text-align:center;display:inline-block;color:#4a4a4a;}
.knowledge_list .data_time .mk01 span.ll_box em{display:inline-block;background:url(../images/icon07.png) no-repeat;width:30px;height:25px;}
.knowledge_list .data_time .mk02{font-size:18px;height:44px;line-height:44px;}
.knowledge_list .right_text .img,.knowledge_list .right_text .img img{width:546px;height:270px;}
.knowledge_list .right_text h2{margin:18px 0;line-height:35px;}
.knowledge_list .right_text h2 a{font-size:24px;}
.read_more{color:#dd137b;font-size:14px;font-weight:bold;}
.knowledge_list .right_text .info{padding-bottom:15px;}
.knowledge_form{height:29px;border:1px solid #dcdcdc;border-bottom:2px solid #dcdcdc;border-radius:5px;}
.knowledge_form .search_text{width:290px;padding:0 6px;border:none;background:none;height:29px;line-height:29px;}
.knowledge_form .search_btn{width:25px;border:none;background:url(../images/icon08.png) no-repeat center center;height:29px;cursor:pointer;}
.menu{border:5px solid #d2d2d2;padding:4px 15px 15px;margin-top:20px;}
.menu .title{font-size:24px;color:#da0e78;line-height:40px;margin-bottom:12px;}
.menu ul li{height:40px;line-height:40px;border-bottom:1px solid #d2d2d2;}
.menu ul li a{font-size:16px;color:#666566;}
.menu ul li a:hover,.menu ul li a.cur{color:#da0e78;}
/**登录注册****/
.vip_box {margin:50px auto;}
.vip_box .title{font-size:30px;line-height:60px;}
.vip_box .vip_mk{border:1px solid #d2d2d2;background:#fff;padding:80px 70px;}
.vip_box .vip_mk .vip_form{width:464px;}
.vip_box .vip_mk .vip_img{width:322px;}
.vip_box .vip_mk .vip_form p{margin-bottom:18px;}
.vip_box .vip_mk .vip_form p label{display:inline-block;width:60px;text-align:right;font-size:14px;margin-right:8px;}
.inputtip{width:240px;height:28px;padding:0 5px;border:1px solid #a0a0a0;line-height:28px;background:#fff;}
.red{color:#dd137b;}
.reg_btn{width:250px;color:#fff;height:31px;font-size:14px;border:none;background:#dd137b;cursor:pointer;font-family:'微软雅黑';}
.w130{width:130px;}
.vip_top{background:#fff;box-shadow:1px 1px 2px #ccc;}
.vip_top .img,.vip_top .img img{width:114px;height:114px;}
.vip_top .img{padding:10px;background:#fff;position:relative;top:-28px;margin-left:28px;box-shadow:-1px 1px 2px #ccc;}
.vip_top .name_info{width:170px;margin-left:18px;}
.vip_top .name_info p{font-size:14px;line-height:70px;}
.vip_top .vip_tab{background:#f7f7f7;height:35px;line-height:35px;border-top:1px solid #ddd;}
.vip_top .vip_tab a{display:inline-block;height:35px;line-height:35px;padding:0 24px;border-right:1px solid #d2d2d2;}
.vip_top .vip_tab a:hover,.vip_top .vip_tab a.cur{background:#fff;}
.vip_main{background:#fff;box-shadow:1px 1px 2px #ccc;margin-top:10px;padding:10px 10px 50px;}
.vip_main tr td{border-bottom:1px solid #ddd;height:36px;padding:0 10px;}
/**contact****/
.contact_box {margin:58px 0 24px;}
.contact_box .contact_info{width:366px;color:#717171;font-size:14px;}
.contact_box .contact_info p{line-height:45px;border-bottom:1px solid #d2d2d2;}
.contact_box .contact_form{width:666px;margin-top:68px;}
.contact_form p{margin-bottom:15px;}
.contact_form p label{display:inline-block;width:60px;text-align:right;font-size:14px;margin-right:8px;}
.contact_btn{color:#fff;font-size:18px;height:40px;background:#e13f92;padding:0 36px;display:inline-block;border:none;cursor:pointer;font-family:'微软雅黑';}
.contact_form p .inputtip{width:540px;border:1px solid #d2d2d2;}
.contact_form p textarea{width:540px;height:140px;padding:5px;border:1px solid #d2d2d2;line-height:28px;background:#fff;}
/**人才发展****/
.join_mk {padding-top:15px;margin-bottom:20px;}
.join_mk .info{padding:34px 0;}
/**鲜花****/
.products_bar{width:218px;margin-top:54px;}
.products_bar .knowledge_form .search_text{width:170px;}
.products_main{width:840px;margin-top:54px;}
.products_menu {margin-top:12px;}
.products_menu .title{font-size:14px;height:40px;line-height:40px;}
.products_menu ul li a.sub_links{font-size:14px;height:34px;line-height:34px;display:block;background:url(../images/list05.png) no-repeat left center;padding-left:18px;}
.products_menu ul li ul{margin-left:18px;display:none;}
.products_menu ul li ul li{height:30px;line-height:30px;border-bottom:1px solid #d2d2d2;}
.products_menu ul li.cur a.sub_links{background:url(../images/list06.png) no-repeat left center;}
.products_menu ul li.cur ul{display:block;}
.select_box {font-size:14px;min-height:85px;background:url(../images/all.png) no-repeat 700px 18px;}
.select_box dt{float:left;width:50px;}
.select_box dd{float:left;width:530px;position:relative;}
.select_box dd a{display:inline-block;margin-right:10px;}
.select_box dd span.open{display:inline-block;width:70px;height:26px;background:url(../images/list07.png) no-repeat;position:absolute;right:-70px;top:0;cursor:pointer;}
.select_box dd span.open.cur{background:url(../images/list08.png) no-repeat;}
.products_tit{border-bottom:1px solid #d2d2d2;font-size:14px;color:#696868;}
.products_tit a{color:#696868;cursor:pointer;}
.products_tit span{margin:0 10px;}
.products_tit p{height:30px;line-height:30px;}
.products_tit a.topico,.products_tit a.bottomico{width:9px;height:11px;display:inline-block;margin:0 4px;}
.products_tit a.topico{background:url(../images/topico.png) no-repeat;}
.products_tit a.bottomico{background:url(../images/bottomico.png) no-repeat;}
/*分页*/
.pagemenu { padding:35px 0; text-align:right; height:30px;line-height:30px;color:#333;font-family:'微软雅黑';}
.pagemenu a { border:1px solid #ccc;  margin:0 5px; color:#666; text-decoration:none;border-radius:5px;width:23px;height:23px;line-height:23px;display:inline-block; vertical-align:top;text-align:center;}
.pagemenu a.first{background:url(../images/list11.png) no-repeat center center;}
.pagemenu a.last{background:url(../images/list12.png) no-repeat center center;}
.pagemenu a.prev{background:url(../images/list09.png) no-repeat center center;}
.pagemenu a.next{background:url(../images/list10.png) no-repeat center center;}
.pagemenu a:hover {border: #d2d2d2 1px solid; color:#dd137b;}
.pagemenu a:active {border: #4bb5e1 1px solid; color:#4bb5e1;}
.pagemenu .current {margin:0 5px;background:#fff; color:#dd137b; border:1px solid #d2d2d2; font-weight:bold;border-radius:5px;}
.pagemenu .disabled {border: #ddd 1px solid; padding:4px 8px; color:#999; margin:2px;}
/*产品详情*/
.products_info .tit,.products_show .tit{padding:16px 0;border-bottom:1px solid #a0a0a0;}
.products_info .tit img,.products_show .tit img{ vertical-align:middle;}
.products_info .info{border-bottom:1px solid #a0a0a0;padding:30px 0;}
.products_info .info .text{width:460px;}
.products_info .info .img{width:325px;padding:10px;border:1px solid #a0a0a0;}
.products_info .info .img img{width:325px;height:213px;}
.products_show {padding-bottom:50px;}
.products_buy {padding:46px 0 0px;}
.products_buy .products_img{width:592px;}
.products_buy .products_price{width:460px;padding-left:34px;height:263px;border-left:1px solid #000;}
.products_buy .products_price .font01{font-size:30px;}
.products_buy .products_price .font02{font-size:18px;line-height:36px;margin-bottom:15px;}
.products_buy .products_price .price{font-size:36px;margin:24px 0;}
a.buy_btn,a.zx_btn{display:inline-block;width:133px;height:42px;line-height:42px;text-align:center;font-size:18px;border:1px solid #000;margin-right:15px;}
a.buy_btn{background:#000000;color:#fff;}
/**产品详情*/
.indeximg_list .text{width:150px;height:260px;color:#e0e0e0;font-family:'微软雅黑';}
.indeximg_list .img_scroll_maximg { position:relative;width:397px;height:260px;float:right;}
.indeximg_list .img_list_maximg{overflow:hidden;text-align:center;}
.indeximg_list .img_list_maximg img{height:260px;width:397px; vertical-align:middle;}
.indeximg_list .img_scroll_minimg { position:relative; margin:0px auto; width:150px;height:260px;}
.indeximg_list .img_scroll_minimg .prev_minimg,.indeximg_list .img_scroll_minimg .next_minimg { position:absolute; bottom:8px;cursor:pointer; z-index:99;display:inline-block;width:22px;height:22px;}
.indeximg_list .img_scroll_minimg .prev_minimg:hover,.indeximg_list .img_scroll_minimg .next_minimg:hover {filter:alpha(opacity=70); /*IE滤镜,透明度50%*/-moz-opacity:0.7; /*Firefox私有,透明度50%*/opacity:0.7;/*其他,透明度50%*/}
.indeximg_list .img_scroll_minimg .prev_minimg { left:0px;background:url(../images/prev.png) no-repeat;}
.indeximg_list .img_scroll_minimg .next_minimg { left:26px;background:url(../images/next.png) no-repeat;}
.indeximg_list .img_list_minimg { position:relative; width:150px; height:210px; overflow:hidden;}
.indeximg_list .img_list_minimg ul { height:9999px;}
.indeximg_list .img_list_minimg li {border:none;margin-bottom:10px;width:133px;color:#fff;cursor:pointer;height:87px;padding:5px;border:1px solid #e0e0e0;}
.indeximg_list .img_list_minimg li img{height:87px;width:133px;}










六、🥇 如何让学习不再盲目

21年程序员总结给编程菜鸟的16条忠告

  1. 入门期间不要盲目看太多书,找一本网上或身边有经验程序员推荐的教材,先系统的学习。
  2. 多看帮助文档,帮助文档就像一个游戏的玩法说明通关秘籍,该看就看别太自信。
  3. 菜鸟容易被对象、属性、方法等词汇迷惑?那是你连最基础知识都还没掌握。
  4. 不要忽视没一个看起来不起眼的问题,经常总结做到举一反三。
  5. 没积累足够知识和经验前,你是开发不出一个完整项目的。
  6. 把最新技术挂在嘴边,还不如把过时技术牢记心中。
  7. 活到老学到老,只有一招半式是闯不了江湖的。
  8. 看得懂的书,仔细看;看不懂的书,硬着头皮也要看完。
  9. 书读百遍其义自见,别指望读一遍就能掌握。
  10. 请把教程里的例子亲手实践下,即使案例中有完整源码。
  11. 把在教程中看到的有意义的例子扩充;并将其切实的运用到自己的工作中。
  12. 不要漏掉教程中任何一个习题——请全部做完并做好笔记。
  13. 水平是在不断的实践中完善和发展的,你与大牛差的只是经验的积累。
  14. 每学到一个难点的时候,尝试对朋友或网上分享你的心得,让别人都能看得懂说明你真的掌握。
  15. 做好保存源文件的习惯,这些都是你的知识积累。
  16. 遇到问题不要张口就问,要学会自己找答案,比如google、百度和w3cschool上都有很多编程相关资料,你只要输入关键字就能找到你的答案。

七、🎁更多干货

1.如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “👍点赞” “✍️评论” “💙收藏” 一键三连哦!

2.💗【👇🏻👇🏻👇🏻关注我| 💬获取更多源码 | 优质文章】 带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、期末大作业模板 、等! 「在这里有好多 前端 开发者,一起探讨 前端 Node 知识,互相学习」!

3.

以上内容技术相关问题💌欢迎一起交流学习👇🏻👇🏻👇🏻💬

在这里插入图片描述

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值