From eb0f04ebd7e721a42b20f5c5fd1fc98dc7a877a2 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 11:50:18 +0800 Subject: [PATCH 01/18] 223 --- .../fengdu/app/AppResidentIntegrating/components/List.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project/fengdu/app/AppResidentIntegrating/components/List.vue b/project/fengdu/app/AppResidentIntegrating/components/List.vue index b2832acf..0870934d 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/List.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/List.vue @@ -52,7 +52,7 @@ @onConfirm="onConfirm" @closed="form={},chooseUserList=[]"> - + @@ -106,6 +106,7 @@ dialog: false, chooseUserList: [], total: 0, + isEdit: false, colConfigs: [ { prop: 'realName', label: '姓名', align: 'left', width: '200px' }, { prop: 'phone', label: '手机号', align: 'center' }, @@ -173,9 +174,11 @@ }, changeIntegral(row,type) { + this.isEdit = false if(type==0) { this.dialog = true } else if(type ==1) { + this.isEdit = true this.chooseUserList = [{ openId: row.openId, name: row.realName From 657f31b6bcb59bc1c460219b75a51cd7a47cbe34 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 13:37:36 +0800 Subject: [PATCH 02/18] 215 --- project/fengdu/app/AppResidentIntegrating/components/List.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/project/fengdu/app/AppResidentIntegrating/components/List.vue b/project/fengdu/app/AppResidentIntegrating/components/List.vue index 0870934d..74c6ad76 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/List.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/List.vue @@ -20,7 +20,7 @@ class="search-input" size="small" v-throttle="() => {search.current = 1, getList()}" - placeholder="姓名/身份证/手机号/微信昵称" + placeholder="姓名/身份证/手机号" clearable @clear="search.current = 1, search.title = '', getList()" suffix-icon="iconfont iconSearch"> @@ -184,8 +184,6 @@ name: row.realName }] this.form = { - ...this.form, - ...row, ids: this.chooseUserList.map(e => e.openId) } From c39e347b2858e04fb135b2b4a382d0e8493322b3 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 15:56:57 +0800 Subject: [PATCH 03/18] 227 --- .../fengdu/app/AppDynamic/components/List.vue | 4 +-- .../AppCertificateManage/components/Add.vue | 34 ++++++++++++++----- 2 files changed, 28 insertions(+), 10 deletions(-) diff --git a/project/fengdu/app/AppDynamic/components/List.vue b/project/fengdu/app/AppDynamic/components/List.vue index 63dc3e9b..6d3656ef 100644 --- a/project/fengdu/app/AppDynamic/components/List.vue +++ b/project/fengdu/app/AppDynamic/components/List.vue @@ -62,8 +62,8 @@ { prop: 'title', label: '标题', align: 'left', width: '200px' }, { prop: 'createUserName', label: '姓名', align: 'center' }, { prop: 'areaName', label: '所属地区', align: 'center' }, - { prop: 'createUserName', label: '推送人', align: 'center' }, - { prop: 'createTime', label: '推送时间', align: 'center' } + { prop: 'examineUserName', label: '推送人', align: 'center' }, + { prop: 'examineTime', label: '推送时间', align: 'center' } ], tableData: [], moduleId: '' diff --git a/project/qujing/app/AppCertificateManage/components/Add.vue b/project/qujing/app/AppCertificateManage/components/Add.vue index 381487cd..47e73a63 100644 --- a/project/qujing/app/AppCertificateManage/components/Add.vue +++ b/project/qujing/app/AppCertificateManage/components/Add.vue @@ -8,14 +8,19 @@ @@ -42,7 +47,9 @@ info: {}, form: { certificateName: '', - imageUrl: [] + certificateIssueUnit: '', + certificateTitle: '', + certificateContent: '' }, id: '' } @@ -69,6 +76,12 @@ }) }, + append () { + if (this.form.certificateContent.indexOf('[#获得证书序号]') === -1) { + this.form.certificateContent = this.form.certificateContent + '[#获得证书序号]' + } + }, + confirm () { this.$refs.form.validate((valid) => { if (valid) { @@ -99,5 +112,10 @@ From 3a1e6a51cfe5924481517655167df971d6eb785b Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 16:00:06 +0800 Subject: [PATCH 04/18] bug --- .../app/AppDynamic/components/Detail.vue | 20 ++----------------- 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/project/fengdu/app/AppDynamic/components/Detail.vue b/project/fengdu/app/AppDynamic/components/Detail.vue index eb948f59..c5b54417 100644 --- a/project/fengdu/app/AppDynamic/components/Detail.vue +++ b/project/fengdu/app/AppDynamic/components/Detail.vue @@ -16,24 +16,8 @@ - - - - - - - - - - + + From 16178ecbacd1cf4db83ea610915d8c6ba7ab6ad5 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 16:02:47 +0800 Subject: [PATCH 05/18] 225 --- .../fengdu/app/AppResidentIntegrating/components/List.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/fengdu/app/AppResidentIntegrating/components/List.vue b/project/fengdu/app/AppResidentIntegrating/components/List.vue index 74c6ad76..0e69b10b 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/List.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/List.vue @@ -16,13 +16,13 @@ @@ -93,7 +93,7 @@ search: { current: 1, size: 10, - title: '', + idNumber: '', areaId: '' }, form: { From eab6649474fe6fe66f6e6a68bf91e062c9f17404 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 16:03:27 +0800 Subject: [PATCH 06/18] 224 --- project/fengdu/app/AppResidentIntegrating/components/List.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/fengdu/app/AppResidentIntegrating/components/List.vue b/project/fengdu/app/AppResidentIntegrating/components/List.vue index 0e69b10b..985d7c67 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/List.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/List.vue @@ -63,7 +63,7 @@ - From 25068e9f2d7d34ed621c6ed09e534696d4018737 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 16:21:08 +0800 Subject: [PATCH 07/18] 204 --- project/fengdu/app/AppIntegratingRules/components/List.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project/fengdu/app/AppIntegratingRules/components/List.vue b/project/fengdu/app/AppIntegratingRules/components/List.vue index 63428d25..63e6820e 100644 --- a/project/fengdu/app/AppIntegratingRules/components/List.vue +++ b/project/fengdu/app/AppIntegratingRules/components/List.vue @@ -45,7 +45,7 @@ - + @@ -325,8 +325,9 @@ this.getList(); }, handleTypeForm(v) { + console.log(v) if (this.dialog) { - if(v[0] == '1' || v[0]== '10') { + if(v[1] == '17') { this.form.scoringCycle = '0' this.form.numberLimit = '1' this.isOneAndTen = true From b8dcf71057b8606c07c310472bed773b2493e303 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 16:49:04 +0800 Subject: [PATCH 08/18] 231 --- project/fengdu/app/AppIntegratingRules/components/List.vue | 1 - project/fengdu/app/AppResidentIntegrating/components/List.vue | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/project/fengdu/app/AppIntegratingRules/components/List.vue b/project/fengdu/app/AppIntegratingRules/components/List.vue index 63e6820e..2ee949b6 100644 --- a/project/fengdu/app/AppIntegratingRules/components/List.vue +++ b/project/fengdu/app/AppIntegratingRules/components/List.vue @@ -325,7 +325,6 @@ this.getList(); }, handleTypeForm(v) { - console.log(v) if (this.dialog) { if(v[1] == '17') { this.form.scoringCycle = '0' diff --git a/project/fengdu/app/AppResidentIntegrating/components/List.vue b/project/fengdu/app/AppResidentIntegrating/components/List.vue index 985d7c67..b87cdc64 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/List.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/List.vue @@ -113,7 +113,7 @@ { prop: 'idNumber', label: '身份证号', align: 'center' }, { prop: 'areaName', label: '所属地区', align: 'center' }, { prop: 'girdName', label: '所属网格', align: 'center' }, - { prop: 'integral', label: '积分总分', align: 'center' }, + { prop: 'integral', label: '剩余积分', align: 'center' }, { prop: 'usedIntegral', label: '已用积分', align: 'center' } ], tableData: [] From dcf5c019b984dcc8a233a70e5a0bbbf341c4f331 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 16:50:21 +0800 Subject: [PATCH 09/18] 232 --- project/fengdu/app/AppDynamic/components/List.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/fengdu/app/AppDynamic/components/List.vue b/project/fengdu/app/AppDynamic/components/List.vue index 6d3656ef..4fb652b0 100644 --- a/project/fengdu/app/AppDynamic/components/List.vue +++ b/project/fengdu/app/AppDynamic/components/List.vue @@ -63,7 +63,7 @@ { prop: 'createUserName', label: '姓名', align: 'center' }, { prop: 'areaName', label: '所属地区', align: 'center' }, { prop: 'examineUserName', label: '推送人', align: 'center' }, - { prop: 'examineTime', label: '推送时间', align: 'center' } + { prop: 'createTime', label: '推送时间', align: 'center' } ], tableData: [], moduleId: '' From 61d0e5b401f4b0a434a5761d67e97a92ea3498fa Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 16:59:27 +0800 Subject: [PATCH 10/18] 205 --- project/fengdu/app/AppIntegratingRules/components/List.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/fengdu/app/AppIntegratingRules/components/List.vue b/project/fengdu/app/AppIntegratingRules/components/List.vue index 2ee949b6..10bf3110 100644 --- a/project/fengdu/app/AppIntegratingRules/components/List.vue +++ b/project/fengdu/app/AppIntegratingRules/components/List.vue @@ -94,8 +94,8 @@ var validcode = (rule, value, callback) => { if (value) { if (value != 0) { - if (!/^([+-]?([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/.test(value)) { - callback(new Error('请输入积分分值,可输入正数、负数、最多保留两位小数')) + if (!/^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/.test(value)) { + callback(new Error('请输入积分分值,只可输入正数、最多保留两位小数')) } else { callback(); } From d64fab95f492605885a110211235e2612c5433ba Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 17:06:25 +0800 Subject: [PATCH 11/18] 219 --- .../AppResidentIntegrating/components/Detail.vue | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/project/fengdu/app/AppResidentIntegrating/components/Detail.vue b/project/fengdu/app/AppResidentIntegrating/components/Detail.vue index 685b797b..1975a4cc 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/Detail.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/Detail.vue @@ -37,14 +37,7 @@ @getList="getList" :col-configs="colConfigs" :dict="dict"> - - - @@ -87,9 +80,9 @@ colConfigs() { return [ {prop: "doTime", label: '时间', align: "left", width: "200px"}, - {slot: "integralType", label: '类型', align: "center", width: "240px", dict: "integralType"}, + {prop: "integralType", label: '类型', align: "center", width: "240px", dict: "integralType"}, {slot: "changeIntegral"}, - {prop: "nowIntegral", label: '剩余积分', align: "center", width: "200px"}, + {prop: "nowIntegral", label: '剩余积分', align: "center" }, {slot: "eventDesc"}, ] } From d6dc17553dd5a68ec758cfef96f5eb6b48f9e925 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 17:09:04 +0800 Subject: [PATCH 12/18] bug --- .../app/AppResidentIntegrating/components/List.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/project/fengdu/app/AppResidentIntegrating/components/List.vue b/project/fengdu/app/AppResidentIntegrating/components/List.vue index b87cdc64..8b0ed226 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/List.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/List.vue @@ -8,7 +8,8 @@ 导出 @@ -85,7 +86,8 @@ props: { instance: Function, - dict: Object + dict: Object, + permissions: Function }, data() { @@ -129,7 +131,8 @@ params () { return { - ...this.search + ...this.search, + size: 1000 } }, From 930ce7bf70fe4a5c14f5c6f8ac87edda6fbb7214 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 17:11:12 +0800 Subject: [PATCH 13/18] bug --- .../fengdu/app/AppResidentIntegrating/components/Detail.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/fengdu/app/AppResidentIntegrating/components/Detail.vue b/project/fengdu/app/AppResidentIntegrating/components/Detail.vue index 1975a4cc..0afde2c5 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/Detail.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/Detail.vue @@ -40,7 +40,7 @@ {{ row.integralCalcType == 0 ? '-' : '+' }}{{ row.changeIntegral }} - + @@ -80,7 +80,7 @@ colConfigs() { return [ {prop: "doTime", label: '时间', align: "left", width: "200px"}, - {prop: "integralType", label: '类型', align: "center", width: "240px", dict: "integralType"}, + {prop: "integralType", label: '类型', align: "center", dict: "integralType"}, {slot: "changeIntegral"}, {prop: "nowIntegral", label: '剩余积分', align: "center" }, {slot: "eventDesc"}, From 416d4a3a45c9c3b19b92c3036f330d6a27bf3154 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 17:12:59 +0800 Subject: [PATCH 14/18] bug --- project/fengdu/app/AppDynamic/components/Detail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/fengdu/app/AppDynamic/components/Detail.vue b/project/fengdu/app/AppDynamic/components/Detail.vue index c5b54417..81f87a41 100644 --- a/project/fengdu/app/AppDynamic/components/Detail.vue +++ b/project/fengdu/app/AppDynamic/components/Detail.vue @@ -16,7 +16,7 @@ - + From e31ced26f9d2b8bfead9d968afadbd1a57ed5b68 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 7 Apr 2023 18:06:51 +0800 Subject: [PATCH 15/18] bug --- project/fengdu/app/AppResidentIntegrating/components/List.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/project/fengdu/app/AppResidentIntegrating/components/List.vue b/project/fengdu/app/AppResidentIntegrating/components/List.vue index 8b0ed226..e8dd3012 100644 --- a/project/fengdu/app/AppResidentIntegrating/components/List.vue +++ b/project/fengdu/app/AppResidentIntegrating/components/List.vue @@ -149,7 +149,9 @@ created() { this.search.areaId = this.user.info.areaId - this.getList() + this.dict.load('integralCalcType').then(() => { + this.getList() + }) }, methods: { From f361599dc56ff22571bac44d202a23bccc96ddab Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Mon, 10 Apr 2023 11:05:32 +0800 Subject: [PATCH 16/18] =?UTF-8?q?=E6=9B=B2=E9=9D=96=E8=AF=81=E4=B9=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppCertificateManage/components/Add.vue | 143 +++++++++++++++--- 1 file changed, 123 insertions(+), 20 deletions(-) diff --git a/project/qujing/app/AppCertificateManage/components/Add.vue b/project/qujing/app/AppCertificateManage/components/Add.vue index 47e73a63..c6ef4a40 100644 --- a/project/qujing/app/AppCertificateManage/components/Add.vue +++ b/project/qujing/app/AppCertificateManage/components/Add.vue @@ -6,23 +6,42 @@ @@ -47,9 +66,9 @@ info: {}, form: { certificateName: '', - certificateIssueUnit: '', - certificateTitle: '', - certificateContent: '' + certificateIssueUnit: '曲靖市政法委', + certificateTitle: '知法明理人证书', + certificateContent: '恭喜您成为曲靖市第 [#获得证书序号],位知法明理人。特颁此证,以资鼓励!' }, id: '' } @@ -87,7 +106,7 @@ if (valid) { this.instance.post(`/app/appcertificateinfo/addOrUpdate`, { ...this.form, - imageUrl: this.form.imageUrl[0].url + id: this.params.id || '' }).then(res => { if (res.code == 0) { this.$message.success('提交成功') @@ -117,5 +136,89 @@ flex-direction: column; width: 50%; } + + .wrapper { + position: relative; + height: 500px; + + .view-img { + position: absolute; + right: 0; + top: 0px; + z-index: 11; + width: 884px; + height: 1248px; + padding-top: 190px; + background: url(https://cdn.cunwuyun.cn/fengdu/zhengshu-bg.png); + background-size: 100% 100%; + transform: scale(0.4); + transform-origin: top right; + + .view-img__content { + width: 724px; + margin: 0 auto; + font-weight: 500; + font-size: 24px; + color: #222222; + letter-spacing: 0; + text-align: justify; + line-height: 40px; + + p { + margin-top: 40px; + } + } + + .bottom { + position: absolute; + bottom: 80px; + right: 78px; + line-height: 40px; + font-size: 24px; + text-align: right; + color: #3D5C8F; + } + + h1 { + margin-bottom: 70px; + font-weight: 900; + font-size: 72px; + color: #3D5C8F; + letter-spacing: 16px; + text-align: center; + } + + h2 { + position: relative; + margin-bottom: 46px; + font-weight: 700; + font-size: 36px; + color: #3D5C8F; + text-align: center; + + &:after { + position: absolute; + bottom: -10px; + left: 50%; + transform: translateX(-50%); + width: 120px; + height: 2px; + background: #999999; + z-index: 11; + content: ' '; + } + } + + & > img { + position: absolute; + bottom: 340px; + left: 50%; + z-index: 1; + width: 140px; + height: 140px; + transform: translateX(-50%); + } + } + } } From b106b798eb5a27a9e13227311aeff876ca49897c Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Mon, 10 Apr 2023 11:25:16 +0800 Subject: [PATCH 17/18] =?UTF-8?q?=E8=AF=81=E4=B9=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppCertificateManage/components/Add.vue | 61 +++++++++++++++---- 1 file changed, 50 insertions(+), 11 deletions(-) diff --git a/project/qujing/app/AppCertificateManage/components/Add.vue b/project/qujing/app/AppCertificateManage/components/Add.vue index c6ef4a40..7c9c446d 100644 --- a/project/qujing/app/AppCertificateManage/components/Add.vue +++ b/project/qujing/app/AppCertificateManage/components/Add.vue @@ -17,7 +17,7 @@
插入获得证书序号 - +
@@ -29,15 +29,12 @@

全巧丽

- 祝贺您于2021年10月,参加了 < 知法明理人 > 考核认证,经考核成绩合格,成为曲靖市第 - - 位知法明理人。 +
-

特发此证,以资鼓励!

{{ form.certificateIssueUnit }}

-
2023年04月07日
+
{{ date }}
@@ -68,13 +65,27 @@ certificateName: '', certificateIssueUnit: '曲靖市政法委', certificateTitle: '知法明理人证书', - certificateContent: '恭喜您成为曲靖市第 [#获得证书序号],位知法明理人。特颁此证,以资鼓励!' + certificateContent: `恭喜您成为曲靖市第 「#获得证书序号」位知法明理人 + + 特颁此证,以资鼓励!` }, - id: '' + id: '', + date: '' + } + }, + + computed: { + certificateContent () { + if (this.form.certificateContent.indexOf('「#获得证书序号」') > -1) { + return this.form.certificateContent.replace('「#获得证书序号」', '') + } + + return this.form.certificateContent } }, created () { + this.date = this.$moment(new Date()).format(`YYYY年MM月DD日`) if (this.params && this.params.id) { this.id = this.params.id this.getInfo(this.params.id) @@ -96,8 +107,8 @@ }, append () { - if (this.form.certificateContent.indexOf('[#获得证书序号]') === -1) { - this.form.certificateContent = this.form.certificateContent + '[#获得证书序号]' + if (this.form.certificateContent.indexOf('「#获得证书序号」') === -1) { + this.form.certificateContent = this.form.certificateContent + '「#获得证书序号」' } }, @@ -160,13 +171,41 @@ font-weight: 500; font-size: 24px; color: #222222; - letter-spacing: 0; + letter-spacing: 3px; text-align: justify; line-height: 40px; p { margin-top: 40px; } + + + span { + display: block; + white-space: pre-line; + } + + :deep( i ) { + display: inline-block; + position: relative; + width: 140px; + font-weight: 700; + font-size: 36px; + color: #3D5C8F; + text-align: center; + + &:after { + position: absolute; + bottom: -10px; + left: 50%; + transform: translateX(-50%); + width: 120px; + height: 2px; + background: #999999; + z-index: 11; + content: ' '; + } + } } .bottom { From 29b9e8fdd0da5bb3e96c47ffb57a826a595445ef Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Mon, 10 Apr 2023 14:19:26 +0800 Subject: [PATCH 18/18] =?UTF-8?q?=E8=AF=81=E4=B9=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/qujing/app/AppCertificateManage/components/Add.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/qujing/app/AppCertificateManage/components/Add.vue b/project/qujing/app/AppCertificateManage/components/Add.vue index 7c9c446d..b6350eb4 100644 --- a/project/qujing/app/AppCertificateManage/components/Add.vue +++ b/project/qujing/app/AppCertificateManage/components/Add.vue @@ -219,7 +219,7 @@ } h1 { - margin-bottom: 70px; + margin: 0 20px 70px; font-weight: 900; font-size: 72px; color: #3D5C8F;