123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- @import "../../public/page/purchase-details.wxss";
- @import "../../../../public/pages/public-view.wxss";
- /* 选择户籍 */
- .choose-account {
- background-color: #F1F8FF;
- width: 100%;
- height: 100rpx;
- margin-top: 24rpx;
- display: flex;
- flex-direction: column;
- }
- .choose-account>view:nth-child(1) {
- margin: 0 34rpx;
- display: flex;
- }
- .choose-account>view:nth-child(1) view {
- color: #3296FB;
- font-size: 28rpx;
- line-height: 100rpx;
- margin-left: auto
- }
- .choose-account>view:nth-child(1)>view:nth-child(1) {
- margin-left: 0rpx;
- }
- .choose-account>view:nth-child(2) {
- width: 112rpx;
- height: 5rpx;
- background-color: #3296FB;
- margin-left: 34rpx;
- }
- /* toCalculator */
- .to-calculator {
- width: 100%;
- height: 100rpx;
- background-color: white;
- display: flex;
- }
- .to-calculator>text {
- font-size: 28rpx;
- color: #3296FB;
- line-height: 100rpx;
- margin-left: auto;
- }
- .to-calculator>image {
- width: 16rpx;
- height: 24rpx;
- margin: auto auto auto 10rpx;
- }
- /* 档线间隔 */
- .interval {
- width: 100%;
- height: 24rpx;
- background-color: #F5F5F5;
- margin-top: -0.7px;
- }
- /* 总价格 */
- .total-view {
- background-color: white;
- width: 100%;
- height: 112rpx;
- display: flex;
- }
- .total-view>text:first-child {
- font-family: PingFangSC-Regular;
- font-size: 28rpx;
- color: #333333;
- line-height: 112rpx;
- margin-left: 30rpx;
- }
- .total-view>text:nth-child(2) {
- font-family: PingFangSC-Medium;
- color: #FF5E5E;
- font-size: 34rpx;
- line-height: 112rpx;
- margin: 0 30rpx 0 auto;
- }
- /* 分项价格 */
- .list-view {
- background-color: white;
- width: 100%;
- height: 70rpx;
- display: flex;
- }
- .list-view text {
- font-family: PingFangSC-Regular;
- font-size: 28rpx;
- line-height: 70rpx;
- }
- .list-view>text:nth-child(1) {
- color: #333333;
- margin-left: 30rpx;
- }
- .list-view>view:nth-child(2) {
- color: #FF5E5E;
- font-size: 22rpx;
- text-align: center;
- line-height: 32rpx;
- width: 56rpx;
- height: 32rpx;
- border: 1px solid #FF5E5E;
- border-radius: 4rpx;
- margin: auto 0rpx auto 16rpx;
- }
- .list-view>text:last-child {
- color: #666666;
- margin-left: auto;
- margin-right: 30rpx;
- }
|