123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .wux-divider--horizontal {
- display: block;
- height: 2rpx;
- width: 100%;
- margin: 30rpx 0;
- clear: both;
- border-top: 2rpx solid #e8e8e8
- }
- .wux-divider--horizontal.wux-divider--text {
- display: table;
- white-space: nowrap;
- text-align: center;
- background: 0 0;
- font-weight: 400;
- color: rgba(0,0,0,.45);
- font-size: 32rpx;
- border-top: none!important
- }
- .wux-divider--horizontal.wux-divider--text::after,
- .wux-divider--horizontal.wux-divider--text::before {
- content: '';
- display: table-cell;
- position: relative;
- top: 50%;
- width: 50%;
- border-top-width: 2rpx;
- border-top-style: solid;
- border-top-color: #e8e8e8;
- transform: translateY(50%)
- }
- .wux-divider--horizontal.wux-divider--dashed {
- border-top: 2rpx dashed #e8e8e8
- }
- .wux-divider--horizontal.wux-divider--dashed.wux-divider--text::after,
- .wux-divider--horizontal.wux-divider--dashed.wux-divider--text::before {
- border-top-style: dashed
- }
- .wux-divider--horizontal.wux-divider--text-left::before {
- width: 5%
- }
- .wux-divider--horizontal.wux-divider--text-left::after {
- width: 95%
- }
- .wux-divider--horizontal.wux-divider--text-right::before {
- width: 95%
- }
- .wux-divider--horizontal.wux-divider--text-right::after {
- width: 5%
- }
- .wux-divider--horizontal .wux-divider__text {
- display: inline-block;
- padding: 0 30rpx
- }
- .wux-divider--vertical {
- position: relative;
- top: -.06em;
- display: inline-block;
- height: .9em;
- margin: 0 30rpx;
- vertical-align: middle;
- border-top: 0;
- border-left: 2rpx solid #e8e8e8
- }
|