1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .file-list {
- padding: 30rpx;
- }
- .file-list .file-item {
- display: flex;
- padding: 20rpx;
- background: #fff;
- display: flex;
- align-items: center;
- border-radius: 16rpx;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- margin-bottom: 30rpx;
- }
- .file-list .file-item .file-image {
- width: 100rpx;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 30rpx;
- }
- .file-list .file-item .title {
- font-size: 32rpx;
- font-weight: 600;
- margin-bottom: 10rpx;
- }
- .file-list .file-item .sub {
- font-weight: 300;
- font-size: 24rpx;
- margin-top: 10rpx;
- color: #8c8c8c;
- }
|