| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- .container {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- .topView {
- position: sticky;
- top: 0;
- z-index: 999;
- width: 100%;
- }
- .banner {
- height: 240px;
- width: 100%;
- .swiper-item, image {
- width: 100%;
- }
- }
- .attribute-info {
- border-top: 10px solid #f0f0f0;
- }
- .attribute-info, .seller-info {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- margin-bottom: 10px;
- .title {
- padding: 5px;
- width: 100%;
- color: #333;
- font-size: 20px;
- }
- .attribute-info__item, .content__item {
- padding-left: 15px;
- border-bottom: 1px solid #f0f0f0;
- display: flex;
- flex-direction: row;
- justify-content: start;
- align-items: center;
- align-content: center;
- .title {
- font-size: 14px;
- width: 80px;
- color: #666;
- }
- .value {
- font-size: 14px;
- color: #333;
- }
- }
- .attribute-info__item {
- height: 44px;
- width: 100%;
- }
- .content {
- width: 95%;
- background-color: #f0f0f0;
- border-radius: 10px;
- padding: 5px 0px;
-
- &__item {
- padding-left: 5px;
- &__step {
- display: flex;
- flex-direction: row;
- justify-content: start;
- align-items: center;
- align-content: center;
- padding: 0px 2.5px;
- white-space: nowrap;
- width: 98%;
-
- &__item {
- display: inline-flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
-
- text {
- font-size: 13px;
- padding: 2.5px;
- text-align: center;
- }
- }
- }
- }
- .title {
- font-size: 14px;
- width: 80px;
- color: #666;
- }
- .value {
- font-size: 14px;
- color: #333;
- }
- }
- }
- .seller-info {
- .content {
- &__item {
- .title {
- width: 50px;
- }
- }
- }
- }
- .price-info {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- padding: 10px 0px;
- border-bottom: 5px solid #f0f0f0;
- .content__item {
- display: flex;
- flex-direction: row;
- justify-content: start;
- align-items: center;
- align-content: center;
- width: 95%;
- height: 30px;
- text {
- color: #333;
- padding: 5px 0px;
- }
- &__price {
- font-size: 18px;
- }
-
- &__rate {
- font-size: 14px;
- margin-left: 15px;
- }
- &__name {
- font-size: 16px;
- padding: 5px 0px;
- }
- &__weight, &__gprice, &__price, &__ordertime {
- width: 50%;
- font-size: 13px;
- }
- }
- }
- .operator-view {
- width: 95%;
- padding-top: 15px;
- display: flex;
- flex-direction: row;
- align-content: center;
- align-items: center;
- justify-content: space-between;
- .button-view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 90%;
- van-button {
- width: 48%;
- }
- }
- }
- }
- .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: 90%;
- }
- .button-view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- padding-top: 15px;
- width: 90%;
- van-button {
- width: 45%;
- }
- }
- }
|