/* pages/login/login.wxss */ .custom-wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked { color: #fff !important; background-color: #FFA900; border: 1px solid #FFA900; } .custom-wx-checkbox .wx-checkbox-input { -webkit-appearance: none; appearance: none; outline: 0; text-indent: 0; width: 40rpx; height: 40rpx; border-radius: 20rpx; background-color: transparent; position: relative; border: 1rpx solid #FFA900; box-sizing: border-box; text-align: center; } /*钩大小*/ .custom-wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked:before { font-size: 36rpx; text-align: center; } .login { width: 100vw; height: 100vh; display: flex; flex-direction: column; position: relative; } .login-container { background-image: url('https://www.aimzhu.com/miniapp-assets/login_bg.jpg'); width: 100vw; height: 100vh; background-size: cover; background-repeat: no-repeat; } .btn-content { position: absolute; bottom: 0; left: 50%; transform: translate(-50%, -50%); background-color: white; width: 80vw; height: 250rpx; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 20rpx; box-shadow: 0 0 20px rgba(0, 0, 0, 0.07); } .deal { color: blue; } .deal-box { font-size: 24rpx; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; } .btn { animation: clickScale 1.2s; animation-iteration-count: infinite; animation-timing-function: ease-in-out; margin-top: 40rpx; font-size: 24rpx; line-height: 20px; border-radius: 45px; background-color: rgba(255, 169, 0, 1); color: rgba(255, 255, 255, 1); text-align: center; font-family: PingFangSC-regular; } .btn[disabled] { color: gray !important; background-color: rgb(242, 242, 242) !important; } @keyframes clickScale { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } .weui-half-screen-dialog__container { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.5); z-index: 999; } .weui-half-screen-dialog { background: #fff; border-top-left-radius: 10px; border-top-right-radius: 10px; overflow: hidden; } .weui-half-screen-dialog__hd { display: flex; justify-content: space-between; align-items: center; padding: 15px; border-bottom: 1px solid #eee; } .weui-half-screen-dialog__title { font-size: 18px; font-weight: bold; } .weui-half-screen-dialog__close { cursor: pointer; } .weui-half-screen-dialog__bd { padding: 15px; } .custom-content text { display: block; margin-bottom: 10px; } .weui-half-screen-dialog__ft { padding: 0rpx 0rpx 40rpx; text-align: center; } .custom-tips { margin-top: 80px; } .contact-hint { font-size: 12px; color: #FE9944; } .contact-input { font-size: 14px; color: black; line-height: 30px; height: 30px; padding: 2px 5px; margin-top: 5px; border: 1px solid #efefef; }