|
|
|
|
@ -2,8 +2,8 @@ import { isMobileDevice } from 'config/userAgent' |
|
|
|
|
import styled, { css } from 'styled-components/macro' |
|
|
|
|
|
|
|
|
|
export const ScPriceInfo = styled.div` |
|
|
|
|
min-width: 106px; |
|
|
|
|
height: 186px; |
|
|
|
|
min-width: 150px; |
|
|
|
|
border: 1px solid #FFFFFF; |
|
|
|
|
border-radius: 34px; |
|
|
|
|
display: flex; |
|
|
|
|
@ -18,10 +18,11 @@ export const ScPriceInfo = styled.div` |
|
|
|
|
line-height: 28px; |
|
|
|
|
|
|
|
|
|
> * { |
|
|
|
|
margin: 10px 0; |
|
|
|
|
margin: 15px 0; |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
min-width: 100px; |
|
|
|
|
margin: 0; |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
@ -45,10 +46,12 @@ export const ScTitle = styled.span` |
|
|
|
|
|
|
|
|
|
export const ScPrice = styled.span` |
|
|
|
|
font-size: 80px; |
|
|
|
|
margin-left: -22px; |
|
|
|
|
text-align: center; |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
margin: 0; |
|
|
|
|
font-size: 32px; |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
@ -66,8 +69,12 @@ export const ScCurrency = styled.span` |
|
|
|
|
|
|
|
|
|
export const ScWatchDemo = styled.span` |
|
|
|
|
font-weight: 400; |
|
|
|
|
width: 100%; |
|
|
|
|
text-align: center; |
|
|
|
|
text-decoration: underline; |
|
|
|
|
cursor: pointer; |
|
|
|
|
flex-direction: row; |
|
|
|
|
|
|
|
|
|
& :hover { |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|