12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .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 {
- display: flex;
- flex-direction: row;
- align-items: center;
- .imgWrap {
- width: 87px;
- height: 33px;
- background: #e9e3ff;
- border-radius: 19px;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .imgIcon {
- font-size: 16px;
- color: #d8d8d8;
- margin-left: 6px;
- }
- }
- }
- .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;
- }
- }
- }
- }
|