21 lines
652 B
SCSS
21 lines
652 B
SCSS
page {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
.contact_btn {
|
|
border: none !important; /* 去掉边框 */
|
|
background-color: transparent; /* 去掉背景色 */
|
|
padding: 0; /* 去掉内边距 */
|
|
line-height: 1; /* 设置行高 */
|
|
color: inherit; /* 继承父元素的颜色 */
|
|
font-size: inherit; /* 继承父元素的字体大小 */
|
|
display: inline-flex; /* 设置为行内弹性盒子,以便更好地控制布局 */
|
|
align-items: center; /* 垂直居中 */
|
|
justify-content: center; /* 水平居中 */
|
|
outline: none; /* 去掉轮廓 */
|
|
box-shadow: none; /* 去掉阴影 */
|
|
}
|
|
button:after {
|
|
border: none !important; /* 去掉边框 */
|
|
}
|