开放平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

86 line
2.3 KiB

  1. <template>
  2. <div class="page-scene-box">
  3. <div class="flex-box">
  4. <div class="scene-title">业务场景</div>
  5. <div class="scene-content-box1">
  6. <div class="item-font">
  7. <div class="font1">
  8. 创建标准化应用<br />
  9. 在云应用市场获得销售收入
  10. </div>
  11. <div class="font2">
  12. 为多家知名品牌提供了个性化定制服务。有开放的能力让神码可做的解决方案、产品形态更丰富,而通过应用市场获得的稳定客源,帮助神码这支创业团队持续盈利
  13. </div>
  14. </div>
  15. <img src="@/static/img/shouru.png" alt="" />
  16. </div>
  17. <div class="scene-content-box1">
  18. <img src="@/static/img/xuqiu.png" alt="" />
  19. <div class="item-font">
  20. <div class="font1">
  21. 自主开发或与客户合作<br />帮助他们解决个性化需求
  22. </div>
  23. <div class="font2">
  24. 为客户提供了一整套线上线下SAAS化剧院票务选座方案,支持场馆类型多样化、选座设置、场次设置、核销设置、售票设置等,后台包含门票销售管理模块、剧院运营管理、领导决策分析模块
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </template>
  31. <script>
  32. export default {
  33. name: "page-scene",
  34. };
  35. </script>
  36. <style lang="scss" scoped>
  37. .page-scene-box {
  38. display: flex;
  39. width: 100vw;
  40. justify-content: center;
  41. .flex-box {
  42. width: 1200px;
  43. margin: 0 auto;
  44. display: flex;
  45. flex-flow: column;
  46. .scene-title {
  47. color: #333333;
  48. font-size: 26px;
  49. font-weight: bold;
  50. height: 192px;
  51. display: flex;
  52. width: 100%;
  53. justify-content: center;
  54. align-items: center;
  55. }
  56. .scene-content-box1 {
  57. width: 100%;
  58. display: flex;
  59. flex-flow: row nowrap;
  60. justify-content: space-between;
  61. height: 427px;
  62. align-items: center;
  63. .item-font {
  64. width: 585px;
  65. .font1 {
  66. color: #333333;
  67. font-weight: bold;
  68. line-height: 35px;
  69. font-size: 26px;
  70. margin-bottom: 10px;
  71. }
  72. .font2 {
  73. font-size: 16px;
  74. color: #999999;
  75. line-height: 32px;
  76. }
  77. }
  78. }
  79. }
  80. }
  81. </style>