123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643 |
- .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 #eee;
- border-right: 1px solid#eee;
- .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 #eee;
- 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;
- a,
- a:visited {
- text-decoration: none;
- color: #999999;
- }
- a:hover {
- color: $colorMain;
- }
- }
- .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 18px 0 26px;
- 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;
- margin-left: 8px;
- }
- }
- .focus_store {
- line-height: 20px;
- margin: 0;
- width: 180px;
- text-align: right;
- span {
- line-height: 20px;
- text-align: center;
- float: right;
- margin-right: 8px;
- }
- img {
- float: right;
- margin-left: 0;
- }
- }
- }
- }
- }
- // 商品所属分类 ,联系客服,关注店铺 end
- // 商品主要信息 start
- .main_con {
- width: 1200px;
- margin: 20px auto 0;
- background: #fff;
- .goods_des {
- display: flex;
- margin-bottom: 30px;
- .goods_des_left {
- margin-right: 20px;
- .goods_main_picture {
- position: relative;
- /* 遮罩层 */
- .mask {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(153, 153, 153, 0.6);
- /* 灰色透明遮罩 */
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 1;
- }
- /* 白色圆圈 */
- .circle {
- background-color: white;
- width: 100px;
- height: 100px;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 15px;
- color: black;
- text-align: center;
- }
- .preview-box {
- position: relative;
- width: 350px;
- height: 350px;
- border-radius: 2px;
- .v_btn {
- width: 350px;
- z-index: 990;
- position: absolute;
- bottom: 144px;
- img {
- cursor: pointer;
- display: block;
- margin: 0 auto;
- }
- }
- .default_image {
- width: 350px;
- height: 350px;
- border-radius: 2px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- &.skeleton_default_image {
- background: $colorSkeleton;
- }
- }
- .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 {
- display: inline-block;
- width: 36px;
- 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;
- z-index: 999;
- background: #fff;
- .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: $colorMain;
- 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;
- // min-height: 160px;
- background: url(/goods/goods_detail_bg.png) 100% 100%;
- padding: 20px 20px 20px;
- box-sizing: border-box;
- }
- .download_warp {
- a {
- font-size: 12px;
- display: inline-block;
- text-decoration: underline;
- margin: 5px;
- }
- }
- .act_banner {
- width: 630px;
- height: 50px;
- background-position: center center;
- padding-left: 18px;
- padding-right: 20px;
- display: flex;
- align-items: center;
- position: relative;
- &.pre_not {
- background: url(/activity/pre_not_open.png) 100% 100%;
- }
- &.pre_do {
- background: url(/activity/pre_do_open.png) 100% 100%;
- }
- &.pin_not {
- background: url(/activity/pin_not_open.png) 100% 100%;
- }
- &.pin_do {
- background: url(/activity/pin_do_open.png) 100% 100%;
- }
- &.sec_not {
- background: url(/activity/sec_not_open.png) 100% 100%;
- }
- &.sec_do {
- background: url(/activity/sec_do_open.png) 100% 100%;
- }
- &.ladder_not {
- background: url(/activity/ladder_not_open.png) 100% 100%;
- }
- &.ladder_do {
- background: url(/activity/ladder_do_open.png) 100% 100%;
- }
- }
- .pintuan_left_num {
- min-width: 96px;
- height: 25px;
- border-radius: 11px;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 1px solid #ffffff;
- box-sizing: border-box;
- margin-right: 13px;
- img {
- width: 20px;
- height: 17px;
- margin-right: 4px;
- }
- }
- .group_return_regiment {
- padding: 0 12px;
- box-sizing: border-box;
- height: 25px;
- background: rgba(255, 255, 255, 1);
- border-radius: 0 15px 0 15px;
- font-size: 13px;
- //font-family: PingFang SC;
- font-weight: 400;
- color: rgba(233, 17, 30, 1);
- display: flex;
- align-items: center;
- justify-content: center;
- margin-left: -12px;
- }
- .SorC_remind {
- padding: 0 10px;
- height: 25px;
- background: #ffffff;
- border-radius: 11px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- img {
- width: 20px;
- height: 20px;
- margin-right: 3px;
- }
- .remind_on {
- color: #e60012;
- font-size: 13px;
- letter-spacing: 1px;
- font-weight: bold;
- //font-family: Microsoft YaHei;
- }
- .remind_off {
- color: #dbdbdb;
- font-size: 13px;
- letter-spacing: 1px;
- font-weight: bold;
- //font-family: Microsoft YaHei;
- }
- }
- .countDown0 {
- font-size: 14px;
- //font-family: PingFang SC;
- font-weight: 700;
- color: #ffffff;
- }
- .countDown1 {
- // width: 20px;
- // height: 18px;
- padding: 2px 3px;
- background: #ffffff;
- border-radius: 50%;
- font-size: 13px;
- //font-family: PingFang SC;
- font-weight: 500;
- color: #f12826;
- text-align: center;
- line-height: 18px;
- margin-left: 5px;
- }
- .countDown2 {
- font-size: 13px;
- color: #fff;
- margin-left: 5px;
- }
- .title {
- font-size: 20px;
- //font-family: HelloFont WenYiHei;
- font-weight: bold;
- font-style: italic;
- color: #ffffff;
- }
- .time_title {
- font-size: 14px;
- margin-left: 20px;
- color: #fff;
- }
- .desc {
- font-size: 14px;
- color: #fff;
- position: absolute;
- right: 20px;
- display: flex;
- }
- .activity_addDesc {
- margin-top: 10px;
- .preSale_addDesc {
- padding-left: 60px;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 22px;
- }
- }
- }
- }
- }
- // 商品主要信息 end
- }
- .sld_summary_goods_left {
- display: flex;
- justify-content: space-between;
- .goods_price {
- display: flex;
- .price_title {
- margin-right: 20px;
- text-transform: uppercase;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- &.activity_title {
- letter-spacing: 1px !important;
- }
- }
- .p_price {
- color: $colorMain2;
- font-size: 16px;
- font-weight: 600;
- margin-left: -6px;
- margin-right: 16px;
- &.skeleton_p_price {
- background: $colorSkeleton;
- width: 70px;
- display: inline-block;
- height: 18px;
- }
- span:nth-child(2) {
- font-size: 24px;
- }
- }
- }
- }
- .goodsMinOrder {
- font-size: 14px;
- margin: 10px 0;
- font-weight: bold;
- }
- .market_price {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- text-decoration: line-through;
- color: #666;
- margin-top: 8px;
- &.activity_style {
- text-decoration: none !important;
- }
- }
- .actual_sales {
- font-size: 14px;
- font-weight: 400;
- color: #aaaaaa;
- line-height: 30px;
- span {
- // color: $colorMain;
- color: #ec2116;
- }
- }
- // 优惠券 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: #feeaeb;
- 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;
- position: relative;
- .delivery_title {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 30px;
- }
- .delivery_address {
- height: 30px;
- background: #ffffff;
- border: 1px solid #dfdfdf;
- border-radius: 3px;
- padding: 0 11px;
- box-sizing: border-box;
- margin-left: 18px;
- cursor: pointer;
- span {
- display: inline-block;
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 30px;
- text-overflow: ellipsis;
- max-width: 275px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- i {
- font-size: 12px;
- margin-left: 10px;
- }
- }
- .address_dia {
- position: absolute;
- z-index: 1000;
- height: 310px;
- border: 1px solid #dfdfdf;
- background: #ffffff;
- top: 32px;
- width: 397px;
- left: 81px;
- overflow: auto;
- .add_dia_top {
- height: 30px;
- background: #f8f8f8;
- display: flex;
- .dia_top_item {
- padding: 0 25px;
- line-height: 30px;
- font-size: 13px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- cursor: pointer;
- }
- .sel_item {
- background: #ffffff !important;
- color: $colorMain;
- box-shadow: 0 2px 0px $colorMain inset;
- }
- }
- .add_dia_bottom {
- margin-top: 10px;
- padding: 0 20px;
- .usual_addr {
- padding-top: 10px;
- }
- .other_addr {
- .o_add_top {
- display: flex;
- .o_addr_item {
- padding: 4px 11px;
- border: 1px solid #dfdfdf;
- background: #eeeeee;
- color: #333333;
- font-size: 12px;
- font-weight: 400;
- cursor: pointer;
- }
- .o_sel {
- border-bottom: none;
- //font-family: Microsoft YaHei;
- background: #fff !important;
- }
- }
- .o_add_bottom {
- border-top: 1px solid #dfdfdf;
- margin-top: -1px;
- padding-top: 15px;
- display: flex;
- flex-wrap: wrap;
- .o_addrC_item {
- padding: 2px 6px;
- margin: 5px 9px;
- font-size: 12px;
- color: #333333;
- cursor: pointer;
- &:hover {
- color: $colorMain;
- }
- }
- .o_selected {
- color: $colorMain;
- }
- }
- }
- }
- }
- }
- // 配送地 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: 6px;
- }
- }
- // 运费 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: 52px;
- text-indent: "justify";
- white-space: nowrap;
- letter-spacing: 12px;
- }
- .goods_spec_pre_list {
- margin-left: 7px;
- flex-wrap: wrap;
- .specval_pre {
- margin-right: 7px;
- 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: 11px;
- }
- .quantity_edit {
- border: 1px solid #dddddd;
- margin-left: 10px;
- border-radius: 3px;
- // span {
- // -moz-user-select: none; /*火狐*/
- // -webkit-user-select: none; /*webkit浏览器*/
- // -ms-user-select: none; /*IE10*/
- // user-select: none;
- // display: block;
- // width: 30px;
- // height: 30px;
- // border: none;
- // border-radius: 3px;
- // text-align: center;
- // line-height: 30px;
- // cursor: pointer;
- // }
- .numred {
- display: flex;
- flex-direction: column;
- border-left: 1px solid #ddd;
- .sp {
- height: 20px;
- -moz-user-select: none;
- /*火狐*/
- -webkit-user-select: none;
- /*webkit浏览器*/
- -ms-user-select: none;
- /*IE10*/
- user-select: none;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 20px;
- border: none;
- font-size: 14px;
- color: #666666;
- cursor: pointer;
- background-color: #f5f5f5;
- &:first-child {
- border-bottom: 1px solid #ddd;
- }
- }
- }
- input {
- width: 46px;
- 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 {
- .goods_code {
- position: absolute;
- bottom: -164px;
- border: 1px solid #cccccc;
- padding: 10px;
- &::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;
- }
- }
- .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 {
- padding: 5px;
- height: 30px;
- border: 1px solid #00985e;
- border-radius: 5px;
- font-size: 16px;
- color: #00985e;
- line-height: 30px;
- cursor: pointer;
- font-weight: 700;
- }
- .add_cart {
- width: 175px;
- 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 {
- width: 22px;
- height: 22px;
- margin-right: 10px;
- }
- }
- .preSell_but {
- width: 180px;
- height: 50px;
- background: #ec2116;
- border-radius: 3px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 19px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- cursor: pointer;
- img {
- margin-right: 5px;
- }
- }
- .pin_but_text {
- font-size: 16px;
- line-height: 20px;
- }
- }
- //立即购买 加入购物车 end
- // 看了又看 start
- .more_goods {
- margin-left: 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;
- &.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;
- }
- }
- p:nth-of-type(1) {
- 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;
- }
- p:nth-of-type(2) {
- width: 150px;
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: $colorMain;
- text-align: center;
- }
- }
- }
- }
- // 看了又看 end
- // 店铺信息 start
- .store_info {
- width: 250px;
- background: #ffffff;
- border: 1px solid #eee;
- 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;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- 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;
- 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;
- }
- }
- }
- .store_btn {
- margin-top: 14px;
- .store_btn_pre {
- -moz-user-select: none;
- /*火狐*/
- -webkit-user-select: none;
- /*webkit浏览器*/
- -ms-user-select: none;
- /*IE10*/
- user-select: none;
- width: 114px;
- height: 29px;
- background: #ffffff;
- border-radius: 3px;
- margin-right: 4px;
- cursor: pointer;
- border: 1px solid #dfdfdf;
- img {
- width: 20px;
- height: 20px;
- margin-right: 5px;
- }
- .go_store_btn {
- font-size: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 39px;
- margin-top: 3px;
- }
- .btn_pre_img {
- width: 16px;
- height: 16px;
- }
- &: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 #eee;
- border-radius: 3px;
- margin-top: 15px;
- .flex_row_between_center {
- .store_popular_active {
- width: 100%;
- }
- }
- .store_popular_btn {
- span {
- width: 125px;
- height: 40px;
- background: $colorMain;
- 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: 12px;
- //font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- &:nth-child(2) {
- font-size: 14px;
- //font-family: Microsoft YaHei;
- font-weight: bold;
- color: $colorMain2;
- }
- }
- }
- }
- }
- }
- // 店铺推荐及热门收藏 end
- // 商品详情 评价 商品服务 店铺热销 start
- .goods_description {
- margin-left: 15px;
- border: 1px solid #eee;
- border-radius: 3px;
- .goods_description_title {
- width: 934px;
- height: 40px;
- background: #f8f8f8;
- .description_title_left {
- width: 100%;
- 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;
- flex: 0 0 25%;
- }
- .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;
- word-break: break-all;
- font-size: 16px;
- .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:nth-child(n + 13) {
- display: none;
- }
- }
- .goods_parameter_pre {
- margin-bottom: 21px;
- margin-right: 24px;
- width: 200px;
- span {
- font-size: 12px;
- line-height: 17px;
- //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;
- word-break: break-all;
- }
- .replyContent {
- max-width: 790px;
- margin-top: 15px;
- line-height: 20px;
- font-size: 13px;
- .seller {
- color: #999999;
- font-size: 12px;
- }
- .contentRe {
- margin-right: 5px;
- word-break: break-all;
- }
- }
- .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;
- border: 1px solid #dcdcdc;
- }
- }
- }
- }
- }
- }
- }
- // 商品评价 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 #f5f5f5;
- border-radius: 2px;
- margin-right: 12px;
- cursor: pointer;
- padding-bottom: 10px;
- &:hover a {
- 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;
- word-break: break-all;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- margin: 10px;
- }
- .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;
- }
- .detail-info {
- border-bottom: 1px solid #e9eef4;
- border-top: 1px solid #e9eef4;
- margin: 10px 0;
- table {
- width: 100%;
- table-layout: fixed;
- word-break: break-word;
- font-size: 14px;
- line-height: 21px;
- th {
- color: #333;
- padding-bottom: 15px;
- padding-right: 20px;
- vertical-align: top;
- text-align: left;
- font-weight: 400;
- }
- .th-label {
- word-break: break-word;
- }
- td {
- color: #222;
- padding: 0 10px;
- vertical-align: top;
- word-break: keep-all;
- word-wrap: break-word;
- }
- }
- }
|