| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- .container {
- display: flex;
- flex-direction: column;
- width: 100%;
- align-content: center;
- .banner {
- height: 210px;
- width: 100%;
- .swiper-item, image {
- width: 100%;
- }
- }
- &__top {
- display: flex;
- flex-direction: column;
- align-content: center;
- width: 100%;
- padding: 10px 0px;
- &__row {
- display: flex;
- flex-direction: row;
- align-items: center;
- align-content: center;
- justify-content: space-between;
- padding: 2.5px 10px;
- text {
- font-size: 14px;
- color: #333;
- text-align: left;
- width: 100%;
- }
- .qty {
- text-align: center;
- }
- }
- .price, :first-child {
- text {
- font-size: 16px;
- font-weight: bold;
- }
- }
- .container__top__row__step {
- display: flex;
- white-space: nowrap;
- flex-direction: row;
- justify-content: start;
- align-items: center;
- align-content: center;
- margin: 0px 10px;
- width: 96%;
- &__item {
- display: inline-flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- padding-top: 5px;
- .value {
- font-size: 12px;
- padding: 5px 5px;
- text-align: center;
- }
- }
- }
- }
- &__diamondinfo {
- display: flex;
- flex-direction: column;
- align-content: center;
- margin-top: 10px;
- text {
- padding: 10px 15px;
- font-size: 14px;
- text-align: left;
- width: 100%;
- border-bottom: 1px solid #f0f0f0;
- }
- :first-child {
- padding: 10px 5px;
- font-size: 20px;
- font-weight: bold;
- }
- }
- .button-view {
- border-radius: 10px;
- width: 100%;
- padding: 15px 0px;
- display: flex;
- flex-direction: row;
- align-content: center;
- align-items: center;
- justify-content: space-between;
-
- van-button {
- width: 95%;
- padding-left: 2.5%;
- }
- }
- }
- .popup-view {
- display: flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- .title {
- font-size: 18px;
- font-weight: bold;
- color: #333;
- text-align: center;
- padding: 15px 0px;
- }
- .message {
- font-size: 13px;
- color: #333;
- text-align: center;
- padding-bottom: 15px;
- }
- van-field {
- width: 80%;
- }
- .button-view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- padding-top: 15px;
- width: 80%;
- van-button {
- width: 45%;
- }
- }
- }
|