2025-09-24 21:28:48 +08:00

39 lines
881 B
SCSS

.module-middle {
display: flex;
justify-content: space-between;
margin: 32rpx 0;
.button {
display: flex;
align-items: center;
width: 334rpx;
height: 148rpx;
background: #ffffff;
border-radius: 12rpx;
box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(214, 214, 214, 0.27);
.icon {
width: 80rpx;
height: 92rpx;
margin-left: 30rpx;
margin-right: 8rpx;
}
.text-container {
margin-left: 10rpx;
font-size: 32rpx;
font-weight: 500;
text-shadow: 0rpx 4rpx 8rpx 0rpx rgba(214, 214, 214, 0.27);
display: flex;
align-items: center;
.arrow {
margin-left: 19rpx;
width: 0;
height: 0;
border-radius: 2px;
border-top: 12rpx solid transparent;
border-left: 18rpx solid #000000;
border-bottom: 12rpx solid transparent;
}
}
}
}