| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- .goods-img {
- width: 90%;
- }
-
- .color-diamond, .bulk-diamond, .single-diamond, .bulk-workblank-diamond, .jewelry-diamond {
- display: flex;
- flex-direction: column;
- width: 100%;
- margin-top: 10px;
- background-color: #eee;
- view:nth-child(1) {
- margin-top: 0px;
- }
- view:nth-child(2) {
- margin-bottom: 10px;
- }
-
- .color-diamond-shape, .color-diamond-type, .bulk-diamond-type, .bulk-diamond-shape, .single-diamond-type, .single-diamond-shape, .bulk-workblank-diamond-type, .bulk-workblank-diamond-shape, .jewelry-diamond-shape, .jewelry-diamond-type {
- padding-bottom: 10px;
- display: flex;
- flex-direction: column;
- padding-left: 2.5%;
- width: 100%;
- background-color: white;
- margin-top: 10px;
- view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- text:nth-child(2) {
- width: 40%;
- }
- text {
- font-size: 15px;
- color: #333;
- padding-top: 7.5px;
- text-align: left;
- }
- }
- }
- }
- .seller-info {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- width: 95%;
- margin-top: 10px;
- text {
- padding-top: 7.5px;
- font-size: 15px;
- color: #333;
- }
- }
- van-button {
- margin-top: 20px;
- }
- }
|