睿能科技
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
896 B

/* 全局底座(base) */
/* 页内锚点平滑滚动:html + body 都写,兼容不同浏览器的滚动根节点 */
html {
font-size: 16px;
scrollbar-gutter: stable;
}
html.lenis.lenis-stopped {
overflow: auto !important;
}
html.is-scroll-locked .site-header {
width: auto;
right: var(--scroll-lock-compensation, 0px);
}
html,body{
width: 100%;
height: 100%;
}
body{
overflow-x: hidden;
}
::-webkit-scrollbar {
/* display: none; */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
button{
border: none;
outline: none;
background: none;
cursor: pointer;
}
a {
text-decoration: none;
}
ul,p,ol,h1,h2,h3,h4,h5,h6,figure{
padding: 0;
margin: 0;
}
li{
list-style: none;
}
body {
background: #fff;
}
img {
object-fit: cover;
user-select: none;
}
.s-btn:hover,button:hover {
transition: transform 0.3s ease;
transform: translateY(1px);
}