| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- .goods-details {
- padding: 20px 48px;
- width: 1200px;
- &__close {
- position: absolute;
- top: 15px;
- right: 15px;
- font-size: 28px;
- color: #666;
- cursor: pointer;
- }
- &__wrapper {
- position: relative;
- display: flex;
- background-color: #fff;
- border-radius: 4px;
- overflow: hidden;
- padding: 6px;
- }
- &__aside {
- background-color: #f4f8fe;
- padding: 60px 30px;
- .sku {
- &-gallery {
- margin-bottom: 20px;
- }
- &-address {
- background-color: #fff;
- padding: 20px;
- ul {
- li {
- display: flex;
- font-size: 12px;
- padding: 5px 0;
- span {
- flex: 1;
- &:first-child {
- color: #94A0AF;
- }
- &:last-child {
- text-align: right;
- }
- }
- }
- }
- }
- }
- }
- &__main {
- flex: 1;
- padding: 60px 30px;
- .sku {
- &-title {
- display: flex;
- align-items: center;
- h1 {
- font-size: 24px;
- }
- }
- &-info {
- margin-top: 30px;
- }
- &-spec {
- margin-top: 30px;
- ul {
- display: flex;
- flex-wrap: wrap;
- li {
- width: 25%;
- }
- }
- }
- &-price {
- margin-top: 30px;
- span {
- &:first-child {
- color: #FD565C;
- font-size: 36px;
- font-weight: bold;
- }
- &:not(:first-child) {
- color: #999;
- margin-left: 10px;
- }
- }
- }
- &-button {
- margin-top: 30px;
- }
- &-parameter {
- border-top: 1px solid #f2f2f2;
- margin-top: 30px;
- h4 {
- font-size: 18px;
- color: #999;
- padding: 20px 0;
- }
- ul {
- display: flex;
- flex-wrap: wrap;
- li {
- display: flex;
- justify-content: space-between;
- width: calc(~"50% - 10px");
- padding: 10px 15px;
- &:nth-child(4n+1),
- &:nth-child(4n+2) {
- background-color: #E3E8F1;
- }
- &:nth-child(odd) {
- margin-right: 10px;
- }
- &:nth-child(even) {
- margin-left: 10px;
- }
- span {
- &:first-child {
- color: #94A0AF;
- }
- }
- }
- }
- }
- }
- }
- }
|