/* pages/index/index.wxss */ page { background: #fff; } image { border: none; } .main { display: block; width: 80vw; height: 60vh; margin: 10vh auto; } .go { width: 70vw; height: 12vw; line-height: 12vw; font-size: 5vw; text-align: center; background: #3e94f6; color: #fff; border-radius: 6vw; margin: 0 auto; margin-top: 60rpx; padding: 0; } .has-account { width: 300rpx; height: 70rpx; line-height: 70rpx; color: #888; text-decoration: underline; font-size: 32rpx; text-align: center; margin: 30rpx auto; } .reg-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; z-index: 999; } .reg-mask-content { background-color: #fff; padding: 60rpx 40rpx; border-radius: 10rpx; text-align: center; width: 80vw; } .reg-mask-text { font-size: 36rpx; color: #333; text-align: center; font-weight: bold; margin-bottom: 40rpx; } .reg-mask-buttons { display: flex; justify-content: space-around; } .reg-mask-button { padding: 16rpx 10rpx !important; width: 200rpx !important; border-radius: 8rpx; font-size: 30rpx; } .reg-mask-button.cancel { background-color: #eee; color: #333; border: 1rpx solid #ccc; } .reg-mask-button.register { background-color: #3e94f6; color: #fff; border: 1rpx solid #3e94f6; } .bind-ship { background-color: rgba(0, 0, 0, 0.5); height: 100vh; width: 100vw; position: fixed; top: 0; left: 0; z-index: 999; display: flex; justify-content: center; align-items: center; } .bind-ship-content { background-color: #fff; padding: 60rpx 40rpx; border-radius: 10rpx; width: 80vw; box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.1); } .bind-ship-title { font-size: 36rpx; color: #333; text-align: center; font-weight: bold; margin-bottom: 40rpx; } .bind-ship .line { display: flex; align-items: center; margin-bottom: 30rpx; } .bind-ship .label { width: 180rpx; font-size: 32rpx; color: #555; text-align: right; padding-right: 20rpx; } .bind-ship .input { flex: 1; height: 80rpx; border: 1rpx solid #ddd; border-radius: 8rpx; padding: 0 20rpx; font-size: 30rpx; } .bind-ship .buttons { display: flex; justify-content: space-around; margin-top: 50rpx; } .bind-ship .button { padding: 16rpx 10rpx !important; width: 200rpx !important; border-radius: 8rpx; font-size: 30rpx; } .bind-ship .button.cancel { background-color: #eee; color: #333; border: 1rpx solid #ccc; } .bind-ship .button.confirm { background-color: #3e94f6; color: #fff; border: 1rpx solid #3e94f6; }