| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142 |
- /* 面包屑和店铺信息 */
- .hid {
- display: block;
- height: 100%;
- overflow: hidden;
- }
- .detail .crumbs-shop {
- width: 100%;
- background: #f7f7f7;
- }
- .detail .crumbs-shop .content {
- display: flex;
- }
- .detail .crumbs-shop .crumbs {
- flex: 1;
- padding: 16px 0 14px;
- }
- .detail .crumbs-shop .shop-box {
- display: flex;
- height: 16px;
- line-height: 16px;
- padding: 16px 0 14px;
- }
- .detail .crumbs-shop .shop-box .shop {
- display: block;
- height: 16px;
- line-height: 16px;
- }
- .detail .crumbs-shop .shop-box .shop .self {
- background: #e1251b;
- color: #fff;
- padding: 1px 3px;
- display: inline-block;
- height: 14px;
- line-height: 14px;
- border-radius: 2px;
- margin-right: 5px;
- vertical-align: top;
- }
- .detail .crumbs-shop .shop-box .shop .shop-icon {
- width: 14px;
- height: 14px;
- vertical-align: top;
- display: inline-block;
- margin-top: 1px;
- margin-right: 2px;
- background: url(../images/icons.png) no-repeat -28px -458px;
- font-size: 0;
- }
- .detail .crumbs-shop .shop-box .shop:hover .shop-icon {
- background-position: -9px -458px;
- }
- .detail .crumbs-shop .shop-box .shop:hover {
- color: #e1251b;
- }
- .detail .crumbs-shop .shop-box .favourite {
- display: inline-block;
- cursor: pointer;
- margin: 0 15px;
- }
- .detail .crumbs-shop .shop-box .favourite:hover {
- color: #e1251b;
- }
- .detail .crumbs-shop .shop-box .favourite .favourite-icon {
- vertical-align: top;
- display: inline-block;
- width: 16px;
- height: 16px;
- background: url(../images/icons.png) no-repeat 0 -135px;
- margin-right: 5px;
- }
- .detail .crumbs-shop .shop-box .favourite:hover .favourite-icon,
- .detail .crumbs-shop .shop-box .favourite.active .favourite-icon {
- background-position: -21px -135px;
- }
- /* 面包屑和店铺信息 end */
- /* 详情上部分 */
- .detail .detail-up {
- display: flex;
- margin-top: 20px;
- }
- /* 商品图片 */
- .detail .detail-up .img {
- width: 450px;
- margin-right: 40px;
- }
- .detail .detail-up .img .big-img {
- width: 100%;
- height: 450px;
- text-align: center;
- line-height: 430px;
- font-size: 0;
- position: relative;
- }
- .prod-video {
- background-color: #000;
- }
- .detail .detail-up .img .oper-btn {
- position: absolute;
- display: flex;
- justify-content: center;
- cursor: pointer;
- border-radius: 50%;
- background: rgba(0, 0, 0, 0.09);
- width: 50px;
- height: 50px;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- opacity: 0.6;
- }
- .detail .detail-up .img .oper-btn:hover {
- opacity: 1;
- }
- .close-btn {
- position: absolute;
- display: flex;
- justify-content: center;
- cursor: pointer;
- border-radius: 50%;
- width: 20px;
- height: 20px;
- top: 20px;
- right: 10px;
- transform: translateX(-50%);
- }
- .detail .detail-up .img .oper-btn img {
- width: 100%;
- height: 100%;
- }
- .detail .detail-up .img .big-img img {
- max-width: 100%;
- max-height: 100%;
- vertical-align: middle;
- }
- .detail .detail-up .img .small-img {
- position: relative;
- }
- .detail .detail-up .img .small-img .left-arrow,
- .detail .detail-up .img .small-img .right-arrow {
- position: absolute;
- top: 0;
- display: block;
- width: 35px;
- height: 68px;
- line-height: 64px;
- font-size: 40px;
- color: #ccc;
- font-family: Consolas;
- cursor: pointer;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- }
- .detail .detail-up .img .small-img .left-arrow {
- left: 0;
- text-align: left;
- }
- .detail .detail-up .img .small-img .right-arrow {
- right: 0;
- text-align: right;
- }
- .detail .detail-up .img .small-img .left-arrow:hover,
- .detail .detail-up .img .small-img .right-arrow:hover {
- color: #999;
- }
- .detail .detail-up .img .small-img .limit {
- color: #eee;
- }
- .detail .detail-up .img .small-img .limit:hover {
- color: #eee;
- }
- .detail .detail-up .img .small-img .img-box {
- margin: 15px 35px 0;
- width: 380px;
- height: 68px;
- overflow: hidden;
- position: relative;
- }
- .detail .detail-up .img .small-img .img-box .offset-box {
- position: absolute;
- left: 0;
- -webkit-transition: all 0.3s;
- -moz-transition: all 0.3s;
- transition: all 0.3s;
- }
- .detail .detail-up .img .small-img .img-box .item {
- display: inline-block;
- width: 64px;
- height: 64px;
- font-size: 0;
- line-height: 64px;
- text-align: center;
- border: 2px solid #fff;
- margin-left: 10px;
- }
- .detail .detail-up .img .small-img .img-box .item:first-child {
- margin-left: 0;
- }
- .detail .detail-up .img .small-img .img-box .item.active,
- .detail .detail-up .img .small-img .img-box .item:hover {
- border: 2px solid #e1251b;
- }
- .detail .detail-up .img .small-img .img-box .item img {
- max-width: 100%;
- max-height: 100%;
- vertical-align: middle;
- }
- /* 商品图片 end */
- /* 商品详情 */
- .detail .detail-up .info {
- flex: 1;
- }
- .detail .detail-up .info .name-box {
- margin-bottom: 15px;
- margin-top: 5px;
- }
- .detail .detail-up .info .name-box .name {
- width: 710px;
- font-size: 24px;
- line-height: 28px;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- position: relative;
- word-wrap: break-word;
- word-break: break-all;
- }
- .detail .detail-up .info .name-box .des {
- margin-top: 7px;
- color: #999;
- line-height: 18px;
- font-size: 12px;
- padding-right:15px
- }
- .detail .detail-up .info .name-box .des .brief {
- max-width: 550px;
- line-clamp: 2;
- -webkit-line-clamp: 2;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- overflow: hidden;
- word-break: break-all;
- text-overflow: ellipsis;
- }
- .detail .detail-up .info .name-box .des .discount-info {
- color: #999;
- margin-top:5px;
- max-width: 550px;
- line-clamp: 2;
- -webkit-line-clamp: 2;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- overflow: hidden;
- word-break: break-all;
- text-overflow: ellipsis;
- }
- .detail .detail-up .info .name-box .des .discount-info .go-discount {
- color: #005ea7;
- }
- .detail .detail-up .info .name-box .des .discount-info .go-discount:hover {
- text-decoration: underline;
- }
- .detail .detail-up .info .name-box .des .discount-info .go-discount .arr {
- font-family: Consolas;
- }
- .detail .detail-up .info .activity {
- height: 40px;
- line-height: 38px;
- display: flex;
- padding: 0 15px 0 0;
- color: #fff;
- background: -webkit-linear-gradient(left, #f53e00, #e1251b);
- background: -o-linear-gradient(right, #f53e00, #e1251b);
- background: -moz-linear-gradient(right, #f53e00, #e1251b);
- background: linear-gradient(to right, #f53e00, #e1251b);
- position: relative;
- border-bottom: 1px solid #eb6060;
- }
- .detail .detail-up .info .activity .name {
- flex: 1;
- font-size: 16px;
- padding-left: 50px;
- position: relative;
- margin-right: 20px;
- word-break: break-word;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .detail .detail-up .info .activity .name::before {
- position: absolute;
- left: 0;
- top: 0;
- display: block;
- width: 40px;
- height: 40px;
- content: ' ';
- background: url(../images/icons.png) no-repeat;
- }
- .detail .detail-up .info .activity .name.flash-sale::before {
- background-position: -65px -182px;
- }
- .detail .detail-up .info .activity .name.group-buy::before {
- background-position: -10px -182px;
- }
- .detail .detail-up .info .activity .limit .time {
- font-family: arial;
- }
- .detail .detail-up .info .price-box {
- background: #f9f9f9;
- border-top: 1px dotted #eee;
- border-bottom: 1px dotted #eee;
- padding: 0 0 13px;
- line-height: 24px;
- margin-top: -1px;
- margin-bottom: 20px;
- }
- .detail .detail-up .info .price-box .item {
- display: flex;
- margin-top: 15px;
- }
- .detail .detail-up .info .price-box .discount {
- align-items: baseline;
- }
- .detail .detail-up .info .price-box .item .tit {
- margin: 0 15px;
- color: #999;
- }
- .detail .detail-up .info .price-box .item .con {
- flex: 1;
- }
- .detail .detail-up .info .price-box .item .con.pre-sale-red {
- color: #e43130;
- }
- .detail .detail-up .info .price-box .item.goods-price {
- height: 30px;
- line-height: 35px;
- }
- .detail .detail-up .info .price-box .item.goods-price .con {
- display: flex;
- }
- .detail .detail-up .info .price-box .item.goods-price .con .price {
- font-size: 18px;
- height: 30px;
- line-height: 30px;
- display: flex;
- align-items: baseline;
- }
- .detail .detail-up .info .price-box .item.goods-price .con .price .big {
- font-size: 26px;
- }
- .detail .detail-up .info .price-box .item.goods-price .con .old-price {
- font-family: arial;
- color: #999;
- text-decoration: line-through;
- margin-left: 10px;
- }
- .detail .detail-up .info .price-box .item.coupons .con {
- display: flex;
- flex-wrap: wrap;
- }
- .detail .detail-up .info .price-box .item.coupons .con .conpon {
- display: inline-block;
- margin-right: 12px;
- position: relative;
- height: 16px;
- line-height: 16px;
- text-align: center;
- border-top: 1px solid #e1251b;
- border-bottom: 1px solid #e1251b;
- padding: 0 10px 0 12px;
- background: #ffdedf;
- cursor: pointer;
- color: #e1251b;
- font-family: arial;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- }
- .detail .detail-up .info .price-box .item.coupons .con .conpon:hover {
- background: #fff;
- }
- .detail .detail-up .info .price-box .item.coupons .con .conpon::before,
- .detail .detail-up .info .price-box .item.coupons .con .conpon::after {
- position: absolute;
- top: -1px;
- display: block;
- height: 18px;
- width: 2px;
- content: ' ';
- background: url(../images/icons.png) no-repeat 0 -453px;
- }
- .detail .detail-up .info .price-box .item.coupons .con .conpon::before {
- left: 0;
- background-position: -2px -453px;
- }
- .detail .detail-up .info .price-box .item.coupons .con .conpon::after {
- right: -2px;
- }
- .detail .detail-up .info .price-box .item.coupons .con .more {
- color: #999;
- }
- .detail .detail-up .info .price-box .item.coupons .con .more:hover {
- color: #e1251b;
- }
- .detail .detail-up .info .price-box .item.coupons .con .arrow {
- font-family: Consolas;
- }
- .detail .detail-up .info .price-box .item.discount .con .discount-item {
- display: flex;
- margin-bottom: 5px;
- align-items: center;
- flex-wrap: wrap;
- line-height: 24px;
- }
- .detail .detail-up .info .price-box .item.discount .con .discount-item .type {
- margin-right: 5px;
- padding: 1px 3px;
- border: 1px solid #e1251b;
- color: #e1251b;
- line-height: 14px;
- height: 14px;
- }
- .detail .detail-up .info .price-box .item.discount .con .discount-item .packge-item {
- display: flex;
- align-items: center;
- margin-left: 10px;
- margin-right: 10px;
- }
- .detail .detail-up .info .price-box .item.discount .con .discount-item .packge-item img {
- width: 29px;
- height: 29px;
- margin-right: 5px;
- border: 1px solid #f2f2f2;
- }
- .detail .detail-up .info .price-box .item.discount .con .discount-item .packge-item .count {
- font-size: 12px;
- display: flex;
- align-items: center;
- color: #999999;
- }
- .detail .detail-up .info .price-box .item.discount .con .discount-item .text {
- margin: 0 10px 0 5px;
- max-width: 500px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: keep-all;
- }
- .detail .detail-up .info .price-box .item.discount .con .discount-item .det {
- color: #999;
- }
- .detail
- .detail-up
- .info
- .price-box
- .item.discount
- .con
- .discount-item
- .det
- .arr {
- font-family: Consolas;
- }
- .detail
- .detail-up
- .info
- .price-box
- .item.discount
- .con
- .discount-item
- .det:hover {
- color: #e1251b;
- }
- .detail
- .detail-up
- .info
- .price-box
- .item.discount
- .con
- .discount-item.item-box {
- display: inline-block;
- }
- .detail
- .detail-up
- .info
- .price-box
- .item.discount
- .con
- .discount-item.item-box
- .text,
- .detail
- .detail-up
- .info
- .price-box
- .item.discount
- .con
- .discount-item.item-box
- .det {
- display: none;
- }
- .detail
- .detail-up
- .info
- .price-box
- .item.discount
- .con:hover
- .discount-item.item-box {
- display: flex;
- }
- .detail
- .detail-up
- .info
- .price-box
- .item.discount
- .con:hover
- .discount-item.item-box
- .text,
- .detail
- .detail-up
- .info
- .price-box
- .item.discount
- .con:hover
- .discount-item.item-box
- .det {
- display: block;
- }
- .detail .detail-up .info .sku-box .items {
- display: flex;
- margin-top: 10px;
- }
- .detail .detail-up .info .sku-box .items .tit {
- margin: 0 15px;
- color: #999;
- display: block;
- line-height: 30px;
- word-break: break-all; /* 解决数字不换行 */
- width: 5em; /* 5个字的大小 */
- }
- .detail .detail-up .info .sku-box .items .con {
- flex: 1;
- display: flex;
- flex-wrap: wrap;
- }
- .detail .detail-up .info .sku-box .items .con .item {
- display: inline-block;
- border: 1px solid #ddd;
- position: relative;
- margin-right: 10px;
- margin-bottom: 10px;
- vertical-align: middle;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- cursor: pointer;
- }
- .detail .detail-up .info .sku-box .items .con .item.not-optional {
- border: 1px dashed #bbb;
- color: #bbb;
- }
- .detail .detail-up .info .sku-box .items .con .item.active,
- .detail .detail-up .info .sku-box .items .con .item:hover {
- border: 1px solid #e1251b;
- color: #e1251b;
- }
- .detail .detail-up .info .sku-box .items.sku-img .tit {
- line-height: 52px;
- }
- .detail .detail-up .info .sku-box .items.sku-img .con .item {
- width: 50px;
- height: 50px;
- font-size: 0;
- line-height: 50px;
- }
- .detail .detail-up .info .sku-box .items.sku-img .con .item img {
- width: 100%;
- height: 100%;
- vertical-align: middle;
- }
- .detail .detail-up .info .sku-box .items.sku-text .con .item {
- padding: 0 16px;
- line-height: 28px;
- height: 28px;
- }
- .detail .detail-up .info .sku-box .items .con .goods-number {
- height: 30px;
- }
- .detail .detail-up .info .sku-box .items .con .goods-number .reduce,
- .detail .detail-up .info .sku-box .items .con .goods-number .increase {
- display: inline-block;
- vertical-align: top;
- width: 30px;
- height: 30px;
- background: #e9e9e9;
- font-size: 22px;
- text-align: center;
- line-height: 26px;
- color: #999;
- cursor: pointer;
- }
- .detail .detail-up .info .sku-box .items .con .goods-number .limit {
- cursor: not-allowed;
- color: #ccc;
- }
- .detail .detail-up .info .sku-box .items .con .goods-number .number {
- border: 0;
- width: 60px;
- height: 30px;
- text-align: center;
- font-family: arial;
- vertical-align: top;
- }
- .detail .detail-up .info .btns {
- margin-top: 30px;
- padding-left: 15px;
- display: flex;
- }
- .detail .detail-up .info .btns .buy-now,
- .detail .detail-up .info .btns .add-cart,
- .detail .detail-up .info .btns .collect,
- .detail .detail-up .info .btns .collected,
- .detail .detail-up .info .btns .shortage {
- height: 46px;
- line-height: 46px;
- padding: 0 50px;
- font-size: 16px;
- border-radius: 2px;
- }
- .detail .detail-up .info .btns .buy-now {
- background: #e1251b;
- color: #fff;
- height: 48px;
- line-height: 48px;
- }
- .detail .detail-up .info .btns .buy-now:hover {
- opacity: 0.9;
- }
- .detail .detail-up .info .btns .add-cart {
- margin-left: 10px;
- background: #ffdedf;
- border: 1px solid #e1251b;
- color: #e1251b;
- }
- .detail .detail-up .info .btns .add-cart:hover {
- background: #fff;
- }
- .detail .detail-up .info .btns .add-cart-group {
- padding: 0 22px;
- }
- .detail .detail-up .info .btns .collect,
- .detail .detail-up .info .btns .collected {
- border: 1px solid #ddd;
- padding: 0 30px;
- margin-left: 10px;
- }
- .detail .detail-up .info .btns .collect .icon {
- display: inline-block;
- width: 16px;
- height: 16px;
- vertical-align: top;
- margin-right: 10px;
- margin-top: 16px;
- background: url(../images/icons.png) no-repeat 0 -156px;
- }
- .detail .detail-up .info .btns .collected .icon {
- display: inline-block;
- width: 16px;
- height: 16px;
- vertical-align: top;
- margin-right: 10px;
- margin-top: 16px;
- background: url(../images/icons.png) no-repeat -21px -156px;
- }
- .detail .detail-up .info .btns .collect.active .icon {
- background-position: -21px -156px;
- }
- .detail .detail-up .info .btns .shortage {
- height: 48px;
- line-height: 48px;
- background: #f7f7f7;
- color: #999;
- cursor: not-allowed;
- }
- /* 拼团按钮 */
- .detail .detail-up .info .group-btn .build-group,
- .detail .detail-up .info .group-btn .alone-group {
- display: block;
- position: relative;
- height: 48px;
- padding: 0 20px;
- color: #fff;
- text-align: center;
- font-size: 14px;
- font-weight: 600;
- border-radius: 2px;
- min-width: 90px;
- }
- .detail .detail-up .info .group-btn .en,
- .detail .detail-up .info .group-btn .en {
- padding: 0 10px;
- }
- .detail .detail-up .info .group-btn .alone-group:hover {
- opacity: 0.9;
- }
- .detail .detail-up .info .group-btn .build-group {
- background: #e1251b;
- }
- .detail .detail-up .info .group-btn .alone-group {
- background: #85c360;
- margin-left: 10px;
- }
- .detail .detail-up .info .group-btn .alone-group.cannotbuy {
- background: #bbb;
- }
- .detail .detail-up .info .group-btn .group-price {
- display: block;
- line-height: 14px;
- margin-top: 9px;
- }
- .detail .detail-up .info .group-btn .build-group .group-text {
- display: block;
- line-height: 14px;
- margin-top: 3px;
- }
- .detail .detail-up .info .group-btn .build-group .group-code {
- display: none;
- position: absolute;
- left: 0;
- top: 58px;
- width: 130px;
- box-sizing: border-box;
- border: 1px solid #eee;
- background: #fff;
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.07);
- }
- .detail .detail-up .info .group-btn .build-group:hover .group-code {
- display: block;
- }
- .detail .detail-up .info .group-btn .build-group .group-code::before,
- .detail .detail-up .info .group-btn .build-group .group-code::after {
- position: absolute;
- left: 20px;
- display: block;
- width: 0;
- height: 0;
- border: 5px solid transparent;
- content: ' ';
- }
- .detail .detail-up .info .group-btn .build-group .group-code::before {
- top: -11px;
- border-bottom: 5px solid #e4e4e4;
- }
- .detail .detail-up .info .group-btn .build-group .group-code::after {
- top: -10px;
- border-bottom: 5px solid #f5f5f5;
- }
- .detail .detail-up .info .group-btn .build-group .group-code .text {
- display: block;
- width: 100%;
- height: 30px;
- line-height: 30px;
- padding-left: 10px;
- box-sizing: border-box;
- background: #f5f5f5;
- font-size: 13px;
- font-family: arial;
- font-weight: 400;
- text-align: left;
- color: #666;
- }
- .detail .detail-up .info .group-btn .build-group .group-code .code-img {
- display: block;
- margin: 10px auto;
- width: 110px;
- height: 110px;
- font-size: 0;
- }
- .detail .detail-up .info .group-btn .build-group .group-code .display-none {
- display: none !important;
- }
- .detail .detail-up .info .group-btn .build-group .group-code .code-img img {
- width: 100%;
- height: 100%;
- }
- /* 拼团按钮 end */
- /* 商品详情 end */
- /* 详情上部分 end */
- /* 详情下部分 */
- .detail .detail-down {
- display: flex;
- margin-top: 30px;
- }
- .detail .detail-down .introduce-box {
- flex: 1;
- margin-right: 20px;
- max-width: 938px;
- }
- .detail .detail-down .introduce-box.packages{
- margin-right: 0;
- max-width: 1200px;
- }
- .detail .detail-down .introduce-box .tab {
- display: flex;
- flex-wrap: wrap;
- background: #f9f9f9;
- border: 1px solid #eee;
- border-bottom-color: #e1251b;
- }
- .detail .detail-down .introduce-box .tab .item {
- height: 40px;
- line-height: 40px;
- padding: 0 30px;
- font-size: 14px;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- cursor: pointer;
- margin-left: -1px;
- margin-top: -1px;
- }
- .detail .detail-down .introduce-box .tab .item:hover {
- color: #e1251b;
- }
- .detail .detail-down .introduce-box .tab .item.active {
- background: #e1251b;
- color: #fff;
- }
- .detail .detail-down .introduce-box .tab .item .number {
- color: #e1251b;
- font-family: arial;
- }
- .detail .detail-down .introduce-box .tab .item.active .number {
- color: #fff;
- }
- /* 商品介绍 */
- .detail .detail-down .introduce-box .introduce {
- margin-top: 30px;
- }
- .detail .detail-down .introduce-box .introduce img {
- display: block;
- margin: auto;
- max-width: 100%;
- }
- /* 商品介绍 end */
- /* 套餐 */
- .detail .detail-down .introduce-box.packages .packages-content {
- margin-top: 20px;
- display: flex;
- }
- .detail .detail-down .introduce-box.packages .packages-content .add-icon {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 34px;
- height: 34px;
- margin: 43px 40px 0;
- }
- .detail .detail-down .introduce-box.packages .packages-content .add-icon::before {
- content: '';
- position: absolute;
- width: 26px;
- border-top: 4px solid #ddd;
- }
- .detail .detail-down .introduce-box.packages .packages-content .add-icon::after {
- content: '';
- position: absolute;
- height: 26px;
- border-left: 4px solid #ddd;
- }
- .detail .detail-down .introduce-box.packages .packages-content .mean-icon {
- display: inline-block;
- width: 34px;
- height: 34px;
- margin: 53px 40px 0 0;
- }
- .detail .detail-down .introduce-box.packages .packages-content .mean-icon::before {
- content: '';
- position: absolute;
- width: 26px;
- border-top: 4px solid #ddd;
- }
- .detail .detail-down .introduce-box.packages .packages-content .mean-icon::after {
- content: '';
- position: absolute;
- margin-top: 10px;
- width: 26px;
- border-bottom: 4px solid #ddd;
- /* transform: rotate(45deg); */
- }
- .detail .detail-down .introduce-box.packages .packages-content .left{
- width: 938px;
- margin-right: 20px;
- display: flex;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- width: 120px;
- height: 200px;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box.necessary {
- margin-right: 70px;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box.necessary:last-child {
- margin-right: 0;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box .img{
- width: 120px;
- height: 120px;
- box-sizing: border-box;
- border: 1px solid #f2f2f2;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box .prod-name{
- margin-top: 10px;
- font-size: 14px;
- font-weight: 400;
- line-height: 19px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- color: #333333;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box .checkbox {
- margin-right: 4px;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box .price{
- margin-top: 10px;
- font-size: 14px;
- font-weight: 400;
- color: #E1251B;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box .price .price-count-con{
- display: flex;
- align-items: center;
- flex: 1;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box .price .price-count-con > span{
- flex: 1;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- word-break: break-all;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .detail .detail-down .introduce-box.packages .packages-content .left .prod-box .price .combo-count {
- margin-left: auto;
- width: 40px;
- color: #999;
- text-align: right;
- }
- .detail .detail-down .introduce-box.packages .packages-content .right{
- width: 240px;
- display: flex;
- }
- .detail .detail-down .introduce-box.packages .packages-content .right .item {
- margin-top: 12px;
- }
- .detail .detail-down .introduce-box.packages .packages-content .right .settlement-box{
- width: 140px;
- }
- .detail .detail-down .introduce-box.packages .packages-content .right .settlement-box .text{
- font-size: 14px;
- font-weight: 400;
- line-height: 19px;
- color: #666666;
- }
- .detail .detail-down .introduce-box.packages .packages-content .right .settlement-box .price-text {
- font-size: 16px;
- font-weight: bold;
- line-height: 21px;
- color: #E1251B;
- }
- .detail .detail-down .introduce-box.packages .packages-content .right .settlement-box .btn {
- width: 104px;
- height: 33px;
- background: #E1251B;
- font-size: 14px;
- font-weight: 400;
- line-height: 19px;
- color: #FFFFFF;
- display: flex;
- justify-content: center;
- align-items:center;
- cursor: pointer;
- }
- .detail .detail-down .introduce-box.packages .packages-content .right .settlement-box .btn-add-cart {
- width: 104px;
- height: 33px;
- background: #FFECEC;
- border: 1px solid #E1251B;
- font-size: 14px;
- font-weight: 400;
- line-height: 19px;
- color: #E1251B;
- display: flex;
- justify-content: center;
- align-items:center;
- cursor: pointer;
- box-sizing: border-box;
- }
- /* 套餐end */
- /* 商品评论 */
- .detail .detail-down .introduce-box .comment {
- margin-top: 30px;
- }
- .detail .detail-down .introduce-box .comment .good-rates {
- display: flex;
- padding: 20px 0;
- }
- .detail .detail-down .introduce-box .comment .good-rates .score {
- border-right: 1px solid #eee;
- text-align: center;
- display: flex;
- padding: 0 60px;
- align-items: center;
- }
- .detail .detail-down .introduce-box .comment .good-rates .score .tit {
- margin-right: 20px;
- font-size: 14px;
- }
- .detail .detail-down .introduce-box .comment .good-rates .score .con {
- font-size: 45px;
- color: #e1251b;
- font-family: arial;
- }
- .detail .detail-down .introduce-box .comment .good-rates .average {
- margin-left: 50px;
- }
- .detail .detail-down .introduce-box .comment .good-rates .average .item {
- display: flex;
- height: 14px;
- line-height: 14px;
- margin-top: 10px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .good-rates
- .average
- .item:first-child {
- margin-top: 0;
- }
- .detail .detail-down .introduce-box .comment .good-rates .average .item .number,
- .detail .detail-down .introduce-box .comment .good-rates .average .item .text {
- font-family: arial;
- display: inline-block;
- vertical-align: top;
- }
- .detail .detail-down .introduce-box .comment .good-rates .average .item .stars {
- margin: 0 10px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .good-rates
- .average
- .item
- .stars
- .star,
- .detail
- .detail-down
- .introduce-box
- .comment
- .good-rates
- .average
- .item
- .stars
- .star-gray {
- display: inline-block;
- vertical-align: top;
- width: 14px;
- height: 14px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .good-rates
- .average
- .item
- .stars
- .star {
- background: url(../images/icons.png) no-repeat;
- background-position: -42px -138px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .good-rates
- .average
- .item
- .stars
- .star-gray {
- background: url(../images/icons.png) no-repeat;
- background-position: -61px -138px;
- }
- .detail .detail-down .introduce-box .comment .comment-tab {
- display: flex;
- background: #f9f9f9;
- padding: 10px;
- border: 1px solid #eee;
- margin-top: 20px;
- }
- .detail .detail-down .introduce-box .comment .comment-tab .item {
- padding: 0 10px;
- cursor: pointer;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- }
- .detail .detail-down .introduce-box .comment .comment-tab .item:hover,
- .detail .detail-down .introduce-box .comment .comment-tab .item.active {
- color: #e1251b;
- }
- .detail .detail-down .introduce-box .comment .comment-tab .item .number {
- font-family: arial;
- }
- .detail .detail-down .introduce-box .comment .comment-con {
- margin-top: 15px;
- }
- .detail .detail-down .introduce-box .comment .comment-con .item {
- padding: 15px;
- display: flex;
- border-bottom: 1px solid #eee;
- }
- .detail .detail-down .introduce-box .comment .comment-con .item .buyer-msg {
- width: 80px;
- text-align: center;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-msg
- .img {
- width: 50px;
- height: 50px;
- border-radius: 50%;
- overflow: hidden;
- margin: auto;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-msg
- .img
- img {
- width: 100%;
- height: 100%;
- display: block;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-msg
- .name {
- margin: 7px auto 0;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .detail .detail-down .introduce-box .comment .comment-con .item .buyer-comment {
- margin-left: 10px;
- line-height: 20px;
- flex: 1;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .stars
- .star,
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .stars
- .star-gray {
- display: inline-block;
- vertical-align: top;
- width: 14px;
- height: 14px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .stars {
- padding-top: 2px;
- height: 14px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .stars
- .star {
- background: url(../images/icons.png) no-repeat;
- background-position: -42px -138px;
- margin-right: 3px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .stars
- .star-gray {
- background: url(../images/icons.png) no-repeat;
- background-position: -61px -138px;
- margin-right: 3px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .text {
- margin-top: 5px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .img-box
- .img {
- display: inline-block;
- text-align: center;
- width: 60px;
- height: 60px;
- line-height: 60px;
- font-size: 0;
- border: 1px solid #fff;
- margin: 10px 10px 0 0;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .img-box
- .img:hover {
- border-color: #e1251b;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .img-box
- .img
- img {
- display: inline-block;
- text-align: center;
- max-width: 100%;
- max-height: 100%;
- vertical-align: middle;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- cursor: pointer;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .time-sku {
- margin-top: 10px;
- color: #999;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .time-sku
- .time {
- font-family: arial;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .time-sku
- .sku {
- margin-left: 20px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .append-comment {
- margin-top: 10px;
- padding-top: 10px;
- border-top: 1px solid #eee;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .append-comment
- .append-time {
- color: #999;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .append-comment
- .append-con {
- margin-top: 5px;
- padding-bottom: 3px;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .seller-reply {
- margin-top: 10px;
- padding-top: 10px;
- border-top: 1px solid #eee;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .seller-reply
- .tit {
- color: #e1251b;
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .seller-reply
- .con {
- margin-top: 5px;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- /* -webkit-line-clamp: 3; */
- -webkit-box-orient: vertical;
- position: relative;
- line-height: 1.5;
- word-wrap: break-word;
- word-break: break-all;
- word-break: break-word
- }
- .detail
- .detail-down
- .introduce-box
- .comment
- .comment-con
- .item
- .buyer-comment
- .seller-reply
- .time {
- margin-top: 10px;
- color: #999;
- font-family: arial;
- }
- .detail .detail-down .introduce-box .comment .comment-con .comment-empty {
- text-align: center;
- color: #999;
- padding: 80px 0;
- border-bottom: 1px solid #eee;
- }
- .detail .detail-down .introduce-box .comment .pages {
- margin-top: 20px;
- }
- /* 评论大图 */
- .introduce-box .comment .comment-con .buyer-comment .big-img-show {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 1000;
- background-color: #333;
- overflow: hidden;
- }
- .introduce-box .comment .comment-con .buyer-comment .big-img-show .left-arrow {
- width: 100px;
- height: 100px;
- font-size: 80px;
- color: #d8d3d3;
- position: absolute;
- top: 40%;
- left: 10%;
- z-index: 1002;
- cursor: pointer;
- }
- .introduce-box .comment .comment-con .buyer-comment .big-img-show .right-arrow {
- width: 100px;
- height: 100px;
- font-size: 80px;
- color: #d8d3d3;
- position: absolute;
- top: 40%;
- right: 10%;
- z-index: 1002;
- cursor: pointer;
- }
- .introduce-box .comment .comment-con .buyer-comment .big-img-show .mask {
- position: relative;
- top: 0;
- left: 0;
- /* width: 100%; */
- width: calc(100% + 17px);
- height: 100%;
- /* background: rgba(0, 0, 0, 0.5); */
- background: rgba(0, 0, 0);
- opacity: 0.9;
- /* overflow-y: hidden; */
- }
- .introduce-box .comment .comment-con .buyer-comment .big-img-show img {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: auto;
- max-height: 100%;
- z-index: 1001;
- }
- /* 视频大小 */
- .introduce div p video {
- width: 938px;
- }
- /* 商品评论 end */
- .detail .detail-down .side {
- width: 242px;
- }
- /* 店内搜索 */
- .detail .detail-down .side .shop-search {
- border: 1px solid #eee;
- }
- .detail .detail-down .side .shop-search .tit,
- .detail .detail-down .side .shop-category .tit,
- .detail .detail-down .side .sale-well .tit {
- background: #f9f9f9;
- padding: 10px;
- font-size: 14px;
- border-bottom: 1px solid #eee;
- }
- .detail .detail-down .side .shop-search .con {
- padding: 15px;
- display: flex;
- }
- .detail .detail-down .side .shop-search .text {
- height: 26px;
- line-height: 26px;
- vertical-align: top;
- border: 1px solid #ddd;
- background: #fff;
- border-right: none;
- font-size: 12px;
- padding: 0 10px;
- flex: 1;
- }
- .detail .detail-down .side .shop-search .btn {
- width: 30px;
- height: 28px;
- position: relative;
- background: #e1251b;
- }
- .detail .detail-down .side .shop-search .btn::before {
- position: absolute;
- left: 8px;
- top: 6px;
- display: block;
- width: 14px;
- height: 14px;
- content: ' ';
- font-size: 0;
- background: url(../images/icons.png) no-repeat;
- background-position: 0 -58px;
- }
- .detail .detail-down .side .shop-search .btn:hover {
- opacity: 0.8;
- }
- /* 店内搜索 end */
- /* 店内分类 */
- .detail .detail-down .side .shop-category {
- margin-top: 20px;
- border: 1px solid #eee;
- }
- .detail .detail-down .side .shop-category .con {
- padding: 10px 15px;
- line-height: 30px;
- }
- .detail .detail-down .side .shop-category .con .items .item-main {
- position: relative;
- padding-left: 15px;
- cursor: pointer;
- height: 30px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- }
- .detail .detail-down .side .shop-category .con .items .item-main .arrow {
- position: absolute;
- left: 0;
- top: 12px;
- width: 0;
- height: 0;
- border: 4px solid transparent;
- border-left: 5px solid #333;
- border-radius: 2px;
- }
- .detail .detail-down .side .shop-category .con .items.active .item-main .arrow {
- border-left: 4px solid transparent;
- border-top: 4px solid #333;
- top: 15px;
- }
- .detail .detail-down .side .shop-category .con .items .item-main:hover,
- .detail .detail-down .side .shop-category .con .items.active .item-main {
- text-decoration: underline;
- }
- .detail .detail-down .side .shop-category .con .items .item-con {
- display: none;
- }
- .detail .detail-down .side .shop-category .con .items.active .item-con {
- display: block;
- }
- .detail .detail-down .side .shop-category .con .items .item-con .item {
- padding-left: 15px;
- color: #999;
- height: 30px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- cursor: pointer;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- }
- .detail .detail-down .side .shop-category .con .items .item-con .item:hover {
- color: #e1251b;
- }
- /* 店内分类 end */
- /* 热卖商品 */
- .detail .detail-down .side .sale-well {
- margin-top: 20px;
- border: 1px solid #eee;
- }
- .detail .detail-down .side .sale-well .con {
- padding: 15px;
- }
- .detail .detail-down .side .sale-well .con .item {
- position: relative;
- margin: 15px auto 0;
- cursor: pointer;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- }
- .detail .detail-down .side .sale-well .con .item:hover {
- opacity: 0.8;
- }
- .detail .detail-down .side .sale-well .con .item:first-child {
- margin-top: 0;
- }
- .detail .detail-down .side .sale-well .con .item .goods-img {
- width: 210px;
- height: 210px;
- line-height: 210px;
- text-align: center;
- font-size: 0;
- }
- .detail .detail-down .side .sale-well .con .item .goods-img img {
- max-width: 100%;
- max-height: 100%;
- vertical-align: middle;
- }
- .detail .detail-down .side .sale-well .con .item .goods-msg {
- text-align: center;
- padding-top: 10px;
- padding-bottom: 5px;
- }
- .detail .detail-down .side .sale-well .con .item .goods-msg .goods-name {
- height: 14px;
- line-height: 14px;
- font-size: 14px;
- max-width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .detail .detail-down .side .sale-well .con .item .goods-msg .goods-price {
- display: flex;
- justify-content: center;
- height: 16px;
- line-height: 16px;
- margin: 10px 0;
- overflow: hidden;
- }
- .detail
- .detail-down
- .side
- .sale-well
- .con
- .item
- .goods-msg
- .goods-price
- .old-price {
- margin-left: 10px;
- color: #999;
- font-family: arial;
- text-decoration: line-through;
- height: 12px;
- line-height: 12px;
- margin-top: 4px;
- }
- /* 热卖商品 end */
- /* 详情下部分 end */
- /* 滑动导航 */
- .scroll-tab {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- background: #fff;
- animation: hdnav2-show 0.3s;
- -webkit-animation: hdnav2-show 0.3s;
- -moz-animation: hdnav2-show 0.3s;
- -o-animation: hdnav2-show 0.3s;
- z-index: 10;
- -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
- }
- .scroll-tab .content {
- position: relative;
- }
- .scroll-tab .content .tab {
- display: flex;
- background: #f9f9f9;
- border: 1px solid #eee;
- border-bottom-color: #e1251b;
- border-top-color: #f9f9f9;
- border-right-color: #f9f9f9;
- }
- .scroll-tab .content .tab .item {
- height: 40px;
- line-height: 40px;
- padding: 0 30px;
- font-size: 14px;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- cursor: pointer;
- margin-left: -1px;
- margin-top: -1px;
- }
- .scroll-tab .content .tab .item:hover {
- color: #e1251b;
- }
- .scroll-tab .content .tab .item.active {
- background: #e1251b;
- color: #fff;
- }
- .scroll-tab .content .tab .item .number {
- color: #e1251b;
- font-family: arial;
- }
- .scroll-tab .content .tab .item.active .number {
- color: #fff;
- }
- .scroll-tab .content .shop-search {
- position: absolute;
- right: 120px;
- top: 6px;
- display: flex;
- }
- .scroll-tab .content .shop-search .text {
- height: 26px;
- line-height: 26px;
- vertical-align: top;
- border: 1px solid #ddd;
- background: #fff;
- border-right: none;
- font-size: 12px;
- padding: 0 10px;
- }
- .scroll-tab .content .shop-search .btn {
- width: 30px;
- height: 28px;
- position: relative;
- background: #e1251b;
- }
- .scroll-tab .content .shop-search .btn::before {
- position: absolute;
- left: 8px;
- top: 6px;
- display: block;
- width: 14px;
- height: 14px;
- content: ' ';
- font-size: 0;
- background: url(../images/icons.png) no-repeat;
- background-position: 0 -58px;
- }
- .scroll-tab .content .shop-search .btn:hover {
- opacity: 0.8;
- }
- .scroll-tab .content .add-cart-btn {
- position: absolute;
- right: 15px;
- top: 6px;
- height: 28px;
- line-height: 28px;
- padding: 0 15px;
- background: #e1251b;
- color: #fff;
- -moz-transition: all 0.2s;
- -webkit-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- cursor: pointer;
- }
- .scroll-tab .content .add-cart-btn:hover {
- opacity: 0.8;
- }
- /* 滑动导航 end */
- /* 商品数量-input: 去除input标签type='number' 的默认加减箭头 */
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- input[type='number'] {
- -moz-appearance: textfield;
- }
- /* 秒杀/拼团未开始时的样式禁用样式 */
- .disabled-gray {
- cursor: not-allowed !important;
- background-color: #f7f7f7 !important;
- color: #999 !important;
- }
- /* 评论 */
- .buyer-comment .text{
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- /* -webkit-line-clamp: 3; */
- -webkit-box-orient: vertical;
- position: relative;
- line-height: 1.5;
- word-wrap: break-word;
- word-break: break-all;
- width: 816px;
- }
- /* 客服按钮 */
- .btn-im{
- display: inline-block;
- width: 16px;
- height: 16px;
- margin: 0 5px 3px 8px;
- overflow: hidden;
- background: url('../images/chat/sprite-im.png') no-repeat;
- vertical-align: middle;
- }
- /* 客服按钮 */
- .im-chat:hover .btn-im{
- background: url('../images/chat/sprite-im-hover.png') no-repeat;
- }
- .shop-box .im-chat:hover{
- color: #e1251b;
- }
- .params {
- display: flex;
- border-bottom: 1px dashed #DCDCDC;
- }
- .params:last-child {
- border: none;
- }
- .introduce .params-box {
- width: 280px;
- height: 40px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-right: 40px;
- }
- .introduce .params-box:nth-child(3n) {
- margin-right: 0;
- }
- .introduce .params-box .key {
- color: #999999;
- float: left;
- margin-left: 10px;
- }
- .introduce .params-box .value {
- text-indent: 10px;
- max-width: 150px;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
|