12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* pages/increase/increase.wxss */
- page{
- background-color: rgba(232, 233, 240, 0.986);
- }
- .product {
- background-color:white;
- margin-top: 5%;
- width: 100%;
- height: 130px;
- }
- .picture {
- padding-left: 15px;
- position:absolute;
- top: 4%;
- }
- .topic-1 {
- padding-left: 15px;
- }
- .topic {
- background-color: white;
- margin-top: 5%;
- width: 100%;
- height: 45px;
- }
- .topic-2 {
- border-top: 1px solid black;
- background-color: white;
- width: 100%;
- height: 45px;
- padding-left: 15px;
- }
- .topic-3 {
- line-height: 42px;
- padding-left: 15px;
- }
- .topic-4 {
- background-color:white;
- margin-top: 5%;
- width: 100%;
- height: 130px;
- padding-left: 15px;
- }
- .area {
- margin-top: 3%;
- border: 1px solid rgb(211, 196, 196);
- border-radius: 5px;
- width: 90%;
- height: 60%;
- }
- .but {
- margin-top: 10%;
- display: flex;
- }
- .but-1 {
- color: aliceblue;
- background-color: gray;
- border-radius: 30px;
- }
- .but-2 {
- color: aliceblue;
- background-color: darkorange;
- border-radius: 30px;
- }
|