From 9ac553f18e4ab94adc90427bf5cc48949c616dea Mon Sep 17 00:00:00 2001 From: Rieko-wang Date: Wed, 7 Dec 2022 13:40:33 +0800 Subject: [PATCH] 123 --- css/style.css | 9 ++++++++- index.html | 4 ++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/css/style.css b/css/style.css index fca9a63..50cee57 100644 --- a/css/style.css +++ b/css/style.css @@ -329,7 +329,14 @@ img { } .billing-list .item { - /* margin-top: -0.3rem; */ + margin-top: -0.3rem; +} +.billing-list .item .bg::after { + content: ""; + height: 1px solid #e5e5e5; + position: absolute; + left: 1.45rem; + bottom: 0; } .card-box { width: 100%; diff --git a/index.html b/index.html index de5a428..39bf387 100644 --- a/index.html +++ b/index.html @@ -126,10 +126,10 @@ $("#m1").each(function () { if (this.complete) { console.log('complete', this.height) - $('.billing-list').css('paddingTop', this.height + 48) + $('.billing-list').css('paddingTop', this.height + 52) } else { $($(this)).on('load', function () { - $('.billing-list').css('paddingTop', this.height + 48) + $('.billing-list').css('paddingTop', this.height + 52) }); } });