36 lines
442 B
Vue
36 lines
442 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
.content {
|
|
width: 1400px;
|
|
margin: 0 auto;
|
|
}
|
|
.p0-100 {
|
|
padding: 0 100px;
|
|
}
|
|
.text_hidden_one {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.text_18_333 {
|
|
font-size: 18px;
|
|
color: #333;
|
|
}
|
|
.pointer {
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: #ffa32c;
|
|
}
|
|
}
|
|
</style>
|