| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /* 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;
- position: relative;
- }
- .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;
- }
- /* reg-mask-content右上角叉叉 */
- .quit {
- position: absolute;
- height: 60rpx;
- width: 60rpx;
- z-index: 999;
- top: -20rpx;
- right: -20rpx;
- font-size: 40rpx;
- color: #333;
- background: #fff;
- border-radius: 50%;
- }
|