|
@@ -1,5 +1,5 @@
|
|
<template>
|
|
<template>
|
|
- <span class="btn" @click="btnClick" :class="topClass">在线咨询</span>
|
|
|
|
|
|
+ <span class="zxzx-btn" @click="btnClick" :class="topClass">在线咨询</span>
|
|
|
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -31,27 +31,30 @@ export default {
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
-<style lang="scss" scoped>
|
|
|
|
-.btn {
|
|
|
|
|
|
+<style lang="scss">
|
|
|
|
+.zxzx-btn {
|
|
&.level_1 {
|
|
&.level_1 {
|
|
width: 154px;
|
|
width: 154px;
|
|
- height: 47px;
|
|
|
|
|
|
+ height: 48px;
|
|
|
|
+ line-height: 48px;
|
|
color: #00b96b;
|
|
color: #00b96b;
|
|
border-radius: 24px;
|
|
border-radius: 24px;
|
|
- padding: 10px 30px;
|
|
|
|
background: #fff;
|
|
background: #fff;
|
|
border: 1px solid #00b96b;
|
|
border: 1px solid #00b96b;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
|
+ display: inline-block;
|
|
|
|
+ text-align: center;
|
|
}
|
|
}
|
|
&.level_2 {
|
|
&.level_2 {
|
|
width: 154px;
|
|
width: 154px;
|
|
- height: 47px;
|
|
|
|
|
|
+ height: 48px;
|
|
|
|
+ line-height: 48px;
|
|
color: #fff;
|
|
color: #fff;
|
|
border-radius: 24px;
|
|
border-radius: 24px;
|
|
- padding: 10px 30px;
|
|
|
|
background: #00B96B;
|
|
background: #00B96B;
|
|
border: 1px solid #00b96b;
|
|
border: 1px solid #00b96b;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
|
+ text-align: center;
|
|
}
|
|
}
|
|
@media (max-width: 768px) {
|
|
@media (max-width: 768px) {
|
|
&.level_1 {width: 44%;height:35px;line-height:35px;max-width: 120px;margin: 0 3%;
|
|
&.level_1 {width: 44%;height:35px;line-height:35px;max-width: 120px;margin: 0 3%;
|