位置: IT常识 - 正文

纯HTML+CSS小兔鲜儿网站首页(静态网页)

编辑:rootadmin
纯HTML+CSS小兔鲜儿网站首页(静态网页)

推荐整理分享纯HTML+CSS小兔鲜儿网站首页(静态网页),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!

在项目开始之前,先做好准备工作,创建这样的文件目录,css文件夹包含三个css文件,分别是base.css、common.css、index.css,images放的是固定的照片,uploads放随时更新的照片

清楚默认样式  base.css 

/* 清除默认样式的代码 *//* 去除默认的 margin 和 padding 并添加自动内减*/* { margin: 0; padding: 0; box-sizing: border-box;}/* 设置网页统一的字体大小、行高、字体系列相关属性 */body { font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif; color: #333;}/* 去除列表默认样式 */ul,ol { list-style: none;}/* 去除默认的倾斜效果 */em,i { font-style: normal;}/* 去除a标签默认下划线,并设置默认文字颜色 */a { text-decoration: none; color: #333;}/* 设置img的垂直对齐方式为居中对齐,去除img默认下间隙 */img { vertical-align: middle;}/* 去除input默认样式 */input { border: none; outline: none; color: #333;}/* 左浮动 */.fl { float: left;}/* 右浮动 */.fr { float: right;}/* 双伪元素清除法 */.clearfix::before,.clearfix::after { content: ""; display: table;}.clearfix::after { clear: both;}

小兔鲜网站每个网页都有一些共同样式

 共同样式html代码如下

<!-- 快捷导航设计 --> <div class="shortcut"> <div class="wrapper"> <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> <li><a href="#">在线客服</a></li> <li><a href="#"><span></span>手机版</a></li> </ul> </div> </div> <!-- header设计 --> <div class="header wrapper"> <!-- logo设计 --> <div class="logo"> <h1><a href="#">小兔鲜</a></h1> </div> <!-- 导航栏设计 --> <div class="nav"> <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> <li><a href="#">电器</a></li> <li><a href="#">洗护</a></li> <li><a href="#">孕婴</a></li> <li><a href="#">服装</a></li> </ul> </div> <!-- 搜索框设计 --> <div class="seacher"> <input type="text" placeholder="搜一搜"> <!-- 定位 span --> <span></span> </div> <!-- 购物车设计 --> <div class="car"> <span>2</span> </div> </div><!-- 版权设计 --> <div class="footer"> <div class="wrapper"> <div class="top"> <ul> <li> <span>价格亲民</span> </li> <li> <span>价格亲民</span> </li> <li> <span>价格亲民</span> </li> </ul> </div> <div class="bottom"> <p> <a href="#">关于我们</a> | <a href="#">帮助中心</a> | <a href="#">售后 服务</a> | <a href="#">配送与验收</a> | <a href="#">商务合作</a> | <a href="#">搜索推荐</a> | <a href="#">友情链接</a> </p> <p> CopyRight @ 小兔鲜儿 </p> </div> </div> </div>

common.css

/* 版心设计 */.wrapper{ width: 1240px; margin: 0 auto;}/* 快捷导航设计 */.shortcut{ background-color: #333; height: 52px;}.shortcut .wrapper ul { float: right;}.shortcut .wrapper li{ float: left; line-height: 52px;}.shortcut .wrapper li a{ padding: 0 15px; border-right:1px solid #5a5a5a; font-size: 14px; color: #dcdcdc;}/* 第一个不设置边框 */.shortcut .wrapper li:last-child a{ border-right:none; position: relative; padding: 0 33px;}/* 手机图片定位 */.shortcut .wrapper li span{ position: absolute; left: 13px; top: -1px; width: 11px; height: 16px; background-image: url(../images/sprites.png); background-position: -160px -69px;}.header{ height: 70px; /* background-color: pink; */ margin: 30px auto;}/* header logo */.header .logo{ float: left; width: 207px; height: 70px; /* background-color: red; */}.header .logo h1{ width: 207px; height: 70px;}.header .logo a{ display: block; width:207px; height: 70px; background-image: url('../images/logo.png'); /* 图片和盒子大小成比例 所以不会留白 */ background-size: contain; /* 让文字消失 */ font-size: 0;}/* header nav */.header .nav{ float: left; /* background-color: blue; */ margin-left: 40px; margin-top: 23px;}.header .nav ul{float: left;}.header .nav li{ float: left; margin-right: 48px;}.header .nav a{ padding-bottom: 8px;}.header .nav li a:hover{ color: #27ba9b; border-bottom: 1px solid #27ba9b;}/* header seacher */.header .seacher{ /* 子绝父相 */ position: relative; float: left; width: 172px; height: 30px; /* background-color: orange; */ margin-top: 23px; /* 82-48 */ margin-left: 34px;}.header .seacher input{ width: 172px; height: 29px; border-bottom: 1px solid #f4f4f4; padding-left: 31px;}.header .seacher span{ display: block; width: 18px; height: 18px; position: absolute; left: 3px; top: 1px; background-image: url(../images/sprites.png); background-position: -79px -69px;}.header .seacher input::placeholder{ color: #ccc; font-size: 14px;}/* header car */.header .car{ /* 子绝父相 */ position: relative; float: right; width: 23px; height: 23px; /* background-color: red; */ margin-top: 28px; margin-right: 14px; /* 精灵图 */ background-image: url('../images/sprites.png'); background-position: -119px -69px;}.header .car span{ position: absolute; width: 20px; height: 15px; border-radius: 8px; background-color: #e26237; left: 14px; top: -4px; font-size: 13px; color: #fff; text-align: center; line-height: 15px;}/* 版权设计 */.footer{ height: 342px; background-color: #333;}.footer .wrapper{ width: 1393px;}.footer .top{ height: 173px; padding-top: 59px; padding-left: 135px; /* background-color: pink; */ border-bottom: 1px solid #434343;}.footer .top ul{ float: left;}.footer .top li{ position: relative; float: left; width: 195px; height: 58px; margin-right: 300px; line-height: 58px; font-size: 28px; color: #fff; /* background-color: red; */}.footer .top li:last-child{ margin-right: 0px;}.footer .top li::before{ position:absolute; left: 0; right: 0; content: ' '; width: 58px; height: 58px; background-image: url('../images/sprites.png'); vertical-align: middle; }.footer .top li span{ margin-left: 77px;}.footer .bottom{ margin-top: 42px; text-align: center;}.footer .bottom p:last-child{ color: #999; font-size: 14px; margin-top: 15px;}.footer .bottom a{ color: #999; font-size: 14px;}

小兔鲜儿首页的主体banner部分 

 html部分

<div class="banner"> <div class="wrapper"> <div class="left"> <dl> <dt><a href="#">生鲜</a></dt> <dd><a href="#">水果</a></dd> <dd><a href="#">蔬菜</a></dd> </dl> <dl> <dt><a href="#">美食</a></dt> <dd><a href="#">四件套</a></dd> <dd><a href="#">被枕</a></dd> </dl> <dl> <dt><a href="#">居家</a></dt> <dd><a href="#">奶粉</a></dd> <dd><a href="#">玩具</a></dd> <dd><a href="#">辅食</a></dd> </dl> <dl> <dt><a href="#">洗护</a></dt> <dd><a href="#">洗发</a></dd> <dd><a href="#">洗护</a></dd> <dd><a href="#">美妆</a></dd> </dl> <dl> <dt><a href="#">孕婴</a></dt> <dd><a href="#">奶粉</a></dd> <dd><a href="#">玩具</a></dd> </dl> <dl> <dt><a href="#">服装</a></dt> <dd><a href="#">女装</a></dd> <dd><a href="#">男装</a></dd> </dl> <dl> <dt><a href="#">杂志</a></dt> <dd><a href="#">户外</a></dd> <dd><a href="#">图书</a></dd> </dl> <dl> <dt><a href="#">品牌</a></dt> <dd><a href="#">品牌制作</a></dd> </dl> </div> <!-- 圆点 --> <!-- 给li添加一个类名 方便之后配合JS使用 --> <ol> <li></li> <li class=""></li> <li></li> <li></li> <li></li> </ol> <!-- 左右箭头 --> <span class="le"><b></b></span> <span class="ri"><b></b></span> </div> </div>

banner css部分 

/* banner设计 */.banner{ height: 500px; background-color: #f5f5f5;}.banner .wrapper{ position: relative; height: 500px; background-image: url(../uploads/banner_1.png);}.banner .wrapper .left{ width: 251px; height: 500px; background-color: rgba(0,0,0,0.8);}.banner .wrapper .left dl{ width: 251px; height: 50px; padding-left: 36px; padding-right: 19px; line-height: 48px;}.banner .wrapper .left dl:hover{ background-color: #27ba9b;}.banner .wrapper .left dt{ margin-right: 15px;}.banner .wrapper .left dd{ margin-right: 5px;}.banner .wrapper dd,dt{ float: left;}.banner .wrapper dl::before{ content:'>'; float: right; font-size: 14px; color: #fff;}.banner .wrapper a{ color: #fff; font-size: 14px;}/* 轮播图圆点 */.banner .wrapper ol,li{ float: right;}.banner .wrapper ol{ position: absolute; left: 680px; bottom: 31px;}.banner .wrapper li{ width: 10px; height: 10px; border-radius: 5px; background-color: #fff; margin-right: 17px; opacity: 0.43; cursor: pointer;}.banner .wrapper .current{ opacity: 1;}/* 左右箭头 */.banner .wrapper span{ position:absolute; width: 45px; height: 45px; border-radius: 22px; background-color: #000; opacity: 0.2; text-align: center; line-height: 55px;}.banner span.le{ left: 260px; top: 228px;}.banner span.le b{ display:inline-block; width: 14px; height: 23px; background-image: url('../images/sprites.png'); background-position: 0px -70px;}.banner span.ri b{ display:inline-block; width: 14px; height: 23px; background-image: url('../images/sprites.png'); background-position: -40px -70px;}.banner span.ri{ top: 228px; right: 10px;}

小兔鲜儿首页新鲜好物板块 

纯HTML+CSS小兔鲜儿网站首页(静态网页)

html如下 

<!-- 新鲜好物设计 --> <div class="fresh wrapper"> <!-- title设计 --> <div class="title"> <h2>新鲜好玩</h2> <span>新鲜出炉 品质靠谱</span> <a href="#">查看全部&nbsp;&nbsp;></a> </div> <!-- 内容设计 --> <div class="content"> <ul> <li><a href="#"> <img src="./uploads/fresh_goods_1.jpg" alt="图片未加载"> <h3>睿米无线鱼排TOP1</h3> <p><span>¥</span>833</p> </a></li> <li><a href="#"> <img src="./uploads/fresh_goods_1.jpg" alt="图片未加载"> <h3>睿米无线鱼排TOP1</h3> <p><span>¥</span>833</p> </a></li> <li><a href="#"> <img src="./uploads/fresh_goods_1.jpg" alt="图片未加载"> <h3>睿米无线鱼排TOP1</h3> <p><span>¥</span>833</p> </a></li> <li><a href="#"> <img src="./uploads/fresh_goods_1.jpg" alt="图片未加载"> <h3>睿米无线鱼排TOP1</h3> <p><span>¥</span>833</p> </a></li> </ul> </div> </div>

css如下

/* 新鲜好物设计 */.fresh{ margin-top: 48px;}.fresh .title{ height: 29px; line-height: 1;}.fresh .title h2{ float: left; font-size:29px; color: #333; font-weight: 400;}.fresh .title span{ display: block; float: left; margin-top: 11px; margin-left: 34px; color: #999;}.fresh .title a{ display: block; float: right; margin-top: 11px; color: #999;}.fresh .content{ height: 405px; margin-top: 37px;}.fresh .content img{ width: 304px; height: 305px;}.fresh .content li{ float: left; width: 304px; height: 405px; background-color: #f0f9f4; margin-right: 8px; text-align: center;}.fresh .content li:last-child{ margin-right: 0;}.fresh .content li h3{ margin-top: 18px; margin-bottom:13px; font-size: 20px;}.fresh .content li p{ font-size: 23px; color: #9a2e1f;}.fresh .content li span{ font-size: 14px; color: #9a2e1f;}

小兔鲜儿主体热门品牌部分

 html如下

<!-- 热门品牌 --> <div class="brand"> <div class="wrapper"> <div class="title"> <h2>热门品牌</h2> <span>国际品牌 品质保证</span> <div class="singal"> <span><</span> <span>></span> </div> </div> <div class="content"> <ul> <li><a href="#"> <img src="./uploads/brand_goods_1.jpg " alt=""> </a></li> <li><a href="#"> <img src="./uploads/brand_goods_2.jpg" alt=""> </a></li> <li><a href="#"> <img src="./uploads/brand_goods_3.jpg" alt=""> </a></li> <li><a href="#"> <img src="./uploads/brand_goods_4.jpg" alt=""> </a></li> <li><a href="#"> <img src="./uploads/brand_goods_5.jpg" alt=""> </a></li> </ul> </div> </div> </div>

css如下

/* 热门品牌推荐 */.brand{ height: 466px; background-color: #f5f5f5; margin-top: 55px; padding-top: 42px;}.brand .title{ position: relative; height: 29px; line-height: 29px; margin-bottom: 45px;}.brand .title h2{ float: left; font-size:29px; color: #333; font-weight: 400;}.brand .title span{ display: block; float: left; margin-top: 3px; margin-left: 34px; color: #999;}.brand .title .singal{ width: 52px; height: 20px; position: absolute; right: 0px; top: 40px; /* background-color: green; */ line-height: 20px;}.brand .title .singal span{ display: block; width: 20px; height: 20px; float: left; margin: 0; padding: 0; margin-right: 12px; text-align: center; background-color: #e2e2e2; color: #fff;}.brand .title .singal span:last-child{ margin-right: 0; background-color: #27ba9b;}.brand .content{ height: 306px;}.brand .content li{ float: left; width: 244px; height: 306px; margin-right: 5px;}.brand .content li:last-child{ margin-right: 0;}.brand .content li img{ width: 244px; height: 306px;}

 小兔鲜儿主体生鲜部分

 html代码如下

<!-- 生鲜好物 --> <div class="discuss wrapper clearfix"> <div class="title"> <h2>生鲜</h2> <ul class="laji"> <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> <li><a href="#">T恤</a></li> <li><a href="#">内衣</a></li> </ul> <a href="#" class="all">查看全部&nbsp;&nbsp;></a> </div> <div class="content"> <div class="left"> <img src="./uploads/fresh_goods_cover.png" alt=""> </div> <div class="right"> <ul> <li><a href="#"> <img src="./uploads/fresh_goods_3.jpg" alt=""> <p>"三都港 冷冻无公害黄花鱼<br> 700g 2条 袋装 <br> 海鲜水产 "<br></p> <p class="price"><span>¥</span>88</p> </a></li> <li><a href=""> <img src="./uploads/fresh_goods_3.jpg" alt=""> <p>"三都港 冷冻无公害黄花鱼<br> 700g 2条 袋装 <br> 海鲜水产 "<br></p> <p class="price"><span>¥</span>88</p> </a></li> <li><a href=""> <img src="./uploads/fresh_goods_3.jpg" alt=""> <p>"三都港 冷冻无公害黄花鱼<br> 700g 2条 袋装 <br> 海鲜水产 "<br></p> <p class="price"><span>¥</span>88</p> </a></li> <li><a href=""> <img src="./uploads/fresh_goods_3.jpg" alt=""> <p>"三都港 冷冻无公害黄花鱼<br> 700g 2条 袋装 <br> 海鲜水产 "<br></p> <p class="price"><span>¥</span>88</p> </a></li> </ul> <ul> <li><a href=""> <img src="./uploads/fresh_goods_3.jpg" alt=""> <p>"三都港 冷冻无公害黄花鱼<br> 700g 2条 袋装 <br> 海鲜水产 "<br></p> <p class="price"><span>¥</span>88</p> </a></li> <li><a href=""> <img src="./uploads/fresh_goods_3.jpg" alt=""> <p>"三都港 冷冻无公害黄花鱼<br> 700g 2条 袋装 <br> 海鲜水产 "<br></p> <p class="price"><span>¥</span>88</p> </a></li> <li><a href=""> <img src="./uploads/fresh_goods_3.jpg" alt=""> <p>"三都港 冷冻无公害黄花鱼<br> 700g 2条 袋装 <br> 海鲜水产 "<br></p> <p class="price"><span>¥</span>88</p> </a></li> <li><a href=""> <img src="./uploads/fresh_goods_3.jpg" alt=""> <p>"三都港 冷冻无公害黄花鱼<br> 700g 2条 袋装 <br> 海鲜水产 "<br></p> <p class="price"><span>¥</span>88</p> </a></li> </ul> </div> </div> </div>

css如下 

/* 生鲜好物 */.discuss{ height: 725px; /* background-color: yellow; */}.discuss .title{ height: 29px; line-height: 29px; margin-bottom: 45px; margin-top: 34px;}.discuss .title h2{ float: left; font-size:29px; color: #333; font-weight: 400; margin-right: 674px;}.discuss .title ul,li{ float: left; margin-right: 6px;}.discuss .tit ul li:last-child{ margin-right: 0;}.discuss .title li a{ margin-top: 5px; display: block; height: 20px; padding-left: 7px; padding-right: 7px; line-height: 20px;}.discuss .title li a:hover{ background-color:#27ba9b; color: #fff;}.discuss .title .all{ float: right; display: block; margin-top: 5px; color: #999;}.discuss .content{ height: 617px; /* background-color: skyblue; */}.discuss .content .left{ float: left; width: 240px; height: 620px; /* background-color: pink; */ margin-right: 8px;}.discuss .content .left img{ width: 240px; height: 620px;}.discuss .content .right{ float:left; height: 617px; /* background-color: red; */}.discuss.content .right ul{float: left;}.discuss .content .right li { width: 242px; height: 302px; padding-top: 8px; padding-left: 29px; /* background-color: green; */ /* border: solid 2px #27ba9b; */ margin-right: 0; margin-right: 8px; margin-bottom:13px;}.discuss .content .right li:last-child{ margin-right: 0;}.discuss .content .right img{ width: 184px; height: 184px;} .discuss .content .right p{ margin-top: 7px; line-height: 1.3;}.discuss .content .right .price{ margin-top: 8px; font-size: 22px; color: #9a2e1f;}.discuss .content .right span{ font-size: 17px;}

小兔鲜儿主体联系方式部分

 html如下

<!-- 联系方式 --> <div class="connection"> <div class="wrapper"> <div class="left"> <h2>客服服务</h2> <a href="#">在线客服 <span class="one"></span></a> <a href="#">问题反馈<span class="two"></span></a> </div> <div class="middle"> <h2>关注我们</h2> <a href="#">公众号<span class="one"></span></a> <a href="#">微博<span class="two"></span></a> </div> <div class="right"> <h2>下载APP</h2> <span><img src="./favicon.ico" alt="" width="105" height="103"></span> <p>扫描二维码<br>立马下载APP</p> <a href="#">下载页面</a> </div> <div class="service"> <h2>服务热线</h2> <p class="one">400-0000-000</p> <p class="two">周一至周日 8:00-18:00</p> </div> </div> </div>

css如下

/* 联系方式设计 */.connection{ height: 302px; background-color:#fff; margin-top: 42px;}.connection .left{ float: left; width: 192px; height: 143px; margin-left: 60px; margin-top:79px; /* background-color: pink; */ text-align: center;}.connection .left h2{ margin-bottom: 16px; color: #999; font-weight: normal;}.connection .left a{ position: relative; display: block; float: left; width: 93px; height: 92px; border: 1px solid #eeeeee; margin-right: 6px; padding-top: 59px;}.left span.one{ position: absolute; width: 29px; height: 27px; left: 50%; margin-left: -15px; top: 25%; background-image: url('../images/sprites.png'); background-position: -250px -70px; }.left span.two{ position: absolute; width: 29px; height: 28px; left: 50%; margin-left: -15px; top: 25%; background-image: url('../images/sprites.png'); background-position: -350px -70px; }.connection .left a:last-child{ margin-right: 0;}.connection .middle{ width: 193px; height: 143px; float: left; /* background-color: green; */ margin-top:79px; margin-left: 118px; text-align: center;}.connection .middle h2{ margin-bottom: 16px; color: #999; font-weight: normal;}.connection .middle a{ position: relative; display: block; float: left; width: 93px; height: 92px; border: 1px solid #eeeeee; margin-right: 6px; padding-top: 59px;}.connection .middle a:last-child{ margin-right: 0;}.middle span.one{ position: absolute; width: 36px; height: 29px; background-image: url('../images/sprites.png'); background-position: -204px -14px; left: 50%; top: 20%; margin-left: -18px;}.middle span.two{ position: absolute; width: 36px; height: 29px; background-image: url('../images/sprites.png'); background-position: -299px -14px; left: 50%; top: 20%; margin-left: -18px;}.connection .right{ position: relative; width: 241px; height: 156px; float: left; /* background-color: yellow; */ margin-top:79px; margin-left: 93px; text-align: center;}.connection .right h2{ margin-bottom: 16px; color: #999; font-weight: normal;}.connection .right span{ position: absolute; float: left; width: 116px; height: 116px; border: 1px solid #f3f3f3; padding: 7px 4px 6px 7px; left: 0px; top: 40px; text-align: center;}.connection .right p{ text-align: left; margin-left: 142px; font-size: 14px; color: #999;}.connection .right a{ display: block; width: 103px; height: 32px; background-color: #27ba9b; margin-left: 138px; margin-top: 16px; line-height: 32px; font-size: 14px; color: #fff;}.connection .service{ width: 160px; height: 122px; float: left; /* background-color: orange; */ margin-top:79px; margin-left: 109px; text-align: center;}.connection .service h2{ color: #999; font-weight: normal;}.connection .service p.one{ margin-top: 30px; font-size: 22px; color: #666;}.connection .service p.two{ font-size: 15px; color: #999;}

 以上就是小兔鲜儿项目的展示,排版相似的地方就不写了,排版方法有很多,不止上面一种。

本文链接地址:https://www.jiuchutong.com/zhishi/299042.html 转载请保留说明!

上一篇:Java+JSP+Mysql+Tomcat实现Web图书管理系统

下一篇:nvm切换node版本(nvm切换node版本后node -v报错)

  • 综合所得税和单独计税
  • 上月留抵进项本月抵扣会计分录
  • 固定资产二级科目取消原因
  • 以前年度损益调整
  • 个税计提和发放分录
  • 期末现金及现金等价物余额公式
  • 一般纳税人减免增值税政策
  • 邮政能否为固定业户代开增值税普通发票
  • 工业企业提供劳务收入会计分录
  • 委托外单位加工发出的材料分录
  • 供货商对账单跨月返利怎么做账?
  • 公司会计怎么做
  • 电梯提供安装的增值税税率最新的
  • 应收账款零头没有收到如何账务处理
  • 外贸企业采购货物会计分录
  • 代发工资的手续费是多少
  • 进口货物付款计入哪个科目?
  • 生产成本 营业成本 营业费用
  • 营业执照首次年报
  • 外贸 内销
  • 建筑服务安装费发票需要备注什么
  • 固定资产进项发票可以抵扣吗为什么
  • 增值税防伪税控系统管理办法
  • 银行利息收入的账务处理
  • 个人贷款走公司账户流程
  • 股东分红账务处理后报表怎么处理
  • 人力成本费用率和人工成本利润率
  • 股票股利和现金股利的共同点
  • 母公司给全资子公司担保需要决议吗
  • 保护地址是什么意思
  • 车前草的功效与作用及禁忌症
  • 材料成本差异属于成本类账户吗
  • 什么是企业最佳融资方式
  • 员工交通补贴需要发票吗
  • 西班牙的藏红花好不好
  • 【小沐学C++】C++ MFC中嵌入web网页控件(WebBrowser、WebView2、CEF3)
  • 什么是前后端分离的方式
  • 建筑业预缴的个人所得税怎么在申报表体现
  • github ci/cd
  • 3d representation
  • 消费者如何鉴别美的乐享三代风管机
  • 房屋租赁公司装修要求
  • 海关缴款书当月能查到吗
  • 营业收入和营业外收入的区别
  • python中numpy数组和列表的区别
  • 房地产开发公司组织架构
  • 扶贫资金是如何发放的
  • 主要业务是生产销售家电
  • SQL SERVER 2000通讯管道后复用劫持
  • 公司可以打款给中间人
  • 一般纳税人之外还有什么
  • 分公司计提递延所得税吗
  • 去年城建税多计提了怎么办
  • 间接人工费用计入什么科目
  • 小规模公司销项发票税额记到哪里了
  • 监控 固定资产
  • 业务招待费的进项能抵扣吗
  • 奖金如何做账分录
  • 公司团体体检一般什么价位
  • linux 查看numa
  • linux中链接
  • xp系统怎么卸载程序
  • linux中如何配置环境变量
  • winxp家庭版和专业版的区别
  • windows保护电脑
  • win8系统升级后怎么退回
  • cocos2dx解密
  • js编程实例
  • 批处理 /b
  • python科学绘图
  • js获取父级元素
  • androidcontext传值
  • 如何在标题栏显示图片
  • android popupwindow使用
  • 重新加载activity
  • python定义全局
  • 税务巡视组一般检查什么
  • 个人的房产出租征收什么税
  • 公司员工开始摆烂怎么办
  • 融资租赁公司购入老旧租赁资产会计处理
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设