模板:Index2026/Features/style.css
来自EaseCation Wiki
更多操作
.ftr-container {
display: flex;
gap: 10px;
width: 100%;
box-sizing: border-box;
margin-top: 10px;
height: auto;
font-size: 16px;
}
.ftr-1 {
background-color: rgba(0, 122, 230, 0.1);
backdrop-filter: blur(10px);
flex: 4;
border-radius: 10px;
padding: 15px;
box-sizing: border-box;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.ftr-2 {
background-color: rgba(255, 144, 0, 0.1);
backdrop-filter: blur(10px);
flex: 2;
border-radius: 10px;
padding: 15px;
box-sizing: border-box;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.ftr-title {
font-weight: bold;
margin-bottom: 10px;
font-size: 1.2em;
}
.ftr-subtitle {
font-weight: bold;
font-size: 1em;
}
.ftr-text {
font-size: 15px;
}
.ftr-flex-container {
display: flex;
width: 100%;
box-sizing: border-box;
gap: 10px;
}
.ftr-flex-1 {
flex: 1;
}
.ftr-flex-2 {
flex: 1;
}
/* 修改分割线颜色为 #adbedf */
.ftr-divider {
width: 1px;
background: #adbedf;
margin: 10px 0;
flex-shrink: 0;
}
@media (max-width: 768px) {
.ftr-container, .ftr-flex-container {
flex-direction: column;
height: auto;
}
.ftr-left, .ftr-right {
width: 100%;
min-height: 180px;
}
.ftr-title {
font-size: 16px;
}
.ftr-text {
font-size: 14px;
}
/* 移动端分割线修改为横线并设置颜色 */
.ftr-divider {
width: 100%;
height: 1px;
background: #adbedf;
margin: 15px 0;
}
.ftr-flex-container {
gap: 0;
}
}