38 lines
611 B
CSS
38 lines
611 B
CSS
.banner {
|
|
position: relative;
|
|
}
|
|
.img_hidden {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
.nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 0.8rem;
|
|
box-sizing: border-box;
|
|
position: fixed;
|
|
width: 100%;
|
|
top: .8rem;
|
|
z-index: 999;
|
|
}
|
|
.nav .menu {
|
|
height: 1.5rem;
|
|
padding: 0 .6rem;
|
|
background: rgba(0,0,0,0.5);
|
|
border-radius: .75rem;
|
|
}
|
|
.nav .menu a p {
|
|
line-height: 1.5rem;
|
|
font-size: .7rem;
|
|
color: #fff;
|
|
}
|
|
.banner video{
|
|
width: 100%;
|
|
}
|
|
.conten{
|
|
padding: 0px .8rem;
|
|
}
|
|
.conten h1{
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
} |