contantWe.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <div class="contantwe">
  3. <div class="button" @click="showT=!showT">
  4. <img src="../assets/img/banner/kefu.png" height="22" width="22" alt="">
  5. <span>在<br>线<br>客<br>服</span>
  6. </div>
  7. <div class="contant" v-show="showT">
  8. <div class="wechart">
  9. <img src="../assets/img/banner/contant.png" height="266" width="122" alt="">
  10. </div>
  11. <div class="phone">
  12. <div>
  13. <p>电话咨询</p>
  14. </div>
  15. <img src="../assets/img/banner/phone.png" height="31" width="37" alt="">
  16. <p>400-1566-899</p>
  17. </div>
  18. </div>
  19. </div>
  20. </template>
  21. <script>
  22. export default{
  23. data(){
  24. return{
  25. showT:true,
  26. }
  27. },
  28. methods:{
  29. }
  30. }
  31. </script>
  32. <style>
  33. .contantwe{
  34. position: fixed;
  35. top: 28%;
  36. right: 0px;
  37. z-index: 100;
  38. /*width: 130px;
  39. height: 430px;
  40. background: #20a0ff;
  41. z-index: 100;
  42. border-top-left-radius: 10px;
  43. border-bottom-left-radius: 10px;*/
  44. .contant{
  45. box-shadow: 0 3px 5px 2px #b2b2b2;
  46. width: 150px;
  47. height: 450px;
  48. background: #20a0ff;
  49. border-top-left-radius: 10px;
  50. border-bottom-left-radius: 10px;
  51. padding-top: 10px;
  52. .wechart{
  53. background: #fff;
  54. width: 130px;
  55. margin: 0 auto;
  56. padding: 10px 0;
  57. border-radius: 10px;
  58. }
  59. .phone{
  60. background: #fff;
  61. width: 130px;
  62. height: 130px;
  63. margin: 0 auto;
  64. padding: 10px 5px;
  65. border-radius: 10px;
  66. margin-top: 10px;
  67. div{
  68. border-bottom: 1px solid #e5e5e5;
  69. p{
  70. font-size: 14px;
  71. color: #333;
  72. font-weight: bold;
  73. line-height: 30px;
  74. text-align: left;
  75. margin-left: 10px;
  76. }
  77. }
  78. p{
  79. font-size: 14px;
  80. color: #333;
  81. font-weight: bold;
  82. line-height: 30px;
  83. }
  84. img{
  85. margin-top: 10px;
  86. }
  87. }
  88. }
  89. .button{
  90. width: 36px;
  91. height: 120px;
  92. background: #20a0ff;
  93. position: absolute;
  94. margin-left: -36px;
  95. border-top-left-radius: 10px;
  96. border-bottom-left-radius: 10px;
  97. cursor: pointer;
  98. margin-top: 150px;
  99. text-align: center;
  100. img{
  101. margin-top: 10px;
  102. }
  103. span{
  104. color: #fffc00;
  105. font-size: 14px;
  106. }
  107. }
  108. }
  109. </style>