From 3e2634e7c45a868a83be9cc5e35fbcd83d634165 Mon Sep 17 00:00:00 2001 From: azznbv <1841619327@qq.com> Date: Wed, 9 Dec 2020 10:27:39 +0800 Subject: [PATCH] first commit --- "\345\215\216\345\237\216/css/a.css" | 34 +++++ "\345\215\216\345\237\216/css/b.css" | 64 +++++++++ "\345\215\216\345\237\216/css/c.css" | 84 ++++++++++++ "\345\215\216\345\237\216/css/father.css" | 16 +++ "\345\215\216\345\237\216/index.html" | 153 ++++++++++++++++++++++ 5 files changed, 351 insertions(+) create mode 100644 "\345\215\216\345\237\216/css/a.css" create mode 100644 "\345\215\216\345\237\216/css/b.css" create mode 100644 "\345\215\216\345\237\216/css/c.css" create mode 100644 "\345\215\216\345\237\216/css/father.css" create mode 100644 "\345\215\216\345\237\216/index.html" diff --git "a/\345\215\216\345\237\216/css/a.css" "b/\345\215\216\345\237\216/css/a.css" new file mode 100644 index 0000000..bae2e15 --- /dev/null +++ "b/\345\215\216\345\237\216/css/a.css" @@ -0,0 +1,34 @@ +/* CSS Document */ +#a{ + width:700px; + height:153px; + margin-bottom:2px; +} +#aa{ + width:700px; + height:120px; + background-image:url(../img/banner.jpg); +} +#ab{ + width:700px; + height:33px; +} +#ab li{ + float:left; + width:100px; + text-align:center; + line-height:33px; +} +#ab a{ + text-decoration:none; + color:#664543; + background-image:url(../img/button1.jpg); + display:block; +} +#ab a:hover{ + background-image:url(../img/button1_bg.jpg); + position:relative; + right:1px; + bottom:1px; +} + diff --git "a/\345\215\216\345\237\216/css/b.css" "b/\345\215\216\345\237\216/css/b.css" new file mode 100644 index 0000000..0071608 --- /dev/null +++ "b/\345\215\216\345\237\216/css/b.css" @@ -0,0 +1,64 @@ +/* CSS Document */ +#b{ + width:180px; + height:800px; + float:left; + background:url(../img/leftbottom.jpg) no-repeat bottom white; +} +#ba{ + width:180px; + height:50px; + background-image:url(../img/login.jpg); +} +#bb{ + margin-left:5px; + width:180px; + height:70px; +} +#bb .txtStyle{ + width:100px; + border-style:none; + border-bottom:solid 1px black; +} +#bb .btnStyle{ + width:40px; +} +#bb a{ + text-decoration:none; + color:black; +} +#bb a:hover{ + position:relative; + bottom:1px; + right:1px; +} +#bc{ + width:180px; + height:50px; + background-image:url(../img/category.jpg); +} +h3{ + background-color:#FFD8D9; + font-weight:bolder; + margin-left:15px; + width:145px; +} +#bd a{ + background-image:url(../img/icon1.gif); + background-repeat:no-repeat; + text-decoration:none; + color:#000; + display:inline-block; + background-position:left center; + padding-left:15px; + border-bottom:dashed 1px black; + width:135px; + margin-top:5px; +} +#bd a:hover{ + position:relative; + bottom:1px; + right:1px; + color:#F00; + text-decoration:underline; +} diff --git "a/\345\215\216\345\237\216/css/c.css" "b/\345\215\216\345\237\216/css/c.css" new file mode 100644 index 0000000..ba17fdd --- /dev/null +++ "b/\345\215\216\345\237\216/css/c.css" @@ -0,0 +1,84 @@ +/* CSS Document */ +#c{ + width:518px; + height:800px; + float:right; +} +#ca{ + background-image:url(../img/news.jpg); + width:518px; + height:33px; +} +#cb{ + height:117px; + width:518px; +} +#cb li{ + display:inline-block; + width:170px; +} +#cc{ + background-image:url(../img/recommend.jpg); + width:518px; + height:33px; +} +#cd{ + background-color:#FFF; + width:518px; +} +#cd li{ + display:inline-block; + width:125px; +} +#cd a{ + text-decoration:none; + color:#000; +} +#c a:hover{ + position:relative; + bottom:1px; + right:1px; +} +#ce{ + margin-top:5px; + width:518px; + height:33px; + background-image:url(../img/fresh.jpg); +} +#cf{ + background-color:#FFF; + width:518px; +} +#cf li{ + display:inline-block; + width:125px; +} +#cf a{ + text-decoration:none; + color:#000; +} +#cg{ + margin-top:5px; + width:518px; + height:33px; + background-image:url(../img/tips.jpg); +} +#ch{ + background-color:#FFF; + width:518px; + height:143px; +} +#ch li{ + display:inline-block; + width:250px; + line-height:25px; +} +#ch a{ + text-decoration:none; + color:#000; + background-image:url(../img/icon2.gif); + background-repeat:no-repeat; + background-position:left center; + padding-left:15px; +} + diff --git "a/\345\215\216\345\237\216/css/father.css" "b/\345\215\216\345\237\216/css/father.css" new file mode 100644 index 0000000..caaf51f --- /dev/null +++ "b/\345\215\216\345\237\216/css/father.css" @@ -0,0 +1,16 @@ +/* CSS Document */ +*{ + margin:0; + padding:0; + font-size:12px; +} +body{ + background-color:#FFD8D9; +} +#father{ + width:700px; + margin:0 auto; +} +ul{ + list-style:none; +} diff --git "a/\345\215\216\345\237\216/index.html" "b/\345\215\216\345\237\216/index.html" new file mode 100644 index 0000000..791279a --- /dev/null +++ "b/\345\215\216\345\237\216/index.html" @@ -0,0 +1,153 @@ + + +
+ +