| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295 |
- .show {
- border: 1px dotted skyblue !important;
- }
- body {
- font-size: 12px;
- font-family: Arial;
- min-width:1024px;
- /* width:1920px; */
- }
- a {
- color: #999;
- }
- a:hover {
- text-decoration: none;
- color: #C40000;
- }
- nav.top {
- padding-top: 5px;
- padding-bottom: 5px;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- border-bottom-color: #e7e7e7;
- }
- .redColor {
- color: #C40000;
- }
- .boldWord {
- font-weight: bold;
- }
- nav.top span {
- margin-right: 20px;
- }
- nav.top span, nav.top a {
- color: #999;
- margin: 0px 10px 0px 10px;
- }
- nav.top a:hover {
- color: #C40000;
- }
- nav.top {
- background-color: #f2f2f2;
- }
- nav.top div.row div {
- margin: 5px 0px;
- }
- nav.top div.row div {
- background-color: lightgray;
- border: 1px solid gray;
- text-align: center;
- }
- div.searchDiv {
- background-color: #C40000;
- width: 400px;
- margin: 50px auto;
- padding: 1px;
- height: 40px;
- display: block;
- }
- div.searchDiv input {
- width: 275px;
- border: 1px solid transparent;
- height: 36px;
- margin: 1px;
- outline:none;
- }
- div.searchDiv button {
- width: 110px;
- border: 1px solid transparent;
- background-color: #C40000;
- color: white;
- font-size: 20px;
- font-weight: bold;
- }
- div.categoryWithCarousel {
- width: 100%;
- position:relative;
- }
- div.carouselBackgroundDiv{
- width:100%;
- height:510px;
- background-color: #E8E8E8;
- position: absolute;
- top:36px;
- z-index:-1;
- }
- div.categoryWithCarousel div.headbar {
- background-color: #DD2727;
- }
- div.carousel-of-product {
- width: 1024px;
- height: 510px;
- margin:0px auto;
- }
- div.carousel-inner div.item img{
- /* width:100%; */
- }
- div.categoryWithCarousel div.categoryMenu {
- width: 200px;
- background-color: #e2e2e3;
- /* padding-bottom:10px; */
- margin-left: 20px;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 1;
- }
- div.categoryWithCarousel div.productsAsideCategorys {
- width: 825px;
- height: 510px;
- background-color: white;
- /* padding-bottom:10px; */
- margin-left: 220px;
- display: none;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 1;
- }
- div.categoryWithCarousel div.eachCategory:hover {
- background-color: white;
- }
- div.categoryWithCarousel div.eachCategory span {
- margin-right: 10px;
- }
- div.categoryWithCarousel div.eachCategory {
- /* height:30px; */
- line-height: 30px;
- padding-left: 10px;
- /* border:1px dashed lightgray; */
- font-size: 14px;
- /* background-image:url(../../img/site/eachcategory.png); */
- /* background-repeat: no-repeat; */
- }
- div.categoryWithCarousel div.rightMenu {
- display: inline-block;
- }
- div.categoryWithCarousel div.rightMenu img {
- height: 30px;
- }
- div.categoryWithCarousel div.rightMenu span {
- margin: 0px 20px 0px 20px;
- }
- div.categoryWithCarousel div.rightMenu a {
- font-size: 16px;
- color: white;
- }
- div.categoryWithCarousel div.head {
- width: 200px;
- background-color: #C60A0A;
- height: 36px;
- line-height: 36px;
- font-size: 16px;
- font-weight: bold;
- color: white;
- margin-left: 20px;
- display: inline-block;
- }
- div.productsAsideCategorys a {
- color: #999;
- font-size: 14px;
- margin: 8px;
- }
- div.productsAsideCategorys a:hover {
- color: #C40000;
- text-decoration: none;
- }
- div.productsAsideCategorys div.row {
- margin: 20px 80px 0px 80px;
- }
- div.productsAsideCategorys div.row div.seperator {
- margin-top: 20px;
- border-bottom-style: dashed;
- border-bottom-width: 1px;
- border-bottom-color: #e7e7e7;
- }
- div.categoryMenu a {
- color: #000;
- }
- div.categoryMenu a:hover {
- color: lightskyblue;
- text-decoration: none;
- }
- div.searchBelow span {
- color: #999;
- }
- div.searchBelow {
- margin-top: 3px;
- margin-left: -20px;
- }
- div.searchBelow a {
- padding: 0px 20px 0px 20px;
- font-size: 14px;
- }
- div.homepageDiv{
- position:relative;
- }
- img.catear {
- position: absolute;
- height: 15px;
- display: none;
- }
- img.logo {
- position: absolute;
- left: 0px;
- top: 30px;
- /* z-index:-1; */
- }
- div.homepageCategoryProducts {
- background-color: #F5F5F5;
- padding: 50px 10px 50px 10px;
- margin: 10px auto;
- max-width: 1013px;
- }
- div.left-mark {
- display: inline-block;
- height: 20px;
- vertical-align: top;
- width: 5px;
- background-color: #19C8A9;
- }
- span.categoryTitle {
- font-size: 16px;
- margin-left: 30px;
- color: #646464;
- font-weight: bold;
- }
- div.productItem {
- width: 189px;
- height: 285px;
- border: 1px solid white;
- background-color: white;
- margin: 8px 4px;
- float: left;
- cursor: pointer;
- }
- a.productItemDescLink {
- display: inline-block;
- height: 66px;
- }
- div.productItem:hover {
- border: 1px solid #C40000;
- }
- div.productItem span.productItemDesc {
- font-size: 12px;
- color: #666666;
- display: block;
- padding: 16px;
- }
- div.productItem span.productPrice {
- font-size: 16px;
- color: #FF003A;
- display: block;
- padding-left: 16px;
- margin-top: -10px;
- }
- div.eachHomepageCategoryProducts {
- margin: 0px 0px 40px 0px;
- }
- div.productItem img {
- width: 187px;
- height: 190px;
- }
- div.productItem img:hover {
- opacity: 0.7;
- filter: alpha(opacity = 70);
- }
- img.endpng {
- display: block;
- width: 82px;
- margin: 0 auto;
- }
- div.footer {
- margin: 0px 0px;
- border-top-style: solid;
- border-top-width: 1px;
- border-top-color: #e7e7e7;
- }
- div.footer_ensure {
- margin-top: 24px;
- margin-bottom: 24px;
- text-align: center;
- }
- div.horizontal_line{
- border-top-style: solid;
- border-top-width: 1px;
- border-top-color: #e7e7e7;
- }
- div.footer_desc {
- padding-top: 30px;
- margin: 20px auto;
- max-width:1024px;
- }
- div.footer div.copyright div.white_link a {
- color: white;
- padding: 0px 5px;
- }
- div.footer div.copyright div.white_link {
- padding: 10px 0px;
- margin-left: 10px;
- }
- div.footer_desc div.descColumn {
- width: 20%;
- float: left;
- padding-left: 15px;
- }
- div.footer_desc div.descColumn span.descColumnTitle {
- color: #646464;
- font-weight: bold;
- font-size: 16px;
- }
- div.footer_desc a {
- display: block;
- padding-top: 3px;
- }
- div.copyright {
- background-color: black;
- border-top-style: solid;
- border-top-width: 2px;
- border-top-color: solid;
- border-top-color: #C40000;
- margin-top:20px;
- }
- div.coptyrightMiddle{
- width:1024px;
- margin:0px auto;
- text-align:left;
- position:relative;
- }
- img.cateye {
- margin-left: 20px;
- display:block;
- position:absolute;
- top:-33px;
- left:-15px;
- }
- div.copyright span.slash {
- color: white;
- }
- div.license {
- margin-left: 10px;
- padding-bottom: 30px;
- }
- div.license div.copyRightYear {
- margin: 10px 0px;
- color: #686868;
- }
- div.license span {
- color: #A4A4A4;
- }
- div.simpleLogo {
- padding: 32px 0px;
- }
- img.loginBackgroundImg {
- display: block;
- margin: 0px auto;
- }
- div.loginDivInProductPageModalDiv {
- width: 350px;
- }
- div.deleteConfirmModalDiv {
- width: 350px;
- }
- div.loginDivInProductPage {
- background-color: white;
- width: 350px;
- height: 400px;
- padding: 60px 25px 80px 25px;
- }
- div.loginSmallDiv {
- background-color: white;
- position: absolute;
- right: 180px;
- top: 180px;
- width: 350px;
- height: 400px;
- padding: 60px 25px 80px 25px;
- }
- div.loginErrorMessageDiv {
- width: 300px;
- position: absolute;
- top: 20px;
- display: none;
- }
- div.loginErrorMessageDiv div.alert {
- padding: 5px !important;
- }
- div.login_acount_text {
- color: #3C3C3C;
- font-size: 16px;
- font-weight: bold;
- }
- div.loginInput {
- border: 1px solid #CBCBCB;
- margin: 20px 0px;
- }
- div.loginInput input {
- display: inline-block;
- border: 0px solid transparent;
- width: 244px;
- height: 30px;
- position: relative;
- left: 6px;
- top: 6px;
- }
- div.loginInput span, div.loginInput input {
- display: inline-block;
- }
- div.loginInput span.loginInputIcon {
- margin: 0px;
- background-color: #CBCBCB;
- width: 40px;
- height: 40px;
- }
- span.loginInputIcon span.glyphicon {
- font-size: 22px;
- position: relative;
- left: 9px;
- top: 9px;
- color: #606060;
- }
- button.redButton {
- color: white;
- background-color: #C40000;
- font-size: 14px;
- font-weight: bold;
- }
- div.categorySortBar {
- background-color: #FAF9F9;
- margin: 40px 20px 20px 20px;
- padding: 4px;
- }
- table.categorySortBarTable td {
- border: 1px solid #CCCCCC;
- padding: 3px;
- height: 23px;
- }
- table.categorySortBarTable {
- border-collapse: collapse;
- display: inline-table;
- }
- table.categorySortBarTable td a {
- color: #806F66;
- font-size:12px;
- }
- table.categorySortBarTable td a:hover {
- color: #C40000;
- }
- table.categorySortBarTable td.grayColumn {
- background-color: #F1EDEC;
- }
- table.categorySortBarTable td.priceMiddleColumn {
- width: 10px;
- vertical-align: middle;
- color: #CCCCCC;
- }
- table.categorySortTable td:hover {
- background-color: #F1EDEC;
- }
- table.categorySortBarTable span.glyphicon {
- font-size: 10px;
- }
- table.categorySortBarTable input {
- border-width: 0px;
- height: 100%;
- width: 50px;
- font-size:12px;
- }
- div.categoryProducts {
- padding: 0px 20px 40px 20px;
- }
- div.productUnit {
- width: 225px;
- height: 338px;
- border: 3px solid #fff;
- background-color: white;
- margin: 12px 5px;
- float: left;
- padding: 0px;
- }
- div.productUnit:hover {
- width: 225px;
- border: 3px solid #C40000;
- padding: 0px;
- }
- div.productUnit span.productUnitDesc {
- font-size: 12px;
- color: #666666;
- display: block;
- padding: 16px;
- }
- div.productUnitFrame{
- border:1px solid #eee;
- }
- div.productUnitFrame:hover{
- border:1px solid #C40000;
- }
- div.productUnit span.productPrice {
- font-size: 20px;
- color: #CC0000;
- display: block;
- padding-left: 4px;
- }
- div.productUnit span.productReview {
- border-left-width: 1px;
- border-left-style: solid;
- border-left-color: #EEEEEE;
- border-right-width: 1px;
- border-right-style: solid;
- border-right-color: #EEEEEE;
- }
- div.productUnit a.productLink {
- margin: 10px 0px;
- color: #333333;
- font: 0.8em;
- display: block;
- }
- div.productUnit a.productLink:hover {
- text-decoration: underline;
- color: #C40000;
- }
- div.productUnit a.tmallLink {
- margin: 10px 0px;
- color: #999999;
- font: 0.8em;
- display: block;
- text-decoration: underline;
- }
- div.productUnit a.tmallLink:hover {
- text-decoration: underline;
- color: #C40000;
- }
- div.productUnit div.productInfo {
- color: #999999;
- }
- div.productUnit span.monthDeal, div.productUnit span.productReview {
- display: inline-block;
- width: 90px;
- height: 30px;
- padding-top: 5px;
- padding-left: 5px;
- }
- div.productUnit span.wangwang {
- padding-left: 3px;
- }
- div.productUnit span.productDealNumber {
- font-weight: bold;
- color: #B57C5B;
- }
- div.productUnit span.productReviewNumber {
- font-weight: bold;
- color: #3388BB;
- }
- div.productUnit img.productImage {
- width: 100%;
- height: 190px;
- }
- div.productUnit div.productInfo {
- border-top-width: 1px;
- border-top-style: solid;
- border-top-color: #EEEEEE;
- }
- img.simpleLogo {
- position: absolute;
- left: 10px;
- top: 50px;
- width: 140px;
- }
- div.simpleSearchDiv {
- background-color: #C40000;
- width: 300px;
- margin: 10px 20px 40px;
- padding: 1px;
- height: 40px;
- display: block;
- }
- div.simpleSearchDiv input {
- width: 225px;
- border: 1px solid transparent;
- height: 34px;
- margin: 2px;
- outline:none;
- }
- div.simpleSearchDiv button {
- width: 60px;
- border: 1px solid transparent;
- background-color: #C40000;
- color: white;
- font-size: 14px;
- /* font-weight:bold; */
- }
- div.imgAndInfo {
- margin: 40px 20px;
- }
- div.imgAndInfo img.bigImg {
- width: 400px;
- height: 400px;
- padding: 20px;
- border: 1px solid #F2F2F2;
- }
- div.imgAndInfo div.smallImageDiv {
- width: 80%;
- margin: 20px auto;
- }
- div.imgAndInfo img.smallImage {
- width: 60px;
- height: 60px;
- border: 2px solid white;
- }
- div.imgAndInfo img.smallImage:hover {
- border: 2px solid black;
- }
- div.imgInimgAndInfo {
- width: 400px;
- float: left;
- }
- div.infoInimgAndInfo {
- padding: 0px 20px;
- overflow: hidden;
- }
- div.infoInimgAndInfo div.productTitle {
- color: black;
- font-size: 16px;
- font-weight: bold;
- margin: 0px 10px;
- }
- div.infoInimgAndInfo div.productSubTitle {
- color: #DD2727;
- font-size: 12px;
- /* font-weight:bold; */
- margin: 0px 10px;
- }
- div.infoInimgAndInfo div.juhuasuan {
- /* height:40px; */
- background-color: #2DA77A;
- color: white;
- text-align: center;
- line-height: 40px;
- margin-top: 10px;
- }
- div.infoInimgAndInfo span.juhuasuanBig {
- font-size: 18px;
- font-weight: bold;
- font-family: ����;
- }
- div.infoInimgAndInfo span.juhuasuanTime {
- color: #FFC057;
- font-weight: bold;
- }
- div.infoInimgAndInfo div.gouwujuanDiv {
- margin-top: 5px;
- }
- div.infoInimgAndInfo div.originalDiv {
- margin-top: 5px;
- }
- div.infoInimgAndInfo div.promotionDiv {
- margin-top: 0px;
- }
- div.infoInimgAndInfo div.productPriceDiv {
- background-image: url(../../img/site/priceBackground.png);
- height: 102px;
- padding: 10px;
- color: #666666;
- }
- div.infoInimgAndInfo span.originalPriceDesc {
- color: #999999;
- display: inline-block;
- width: 68px;
- }
- div.infoInimgAndInfo span.promotionPriceDesc {
- color: #999999;
- display: inline-block;
- width: 68px;
- position: relative;
- left: 0px;
- top: -10px;
- }
- div.infoInimgAndInfo span.originalPriceYuan {
- font-family: Arial;
- font-size: 12px;
- }
- div.infoInimgAndInfo span.originalPrice {
- font-family: Arial;
- font-size: 12px;
- color: #333333;
- text-decoration: line-through;
- }
- div.infoInimgAndInfo span.promotionPriceYuan {
- font-family: Arial;
- font-size: 18px;
- color: #C40000;
- /* vertical-align: top; */
- }
- div.infoInimgAndInfo span.promotionPrice {
- color: #c40000;
- font-family: Arial;
- font-size: 30px;
- font-weight: bold;
- /* vertical-align: top; */
- /* vertical-align: middle; */
- }
- div.infoInimgAndInfo div.productSaleAndReviewNumber {
- margin: 20px 0px;
- border-top-style: dotted;
- border-top-color: #C9C9C9;
- border-top-width: 1px;
- border-bottom-style: dotted;
- border-bottom-color: #C9C9C9;
- border-bottom-width: 1px;
- padding: 10px;
- }
- div.infoInimgAndInfo div.productSaleAndReviewNumber div {
- display: inline-block;
- width: 49%;
- text-align: center;
- color: #999999;
- font-size: 12px;
- }
- div.infoInimgAndInfo div.productSaleAndReviewNumber div:first-child {
- border-right-width: 1px;
- border-right-style: solid;
- border-right-color: #E5DFDA;
- }
- div.infoInimgAndInfo div.productNumber {
- color: #999999;
- }
- div.infoInimgAndInfo span.productNumberSettingSpan {
- border: 1px solid #999;
- display: inline-block;
- width: 43px;
- height: 32px;
- padding: 7px 0;
- }
- div.infoInimgAndInfo input.productNumberSetting {
- border: 0px;
- height: 80%;
- width: 80%;
- }
- div.productNumber span.glyphicon {
- font-size: 6px;
- }
- div.productNumber span.arrow {
- display: inline-block;
- width: 22px;
- height: 32px;
- vertical-align:top;
- }
- div.productNumber span.updown img{
- display:inline-block;
- vertical-align:top;
- }
- div.productNumber span.updown {
- border: 1px solid #999;
- display: block;
- width: 20px;
- height: 14px;
- text-align: center;
- padding-top:4px;
- }
- div.productNumber span.updownMiddle {
- height: 4px;
- display: block;
- }
- div.serviceCommitment {
- margin: 20px 0px;
- }
- div.infoInimgAndInfo span.serviceCommitmentDesc {
- color: #999999;
- }
- div.infoInimgAndInfo span.serviceCommitmentLink a {
- color: #666666;
- }
- div.productDetailDiv {
- width: 790px;
- margin: 40px auto;
- }
- div.productReviewDiv {
- width: 790px;
- margin: 40px auto;
- }
- div.productReviewContentPart {
- padding-top: 50px;
- }
- div.productDetailTopPart {
- border: 1px solid #DFDFDF;
- border-left-width: 0px;
- }
- div.productReviewTopPart {
- border: 1px solid #DFDFDF;
- }
- div.productParamterPart {
- border: 1px solid #DFDFDF;
- padding: 40px;
- }
- div.productParamter {
- color: #999999;
- font-weight: bold;
- margin-bottom: 20px;
- }
- div.productParamterList span {
- display: block;
- width: 220px;
- float: left;
- padding: 8px 0px;
- color: #666666;
- }
- a.selected {
- border-left: 1px solid #cfbfb1;
- border-right: 1px solid #cfbfb1;
- color: #b10000;
- display: inline-block;
- font-weight: bold;
- line-height: 46px;
- width: 90px;
- text-align: center;
- position: relative;
- }
- a.selected:after {
- border-color: #b00000 transparent transparent;
- border-style: solid;
- border-width: 5px;
- content: "";
- display: block;
- width: 0;
- height: 0;
- position: absolute;
- top: -1px;
- left: 50%;
- margin-left: -5px;
- }
- a.selected:before {
- border-color: #b00000;
- border-style: solid;
- border-width: 1px;
- content: "";
- display: block;
- width: 90px;
- height: 0;
- position: absolute;
- top: -1px;
- margin-left: -1px;
- }
- a.productDetailTopReviewLink {
- padding: 0px 20px;
- border-right: 1px dotted #D2D2D2;
- color: #333333;
- }
- span.productDetailTopReviewLinkNumber {
- color: #3355B9;
- }
- span.productReviewTopReviewLinkNumber {
- color: #3355B9;
- }
- div.productDetailImagesPart img {
- display: block; margin 20px 0px;
- width: 790px;
- }
- a.productReviewTopPartSelectedLink {
- padding: 0px 20px;
- color: #333333;
- }
- div.productReviewItem {
- border-bottom: 1px solid #E3E3E3;
- margin: 10px 0px;
- }
- div.productReviewItem div.productReviewItemDesc {
- width: 80%;
- display: inline-block;
- color: #333333;
- height: 94px;
- margin: 5px 20px;
- float: left;
- }
- div.productReviewItem div.productReviewItemUserInfo {
- color: #404040;
- margin: 5px 20px;
- overflow: hidden;
- padding: 20px 0;
- }
- div.productReviewItemContent {
- /* margin:0px 0px -30px 0px; */
- }
- div.productReviewItemDate {
- margin: 15px 0px 0px 0px;
- color: #CCCCCC;
- }
- span.userInfoGrayPart {
- color: #999999;
- }
- div.productReviewDiv {
- display: none;
- }
- div.buyPageDiv {
- margin: 20px auto;
- max-width: 1013px;
- }
- div.buyDiv {
- margin: 20px auto;
- text-align: center;
- }
- div.buyPageDiv button {
- display: inline-block;
- margin: 0px 10px;
- width: 180px;
- height: 40px;
- }
- div.buyDiv button {
- display: inline-block;
- margin: 0px 10px;
- width: 180px;
- height: 40px;
- }
- button.buyButton {
- border: 1px solid #C40000;
- background-color: #FFEDED;
- text-align: center;
- line-height: 40px;
- font-size: 16px;
- /* font-weight:700; */
- color: #C40000;
- font-family: arial;
- }
- button.addCartButton {
- border: 1px solid #C40000;
- background-color: #C40000;
- text-align: center;
- line-height: 40px;
- font-size: 16px;
- /* font-weight:700; */
- color: white;
- font-family: arial;
- }
- button.addCartButton span.glyphicon {
- font-size: 12px;
- margin-right: 8px;
- }
- div.address {
- margin: 20px 5px;
- text-align: left;
- }
- div.addressTip, div.productListTip {
- color: #333333;
- font-size: 16px;
- font-weight: bold;
- text-align: left;
- margin-bottom: 30px;
- }
- table.addressTable {
- margin: 20px 20px;
- width: 600px;
- }
- table.addressTable td.firstColumn {
- width: 100px;
- }
- table.addressTable td {
- color: #333333;
- text-align: right;
- vertical-align: top;
- padding-right: 5px;
- text-align: left;
- height: 30px;
- font-size:12px;
- }
- span.redStar {
- color: red;
- font-size: 8px;
- }
- table.addressTable td input {
- border: 1px solid #AFAFAF;
- width: 200px;
- }
- table.addressTable td textarea {
- border: 1px solid #AFAFAF;
- margin-bottom: 10px;
- width: 400px;
- }
- img.tmallbuy {
- width: 15px;
- }
- a.marketLink {
- color: black;
- font-size: 12px;
- font-family: ����;
- font-weight: normal;
- }
- a.marketLink:hover {
- color: black;
- font-size: 12px;
- text-decoration: underline;
- font-family: ����;
- font-weight: normal;
- }
- span.wangwangGif {
- display: inline-block;
- width: 25px;
- height: 25px;
- background-image: url(../../img/site/wangwang.gif);
- background-repeat: no-repeat;
- background-color: transparent;
- background-attachment: scroll;
- background-position: -83px -0px;
- position: relative;
- top: 8px;
- left: 2px;
- }
- table.productListTable {
- width: 100%;
- border-collapse: separate;
- }
- table.productListTable th {
- color: #999999;
- font-family: ����;
- font-weight: normal;
- font-size: 12px;
- text-align: center;
- padding-bottom: 5px;
- }
- th.productListTableFirstColumn {
- text-align: left !important;
- }
- table.productListTable tr.rowborder td {
- background-color: #b2d1ff;
- border-right: 2px solid #fff;
- height: 3px;
- }
- img.orderItemImg {
- width: 50px;
- height: 50px;
- border: 1px solid #E9E9E9;
- }
- tr.orderItemTR td {
- padding: 10px 0px;
- }
- a.orderItemProductLink {
- color: #666666;
- display: block;
- }
- a.orderItemProductLink:hover {
- color: #666666;
- text-decoration: underline;
- }
- td.orderItemProductInfo {
- text-align: left;
- }
- td.orderItemProductInfo img {
- height: 16px;
- }
- span.orderItemProductPrice, span.orderItemProductNumber {
- color: #000000;
- }
- span.orderItemUnitSum {
- color: #CC0000;
- font-weight: bold;
- }
- tr.orderItemTR td {
- border-bottom: 1px solid #E5E5E5;
- }
- tbody.productListTableTbody td {
- text-align: center;
- font-size:12px;
- }
- tbody.productListTableTbody td.orderItemFirstTD {
- text-align: left;
- }
- tbody.productListTableTbody td.orderItemProductInfo {
- text-align: left;
- }
- td.orderItemFirstTD, td.orderItemLastTD {
- border-bottom: 0px solid black !important;
- }
- label.orderItemDeliveryLabel {
- color: #666666;
- font-family: ����;
- font-size: 12px;
- font-weight: normal;
- }
- select.orderItemDeliverySelect {
- width: 100px;
- height: 23px;
- }
- div.orderItemSumDiv span {
- color: #999999;
- }
- div.orderItemSumDiv {
- padding: 20px;
- border-top: 2px solid #B4D0FF;
- background-color: #F2F6FF;
- height: 50px;
- }
- textarea.leaveMessageTextarea {
- border: 1px solid #FFAD35;
- width: 250px;
- height: 60px;
- resize: none;
- }
- span.leaveMessageText {
- display: inilne-block;
- margin-right: 10px;
- float: left;
- }
- span.leaveMessageTextareaSpan {
- display: inilne-block;
- }
- div.orderItemTotalSumDiv {
- margin: 40px;
- height: 40px;
- }
- div.orderItemTotalSumDiv span {
- color: #999999;
- }
- span.orderItemTotalSumSpan {
- color: #C40000 !important;
- font-size: 22px;
- font-weight: bold;
- border-bottom: 1px dotted #F2F6FF;
- }
- div.submitOrderDiv {
- height: 40px;
- margin: 20px 0px;
- }
- button.submitOrderButton {
- border: 1px solid #C40000;
- background-color: #C40000;
- text-align: center;
- line-height: 40px;
- font-size: 14px;
- font-weight: 700;
- color: white;
- float: right;
- }
- div.aliPayPageLogo {
- margin: 20px;
- }
- div.aliPayPageDiv {
- text-align: center;
- padding-bottom: 40px;
- max-width: 1013px;
- margin: 10px auto;
- }
- span.confirmMoneyText {
- color: #4D4D4D;
- }
- span.confirmMoney {
- display: block;
- color: #FF6600;
- font-weight: bold;
- font-size: 20px;
- margin: 10px;
- }
- img.aliPayImg {
- /* width:230px; */
- /* height:230px; */
- }
- button.confirmPay {
- background-color: #00AAEE;
- border: 1px solid #00AAEE;
- text-align: center;
- line-height: 31px;
- font-size: 14px;
- font-weight: 700;
- color: white;
- width: 107px;
- margin-top: 20px;
- }
- div.payedDiv {
- border: 1px solid #D4D4D4;
- max-width: 1013px;
- margin: 10px auto 20px auto;
- }
- div.payedTextDiv {
- height: 61px;
- background-color: #ECFFDC;
- padding: 17px 0px 0px 25px;
- }
- div.payedTextDiv span {
- font-weight: bold;
- font-size: 14px;
- margin-left: 10px;
- }
- div.payedAddressInfo {
- padding: 26px 35px;
- }
- div.payedAddressInfo li {
- background-image: url("../../img/site/li_dot.png");
- background-repeat: no-repeat;
- background-color: transparent;
- background-attachment: scroll;
- background-position: 0px 13px;
- list-style-type: none;
- color: #333333;
- padding-left: 15px;
- padding-top: 5px;
- /* background: rgba(0, 0, 0, 0) url("../../img/site/li_dot.png") no-repeat scroll 0 13px; */
- }
- span.payedInfoPrice {
- color: #B10000;
- font-weight: bold;
- font-size: 14px;
- font-family: arial;
- }
- a.payedCheckLink {
- color: #2D8CBA;
- }
- a.payedCheckLink:hover {
- color: #2D8CBA;
- text-decoration: underline;
- }
- div.paedCheckLinkDiv {
- margin-left: 38px;
- }
- div.payedSeperateLine {
- border-top: 1px dotted #D4D4D4;
- margin: 0px 31px;
- }
- div.warningDiv {
- margin: 23px 45px;
- }
- div.warningDiv {
- color: black;
- }
- div.cartDiv {
- max-width: 1013px;
- margin: 10px auto;
- color: black;
- }
- span.cartTitlePrice {
- color: #C40000;
- font-size: 14px;
- font-weight: bold;
- margin-left: 5px;
- margin-right: 3px;
- }
- div.cartTitle button {
- background-color: #AAAAAA;
- border: 1px solid #AAAAAA;
- color: white;
- width: 53px;
- height: 25px;
- border-radius: 2px;
- }
- table.cartProductTable {
- width: 100%;
- font-size:12px;
- }
- table.cartProductTable th {
- font-weight: normal;
- color: #3C3C3C;
- padding: 20px 20px;
- }
- img.cartProductImg {
- padding: 1px;
- border: 1px solid #EEEEEE;
- width: 80px;
- height: 80px;
- }
- a.cartProductLink {
- color: #3C3C3C;
- }
- a.cartProductLink:hover {
- color: #C40000;
- text-decoration: underline;
- }
- div.cartProductLinkOutDiv {
- position: relative;
- height: 80px;
- }
- div.cartProductLinkInnerDiv {
- position: absolute;
- bottom: 0;
- height: 20px;
- }
- tr.cartProductItemTR td {
- padding: 20px 20px;
- }
- tr.cartProductItemTR {
- border: 1px solid #CCCCCC;
- }
- span.cartProductItemOringalPrice {
- text-decoration: line-through;
- color: #9C9C9C;
- display: block;
- font-weight: bold;
- font-size: 14px;
- }
- span.cartProductItemPromotionPrice {
- font-family: Arial;
- font-size: 14px;
- font-weight: bold;
- color: #C40000;
- }
- span.cartProductItemSmallSumPrice {
- font-family: Arial;
- font-size: 14px;
- font-weight: bold;
- color: #C40000;
- }
- div.cartProductChangeNumberDiv {
- border: solid 1px #E5E5E5;
- width: 80px;
- }
- div.cartProductChangeNumberDiv input {
- border: solid 1px #AAAAAA;
- width: 42px;
- display: inline-block;
- }
- div.cartProductChangeNumberDiv a {
- text-decoration: none;
- }
- div.cartProductChangeNumberDiv a {
- width: 14px;
- display: inline-block;
- text-align: center;
- color: black;
- text-decoration: none;
- }
- img.cartProductItemIfSelected, img.selectAllItem {
- cursor: pointer;
- }
- div.cartFoot {
- background-color: #E5E5E5;
- line-height: 50px;
- margin: 20px 0px;
- color: black;
- padding-left: 20px;
- }
- span.cartSumNumber {
- color: #C40000;
- font-weight: bold;
- font-size: 16px;
- }
- span.cartSumPrice {
- color: #C40000;
- font-weight: bold;
- font-size: 20px;
- }
- div.cartFoot button {
- background-color: #AAAAAA;
- border: 0px solid #AAAAAA;
- color: white;
- height: height%;
- width: 120px;
- height: 50px;
- font-size: 20px;
- text-align: center;
- /* border-radius: 2px; */
- }
- div.boughtDiv {
- max-width: 1013px;
- margin: 10px auto;
- }
- div.orderType div.selectedOrderType {
- border-bottom: 2px solid #C40000;
- }
- div.orderType div {
- border-bottom: 2px solid #E8E8E8;
- float: left;
- }
- table.orderListTitleTable {
- border: 1px solid #E8E8E8;
- width: 100%;
- margin: 20px 0px;
- background-color: #F5F5F5;
- text-align: center;
- }
- table.orderListTitleTable td {
- padding: 12px 0px;
- }
- div.orderType a {
- border-right: 1px solid #E8E8E8;
- float: left;
- font-size: 16px;
- font-weight: bold;
- color: black;
- margin-bottom: 10px;
- padding: 0px 20px;
- text-decoration: none;
- }
- div.orderType div.selectedOrderType a {
- color: #C40000;
- }
- div.orderType a:hover {
- color: #C40000;
- text-decoration: none;
- }
- div.orderTypeLastOne {
- overflow: hidden;
- float: none !important;
- border-bottom: 2px solid #E8E8E8;
- }
- a.noRightborder {
- border-right-width: 0px !important;
- }
- table.orderListItemTable {
- border: 2px solid #ECECEC;
- width: 100%;
- margin: 20px 0px;
- }
- table.orderListItemTable:hover {
- border: 2px solid #aaa !important;
- }
- tr.orderListItemFirstTR {
- background-color: #F1F1F1;
- font-size:12px;
- }
- table.orderListItemTable td {
- padding: 8px 10px;
- }
- div.orderItemWangWangGif {
- display: inline-block;
- width: 67px;
- height: 22px;
- background-image: url(../../img/site/wangwang.gif);
- background-repeat: no-repeat;
- background-color: transparent;
- background-attachment: scroll;
- background-position: -0px -0px;
- position: relative;
- top: 0px;
- left: 2px;
- }
- span.orderListItemDelete {
- display: inline-block;
- margin: 0px 10px;
- color: #999999;
- font-size: 16px;
- }
- div.orderListItemProductLinkOutDiv {
- position: relative;
- height: 80px;
- font-size:12px;
- }
- div.orderListItemProductLinkInnerDiv {
- position: absolute;
- bottom: 0px;
- }
- div.orderListItemProductOriginalPrice {
- color: #999999;
- font-size: 14px;
- }
- div.orderListItemProductPrice {
- color: #3C3C3C;
- font-size: 14px;
- }
- div.orderListItemProductRealPrice {
- color: #3C3C3C;
- font-size: 14px;
- font-weight: bold;
- }
- div.orderListItemPriceWithTransport {
- color: #6C6C6C;
- font-size: 12px;
- }
- td.orderListItemProductRealPriceTD {
- text-align: center;
- }
- button.orderListItemConfirm {
- background-color: #66B6FF;
- border-radius: 2px;
- color: white;
- font-size: 12px;
- font-weight: bold;
- border-width: 0px;
- padding: 6px 12px;
- }
- button.orderListItemConfirm:hover {
- background-color: #118ADB;
- }
- button.orderListItemReview {
- border: 1px solid #DCDCDC;
- background-color: #fff;
- border-radius: 2px;
- color: #3C3C3C;
- font-size: 12px;
- font-weight: bold;
- padding: 6px 12px;
- }
- button.orderListItemReview:hover {
- border-color: #C40000;
- color: #C40000;
- }
- td.orderItemDeleteTD {
- text-align: right;
- }
- td.orderListItemButtonTD {
- text-align: center;
- }
- span.orderListItemNumber {
- color: #3C3C3C;
- }
- td.orderListItemNumberTD {
- text-align: center;
- }
- div.confirmPayPageDiv {
- max-width: 1013px;
- margin: 10px auto;
- }
- div.confirmPayImageDiv {
- margin: 40px auto 80px auto;
- width: 900px;
- position: relative;
- }
- div.confirmPayImageDiv div {
- color: #999999;
- }
- div.confirmPayTime1 {
- position: absolute;
- top: 100px;
- left: -20px;
- }
- div.confirmPayTime2 {
- position: absolute;
- top: 100px;
- left: 190px;
- }
- div.confirmPayTime3 {
- position: absolute;
- top: 100px;
- left: 400px;
- }
- div.confirmPayOrderInfoText {
- margin: 10px 10px 0px 10px;
- font-size: 16px;
- font-weight: bold;
- color: black;
- padding-bottom: 15px;
- border-bottom: 1px solid #ADC8E6;
- }
- div.confirmPayOrderItemDiv {
- margin: 0px 20px;
- }
- div.confirmPayOrderItemText {
- margin: 20px 10px;
- font-size: 14px;
- font-weight: bold;
- color: black;
- }
- table.confirmPayOrderItemTable thead {
- background-color: #E8F2FF;
- height: 33px;
- }
- table.confirmPayOrderItemTable tr {
- border: 1px solid #DDDDDD;
- }
- table.confirmPayOrderItemTable {
- border: 1px solid #DDDDDD;
- width: 100%;
- }
- span.conformPayProductPrice {
- font-size: 18px;
- font-weight: bold;
- color: #666666;
- }
- table.confirmPayOrderItemTable th, table.confirmPayOrderItemTable td {
- text-align: center;
- }
- table.confirmPayOrderItemTable td {
- padding: 20px;
- }
- td.confirmPayOrderItemProductLink {
- text-align: left !important;
- }
- div.confirmPayOrderItemText {
- color: black;
- font-weight: normal;
- }
- span.confirmPayOrderItemSumPrice {
- color: #C40000;
- }
- table.confirmPayOrderDetailTable {
- width: 100%;
- border-top: 1px solid #DDDDDD;
- }
- table.confirmPayOrderDetailTable td {
- padding: 8px;
- color: black;
- font-size: 14px;
- }
- div.confirmPayOrderDetailDiv {
- margin: 40px;
- }
- span.confirmPayOrderDetailWangWangGif {
- display: inline-block;
- width: 67px;
- height: 22px;
- background-image: url(../../img/site/wangwang.gif);
- background-repeat: no-repeat;
- background-color: transparent;
- background-attachment: scroll;
- background-position: -0px -0px;
- position: relative;
- top: 0px;
- left: 2px;
- }
- div.confirmPayButtonDiv {
- border: 1px solid #F58B0F;
- margin: 20px;
- }
- div.confirmPayWarning {
- margin: 20px 80px;
- font-size: 18px;
- color: red;
- font-weight: bold;
- }
- button.confirmPayButton:hover {
- background-color: #F6AE30;
- }
- button.confirmPayButton {
- margin: 20px 80px;
- width: 67px;
- height: 30px;
- border: 1px solid #E67C00;
- background-color: #F4A21D;
- border-radius: 4px;
- color: white;
- }
- div.orderFinishDiv {
- border: 1px solid #E5E5E5;
- padding: 40px;
- max-width: 1013px;
- margin: 10px auto;
- }
- div.orderFinishDiv span {
- font-size: 14px;
- color: black;
- font-weight: bold;
- margin-left: 20px;
- padding-top: 20px;
- }
- div.reviewDiv {
- max-width: 1013px;
- margin: 10px auto;
- }
- div.reviewProductInfoRightDiv {
- overflow: hidden;
- border-top: 1px solid #E7E7E7;
- padding: 30px 20px;
- }
- div.reviewProductInfoImg {
- border: 1px solid #E7E7E7;
- width: 464px;
- text-align: center;
- float: left;
- }
- div.reviewProductInfoRightText {
- color: black;
- font-size: 16px;
- font-weight: bold;
- }
- span.reviewProductInfoTablePrice {
- color: #C40000;
- font-size: 20px;
- font-weight: bold;
- }
- span.reviewProductInfoTableSellNumber {
- color: #C40000;
- font-size: 14px;
- font-weight: bold;
- }
- table.reviewProductInfoTable {
- margin: 20px 10px;
- }
- table.reviewProductInfoTable td {
- padding-bottom: 5px;
- color: #999999;
- }
- div.reviewProductInfoRightBelowDiv {
- border: 1px solid #F6F5F3;
- background-color: #FDFBFA;
- height: 166px;
- padding: 16px 81px;
- }
- span.reviewProductInfoRightBelowImg {
- background-color: white;
- border: 1px solid #E1E1E1;
- display: inline-block;
- width: 23px;
- height: 42px;
- background-image: url(../../img/site/reviewLight.png);
- background-repeat: no-repeat;
- padding: 0px;
- }
- span.reviewProductInfoRightBelowText {
- border: 1px solid #EFEFEF;
- /* border-left-width:1px; */
- display: inline-block;
- width: 200px;
- height: 42px;
- padding: 4px;
- position: relative;
- left: -4px;
- top: -7px;
- color: #666666;
- }
- div.reviewStasticsLeft {
- width: 180px;
- float: left;
- }
- div.reviewStasticsLeftTop {
- background-color: #C40000;
- height: 6px;
- }
- div.reviewStasticsLeftContent {
- line-height: 29px;
- border-left: 1px solid #D5D4D4;
- border-right: 1px solid #D5D4D4;
- background-color: #F6F5F1;
- text-align: center;
- font-size: 14px;
- color: #363535;
- font-weight: bold;
- }
- span.reviewStasticsNumber {
- color: #284CA5;
- }
- div.reviewStasticsLeftFoot {
- height: 6px;
- border-left: 1px solid #D5D4D4;
- border-bottom: 1px solid #D5D4D4;
- background-color: #F6F5F1;
- }
- div.reviewStasticsRight {
- overflow: hidden;
- }
- div.reviewStasticsRightEmpty {
- height: 35px;
- }
- div.reviewStasticsFoot {
- background-color: #F6F5F1;
- border: 1px solid #D5D4D4;
- border-left-width: 0px;
- height: 6px;
- }
- div.makeReviewDiv {
- border: 1px solid #D1CCC8;
- margin: 20px 0px;
- background-color: #EFEFEF;
- }
- div.makeReviewText {
- font-size: 16px;
- color: #333333;
- font-weight: bold;
- margin: 20px 40px;
- }
- table.makeReviewTable {
- margin: 20px 40px;
- }
- table.makeReviewTable td {
- border: 1px solid #E7E7E7;
- padding: 10px;
- background-color: white;
- }
- table.makeReviewTable textarea {
- border-width: 0px;
- resize: none;
- width: 420px;
- height: 120px;
- }
- td.makeReviewTableFirstTD {
- background-color: #F6F6F6;
- }
- div.makeReviewButtonDiv {
- background-color: white;
- text-align: center;
- padding: 15px;
- }
- div.makeReviewButtonDiv button {
- width: 72px;
- height: 26px;
- border-radius: 2px;
- background-color: #C40000;
- color: white;
- border-width: 0px;
- font-weight: bold;
- }
- div.registerDiv {
- margin: 10px 20px;
- text-align: center;
- }
- table.registerTable {
- color: #3C3C3C;
- font-size: 16px;
- table-layout: fixed;
- margin-top: 50px;
- }
- table.registerTable td {
- /* border:1px dotted skyblue !important; */
- padding: 10px 30px;
- }
- td.registerTableLeftTD {
- width: 300px;
- text-align: right;
- }
- td.registerTableRightTD {
- width: 300px;
- text-align: left;
- }
- td.registerTip {
- font-weight: bold;
- }
- table.registerTable input {
- border: 1px solid #DEDEDE;
- width: 213px;
- height: 36px;
- font-size: 14px;
- }
- td.registerButtonTD {
- text-align: center;
- }
- table.registerTable button {
- width: 170px;
- height: 36px;
- border-radius: 2px;
- color: white;
- background-color: #C40000;
- border-width: 0px;
- }
- table.registerTable {
- }
- div.registerSuccessDiv {
- margin: 10px 20px;
- background-color: #F3FDF6;
- border: 1px solid #DEF3E6;
- font-size: 16px;
- color: #3C3C3C;
- padding: 20px 130px;
- }
- div.categoryPageDiv {
- max-width: 1013px;
- margin: 10px auto;
- }
- div.searchResultDiv {
- max-width: 1013px;
- margin: 10px auto;
- min-height: 300px;
- }
- div.productPageDiv {
- max-width: 1013px;
- margin: 10px auto;
- }
- div.categoryPictureInProductPageDiv {
- width: 100%;
- margin: 10px auto;
- text-align: center;
- }
- div.reviewStasticsDiv {
- margin-top: 20px;
- }
- div.registerErrorMessageDiv {
- width: 600px;
- margin: 0px auto;
- height: 50px;
- visibility: hidden;
- }
- td.orderItemProductInfoPartTD {
- border-bottom: solid 1px #ECECEC;
- }
- td.orderItemOrderInfoPartTD {
- border: solid 1px #ECECEC;
- }
- div.reviewDate {
- width: 100px;
- }
- div.reviewDivlistReviewsEach div {
- display: inline-block;
- }
- div.reviewDate {
- color: #CCCCDD;
- }
- div.reviewContent {
- color: #333333;
- width: 698px;
- }
- div.reviewUserInfo {
- color: #333333;
- }
- div.reviewDivlistReviewsEach {
- padding: 20px;
- border-bottom: 1px solid #ECECEC;
- }
- span.reviewUserInfoAnonymous {
- color: #CCCCDD;
- margin-left: 5px;
- }
- a.productLink {
- height: 34px;
- }
- img.carouselImage {
- height: 510px !important;
- }
- div.noMatch {
- font-size: 20px;
- width: 200px;
- margin: 100px auto;
- color: #888;
- }
- table.cartProductTable th.operation{
- width:80px;
- }
- table.cartProductTable th.selectAndImage{
- width:150px;
- }
- table td{
- font-size:12px;
- }
|