12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .status-tag {
- height: 52rpx;
- border-radius: 52rpx;
- line-height: 52rpx;
- padding: 0 30rpx;
- font-size: 24rpx;
- color: #fff;
- }
- .status-tag.success {
- background-color: #389e0d;
- }
- .status-tag.primary {
- background-color: #08979c;
- }
- .common-list {
- padding: 0 30rpx;
- box-sizing: border-box;
- }
- .common-list .common-item {
- background-color: #ffffff;
- border-radius: 16rpx;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- padding: 30rpx;
- position: relative;
- }
- .common-list .common-item .icon {
- position: absolute;
- top: 30rpx;
- right: 30rpx;
- }
- .common-list .common-item .title {
- font-size: 32rpx;
- font-weight: 600;
- }
- .common-list .common-item .date {
- font-size: 24rpx;
- color: #8c8c8c;
- margin: 10rpx 0;
- }
- .common-list .common-item .space {
- font-size: 24rpx;
- }
- .common-list .common-item .other {
- margin-top: 20rpx;
- }
- .common-list .common-item .other .item {
- margin-top: 10rpx;
- }
- .common-list .common-item .other .label {
- color: #8c8c8c;
- font-size: 24rpx;
- }
- .common-list .common-item .other .value {
- margin-top: 6rpx;
- font-weight: 400;
- }
- .common-list .common-item .state {
- margin-top: 20rpx;
- display: flex;
- justify-content: space-between;
- }
- .common-list .common-item .state .create {
- height: 48rpx;
- border-radius: 48rpx;
- border: 1px solid #08979c;
- display: flex;
- align-items: center;
- color: #08979c;
- padding: 0 10rpx;
- }
- .common-list .common-item .state .create .name {
- font-size: 24rpx;
- flex: 1;
- max-width: 150rpx;
- min-width: 70rpx;
- overflow: hidden;
- margin-left: 10rpx;
- line-height: 36rpx;
- }
|