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) }); } });