12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <view class="content-detail">
- <view class="title"> 【上海】机械行业全球化视角分析—面朝海外,春暖花开</view>
- <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/signed_icon.png"> </image>
- <view class="button new-button"> 按钮/按钮/按钮 </view>
- <text class=""> 王冰</text>
- <text class=""> 北京紫薇私募基金管理有限公司</text>
- </view>
- </template>
- <script>
- export default {
- name: "",
- components: {},
- props: {},
- data() {
- return {};
- },
- computed: {},
- watch: {},
- created() {},
- mounted() {},
- methods: {},
- };
- </script>
- <style scoped lang="scss">
- .content-detail {
- width: 100%;
- padding: 32rpx;
- font-size: 42rpx;
- color: #ffffff;
- line-height: 60rpx;
- .title {
- font-weight: 500;
- text-align: center;
- margin-bottom: 38rpx;
- }
- image {
- display: block;
- margin: 0 auto;
- width: 356rpx;
- height: 356rpx;
- text-align: center;
- }
- .button {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 302rpx;
- height: 70rpx;
- background: #cfc09f;
- border-radius: 4px;
- color: #333;
- font-size: 32rpx;
- font-weight: 500;
- margin: 20rpx auto 50rpx;
- }
- .new-button {
- background-color: transparent !important;
- color: #cfc09f;
- border: 2rpx solid #cfc09f;
- }
- text {
- text-align: center;
- }
- text:last-child {
- font-size: 34rpx;
- margin-top: 20rpx;
- line-height: 42rpx;
- }
- }
- </style>
|