直播记录/styles.css
< 直播记录
.title_block{ padding: 2px; padding-left: 8px; background-color: #9147ff; display: flex; box-shadow: 0 2px 5px #aaa; height: 32px; align-items: center; color: #fff; } /* 父容器样式 */ .base_block { border: 2px outset #9147ff; background-color: rgba(255, 255, 255, 0.1); box-shadow: 0 2px 5px #aaa; display: flex; justify-content: space-between; /* 确保子元素均匀分布 */ flex-wrap: wrap; /* 允许子元素换行 */ padding: 15px; gap: 10px; /* 子元素之间的间距 */ } /* 子元素样式 */ .item { flex: 1 1 20%; /* 每行最多 4 个子元素 */ max-width: 360px; /* 最大宽度 */ min-width: 290px; /* 最小宽度 */ height: 124px; padding: 0; display: flex; box-shadow: 0 2px 5px #aaa; transition: all 0.3s ease-in-out; overflow: hidden; position: relative; margin: 3px; } .item1{ background-color: rgba(145, 71, 255, 0.8); } .item2{ background-color: rgba(255, 50, 80, 0.8); } .item3{ background-color: rgba(50, 100, 255, 0.8); } .item4{ background-color: rgba(255, 220, 50, 0.8); } .item5{ background-color: rgba(50, 255, 150, 0.8); } .item6{ background-color: rgba(50, 230, 255, 0.8); } .item7{ background-color: rgba(120, 120, 120, 0.8); } .item > a{ position: relative; display: flex; width: 100%; height: 100%; justify-content: right; align-items: flex-end; font-size: 42px; color: #ffffff; transition: all 0.3s ease-in-out; padding-right:0; text-decoration: none; } .item:hover > a{ padding-right:26px; text-decoration: none; } a > .long{ max-width:90%; font-size: 24px; text-align: right; } .item:hover{ background-color: rgba(0, 0, 0, 0.6); } .item > .img{ position: absolute; mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); transition: all 1.3s ease-in-out; } .item:hover > .img{ mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); } @media screen and (max-width: 1770px) { .base_block { padding-left:15px; padding-right:15px; } .item7{ max-width:100%; } } @media screen and (min-width: 1770px) { .base_block { padding-left:250px; padding-right:250px; } .item7{ max-width:46.5%; } } /* 表格页通用样式 */ /* 针对移动端设备的样式 */ @media screen { .collapsible-block-js { /* 包裹表格的父元素 */ min-width: 420px; /* 父元素宽度始终与屏幕宽度一致 */ overflow-x: auto; /* 确保父元素可以横向滚动(如果需要) */ display: inline-block; overflow:visible } .mw-content-ltr{ overflow-x: hidden; max-width:50%; } body{ overflow-x: hidden; max-width:90%; } table { transform-origin: top left; /* 缩放原点设置为左上角 */ max-width: none; /* 防止表格宽度被限制 */ } @media (max-width: 1024px) { table { transform: scale(0.7); /* 1024px 以下时缩放 90% */ } } @media (max-width: 768px) { table { transform: scale(0.6); /* 768px 以下时缩放 80% */ } } @media (max-width: 480px) { table { transform: scale(0.5); /* 480px 以下时缩放 70% */ } } }