| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* pages/splash/splash.wxss */
- page{
- background-color: #fff;
- }
- .splashImage{
- position: absolute;
- z-index: 10;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- }
- .splashImage image{
- width: 100%;
- height: 100%;
- }
- .visit-btn{
- text-align: center;
- padding-top: 30rpx;
- color: var(--themeColor);
- }
- .user-info{
- background-color: var(--themeColor) !important;
- color: #ffffff !important;
- width: 100% !important;
- }
- .regbox{
- position: absolute;
- z-index: 11;
- width: 610rpx;
- height: 730rpx;
- top: 25%;
- left: 40rpx;
- background-color: #fff;
- border-radius: 25rpx;
- padding: 0 30rpx;
- }
- .regbox-title{
- margin-top: 50rpx;
- font-size: 36rpx;
- text-align: center;
- font-weight: bold;
- margin-bottom: 30rpx;
- }
- .regbox-input{
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- overflow: hidden;
- margin-bottom: 30rpx;
- border-bottom: 1rpx solid #E6E6E6;
- }
- .regbox-input image{
- width: 50rpx;
- height: 50rpx;
- vertical-align: middle;
- }
- .regbox-input-view,.regbox-input input{
- display: inline-block;
- width: 530rpx;
- height: 70rpx;
- vertical-align: middle;
- /* background-color: red; */
- padding-left: 20rpx;
- color: #222222;
- font-size: 34rpx;
- overflow: hidden;
- }
- .regbox-input-view{
- margin-top: -20rpx;
- color: #808080;
- }
|