120 lines
2.2 KiB
Plaintext
120 lines
2.2 KiB
Plaintext
/* subpackage/student/talk/talk.wxss */
|
|
page {
|
|
height: 100vh;
|
|
background-color: #f7f7f7;
|
|
}
|
|
|
|
/* 背景图容器 */
|
|
.login-container {
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
/* background: radial-gradient(50.00% 50.00% at 50% 50%,rgb(59, 255, 235) 800rpx,rgba(38, 165, 246, 0) 100%); */
|
|
background: linear-gradient(190deg, #49a5fc 0%, #f7f7f7 800rpx, #f7f7f7 100%);
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
}
|
|
|
|
/* 背景遮罩层 */
|
|
.login-container::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
z-index: 1;
|
|
}
|
|
|
|
/* 内容区域(在遮罩上层) */
|
|
.login-content {
|
|
/* position: absolute;
|
|
z-index: 2; */
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 60rpx 40rpx;
|
|
padding-bottom: 200rpx;
|
|
}
|
|
.homework-container {
|
|
padding: 10px;
|
|
}
|
|
|
|
.homework-item {
|
|
/* display: flex; */
|
|
flex-direction: row;
|
|
margin-bottom: 15px;
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.title{
|
|
/* font-weight: bold; */
|
|
color: #999999;
|
|
font-size: 20rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 12rpx;
|
|
}
|
|
|
|
.title-before{
|
|
height: 24rpx;
|
|
border-radius: 6rpx;
|
|
width: 6rpx;
|
|
margin-right: 16rpx;
|
|
background:linear-gradient(180.00deg, rgb(38, 165, 246),rgba(38, 165, 246, 0) 100%)
|
|
}
|
|
|
|
|
|
.disbox{
|
|
display: flex;
|
|
}
|
|
|
|
.homework-thumb {
|
|
width: 200rpx;
|
|
height: 140rpx;
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
.homework-info {
|
|
flex: 1;
|
|
/* margin-left: 10px; */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.homework-title {
|
|
font-size: 24rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-right: 30rpx;
|
|
}
|
|
|
|
.homework-summary {
|
|
font-size: 14px;
|
|
color: #666;
|
|
}
|
|
|
|
.loading, .no-more {
|
|
text-align: center;
|
|
padding: 10px;
|
|
color: #999;
|
|
}
|
|
|
|
.page-content{
|
|
/* background-color: rgb(247, 247, 247); */
|
|
/* background: linear-gradient(190deg, #359cfd 0%, #f7f7f7 800rpx, #f7f7f7 100%); */
|
|
/* position: relative; */
|
|
/* padding: 0 30rpx; */
|
|
/* box-sizing: border-box; */
|
|
/* padding-bottom: 300rpx; */
|
|
/* min-height: 100vh; */
|
|
} |