12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* 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;
- color: white;
- background-color: #69A9F8;
- }
- .submit2{
- width: 70%;
- height: 86rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 45rpx;
- background-color: gray;
- }
- }
- }
- }
|