123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /* nova-werun/pages/home/signin/index.wxss */
- .all{
- width: 100vw;
- .picture{
- width: 100%;
- height: 980rpx;
- border: gray solid 1px;
- image{
- width: 100%;
- height: 980rpx;
- }
- }
- .textbox{
- width: 100%;
- height: 350rpx;
- .text{
- width: 100%;
- height: 220rpx;
- display: flex;
- .chick {
- width: 50%;
- height: 220rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-
- .chick-text {
- font-size: 30rpx;
- margin-bottom: 30rpx;
- }
-
- .numberbox {
- display: flex;
- height: 80rpx;
- font-size: 28rpx;
-
- .number {
- font-size: 46rpx;
- height: 80rpx;
- display: flex;
- align-items: flex-end; /* 确保数字靠下对齐 */
- margin: 0; /* 去掉默认的外边距 */
- padding: 0; /* 去掉默认的内边距 */
- }
-
- .number-text {
- height: 80rpx;
- display: flex;
- align-items: flex-end; /* 确保文本靠下对齐 */
- margin: 0; /* 去掉默认的外边距 */
- padding: 0; /* 去掉默认的内边距 */
- padding-bottom: 6rpx;
- }
- }
- }
- }
- .submitbox{
- width: 100%;
- height: 120rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- .submit{
- width: 70%;
- height: 86rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 45rpx;
- background-color: orange;
- }
- .submit2{
- width: 70%;
- height: 86rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 45rpx;
- background-color: gray;
- }
- }
- }
- }
|