| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <div class="detail-brand">
- <div class="detail-brand-content">
- <h4>主营产品</h4>
- <div class="brand-list">
- <img src="/images/component/default.png"/>
- <p>陶瓷电容,多层陶瓷电容陶瓷电容,多层陶瓷电容,陶瓷电容,多层陶瓷电容陶瓷电容电容,多层陶电容瓷瓷电电容瓷电电容瓷电电容……</p>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {}
- </script>
- <style scoped lang="scss">
- .detail-brand{
- width:100%;
- .detail-brand-content{
- margin:0 auto;
- border-top:.02rem solid #dedfdf;
- border-bottom:.02rem solid #dedfdf;
- width:7.1rem;
- height:3.02rem;
- padding-top:.18rem;
- h4{
- font-size:.32rem;
- line-height: .6rem;
- margin:0;
- margin-left:3.97rem;
- }
- .brand-list{
- display:flex;
- img{
- display:inline-block;
- margin:0 .15rem;
- width:2.03rem;
- height:1.73rem;
- }
- p{
- font-size:.28rem;
- line-height: .4rem;
- padding:.12rem .46rem 0 .05rem;
- }
- }
- }
- }
- </style>
|