12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- body {
- background-color: #F5F5F5;
- }
- view,
- text {
- font-size: 16px;
- color: #333;
- }
- image {
- display: block;
- }
- /* 原价 */
- .original-price {
- font-size: 12px;
- text-decoration: line-through;
- color: #999999;
- }
- .text-two-hidden {
- overflow: hidden;
- word-break: break-all;
- }
- .top-border {
- border-top: 1px solid #e6e7e9;
- }
- .bottom-border {
- border-bottom: 1px solid #e6e7e9;
- }
- .placeholder-text {
- color: #AEAEAE;
- font-size: 14px;
- font-weight: 400;
- }
- .top-mar {
- margin-top: 10px;
- }
- .fixed {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 2;
- }
|