| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- @charset "UTF-8";
- /***
- 全局scss 变量和方法 存放处
- */
- /* 引入minxin */
- /* 颜色变量 */
- /*图片地址*/
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .app-content {
- min-height: calc(100vh - 20rpx);
- padding-top: 20rpx;
- }
- .tabs-wrap {
- position: fixed;
- top: 0;
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- background-color: #fff;
- font-size: 30rpx;
- box-shadow: 4rpx 4rpx 10rpx #eee;
- }
- .pay-wrap .logo-wrap {
- padding-top: 70rpx;
- padding-bottom: 60rpx;
- text-align: center;
- }
- .pay-wrap .logo-wrap .logo-img {
- width: 120rpx;
- margin: 0 auto 20rpx;
- border-radius: 50%;
- }
- .pay-wrap .logo-wrap .logo-img ._img {
- border-radius: 50%;
- }
- .pay-wrap .pay-input-wrap {
- background-color: #fff;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- padding: 50rpx 80rpx 28rpx;
- margin-bottom: 0 !important;
- }
- .pay-wrap .pay-input-wrap .balance {
- margin-top: 30rpx;
- color: #666666;
- }
- .pay-wrap .pay-input-wrap .btn-wrap {
- width: 100%;
- margin-top: 64rpx;
- }
- .pay-wrap .pay-input-wrap .btn-wrap .button-com {
- display: block;
- margin-bottom: 20rpx;
- padding-top: 30rpx;
- padding-bottom: 30rpx;
- }
- .tit-bg_box {
- color: #999999;
- font-size: 24rpx;
- font-weight: 400;
- padding: 30rpx;
- background-color: #F0F2F6;
- }
- .delivery-wrap .module-com {
- margin-bottom: 20rpx;
- background-color: #fff;
- }
- .delivery-wrap .module-com .module-tit {
- padding: 20rpx 18rpx;
- font-size: 28rpx;
- font-weight: 600;
- border-bottom: 1rpx solid #eee;
- }
- .delivery-wrap .module-com .module-det {
- padding: 0 30rpx;
- }
- .delivery-wrap .pay-input-wrap {
- padding: 50rpx 36rpx 38rpx;
- }
- .delivery-wrap .pay-input-wrap .balance {
- margin-top: 30rpx;
- color: #666666;
- }
- .delivery-wrap .shop-logo-wrap {
- padding-bottom: 20rpx;
- display: -webkit-box;
- display: flex;
- display: -webkit-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .delivery-wrap .shop-logo-wrap .logo-img {
- width: 120rpx;
- border-radius: 50%;
- margin: 10rpx auto;
- }
- .delivery-wrap .shop-logo-wrap .logo-img ._img {
- border-radius: 50%;
- }
- .delivery-wrap .discount-wrap .module-det {
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- }
- .delivery-wrap .none-name-delivery {
- padding: 26rpx 30rpx;
- margin-bottom: 20rpx;
- background-color: #fff;
- }
- .delivery-wrap .none-name-delivery .none-name-text {
- margin-left: 14rpx;
- color: #666666;
- }
- .delivery-wrap .btn-wrap {
- width: calc(100% - 60rpx);
- margin: 64rpx auto 0;
- padding-bottom: 20rpx;
- }
- .delivery-wrap .btn-wrap .button-com {
- display: block;
- margin-bottom: 20rpx;
- padding-top: 30rpx;
- padding-bottom: 30rpx;
- }
- .delivery-wrap .btn-wrap .button-com:last-child {
- margin-bottom: 0;
- }
- .delivery-wrap .view-more {
- width: 100%;
- padding-bottom: 20rpx;
- margin-bottom: 20rpx;
- font-size: 28rpx;
- display: -webkit-box;
- display: flex;
- display: -webkit-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- background-color: #fff;
- color: #3385ff;
- }
- .delivery-wrap .view-more .view-more-text {
- z-index: 200;
- margin-right: 14rpx;
- }
- .delivery-wrap .view-more ._i {
- font-size: 30rpx;
- font-weight: 600;
- }
- .delivery-wrap .view-more.open ._i {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- }
|