123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872 |
- .sld_goods_detail {
- width: 100%;
- .contain_con {
- width: 100%;
- background: #ffffff;
- height: 48px;
- position: fixed;
- top: 0;
- box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.2);
- z-index: 100;
- -webkit-animation: goodsFixed 0.5s ease-in-out;
- animation: goodsFixed 0.5s ease-in-out;
- @-webkit-keyframes goodsFixed {
- 0% {
- top: -50px;
- }
- to {
- top: 0;
- }
- }
- @keyframes goodsFixed {
- 0% {
- top: -50px;
- }
- to {
- top: 0;
- }
- }
- .contain_content {
- width: 1200px;
- margin: 0 auto;
- .contain_con_left {
- width: 250px;
- height: 48px;
- background: #f9f9f9;
- border-radius: 2px 2px 0 0;
- padding-left: 15px;
- box-sizing: border-box;
- border-left: 1px solid #dfdfdf;
- border-right: 1px solid#DFDFDF;
- .store_type {
- width: 31px;
- height: 16px;
- background: $colorMain;
- border-radius: 3px;
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 16px;
- text-align: center;
- }
- .store_title {
- font-size: 16px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- line-height: 39px;
- margin: 0 10px;
- }
- img {
- width: 20px;
- height: 20px;
- cursor: pointer;
- }
- }
- .contain_con_right {
- width: 935px;
- margin-left: 15px;
- border: 1px solid #dfdfdf;
- border-radius: 3px;
- .goods_description_title {
- height: 46px;
- background: #f8f8f8;
- .description_title_left {
- span {
- min-width: 120px;
- height: 46px;
- display: block;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- text-align: center;
- line-height: 46px;
- }
- .description_active {
- background: #ffffff;
- border-top: 2px solid $colorMain2;
- color: $colorMain2;
- }
- }
- .description_title_right {
- padding-right: 10px;
- .mobile_order {
- position: relative;
- &:hover {
- .mobile_order_model {
- display: block;
- }
- }
- span {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 74px;
- }
- .goods_code {
- margin-left: 16px;
- }
- .mobile_order_model {
- position: absolute;
- display: none;
- top: 70px;
- width: 180px;
- height: 190px;
- background: #ffffff;
- border: 1px solid #dfdfdf;
- left: -15px;
- &::before {
- box-sizing: content-box;
- width: 0;
- height: 0;
- position: absolute;
- top: -16px;
- right: 81px;
- padding: 0;
- border-bottom: 8px solid #ffffff;
- border-top: 8px solid transparent;
- border-left: 8px solid transparent;
- border-right: 8px solid transparent;
- display: block;
- content: "";
- z-index: 12;
- }
- &::after {
- box-sizing: content-box;
- width: 0px;
- height: 0px;
- position: absolute;
- top: -18px;
- right: 80px;
- padding: 0;
- border-bottom: 9px solid #cccccc;
- border-top: 9px solid transparent;
- border-left: 9px solid transparent;
- border-right: 9px solid transparent;
- display: block;
- content: "";
- z-index: 10;
- }
- .model_goods_code {
- width: 126px;
- height: 126px;
- margin: 20px auto 0;
- img {
- max-width: 126px;
- max-height: 126px;
- margin: auto;
- }
- }
- p {
- text-align: center;
- margin-top: 12px;
- }
- }
- }
- .line {
- width: 1px;
- height: 27px;
- background: #dddddd;
- margin: 0 10px;
- }
- .go_add_cart {
- width: 90px;
- height: 30px;
- background: $colorMain;
- border-radius: 3px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 30px;
- text-align: center;
- }
- }
- }
- }
- }
- }
- .goods_detail_content {
- width: 100%;
- margin: 0 auto;
- // 商品所属分类 ,联系客服,关注店铺 start
- .goods_about_con {
- width: 100%;
- height: 40px;
- background: #f8f8f8;
- .goods_about {
- width: 1200px;
- height: 40px;
- margin: 0 auto;
- .goods_classify {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- }
- .goods_about_right {
- .goods_about_store {
- span:nth-child(1) {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 14px;
- &:hover {
- color: $colorMain;
- }
- }
- span:nth-child(2) {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #fefefe;
- line-height: 14px;
- width: 31px;
- height: 16px;
- background: $colorMain;
- border-radius: 2px;
- text-align: center;
- margin-left: 10px;
- }
- }
- .contact_service {
- margin: 0 20px 0 30px;
- cursor: pointer;
- &:hover {
- span {
- color: $colorMain;
- }
- }
- span {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 14px;
- }
- img {
- width: 20px;
- height: 20px;
- }
- }
- .focus_store {
- line-height: 20px;
- margin-left: 20px;
- width: 180px;
- text-align: right;
- span {
- line-height: 20px;
- text-align: center;
- float: right;
- margin-right: 10px;
- }
- img {
- float: right;
- }
- }
- }
- }
- }
- // 商品所属分类 ,联系客服,关注店铺 end
- // 商品主要信息 start
- .main_con {
- width: 1200px;
- margin: 20px auto 0;
- .goods_des {
- display: flex;
- margin-bottom: 40px;
- .goods_des_left {
- margin-right: 20px;
- .goods_main_picture {
- position: relative;
- .preview-box {
- position: relative;
- width: 350px;
- height: 350px;
- border-radius: 2px;
- .default_image {
- width: 350px;
- height: 350px;
- border-radius: 2px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- &.skeleton_default_image {
- background: $colorSkeleton;
- }
- }
- .v_btn {
- width: 350px;
- z-index: 990;
- position: absolute;
- bottom: 62px;
- img {
- cursor: pointer;
- display: block;
- margin: 0 auto;
- }
- }
- .mask {
- position: absolute;
- top: 0;
- left: 0;
- width: 120px;
- height: 120px;
- z-index: 10;
- background: #ffffff;
- opacity: 0.2;
- cursor: move;
- }
- .magnifier_icon {
- position: absolute;
- bottom: 0;
- right: 0;
- width: 27px;
- height: 27px;
- background: rgba(0, 0, 0, 0.3);
- z-index: 10;
- i {
- font-size: 16px;
- color: #ffffff;
- text-align: center;
- line-height: 27px;
- }
- }
- }
- .goods_picture_big {
- position: absolute;
- left: 370px;
- top: 0;
- z-index: 50;
- width: 500px;
- height: 500px;
- overflow: hidden;
- .default_image_big {
- position: absolute;
- width: 1458px;
- height: 1458px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- }
- }
- }
- .goods_picture_con {
- margin-top: 11px;
- width: 350px;
- &.skeleton_goods_picture_con {
- background: #eee;
- height: 59px;
- }
- .left_arrow {
- font-size: 6px;
- color: #999999;
- cursor: pointer;
- }
- .show_box {
- position: relative;
- flex: 1;
- overflow: hidden;
- width: 326px;
- margin: 0 2px;
- height: 59px;
- .goods_picture_list {
- position: absolute;
- top: 0;
- left: 0;
- .goods_img {
- width: 58px;
- height: 58px;
- margin-right: 8px;
- border: 1px solid #cccccc;
- cursor: pointer;
- &:nth-last-child(1) {
- margin-right: 0;
- }
- .goods_image {
- width: 56px;
- height: 56px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- }
- }
- .goods_img_active {
- border: 1px solid $colorMain;
- }
- }
- }
- .right_arrow {
- font-size: 6px;
- color: #999999;
- cursor: pointer;
- }
- .no_left_arrow {
- color: #dddddd;
- }
- }
- // 分享 收藏 start
- .collection_share_btn {
- padding-left: 10px;
- .collection_btn {
- margin-top: 25px;
- img {
- width: 24px;
- height: 24px;
- }
- span {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- margin-left: 3px;
- margin-right: 2px;
- }
- }
- .share_btn {
- position: relative;
- margin-left: 18px;
- margin-top: 25px;
- .share_btn_con {
- padding-left: 10px;
- img {
- width: 24px;
- height: 24px;
- }
- span {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- margin-left: 8px;
- }
- &:hover span {
- color: #333333;
- }
- }
- .share_list {
- margin-left: -1px;
- width: 80px;
- height: 140px;
- border: 1px solid #dfdfdf;
- border-radius: 2px;
- padding: 10px 0 10px 10px;
- position: absolute;
- top: -12px;
- display: none;
- .share_btn_pre {
- margin-top: 1px;
- margin-bottom: 8px;
- &:nth-last-of-type(1) {
- margin-bottom: 0;
- }
- img {
- width: 24px;
- height: 24px;
- }
- span {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- margin-left: 8px;
- }
- &:hover span {
- color: #333333;
- }
- }
- .wx_share_code {
- position: absolute;
- right: -135px;
- bottom: 0px;
- width: 130px;
- height: 135px;
- background: #ffffff;
- border: 1px solid #d9d9d9;
- .wx_share_code_img {
- canvas {
- width: 90px !important;
- height: 90px !important;
- }
- }
- .wx_share_code_title {
- font-size: 10px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- margin-top: 6px;
- }
- }
- }
- &:hover .share_btn_con {
- display: none;
- }
- &:hover .share_list {
- display: block;
- }
- }
- }
- // 分享 收藏 end
- }
- .m_item_inner {
- float: left;
- .item_info {
- position: relative;
- width: 630px;
- padding-bottom: 20px;
- }
- .detaile_name {
- font-size: 16px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- margin-bottom: 6px;
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- line-height: 25px;
- &.skeleton_detaile_name {
- background: $colorSkeleton;
- width: 100%;
- height: 18px;
- }
- }
- .p_ad {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #e2231a;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- margin-bottom: 12px;
- line-height: 18px;
- &.skeleton_p_ad {
- background: $colorSkeleton;
- width: 100%;
- height: 16px;
- }
- }
- .summary {
- width: 630px;
- height: 160px;
- background: url(/point/point_detail_bg.png) 100% 100%;
- padding: 10px 20px 18px;
- box-sizing: border-box;
- }
- }
- }
- }
- // 商品主要信息 end
- }
- .point_sales {
- padding-right: 10px;
- text-align: right;
- height: 30px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 30px;
- margin-bottom: 25px;
- }
- .sld_summary_goods_left {
- display: flex;
- justify-content: space-between;
- .goods_price {
- display: flex;
- .price_title1 {
- margin-right: 20px;
- letter-spacing: 10px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- }
- .p_price {
- color: $colorMain2;
- font-size: 16px;
- font-weight: 600;
- margin-left: -6px;
- &.skeleton_p_price {
- background: $colorSkeleton;
- width: 70px;
- display: inline-block;
- height: 18px;
- }
- span:nth-child(1),
- span:nth-child(4) {
- font-size: 24px;
- }
- }
- }
- }
- .market_price {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- margin-top: 27px;
- .price_title {
- margin-right: 20px;
- text-transform: uppercase;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- }
- .price {
- text-decoration: line-through;
- }
- }
- .actual_sales {
- font-size: 14px;
- font-weight: 400;
- color: #aaaaaa;
- line-height: 30px;
- span {
- color: $colorMain;
- }
- }
- // 优惠券 start
- .coupon {
- margin-top: 10px;
- .coupon_title {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 30px;
- }
- .coupon_list {
- margin-left: 22px;
- .coupon_pre_rules {
- height: 26px;
- border: 1px solid $colorMain;
- border-radius: 3px;
- background: #ffffff;
- font-size: 14px;
- //font-family: PingFang SC;
- font-weight: 500;
- color: $colorMain;
- line-height: 26px;
- padding: 0 8px;
- text-align: center;
- margin-right: 10px;
- }
- }
- }
- // 优惠券 end
- // 促销 start
- .promotion {
- margin-top: 10px;
- .promotion_left {
- .promotion_title {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 30px;
- margin-right: 20px;
- letter-spacing: 10px;
- }
- .promotion_list {
- width: 415px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- .promotion_block {
- .promotion_pre {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 30px;
- }
- }
- }
- }
- .promotion_right {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #306fbc;
- line-height: 30px;
- cursor: pointer;
- }
- .full_discount_model {
- height: 250px;
- overflow-y: auto;
- .full_discount_pre {
- .full_pre_tips {
- width: 5px;
- height: 5px;
- background: $colorMain2;
- border-radius: 50%;
- margin-top: 5px;
- }
- .full_pre_con {
- margin-left: 10px;
- margin-bottom: 15px;
- .full_pre_title {
- font-size: 16px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- }
- .full_pre_des {
- width: 450px;
- border-bottom: 1px dashed #e6e6e6;
- border-radius: 2px;
- padding: 10px;
- box-sizing: border-box;
- margin-top: 10px;
- .full_pre_name {
- span {
- display: block;
- &:nth-child(1) {
- // width: 159px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- border-radius: 8px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- line-height: 16px;
- // text-align: center;
- }
- &:nth-child(2) {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- margin-left: 20px;
- }
- }
- }
- .full_pre_desc {
- margin-top: 10px;
- .full_pre_img {
- width: 40px;
- height: 40px;
- background: #ffffff;
- border-radius: 2px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- margin-right: 7px;
- }
- .full_pre_right {
- p,
- span {
- width: 328px;
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- span {
- color: #666666;
- margin-top: 6px;
- }
- }
- }
- }
- }
- }
- }
- }
- i {
- font-style: normal;
- }
- // 促销 end
- // 配送地 start
- .delivery {
- padding-left: 20px;
- margin-top: 22px;
- .delivery_title {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 30px;
- }
- .delivery_address {
- width: 180px;
- height: 30px;
- background: #ffffff;
- border: 1px solid #dfdfdf;
- border-radius: 3px;
- padding: 0 11px;
- box-sizing: border-box;
- margin-left: 20px;
- span {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 30px;
- }
- i {
- font-size: 12px;
- }
- }
- }
- // 配送地 end
- // 运费 start
- .freight {
- padding-left: 20px;
- margin-top: 20px;
- .freight_title {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- letter-spacing: 12px;
- .skeleton_freight_amount {
- background: $colorSkeleton;
- display: inline-block;
- width: 50px;
- height: 16px;
- }
- }
- span {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- margin-left: 8px;
- }
- }
- // 运费 end
- // 商品规格 start
- .goods_spec {
- padding-left: 20px;
- margin-top: 20px;
- flex-wrap: wrap;
- .goods_spec_pre {
- .goods_spec_pre_title {
- justify-content: space-between;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 30px;
- // min-width: 42px;
- text-indent: "justify";
- white-space: nowrap;
- }
- .goods_spec_pre_list {
- margin-left: 20px;
- flex-wrap: wrap;
- .specval_pre {
- margin-right: 21px;
- margin-bottom: 20px;
- .specval_pre_image {
- width: 48px;
- height: 48px;
- border-radius: 3px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- }
- span {
- display: inline-block;
- max-width: 190px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- background: #ffffff;
- border: 1px solid #dfdfdf;
- border-radius: 3px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- display: block;
- padding: 10px 20px;
- box-sizing: border-box;
- }
- }
- .specval_pre_active {
- position: relative;
- span {
- display: inline-block;
- max-width: 184px;
- border: 1px solid $colorMain;
- }
- .check_mark {
- width: 14px;
- height: 14px;
- position: absolute;
- bottom: 3px;
- right: 0;
- }
- }
- .specval_pre_disabled {
- position: relative;
- opacity: 0.2;
- }
- }
- }
- }
- // 商品规格 end
- // 数量加减及库存 start
- .quantity_inventory {
- padding: 0 20px 0;
- padding-bottom: 40px;
- border-bottom: 1px solid #dfdfdf;
- .quantity_title {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 30px;
- letter-spacing: 10px;
- }
- .quantity_edit {
- border: 1px solid #dddddd;
- margin-left: 10px;
- span {
- display: block;
- width: 30px;
- height: 30px;
- border: none;
- border-radius: 3px;
- text-align: center;
- line-height: 30px;
- cursor: pointer;
- }
- input {
- width: 60px;
- height: 30px;
- border: none;
- border-left: 1px solid #ddd;
- border-right: 1px solid #ddd;
- text-align: center;
- cursor: pointer;
- }
- /*** 消除input元素 type="number" 时默认的 加减按钮*/
- input[type="number"]::-webkit-inner-spin-button,
- input[type="number"]::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- /*** 消除input元素 type="number" 时默认的 加减按钮---moz版*/
- input[type="number"] {
- -moz-appearance: textfield;
- }
- }
- .inventory {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 30px;
- margin-left: 17px;
- }
- }
- // 数量加减及库存 end
- //立即购买 加入购物车 start
- .options_btn {
- margin-top: 30px;
- .option_desc {
- color: #bbbbbb;
- font-size: 14px;
- margin-bottom: 20px;
- }
- .recoOffShop {
- width: 829px;
- display: flex;
- flex-wrap: wrap;
- margin-top: 20px;
- border: 1px solid #e7e7e7;
- .reCon {
- display: block;
- width: 182px;
- margin: 15px 0 15px 20px;
- .reComImg {
- display: block;
- width: 182px;
- height: 182px;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .recomName {
- color: #333333;
- cursor: pointer;
- display: block;
- width: 182px;
- height: 35px;
- line-height: 17px;
- margin-top: 10px;
- margin-bottom: 10px;
- font-size: 13px;
- letter-spacing: 1px;
- word-break: break-all;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- &:hover {
- color: $colorMain;
- }
- }
- span {
- font-size: 13px;
- font-weight: bold;
- color: $colorMain;
- }
- }
- }
- .goods_off_shelves {
- width: 180px;
- height: 50px;
- background: #bbbbbb;
- border-radius: 5px;
- font-size: 20px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 50px;
- text-align: center;
- cursor: pointer;
- }
- .goods_out_stock {
- width: 180px;
- height: 50px;
- background: #bbbbbb;
- border-radius: 5px;
- font-size: 20px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 50px;
- text-align: center;
- cursor: pointer;
- }
- .buy_now {
- width: 180px;
- height: 50px;
- background: #b64cfb;
- border: 1px solid #b64cfb;
- border-radius: 5px;
- font-size: 20px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #fff;
- line-height: 30px;
- cursor: pointer;
- margin-right: 20px;
- }
- .add_cart {
- width: 180px;
- height: 50px;
- background: $colorMain;
- border-radius: 5px;
- font-size: 20px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 30px;
- cursor: pointer;
- img {
- margin-right: 10px;
- }
- }
- }
- //立即购买 加入购物车 end
- // 看了又看 start
- .more_goods {
- margin-left: 24px;
- margin-bottom: 24px;
- .more_goods_title {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 30px;
- text-align: center;
- }
- .more_goods_list {
- .more_goods_pre {
- margin-bottom: 10px;
- cursor: pointer;
- .skeleton_more_goods_pre_goods_name {
- background: $colorSkeleton;
- width: 100%;
- height: 13px;
- }
- .skeleton_more_goods_pre_goods_price {
- background: $colorSkeleton;
- height: 13px;
- width: 60px;
- display: inline-block;
- }
- .more_goods_pre_img {
- width: 150px;
- height: 150px;
- overflow: hidden;
- position: relative;
- &.skeleton_more_goods_pre_img {
- background: $colorSkeleton;
- }
- &:hover {
- img {
- -webkit-transform: scale(1.05);
- -ms-transform: scale(1.05);
- -o-transform: scale(1.05);
- -moz-transform: scale(1.05);
- transform: scale(1.05);
- }
- }
- img {
- max-width: 100%;
- max-width: 100%;
- -webkit-transition: -webkit-transform 0.5s;
- transition: -webkit-transform 0.5s;
- -moz-transition: transform 0.5s, -moz-transform 0.5s;
- transition: transform 0.5s;
- transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
- }
- .price {
- width: 150px;
- position: absolute;
- bottom: 0;
- height: 30px;
- background: rgba(0, 0, 0, 0.3);
- color: #fff;
- line-height: 30px;
- text-align: center;
- font-size: 12px;
- //font-family: Microsoft YaHei;
- }
- }
- .goodName {
- width: 150px;
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- text-align: center;
- margin: 10px 0;
- }
- }
- }
- }
- // 看了又看 end
- // 店铺信息 start
- .store_info {
- width: 250px;
- background: #ffffff;
- border: 1px solid #dfdfdf;
- border-radius: 2px;
- padding-bottom: 15px;
- .store_info_title {
- width: 248px;
- height: 48px;
- background: #f9f9f9;
- border-radius: 2px 2px 0 0;
- padding-left: 15px;
- box-sizing: border-box;
- .store_type {
- width: 31px;
- height: 16px;
- background: $colorMain;
- border-radius: 3px;
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 16px;
- text-align: center;
- }
- .store_title {
- font-size: 16px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- line-height: 39px;
- margin: 0 10px;
- cursor: pointer;
- }
- img {
- width: 20px;
- height: 20px;
- cursor: pointer;
- }
- }
- .store_des {
- .store_des_pre {
- padding-left: 15px;
- margin-top: 18px;
- span:nth-of-type(1) {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- margin-right: 18px;
- }
- span:nth-of-type(2),
- span:nth-of-type(3) {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ff5501;
- margin-right: 18px;
- }
- }
- .pre_deliver {
- span:nth-of-type(2),
- span:nth-of-type(3) {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: $colorMain2;
- }
- }
- .pre_service {
- span:nth-of-type(2),
- span:nth-of-type(3) {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- }
- }
- }
- .store_btn {
- margin-top: 14px;
- .store_btn_pre {
- width: 103px;
- height: 29px;
- background: $colorMain;
- border-radius: 3px;
- margin-right: 14px;
- cursor: pointer;
- img {
- width: 20px;
- height: 20px;
- margin-right: 5px;
- }
- .go_store_btn {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 39px;
- }
- &:nth-child(2) {
- margin-right: 0;
- border: 1px solid #dfdfdf;
- background: #ffffff;
- span {
- color: #333333;
- }
- }
- }
- }
- }
- // 店铺信息 end
- //店铺推荐及热门收藏 start
- .store_popular {
- width: 250px;
- background: #ffffff;
- border: 1px solid #dfdfdf;
- border-radius: 3px;
- .store_popular_btn {
- span {
- width: 250px;
- height: 40px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- background: #f8f8f8;
- color: #333333;
- line-height: 40px;
- text-align: center;
- display: block;
- cursor: pointer;
- }
- .store_popular_active {
- background: $colorMain;
- color: #ffffff;
- }
- }
- .store_popular_list {
- padding: 20px 21px 0;
- .store_popular_pre {
- margin-bottom: 20px;
- border-bottom: 1px solid #f2f2f2;
- &:nth-last-child(1) {
- border-bottom: none;
- }
- cursor: pointer;
- .store_popular_img {
- width: 208px;
- height: 208px;
- border-radius: 2px;
- overflow: hidden;
- &:hover {
- img {
- -webkit-transform: scale(1.05);
- -ms-transform: scale(1.05);
- -o-transform: scale(1.05);
- -moz-transform: scale(1.05);
- transform: scale(1.05);
- }
- }
- img {
- max-width: 100%;
- max-width: 100%;
- -webkit-transition: -webkit-transform 0.5s;
- transition: -webkit-transform 0.5s;
- -moz-transition: transform 0.5s, -moz-transform 0.5s;
- transition: transform 0.5s;
- transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
- }
- }
- p {
- width: 197px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- margin-top: 14px;
- }
- p:nth-of-type(2) {
- margin: 21px 0 13px;
- span {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: $colorMain2;
- // &:nth-child(2) {
- // font-size: 12px;
- // font-family: Microsoft YaHei;
- // color: $colorMain2;
- // }
- }
- }
- }
- }
- }
- // 店铺推荐及热门收藏 end
- // 商品详情 评价 商品服务 店铺热销 start
- .goods_description {
- margin-left: 15px;
- border: 1px solid #dfdfdf;
- border-radius: 3px;
- .goods_description_title {
- width: 934px;
- height: 40px;
- background: #f8f8f8;
- .description_title_left {
- span {
- min-width: 120px;
- height: 40px;
- display: block;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- text-align: center;
- line-height: 39px;
- }
- .description_active {
- background: #ffffff;
- border-top: 2px solid $colorMain2;
- color: $colorMain2;
- }
- }
- .description_title_right {
- padding-right: 10px;
- .mobile_order {
- position: relative;
- &:hover {
- .mobile_order_model {
- display: block;
- }
- }
- span {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 74px;
- }
- .goods_code {
- margin-left: 16px;
- }
- .mobile_order_model {
- position: absolute;
- display: none;
- top: 70px;
- width: 180px;
- height: 190px;
- background: #ffffff;
- border: 1px solid #dfdfdf;
- left: -15px;
- &::before {
- box-sizing: content-box;
- width: 0;
- height: 0;
- position: absolute;
- top: -16px;
- right: 81px;
- padding: 0;
- border-bottom: 8px solid #ffffff;
- border-top: 8px solid transparent;
- border-left: 8px solid transparent;
- border-right: 8px solid transparent;
- display: block;
- content: "";
- z-index: 12;
- }
- &::after {
- box-sizing: content-box;
- width: 0px;
- height: 0px;
- position: absolute;
- top: -18px;
- right: 80px;
- padding: 0;
- border-bottom: 9px solid #cccccc;
- border-top: 9px solid transparent;
- border-left: 9px solid transparent;
- border-right: 9px solid transparent;
- display: block;
- content: "";
- z-index: 10;
- }
- .model_goods_code {
- width: 126px;
- height: 126px;
- margin: 20px auto 0;
- img {
- max-width: 126px;
- max-height: 126px;
- margin: auto;
- }
- }
- p {
- text-align: center;
- margin-top: 12px;
- }
- }
- }
- .line {
- width: 1px;
- height: 27px;
- background: #dddddd;
- margin: 0 10px;
- }
- .go_add_cart {
- width: 90px;
- height: 30px;
- background: $colorMain;
- border-radius: 3px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- line-height: 30px;
- text-align: center;
- }
- }
- }
- .goods_description_con {
- width: 934px;
- min-height: 500px;
- .goods_des_con {
- padding-top: 31px;
- .brand {
- margin-bottom: 31px;
- padding-left: 30px;
- span {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- &:nth-child(1) {
- margin-right: 3px;
- }
- &:nth-child(2) {
- color: #6195ff;
- }
- }
- }
- .goods_parameter_list {
- // margin-top: 32px;
- display: flex;
- flex-wrap: wrap;
- padding: 0 30px;
- box-sizing: border-box;
- &.goods_paramter_more {
- overflow: hidden;
- height: 130px;
- }
- .goods_parameter_pre {
- margin-bottom: 21px;
- margin-right: 24px;
- width: 200px;
- span {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- display: inline-block;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- &:nth-child(1) {
- max-width: 80px;
- margin-right: 6px;
- }
- &:nth-child(2) {
- color: #333333;
- width: 135px;
- }
- }
- &:nth-of-type(4n) {
- margin-right: 0;
- }
- }
- }
- .collapse_unfold {
- span {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 21px;
- }
- i {
- font-size: 12px;
- color: #333333;
- margin-left: 10px;
- }
- }
- .goods_html {
- padding: 0 21px 0 24px;
- .goods_htmls {
- img {
- max-width: 100%;
- max-height: 100%;
- }
- }
- }
- }
- // 商品评价 start
- .goods_comments {
- padding: 20px;
- .goods_comments_top {
- border-bottom: 1px solid #dddddd;
- display: flex;
- .goods_comments_left {
- width: 250px;
- background: #ffffff;
- border: 1px solid #dddddd;
- border-bottom: none;
- padding: 20px 0;
- box-sizing: border-box;
- .comments_title {
- padding: 0 27px;
- box-sizing: border-box;
- .comments_tips {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- }
- }
- .good_comment {
- margin-top: 20px;
- span {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- &:nth-child(2) {
- display: inline-block;
- font-size: 50px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: $colorMain;
- margin-left: 15px;
- }
- }
- }
- }
- .goods_comments_nav {
- display: flex;
- flex-wrap: wrap;
- margin-left: 20px;
- .comments_nav_pre {
- width: 120px;
- height: 30px;
- background: #ffffff;
- border: 1px solid #dddddd;
- font-size: 14px;
- //font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 30px;
- text-align: center;
- margin-right: 20px;
- cursor: pointer;
- &:nth-child(4n) {
- margin-right: 0;
- }
- &.comments_nav_pre_active {
- color: $colorMain2;
- }
- }
- }
- }
- .goods_comments_list {
- .goods_comments_pre {
- margin-top: 30px;
- padding-bottom: 40px;
- border-bottom: 1px dashed #dddddd;
- .goods_comments_avatar {
- width: 50px;
- height: 50px;
- border-radius: 50%;
- background-size: cover;
- }
- .list_des {
- margin-left: 21px;
- .list_top {
- .list_left {
- .list_top_tile {
- .list_top_tips {
- font-size: 16px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- margin-right: 20px;
- }
- }
- .spec {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- margin-top: 10px;
- }
- }
- .list_top_right {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- }
- }
- .list_pre {
- margin-top: 20px;
- .CommentContent {
- width: 813px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 21px;
- }
- .replyContent {
- margin-top: 15px;
- height: 26px;
- line-height: 26px;
- font-size: 13px;
- span {
- color: #999999;
- font-size: 12px;
- }
- }
- .list_pre_img_list {
- margin-top: 15px;
- flex-wrap: wrap;
- .list_pre_img {
- width: 80px;
- height: 80px;
- background-size: contain;
- background-position: center;
- background-repeat: no-repeat;
- margin-right: 10px;
- }
- }
- }
- }
- }
- }
- }
- // 商品评价 end
- // 商品服务 start
- .goods_server_list {
- .goods_server_pre {
- margin: 0 39px 0 51px;
- border-bottom: 1px solid #f2f2f2;
- padding-bottom: 20px;
- padding-top: 22px;
- .server_pre_top {
- .server_pre_tips {
- width: 5px;
- height: 5px;
- background: $colorMain2;
- border-radius: 50%;
- display: block;
- margin-right: 10px;
- }
- .server_pre_name {
- font-size: 16px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- }
- }
- .server_pre_content {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- padding-left: 12px;
- margin-top: 21px;
- color: #666666;
- }
- }
- }
- // 商品服务 end
- // 店铺热销 start
- .store_hot_sales {
- .store_hot_sales_list {
- display: flex;
- flex-wrap: wrap;
- padding: 11px 13px;
- .goods_pre {
- margin-bottom: 11px;
- width: 216px;
- height: 313px;
- border: 1px solid #dddddd;
- border-radius: 2px;
- margin-right: 12px;
- cursor: pointer;
- padding-bottom: 10px;
- &:hover {
- border: 1px solid $colorMain;
- }
- &:nth-of-type(4n) {
- margin-right: 0;
- }
- .goods_pre_img {
- width: 214px;
- height: 221px;
- border-radius: 2px 2px 0 0;
- background-size: contain;
- background-repeat: no-repeat;
- }
- .goods_name {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 18px;
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- margin: 10px 10px 19px;
- }
- .goods_price {
- padding-left: 11px;
- .selling_price {
- font-size: 16px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: $colorMain2;
- }
- }
- }
- }
- }
- // 店铺热销 end
- }
- }
- // 商品详情 评价 商品服务 店铺热销 end
- // 优惠券弹框 start
- .coupon_model {
- .model_coupon_list {
- display: flex;
- flex-wrap: wrap;
- .sld_coupon_item {
- margin-right: 10px !important;
- }
- .sld_coupon_item:nth-child(2n) {
- margin-right: 0 !important;
- }
- }
- }
- // 优惠券弹框 end
- .cursor_pointer {
- cursor: pointer;
- }
- // 分页
- .sld_page_bottom {
- margin-top: 20px;
- }
- //空页面数据样式
- .empty_data {
- padding-top: 170px;
- span {
- margin-top: 30px;
- }
- }
- }
- .imgOpen {
- max-width: 1200px;
- max-height: 700px;
- margin: 0 auto;
- display: block;
- }
|