12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .QueryRecord {
- width: 100vw;
- min-height: 100vh;
- background: #F9F9F9;
- overflow: hidden;
- padding-bottom: 20px;
- }
- .QueryRecord-item {
- width: 686px;
- height: 200px;
- background: #FFFFFF;
- box-shadow: 0px 4px 8px 0px rgba(220, 220, 220, 0.5);
- border-radius: 20px;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin: 0 auto;
- margin-top: 40px;
- padding-left: 32px;
- box-sizing: border-box;
- Image {
- width: 204px;
- height: 136px;
- }
- .shop-info {
- flex: 1;
- margin-left: 35px;
- .shop-version {
- font-size: 32px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #161616;
- }
- .shop-cate {
- font-size: 24px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- }
- }
- .button {
- margin-right: 38px;
- width: 124px;
- height: 60px;
- border-radius: 44px;
- background: #F3F3F3;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 24px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- }
- .unclaimed {
- color: #FFFFFF;
- background: #002F95;
- box-shadow: 0px 4px 20px 0px rgba(0, 47, 149, 0.52);
- }
- }
|