| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div class="border-box-style box-content-style" :style="borderBox">
- <div class="justify-style">
- <div class="justify-style">
- <div class="icon"></div>
- <div class="title">业务员账户</div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "borderTemplate",
- props:["borderBox"]
- }
- </script>
- <style scoped>
- .border-box-style{
- background: linear-gradient( 180deg, #00244D 0%, #001E41 100%);
- box-shadow: 0.000vw 0.104vw 0.208vw 0.052vw rgba(0,0,0,0.15);
- border-radius: 0.208vw 0.208vw 0.208vw 0.208vw;
- border: 0.104vw solid #3D73BA;
- opacity: 0.8;
- }
- .justify-style{
- display: flex;
- justify-content: left;
- }
- .box-content-style{
- padding: 1.042vw;
- }
- .box-content-style .icon {
- width: 0.313vw;
- height: 0.938vw;
- background: #E6F4FF;
- border-radius: 0.104vw 0.104vw 0.104vw 0.104vw;
- }
- .box-content-style .title{
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 1.250vw;
- color: #E6F4FF;
- text-align: left;
- }
- </style>
|