first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
body,ul,li,p,h2,h3,h1,h4,h5,h6{
margin: 0;
padding: 0;
}
li {
list-style: none;
}
a {
text-decoration: none;
}

View File

@@ -0,0 +1,81 @@
.header {
position: fixed;
width: 100%;
}
.header_logo {
display: flex;
width: 100%;
height: 44px;
background: #d43d3d;
align-items: center;
justify-content: space-between;
}
.header_logo .icon{
font-size: 27px;
color: #fff;
margin-left: 12px;
}
.header_logo p{
color: #fff;
font-size: 19px;
width: 60%;
}
.header_menu {
width: 100%;
overflow-x: scroll;
background: #fff;
}
.header_menu ul{
display: flex;
width: 111%;
justify-content: space-around;
height: 40px;
align-items: center;
border-bottom: 1px solid #e0e0e0;
}
.content {
padding-top: 85px;
}
.header_menu ul li{
}
.list-item {
display: flex;
justify-content: space-around;
padding: 0 10px;
align-items: center;
height: 116px;
}
.list-item .item-text h3,
.list-item-two .item-text h3{
font-size: 17px;
margin-bottom: 10px;
font-weight: initial;
}
.list-item .item-text p,
.list-item-two p{
margin-bottom: 10px;
color: #999;
font-size: 12px;
}
.list-item-two{
padding: 0 10px;
}
.list-item img,
.img-list img {
height: 91.5px;
}
.list-item-two .img-list {
overflow: hidden;
}
.img-list img {
float: left;
width: 33% !important;
}
.active {
color: #d43d3d;
}