123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- page {
- width: 750rpx;
- background: #F2F2F2;
- }
- page .confirm .bg {
- width: 750rpx;
- height: 352rpx;
- background: #0EA374;
- }
- page .confirm .container {
- width: 690rpx;
- margin: 0 auto;
- margin-top: -239rpx;
- }
- page .confirm .container .station {
- width: 690rpx;
- height: 340rpx;
- background: #FFFFFF;
- border-radius: 14rpx;
- box-sizing: border-box;
- padding: 21rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- page .confirm .container .station image {
- width: 200rpx;
- height: 240rpx;
- }
- page .confirm .container .station .info {
- width: 400rpx;
- height: 240rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: start;
- -webkit-align-items: flex-start;
- align-items: flex-start;
- }
- page .confirm .container .station .info .content {
- height: 180rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- font-size: 28rpx;
- font-weight: 400;
- color: #666666;
- line-height: 40rpx;
- }
- page .confirm .container .station .info .content view {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- page .confirm .container .station .info .content view text:nth-child(1) {
- width: 200rpx;
- display: inline-block;
- }
- page .confirm .container .station .info .name {
- height: 45rpx;
- font-size: 32rpx;
- font-weight: 600;
- color: #111111;
- line-height: 45rpx;
- }
- page .confirm .container > view:not(.station) {
- width: 690rpx;
- height: 110rpx;
- background: #FFFFFF;
- box-shadow: 0px 2rpx 6rpx 5rpx rgba(237, 237, 237, 0.5);
- border-radius: 10rpx;
- margin-top: 20rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- box-sizing: border-box;
- padding: 20rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #111111;
- line-height: 40rpx;
- }
- page .confirm .container > view:not(.station) > view {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- page .confirm .container > view:not(.station) > view .icon {
- display: inline-block;
- width: 35rpx;
- height: 30rpx;
- margin-right: 14rpx;
- }
- page .confirm .container > view:not(.station) > view .price {
- background: url(/static/icon/dingdan.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm .container > view:not(.station) > view .oil {
- background: url(/static/icon/sheng.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm .container > view:not(.station) > view .discount {
- background: url(/static/icon/youhuiquan-2.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm .container > view:not(.station) > view .vip {
- background: url(/static/icon/huiyuan-.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm .container > view:not(.station) text.price {
- font-size: 24rpx;
- color: #F3B235;
- line-height: 33rpx;
- }
- page .confirm .container > view:not(.station) text.vip {
- font-size: 24rpx;
- color: #A76825;
- line-height: 33rpx;
- }
- page .confirm .container view.dispose {
- width: 690rpx;
- height: 138rpx;
- position: relative;
- display: inline-block;
- }
- page .confirm .container view.dispose .title {
- position: absolute;
- top: 36rpx;
- left: 20rpx;
- }
- page .confirm .container view.dispose .title text:nth-child(1) {
- height: 40rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #000000;
- line-height: 40rpx;
- margin-right: 20rpx;
- }
- page .confirm .container view.dispose .title text:nth-child(2) {
- height: 28rpx;
- font-size: 20rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #F0B849;
- line-height: 28rpx;
- box-sizing: border-box;
- border: 1px solid #F0B849;
- }
- page .confirm .container view.dispose .tip {
- position: absolute;
- top: 90rpx;
- left: 20rpx;
- }
- page .confirm .container view.dispose .tip .icon {
- width: 22rpx;
- height: 22rpx;
- background: url(/static/icon/tipicon1.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm .container view.dispose .tip text:nth-child(2) {
- width: 220rpx;
- height: 28rpx;
- font-size: 20rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.4);
- line-height: 28rpx;
- }
- page .confirm .container view.coupon .extra {
- position: absolute;
- right: 20rpx;
- top: 54rpx;
- height: 34rpx;
- font-size: 24rpx;
- color: #6D6D6D;
- line-height: 34rpx;
- }
- page .confirm .container view.dzk .extra {
- position: absolute;
- right: 20rpx;
- top: 54rpx;
- background: url(/static/icon/select.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
- page .confirm .container view.dzk .selected {
- background: url(/static/icon/selected.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm .container view.dzk .forbid {
- background: url(/static/icon/forbid.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm .submit {
- width: 750rpx;
- height: 180rpx;
- }
- page .confirm .submit .area {
- width: 750rpx;
- height: 150rpx;
- background: #FFFFFF;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: end;
- -webkit-justify-content: flex-end;
- justify-content: flex-end;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- page .confirm .submit .area text:nth-child(1) {
- font-size: 28rpx;
- font-weight: 400;
- color: #111111;
- line-height: 40rpx;
- }
- page .confirm .submit .area text:nth-child(2) {
- font-size: 30rpx;
- font-weight: 600;
- color: #f3b338;
- line-height: 40rpx;
- }
- page .confirm .submit .area .btn {
- margin-left: 20rpx;
- margin-right: 30rpx;
- background-color: #0ea374;
- border-radius: 40rpx;
- width: 250rpx;
- height: 80rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 80rpx;
- text-align: center;
- }
- page .confirm uni-popup.pay .cont {
- width: 750rpx;
- height: 682rpx;
- background: #FFFFFF;
- border-radius: 30rpx 30rpx 0 0;
- position: relative;
- }
- page .confirm uni-popup.pay .cont .close {
- background: url(/static/icon/left.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- width: 18rpx;
- height: 30rpx;
- position: absolute;
- top: 46rpx;
- left: 34rpx;
- }
- page .confirm uni-popup.pay .cont .amount {
- width: 100%;
- height: 100rpx;
- font-size: 80rpx;
- font-weight: 400;
- color: #000000;
- position: absolute;
- top: 112rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- page .confirm uni-popup.pay .cont .amount text {
- font-size: 40rpx;
- }
- page .confirm uni-popup.pay .cont .type {
- width: 100%;
- height: 34rpx;
- position: absolute;
- top: 310rpx;
- }
- page .confirm uni-popup.pay .cont .type text:nth-child(1) {
- height: 34rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #aaaaaa;
- line-height: 34rpx;
- position: absolute;
- left: 58rpx;
- }
- page .confirm uni-popup.pay .cont .type text:nth-child(2) {
- height: 34rpx;
- font-size: 24rpx;
- font-weight: 500;
- color: #000000;
- line-height: 34rpx;
- position: absolute;
- right: 144rpx;
- }
- page .confirm uni-popup.pay .cont .type text:nth-child(3) {
- background: url(/static/icon/right.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- display: inline-block;
- width: 12rpx;
- height: 22rpx;
- position: absolute;
- right: 66rpx;
- top: 7rpx;
- }
- page .confirm uni-popup.pay .cont .pay {
- width: 590rpx;
- height: 76rpx;
- background: -webkit-linear-gradient(347deg, #12A273 0%, #25AA7E 100%);
- background: linear-gradient(103deg, #12A273 0%, #25AA7E 100%);
- border-radius: 38rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 76rpx;
- letter-spacing: 1rpx;
- position: absolute;
- bottom: 114rpx;
- left: 80rpx;
- }
- page .confirm uni-popup.selectPayType .cont {
- width: 750rpx;
- height: 680rpx;
- background: #FFFFFF;
- border-radius: 30rpx 30rpx 0 0;
- position: relative;
- padding: 0 25rpx;
- box-sizing: border-box;
- }
- page .confirm uni-popup.selectPayType .cont .close {
- width: 38rpx;
- height: 38rpx;
- position: absolute;
- top: 24rpx;
- left: 24rpx;
- background: url(/static/icon/6_d05_close.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm uni-popup.selectPayType .cont .credit {
- position: absolute;
- width: 700rpx;
- top: 138rpx;
- height: 130rpx;
- box-sizing: border-box;
- border-bottom: 2rpx solid #D8D8D8;
- color: #000 solid #D8D8D8;
- padding: 0 30rpx;
- }
- page .confirm uni-popup.selectPayType .cont .credit .credit-con {
- height: 60rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- page .confirm uni-popup.selectPayType .cont .credit .credit-con .text {
- font-size: 28rpx;
- height: 40rpx;
- line-height: 60rpx;
- font-weight: 600;
- }
- page .confirm uni-popup.selectPayType .cont .credit .credit-con .icon {
- background: url(/static/icon/select.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- width: 40rpx;
- height: 40rpx;
- }
- page .confirm uni-popup.selectPayType .cont .credit .credit-con .selected {
- background: url(/static/icon/selected.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm uni-popup.selectPayType .cont .credit .credit-con .forbid {
- background: url(/static/icon/forbid.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm uni-popup.selectPayType .cont .credit .tip {
- margin-top: 16rpx;
- height: 44rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.29);
- line-height: 44rpx;
- }
- page .confirm uni-popup.selectPayType .cont .wx {
- position: absolute;
- width: 700rpx;
- top: 305rpx;
- padding: 0 30rpx;
- height: 40rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- box-sizing: border-box;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- page .confirm uni-popup.selectPayType .cont .wx .text {
- font-size: 28rpx;
- height: 40rpx;
- line-height: 40rpx;
- font-weight: 600;
- }
- page .confirm uni-popup.selectPayType .cont .wx .icon {
- background: url(/static/icon/select.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- width: 40rpx;
- height: 40rpx;
- }
- page .confirm uni-popup.selectPayType .cont .wx .selected {
- background: url(/static/icon/selected.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm uni-popup.selectPayType .cont > button {
- width: 590rpx;
- height: 76rpx;
- background-color: #cccccc;
- border-radius: 38rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 76rpx;
- letter-spacing: 1rpx;
- position: absolute;
- box-sizing: border-box;
- bottom: 114rpx;
- left: 80rpx;
- }
- page .confirm uni-popup.selectPayType .cont > button.available {
- background: -webkit-linear-gradient(347deg, #12A273 0%, #25AA7E 100%);
- background: linear-gradient(103deg, #12A273 0%, #25AA7E 100%);
- }
- page .confirm uni-popup.coupon .coupon-container {
- width: 100%;
- border-radius: 42rpx 42rpx 0px 0px;
- background: #F2F2F2;
- padding: 0 30rpx;
- box-sizing: border-box;
- position: relative;
- }
- page .confirm uni-popup.coupon .coupon-container .close {
- width: 38rpx;
- height: 38rpx;
- position: absolute;
- top: 24rpx;
- right: 24rpx;
- background: url(/static/icon/6_d05_close.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm uni-popup.coupon .coupon-container > .title {
- height: 105rpx;
- font-size: 32rpx;
- font-weight: 400;
- color: #111111;
- line-height: 105rpx;
- font-weight: 600;
- color: #111111;
- text-align: center;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll {
- max-height: 500rpx;
- overflow: scroll;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item {
- width: 690rpx;
- height: 160rpx;
- font-size: 24rpx;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 40rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- margin-bottom: 20rpx;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .left {
- width: 150rpx;
- height: 160rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- text-align: center;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .left .amount {
- font-size: 20rpx;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .left .amount .big {
- font-size: 33rpx;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right {
- width: 540rpx;
- height: 160rpx;
- color: #111111;
- position: relative;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right .title {
- position: absolute;
- top: 22rpx;
- left: 20rpx;
- height: 40rpx;
- font-size: 28rpx;
- font-weight: 500;
- line-height: 40rpx;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right .scope {
- position: absolute;
- top: 72rpx;
- left: 20rpx;
- height: 28rpx;
- font-size: 20rpx;
- color: #666666;
- line-height: 28rpx;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right .valid {
- position: absolute;
- top: 110rpx;
- left: 20rpx;
- height: 28rpx;
- font-size: 20rpx;
- color: #666666;
- line-height: 28rpx;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right .use {
- position: absolute;
- top: 54rpx;
- right: 20rpx;
- display: inline-block;
- width: 160rpx;
- height: 55rpx;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .cash {
- background: url(/static/icon/youhuiquan1.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .discount {
- background: url(/static/icon/youhuiquan2.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
- page .confirm uni-popup.coupon .coupon-container .coupon-scroll .exchange {
- background: url(/static/icon/youhuiquan3.2x.png) no-repeat 0px 0px;
- background-size: 100% 100%;
- }
|