1. @mixin border-bottom {
    2. position: relative;
    3. &::after {
    4. content: '';
    5. position: absolute;
    6. left: 0;
    7. bottom: 0;
    8. width: 100%;
    9. height: 1px;
    10. background: #e9e9e9;
    11. transform: scaleY(0.5);
    12. }
    13. }