css实现左右内凹圆

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
    /* 详情页面 */
    .detail-wrapper {
        background-color: skyblue;
        padding: 10px;
    }
    .detail-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #FFF;
    }
    .title {
        font-size: 16px;
        font-family: PingFangSC-Medium, PingFang SC;
        font-weight: 500;
        color: #333333;
        line-height: 24px;
        margin-bottom: 24px;
    }
    .price {
        font-size: 28px;
        font-family: DINAlternate-Bold, DINAlternate;
        font-weight: bold;
        color: #0D0D0D;
        line-height: 28px;
        margin-bottom: 16px;
    }
    .balance {
        font-size: 14px;
        font-family: PingFangSC-Semibold, PingFang SC;
        font-weight: 600;
        color: #808080;
        line-height: 14px;
    }
    .line-wrapper {
        width: 100%;
        height: 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
    }
    .line-wrapper::before {
        content: "";
        width: 100%;
        height: 10px;
        border-bottom: 1px dashed red;
    }
    .left,.right {
        position: absolute;
        width: 20px;
        height:20px;
        border-radius:50%;
        background-color: skyblue;
    }
    .left {
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
    }
    .right {
        top: 50%;
        right: 0;
        transform: translate(50%, -50%);
    }
    </style>
</head>
<body>
    <div class="detail-wrapper">
        <div class="detail-content">
            <div class="title">消费商户名称消费商户名称消费商户名称消费商户</div>
            <div class="price">- ¥ 2,892.00</div>
            <div class="balance">余额:¥2,892.00</div>
            <div class="line-wrapper">
                <span class="left"></span>
                <span class="right"></span>
            </div>
            <div class="content">
                <div class="balance">余额:¥2,892.00</div>
                <div class="balance">余额:¥2,892.00</div>
                <div class="balance">余额:¥2,892.00</div>
                <div class="balance">余额:¥2,892.00</div>
            </div>
        </div>
    </div>
</body>
</html>

具体实现效果:

相关推荐
喵叔哟1 分钟前
重构代码之取消临时字段
java·前端·重构
还是大剑师兰特42 分钟前
D3的竞品有哪些,D3的优势,D3和echarts的对比
前端·javascript·echarts
王解42 分钟前
【深度解析】CSS工程化全攻略(1)
前端·css
一只小白菜~1 小时前
web浏览器环境下使用window.open()打开PDF文件不是预览,而是下载文件?
前端·javascript·pdf·windowopen预览pdf
方才coding1 小时前
1小时构建Vue3知识体系之vue的生命周期函数
前端·javascript·vue.js
阿征学IT1 小时前
vue过滤器初步使用
前端·javascript·vue.js
王哲晓1 小时前
第四十五章 Vue之Vuex模块化创建(module)
前端·javascript·vue.js
丶21361 小时前
【WEB】深入理解 CORS(跨域资源共享):原理、配置与常见问题
前端·架构·web
发现你走远了1 小时前
『VUE』25. 组件事件与v-model(详细图文注释)
前端·javascript·vue.js
Mr.咕咕1 小时前
Django 搭建数据管理web——商品管理
前端·python·django