1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .itemWrap {
- background: #ffffff;
- border-radius: 10px;
- padding: 12px 15px 20px;
- margin: 0 13px;
- .itemTop {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #f2f2f2;
- padding-bottom: 12px;
- .itemTopLeft {
- .itemTopMain {
- height: 22px;
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- line-height: 22px;
- margin-bottom: 6px;
- }
- .itemTopSub {
- font-weight: 400;
- color: #777777;
- line-height: 17px;
- }
- }
- .itemTopRight {
- .imgWrap {
- width: 87px;
- height: 33px;
- background: #e9e3ff;
- border-radius: 19px;
- img {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .itemBottom {
- margin-top: 15px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-around;
- text-align: center;
- .itemBottomDot {
- width: 25%;
- .dotMain {
- font-size: 26px;
- font-weight: bold;
- color: #333333;
- line-height: 30px;
- margin-bottom: 4px;
- span {
- font-size: 12px;
- font-weight: 400;
- color: #333333;
- line-height: 17px;
- }
- }
- .dotSub {
- font-size: 12px;
- font-weight: 400;
- color: #777777;
- line-height: 17px;
- }
- }
- }
- }
|