12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .index {
- .wish-list {
- padding-top: 82px;
- box-sizing: border-box;
- padding-right: 40px;
- .item {
- display: flex;
- .left {
- width: 160px;
- height: 100%;
- font-weight: 500;
- font-size: 60px;
- color: #FF6200;
- text-align: center;
- padding-top: 20px;
- box-sizing: border-box;
- }
- .right {
- flex: 1;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #D8D8D8;
- height: 100%;
- padding: 30px 0;
- box-sizing: border-box;
- .left-text {
- display: flex;
- flex-direction: column;
- .title {
- font-weight: 500;
- font-size: 30px;
- color: #333333;
- }
- .price {
- font-weight: 500;
- font-size: 26px;
- color: #FC8C31;
- margin-top: 10px;
- }
- }
- .right-text {
- font-weight: 350;
- font-size: 24px;
- color: #999999;
- }
- }
- &:last-child {
- .right {
- border-bottom: none;
- }
- }
- }
- }
- }
|