46 lines
		
	
	
		
			834 B
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			834 B
		
	
	
	
		
			Vue
		
	
	
	
 | 
						|
 | 
						|
<template>
 | 
						|
  <div class="web2tit">
 | 
						|
    <slot></slot>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  name: "Web4Title"
 | 
						|
}
 | 
						|
</script>
 | 
						|
<style scoped lang="less">
 | 
						|
 .web2tit {
 | 
						|
   width: 100%;
 | 
						|
   height: 48px;
 | 
						|
   line-height: 48px;
 | 
						|
   border-bottom: 1px solid rgba(255, 255, 255, 0.4);
 | 
						|
   /** 文本1 */
 | 
						|
   font-size: 14px;
 | 
						|
   font-weight: 500;
 | 
						|
   letter-spacing: 0px;
 | 
						|
   color: rgba(255, 255, 255, 1);
 | 
						|
   text-align: left;
 | 
						|
   vertical-align: top;
 | 
						|
   background-size: 10px 16px;
 | 
						|
   box-sizing: border-box;
 | 
						|
   padding-left: 20px;
 | 
						|
   position: relative;
 | 
						|
   &::after {
 | 
						|
     position: absolute;
 | 
						|
     left: 0;
 | 
						|
     top: 50%;
 | 
						|
     transform: translateY(-50%);
 | 
						|
     display: table;
 | 
						|
     content: ' ';
 | 
						|
     width: 10px;
 | 
						|
     height: 10px;
 | 
						|
     opacity: 1;
 | 
						|
     border: 2px solid rgba(255, 255, 255, 1);
 | 
						|
     border-radius: 50%;
 | 
						|
 | 
						|
   }
 | 
						|
 }
 | 
						|
</style>
 |