1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .dbox{
- display: flex;
- flex-flow: column;
- align-items: center;
- // padding: 10px;
- >span{
- display: flex;
- justify-content: left;
- width: 100%;
- }
- }
- .show {
- background: rgba(59, 116, 255, 0.08);
- border: 1px solid rgba(59, 116, 255, 0.12);
- }
- .red {
- background: rgba(255, 86, 45, 0.08);
- border: 1px solid rgba(255, 86, 45, 0.12);
- position: relative;
- overflow: hidden;
- &::before{
- content: '';
- width: 121%;
- height: 1px;
- background: rgba(255, 86, 45, 0.1);
- transform: rotate(146deg);
- position: absolute;
- top: 56%;
- left: -10px;
- }
- &::after{
- content: '';
- width: 121%;
- height: 1px;
- background: rgba(255, 86, 45, 0.1);
- transform: rotate(-146deg);
- position: absolute;
- top: 44%;
- left: -10px;
- }
- }
|