123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**
- ** 全局样式
- **/
- /* 卡片样式 */
- .card {
- margin: 32rpx 28rpx 0 28rpx;
- background-color: white;
- border-radius: 8rpx;
- box-shadow: 0px 0px 6px 0px #DFE4EC;
- }
- .over-hidden {
- overflow: hidden;
- }
- /* 左右居中 */
- .align-center {
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- /* 字体颜色 */
- .text-black {
- color: #1A324E !important;
- }
- .text-gray {
- color: #7786A5 !important;
- }
- .text-grey {
- color: #E0E0E0 !important;
- }
- .text-blue {
- color: #5C8DD8 !important;
- }
- /* van-cell的label长度减少 */
- .label-sm .van-cell__value {
- flex: 2 !important;
- }
- /* margin外边距 */
- .margin-left-sm {
- margin-left: 20rpx;
- }
- /* 分割线 */
- .cut-line-dash {
- margin: 40rpx 26rpx 40rpx 26rpx;
- height: 1px;
- background: linear-gradient(to right, #D1DAF1 50%, transparent 50%);
- background-size: 10px 1px;
- }
|