signInItem.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view class="content-detail">
  3. <view class="title"> 【上海】机械行业全球化视角分析—面朝海外,春暖花开</view>
  4. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/signed_icon.png"> </image>
  5. <view class="button new-button"> 按钮/按钮/按钮 </view>
  6. <text class=""> 王冰</text>
  7. <text class=""> 北京紫薇私募基金管理有限公司</text>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. name: "",
  13. components: {},
  14. props: {},
  15. data() {
  16. return {};
  17. },
  18. computed: {},
  19. watch: {},
  20. created() {},
  21. mounted() {},
  22. methods: {},
  23. };
  24. </script>
  25. <style scoped lang="scss">
  26. .content-detail {
  27. width: 100%;
  28. padding: 32rpx;
  29. font-size: 42rpx;
  30. color: #ffffff;
  31. line-height: 60rpx;
  32. .title {
  33. font-weight: 500;
  34. text-align: center;
  35. margin-bottom: 38rpx;
  36. }
  37. image {
  38. display: block;
  39. margin: 0 auto;
  40. width: 356rpx;
  41. height: 356rpx;
  42. text-align: center;
  43. }
  44. .button {
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. width: 302rpx;
  49. height: 70rpx;
  50. background: #cfc09f;
  51. border-radius: 4px;
  52. color: #333;
  53. font-size: 32rpx;
  54. font-weight: 500;
  55. margin: 20rpx auto 50rpx;
  56. }
  57. .new-button {
  58. background-color: transparent !important;
  59. color: #cfc09f;
  60. border: 2rpx solid #cfc09f;
  61. }
  62. text {
  63. text-align: center;
  64. }
  65. text:last-child {
  66. font-size: 34rpx;
  67. margin-top: 20rpx;
  68. line-height: 42rpx;
  69. }
  70. }
  71. </style>