123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- /* dispatcher/pages/dispatch_go/dispatch_go.wxss */
- @import '../../../templates/footer/footer.wxss';
- .scan-title {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- padding: 40rpx 24rpx;
- }
- .scan-btn {
- margin: 150rpx auto;
- width: 320rpx;
- height: 320rpx;
- background: linear-gradient(152deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
- box-shadow: 0rpx 8rpx 40rpx 0rpx rgba(0,175,243,0.5);
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border-radius: 400rpx;
- z-index: 3;
- cursor: pointer;
- }
- .scan-btn::before {
- content: "";
- position: absolute;
- top: -23rpx;
- left: -23rpx;
- width: 366rpx;
- height: 366rpx;
- border-radius: 500rpx;
- background: rgba(0,183,255,1);
- opacity: 0.06;
- z-index: 2;
- }
- .scan-btn::after {
- content: "";
- position: absolute;
- top: -56rpx;
- left: -56rpx;
- width: 432rpx;
- height: 432rpx;
- background: rgba(0,183,255,1);
- opacity: 0.04;
- z-index: 1;
- border-radius: 500rpx;
- }
- .scan-btn-icon {
- width: 128rpx;
- height: 120rpx;
- }
- .scan-btn-text {
- margin-top: 40rpx;
- color: #fff;
- font-size: 32rpx;
- }
- .scan-row {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 80rpx;
- }
- .scan-row-icon {
- width: 30rpx;
- height: 30rpx;
- margin-right: 14rpx;
- }
- .scan-row-text {
- font-size: 30rpx;
- color: #999;
- }
- .scan-row-btn {
- display: flex;
- justify-content: center;
- align-items: center;
- background: rgba(255,215,108,1);
- border-radius: 100rpx;
- padding: 18rpx 68rpx;
- }
- .scan-row-btn-icon {
- width: 16rpx;
- height: 24rpx;
- margin-left: 14rpx;
- }
- .scan-row-btn-text {
- font-size: 30rpx;
- color: rgba(102, 102, 102, 1);
- }
- .scan {
- position: fixed;
- right: 30rpx;
- bottom: 360rpx;
- width: 128rpx;
- height: 128rpx;
- border-radius: 200rpx;
- background: rgba(0,183,255,1);
- box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0,175,243,0.5);
- opacity: 0.7;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- z-index: 9;
- }
- .scan-icon {
- width: 46rpx;
- height: 46rpx;
- }
- .scan-text {
- margin-top: 10rpx;
- font-size: 24rpx;
- color: #fff;
- }
- .home {
- position: fixed;
- right: 30rpx;
- bottom: 200rpx;
- width: 128rpx;
- height: 128rpx;
- border-radius: 200rpx;
- background: rgba(0,183,255,1);
- box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0,175,243,0.5);
- opacity: 0.7;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- z-index: 9;
- }
- .home-icon {
- width: 46rpx;
- height: 46rpx;
- }
- .home-text {
- margin-top: 10rpx;
- font-size: 24rpx;
- color: #fff;
- }
- .modal-container {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, .3);
- z-index: 999;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .modal-wrapper {
- border-radius: 10rpx;
- background: rgba(255, 255, 255, 1);
- padding: 30rpx;
- min-width: 444rpx;
- text-align: center;
- }
- .modal-image {
- width: 232rpx;
- height: 268rpx;
- transform: translateY(-68rpx);
- box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(204,204,204,1);
- border-radius: 6rpx;
- border: 4rpx solid rgba(255,255,255,1);
- }
- .modal-title {
- font-size: 32rpx;
- color: rgba(51, 51, 15, 1);
- margin: -30rpx auto 30rpx auto;
- }
- .modal-btns {
- display: flex;
- justify-content: space-around;
- align-items: center;
- margin: 48rpx auto;
- }
- .modal-btn {
- font-size: 28rpx;
- border-radius: 100rpx;
- padding: 14rpx;
- min-width: 234rpx;
- }
- .modal-btn-blue {
- color: white;
- background: linear-gradient(152deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
- }
|