doum
2 天以前 5d3b86a4d0032836c782e5e1319179eced5e5647
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<template>
    <view class="box">
        <view class="box_textarea">
            <textarea
            placeholder-style="color: #CCCCCC;font-weight: 500;font-size: 28rpx;"
            placeholder="行业对接、商业活动、线下论坛、营销推广、咖啡豆采购等。如有需求请联系我们。"></textarea>
            <view class="box_textarea_list">
                <view class="box_textarea_list_item">
                    <image src="@/static/icon/ic_upload@2x.png" mode="widthFix"></image>
                </view>
            </view>
        </view>
        <view class="box_item">
            <text>联系人</text>
            <input type="text" placeholder="填写" placeholder-style="text-align: right;color: #CCCCCC;font-weight: 500;font-size: 28rpx;">
        </view>
        <view class="box_item">
            <text>手机号</text>
            <input type="text" placeholder="填写" placeholder-style="text-align: right;color: #CCCCCC;font-weight: 500;font-size: 28rpx;">
        </view>
        <view class="box_zw"></view>
        <view class="box_footer">
            <view class="box_footer_btn">提交</view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            }
        }
    }
</script>
 
<style>
    page {
        background-color: #ffffff !important;
    }
</style>
 
<style lang="scss" scoped>
    .box {
        width: 100%;
        padding: 28rpx 32rpx;
        box-sizing: border-box;
        .box_textarea {
            padding-bottom: 64rpx;
            border-bottom: 2rpx solid #F4F5F4;
            textarea {
                width: 100%;
                height: 204rpx;
                font-size: 28rpx;
                font-family: PingFang SC-Medium, PingFang SC;
                font-weight: 500;
                color: #000000;
            }
            .box_textarea_list {
                margin-top: 30rpx;
                width: 100%;
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                .box_textarea_list_item {
                    width: 172rpx;
                    height: 172rpx;
                    margin-right: 20rpx;
                    &:last-child {
                        margin: 0 !important;
                    }
                    image {
                        width: 100%;
                        height: 100%;
                    }
                }
            }
        }
        .box_item {
            width: 100%;
            height: 96rpx;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2rpx solid #F4F5F4;
            text {
                font-size: 32rpx;
                font-family: PingFang SC-Medium, PingFang SC;
                font-weight: 500;
                color: #333333;
            }
            input {
                text-align: right;
                font-size: 28rpx;
                font-family: PingFang SC-Medium, PingFang SC;
                font-weight: 500;
                color: #000000;
            }
        }
        .box_zw {
            width: 100%;
            height: calc(112rpx + env(safe-area-inset-bottom));
        }
        .box_footer {
            width: 100%;
            position: fixed;
            bottom: 0;
            left: 0;
            box-sizing: border-box;
            background-color: #FFFFFF;
            padding: 20rpx 56rpx calc(20rpx + env(safe-area-inset-bottom)) 56rpx;
            .box_footer_btn {
                width: 100%;
                height: 72rpx;
                line-height: 72rpx;
                text-align: center;
                background: linear-gradient(270deg, #D20A0A 0%, #D95A5A 100%);
                border-radius: 36rpx;
                font-size: 32rpx;
                font-family: PingFang SC-Medium, PingFang SC;
                font-weight: 500;
                color: #FFFFFF;
            }
        }
    }
</style>