123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- body {
- /* background-color: transparent; */
- position: relative;
- margin: 0;
- font-family: 'Harmony SC';
- min-height: 100px;
- background-color: whitesmoke;
- }
-
- form {
- border-radius: 10px;
- /* position: relative; */
- width: 100%;
- min-height: 100px;
- /* min-width: 500px; */
- }
-
- form>div.Store {
- position: relative;
- margin-top: 10px;
- margin-left: 15px;
- margin-right: 15px;
- border-radius: 10px;
- background-color: white;
- font-size: 16px;
- overflow: hidden;
- }
- /* div#Cartlist>div.Store:last-child
- {
- margin-bottom: 0;
- } */
-
- form>div.Store>* {
- border-bottom: 1px solid gainsboro;
- }
-
- form>div.Store>*:last-child {
- border-bottom: 0;
- }
-
- form>div.Store>a#lable {
- height: 48px;
- line-height: 48px;
- display: flex;
- justify-items: center;
- overflow: hidden;
- background-color: transparent;
- }
-
- form>div.Store>a#lable>input {
- height: 24px;
- width: 24px;
- margin: 12px;
- margin-left: calc(1ch + 12px);
- }
-
- form>div.Store>a#lable>div#StoreIcon {
- height: 40px;
- width: 40px;
- margin: 4px;
- margin-left: calc(1ch + 4px);
- text-align: center;
- }
-
- form>div.Store>a#lable>div#StoreIcon>img {
- max-width: 100%;
- max-height: 100%;
- }
-
- form>div.Store>a#lable>h3 {
- margin: 0;
- }
-
- form>div.Store>div.goods {
- height: 96px;
- display: flex;
- justify-items: center;
- overflow: hidden;
- background-color: transparent;
- }
-
- form>div.Store>div.goods>input {
- height: 24px;
- min-width: 24px;
- margin: 36px;
- margin-left: calc(1ch + 12px);
- margin-right: calc(1ch + 12px);
- }
-
- form>div.Store>div.goods>div#GoodsIcon {
- height: 88px;
- min-width: 88px;
- margin: 4px;
- margin-left: calc(1ch + 4px);
- text-align: center;
- }
-
- form>div.Store>div.goods>div#GoodsIcon>img {
- max-width: 100%;
- max-height: 100%;
- }
-
- form>div.Store>div.goods>div#exp {
- position: relative;
- margin: 8px;
- height: 80px;
- width: 100%;
- min-width: 200px;
- }
-
- form>div.Store>div.goods>div#exp>* {
- width: 100%;
- margin: 0;
- }
-
- form>div.Store>div.goods>div#exp>p {
- color: gray;
- }
-
- form>div.Store>div.goods>div#exp>h4 {
- color: #E33333;
- position: absolute;
- bottom: 0;
- left: 0;
- }
-
- form>div.Store>div.goods>div#exp>h4::after {
- counter-reset: "$";
- color: #E33333;
- }
-
- form>div.Store>div.goods>div#exp>div#count {
- position: absolute;
- width: 25%;
- min-width: 16ch;
- height: 24px;
- border-radius: 10px;
- border: 1px solid gray;
- margin: 0;
- bottom: 0;
- right: 0;
- display: flex;
- overflow: hidden;
- }
-
- form>div.Store>div.goods>div#exp>div#count>* {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- border: 0;
- outline: 1px solid gray;
- text-align: center;
- background-color: white;
- user-select: none;
- }
-
- form>div.Store>div.goods>div#exp>div#count>*:hover {
- background-color: gainsboro;
- }
-
- form>div.Store>div.goods>div#exp>div#count>*:active {
- background-color: gray;
- }
-
- form>div#BottomBar {
- position: fixed;
- bottom: 0;
- width: calc(100% - 30px);
- padding: 15px;
- }
-
- form>div#BottomBar input:nth-of-type(1) {
- font-size: 15px;
- padding: 10px;
- color: #E33333;
- background-color: rgb(236, 200, 200);
- border: 2px solid #E33333;
- }
-
- form>div#BottomBar input:nth-of-type(2) {
- font-size: 15px;
- color: white;
- padding: 10px 30px;
- border: 2px solid rgb(82, 40, 236);
- background-color: rgb(171, 151, 243);
- }
- /* form>div#BottomBar input:nth-of-type(1) {
- float: right;
- } */
-
- form>div#BottomBar>h2#summary {
- float: right;
- margin: 0;
- color: #E33333;
- line-height: 30px;
- }
-
- form>div#BottomBar>p {
- float: right;
- margin: 0;
- line-height: 30px;
- }
-
- @font-face {
- font-family: 'Harmony SC';
- src: url(../fonts/HarmonyOS_Sans_SC_Medium.ttf);
- }
|