123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- .wrap {
- padding-top: 5.25rem;
- }
- .wrap .product {
- height: 25rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 80rem;
- margin: 3.125rem auto;
- }
- .product .product-info {
- height: 18.75rem;
- width: 45rem;
- }
- .product .product-info .info-name {
- font-size: 2rem;
- font-weight: 500;
- color: #1d52a2;
- }
- .product .product-info .info-desc {
- font-size: 1rem;
- font-weight: 400;
- color: #333333;
- margin-top: 3.125rem;
- }
- .product .product-image {
- width: 31.25rem;
- /* height: 25rem; */
- background-color: #000;
- }
- .wrap .title {
- width: 80rem;
- margin: 0 auto;
- text-align: center;
- padding: 3.125rem 0 1.875rem;
- border-top: 0.0625rem solid rgba(151, 151, 151, 0.2);
- font-size: 2rem;
- font-weight: 500;
- color: #333333;
- }
- .wrap .content {
- width: 80rem;
- margin: 0 auto 6.25rem;
- font-size: 1rem;
- font-weight: 400;
- color: #222222;
- }
- .wrap .feature {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- }
- .feature .feature-item {
- width: calc((100% - 3.75rem) / 3);
- aspect-ratio: 19 / 10;
- background: #f4f4f4;
- border-radius: 0.625rem;
- padding: 1.875rem;
- box-sizing: border-box;
- margin-top: 1.875rem;
- }
- .feature .feature-item .feature-title {
- font-weight: 500;
- font-size: 1.5rem;
- color: #000000;
- }
- .feature .feature-item .feature-content {
- font-weight: 400;
- font-size: 0.875rem;
- color: #333333;
- margin-top: 1.25rem;
- }
- .feature :not(:nth-child(3n)) {
- margin-right: 1.875rem;
- }
- .wrap .sku {
- display: flex;
- align-items: flex-start;
- flex-wrap: wrap;
- }
- .sku .sku-item {
- width: calc(100% / 3);
- display: flex;
- align-items: flex-start;
- margin-top: 1.25rem;
- }
- .sku .sku-item .sku-content {
- width: calc(100% - 1.75rem);
- /* overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; */
- line-height: 1.25rem;
- font-weight: 400;
- font-size: 1rem;
- color: #222222;
- padding-right: 0.625rem;
- }
- .sku .sku-item .sku-mark {
- width: 0.5rem;
- height: 0.5rem;
- margin: 0.375rem;
- background: #777777;
- margin-right: 1.25rem;
- border-radius: 50%;
- }
|