.orgs { margin-left: 10; margin-bottom: 10; display: flex; align-items: center; } .orgsBox{ overflow: auto; margin: 10px; } .line { position: relative; height: 3px; /* 线的高度 */ } .line::after { content: ""; position: absolute; left: 0; right: 0; top: 0; border-top: 1px solid #fff; /* 线的颜色和宽度 */ } .line:before{ content: ''; position: absolute; top: 50%; left: 100%; transform: translate(-50%, -50%); width: 100%; height: 50%; background: #fff; /* 设置线的颜色 */ } .line:after { content: ''; position: absolute; top: 50%; left:50%; transform: translate(-50%, -50%); width: 100%; height: 50%; background: #fff; /* 设置线的颜色 */ } .line:before { transform: translate(-50%, -50%) rotate(90deg); } .line:after { width: 100%; /* 设置短线宽度 */ background: transparent; /* 设置短线透明 */ } .userNmaeBox{ margin-left: 10px; margin-bottom: 10px; color: #fff; text-align: center; .userNmae{ display: block; padding: 5px 5px; background: rgba(75, 176, 152, 0.2); font-size: 13px; } }