1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- page {
- background-color: #ffffff;
- }
- .box {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- #Logo {
- width: 230rpx;
- margin: 150rpx 0 80rpx
- }
- /* 按钮 */
- .buttom {
- display: flex;
- justify-content: space-around;
- align-items: center;
- width: 80vw;
- height: 80rpx;
- margin: 80rpx auto 0;
- }
- .but-custom-class {
- height: 60rpx !important;
- width: 160rpx !important;
- color: #ffffff;
- border-radius: 30rpx !important;
- font-weight: 550;
- }
- /* 文字 */
- .textTips {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- min-height: 80rpx;
- width: 80vw;
- font-size: 30rpx;
- box-sizing: border-box;
- background-color: rgba(0, 0, 0, .02);
- border: 1px solid #dbdada;
- border-radius: 15rpx;
- color: rgba(0, 0, 0, .7);
- }
- .shop {
- padding: 20rpx 30rpx;
- }
- .textTips .select {
- margin-top: 30rpx;
- }
|