123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* pages/Components/campusBinding/campusBinding.wxss */
- .main {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- z-index: 2;
- }
- .background {
- position: fixed;
- top: 0;
- left: 0;
- width: 750rpx;
- height: 1125rpx;
- }
- .logo{
- margin-top: 208rpx;
- margin-bottom: 20rpx;
- width: 290rpx;
- height: 290rpx;
- z-index: 3;
- }
- .button {
- /* margin: 0; */
- padding: 0;
- position: fixed;
- left: 50%;
- transform: translateX(-50%);
- bottom: 120rpx;
- width: 400rpx;
- height: 82rpx;
- line-height: 82rpx;
- text-align: center;
- background: rgba(255, 255, 255, 1);
- border: 2rpx solid #cc6031;
- box-shadow: 0rpx 4rpx 12rpx #cc6031;
- border-radius: 42rpx;
- font-size: 32rpx;
- color: #cc6031;
- }
|