30 lines
		
	
	
		
			585 B
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			585 B
		
	
	
	
		
			Vue
		
	
	
	
 | 
						|
 | 
						|
<template>
 | 
						|
  <div class="web2tit">
 | 
						|
    <slot></slot>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  name: "Web2Title"
 | 
						|
}
 | 
						|
</script>
 | 
						|
<style scoped lang="less">
 | 
						|
  .web2tit {
 | 
						|
    width: 100%;
 | 
						|
    height: 46px;
 | 
						|
    background: linear-gradient(90deg, rgba(0, 107, 207, 0.4) 0%, rgba(0, 128, 247, 0.08) 100%);
 | 
						|
    border-left: 4px solid rgba(45, 205, 255, 1);
 | 
						|
    /** 文本1 */
 | 
						|
    font-size: 20px;
 | 
						|
    font-weight: 700;
 | 
						|
    letter-spacing: 0px;
 | 
						|
    color: rgba(255, 255, 255, 1);
 | 
						|
    text-align: left;
 | 
						|
    vertical-align: top;
 | 
						|
    padding-left: 20px;
 | 
						|
    line-height: 46px;
 | 
						|
  }
 | 
						|
</style>
 |