Browse Source

入驻端界面修改

master
xh-pan1 3 years ago
parent
commit
620ff26e8d
  1. 2
      index.html
  2. 4
      src/api/index.js
  3. 2
      src/assets/font_icon/iconfont.json
  4. BIN
      src/assets/images/background.png
  5. BIN
      src/assets/images/background.webp
  6. BIN
      src/assets/images/logo.webp
  7. BIN
      src/assets/images/mb-background.png
  8. BIN
      src/assets/images/personal-bc.webp
  9. BIN
      src/assets/images/thee.ico
  10. BIN
      src/assets/images/title.webp
  11. 10
      src/components/base/v-header.vue
  12. 23
      src/components/centLogo.vue
  13. 17
      src/views/SettleIn/enterprisesApply.vue
  14. 17
      src/views/SettleIn/individualBusiness.vue
  15. 17
      src/views/SettleIn/organization.vue
  16. 18
      src/views/SettleIn/personal.vue
  17. 104
      src/views/home/index.vue
  18. 12
      src/views/moblie/mEnterprise.vue
  19. 10
      src/views/moblie/mOtherOrg.vue
  20. 10
      src/views/moblie/mPersonal.vue
  21. 2
      src/views/moblie/mStatus.vue
  22. 10
      src/views/moblie/mUinitBusiness.vue
  23. BIN
      static/cereshop.ico
  24. 26
      static/imgs/mb/mb-mEnterprise.svg
  25. BIN
      static/imgs/mb/mb-mEnterprise.webp
  26. 49
      static/imgs/mb/mb-mOtherOrg.svg
  27. 43
      static/imgs/mb/mb-mUinitBusiness.svg
  28. 41
      static/imgs/mb/mb-personal.svg
  29. 1
      static/imgs/pc/pc-IndividualBusiness.svg
  30. BIN
      static/imgs/pc/pc-IndividualBusiness.webp
  31. 1
      static/imgs/pc/pc-enterprisesApply.svg
  32. BIN
      static/imgs/pc/pc-enterprisesApply.webp
  33. 1
      static/imgs/pc/pc-organization.svg
  34. BIN
      static/imgs/pc/pc-organization.webp
  35. 1
      static/imgs/pc/pc-personal.svg
  36. BIN
      static/imgs/pc/pc-personal.webp
  37. BIN
      static/imgs/pc/personal-logo.png
  38. 1
      static/imgs/pc/personal-logo.svg
  39. BIN
      static/thee.ico
  40. 15827
      theme/index.css

2
index.html

@ -6,7 +6,7 @@
<meta HTTP-EQUIV ="pragma" CONTENT="no-cache">
<meta http-equiv="Cache-Control"CONTENT="no-cache, must-revalidate">
<meta http-equiv="expires"CONTENT="0">
<link rel="icon" type="image/x-icon" href="static/cereshop.ico">
<link rel="icon" type="image/x-icon" href="static/thee.ico">
<title>商家入驻</title>
</head>
<body>

4
src/api/index.js

@ -2,8 +2,8 @@
import home from './home'
// 获取当前环境变量 true => 生产环境 false => 开发环境
const BASEURL = (process.env.NODE_ENV === 'production') ? 'http://122.9.152.120/ceres-app-api' : '/api'
// const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://wechat.hnthee.com/ceres-app-api' : '/api'
// const BASEURL = (process.env.NODE_ENV === 'production') ? 'http://122.9.152.120/ceres-app-api' : '/api'
const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://wechat.hnthee.com/ceres-app-api' : '/api'
export const api = {
// 登录模块

2
src/assets/font_icon/iconfont.json

@ -1,6 +1,6 @@
{
"id": "2224733",
"name": "cereshop",
"name": "Thee",
"font_family": "iconfont",
"css_prefix_text": "icon-",
"description": "",

BIN
src/assets/images/background.png

Before

Width: 1920  |  Height: 1080  |  Size: 186 KiB

BIN
src/assets/images/background.webp

BIN
src/assets/images/logo.webp

BIN
src/assets/images/mb-background.png

Before

Width: 750  |  Height: 295  |  Size: 66 KiB

After

Width: 750  |  Height: 421  |  Size: 58 KiB

BIN
src/assets/images/personal-bc.webp

BIN
src/assets/images/thee.ico

BIN
src/assets/images/title.webp

10
src/components/base/v-header.vue

@ -2,12 +2,12 @@
<div class="header">
<div class="warp headerBox">
<div class="headerLeft" @click="goToHome">
返回CERESHOP商家入驻首页
返回Thee商家入驻首页
</div>
<div class="headerRight">
<!-- <div class="registeredLogin" v-if="userName !== 'undefined' && userName !== ' '">{{ userName }}</div> -->
<!-- <div v-else class="registeredLogin" @click="goToLogin">登录/免费注册</div> -->
<div class="contactUs">400-990-2300</div>
<!-- <div class="contactUs">400-990-2300</div> -->
</div>
</div>
</div>
@ -31,7 +31,7 @@ export default {
},
goToLogin () {
this.setUserInfo('')
window.location.href = `https://ceres.zkthink.com/pc/#/login?type=2`
window.location.href = `https://wechat.hnthee.com/ceres-pc/#/login?type=2`
}
}
}
@ -39,13 +39,13 @@ export default {
<style lang="scss" scoped>
.header {
background: #F1F2F7;
background: #0C1E3C;
.headerBox {
display: flex;
height: 42px;
justify-content: space-between;
align-items: center;
color: #333333;
color: #ffffff;
font-size: 14px;
.headerLeft {
cursor: pointer;

23
src/components/centLogo.vue

@ -1,8 +1,7 @@
<template>
<div class="statusTop">
<div class="
">
<img src="static\imgs\pc\personal-logo.svg" alt="">
<div class="logobox">
<img src="static\imgs\pc\personal-logo.png" alt="">
</div>
<p>请认真填写申请信息以便我们为您提供更好的服务</p>
</div>
@ -16,9 +15,19 @@ export default {
<style lang="scss" scoped>
.statusTop {
// width: 350px;
width: 500px;
margin: 50px auto 40px auto;
width: auto;
display: flex;
margin: 50px auto 40px auto;
align-content: center;
justify-content: center;
flex-direction: column;
.logobox{
width: auto;
height: auto;
display: flex;
align-content: center;
justify-content: center;
}
.topLogo {
text-align: center;
width: 100%;
@ -30,7 +39,7 @@ export default {
}
}
p {
color: #FFEBC4;
color: #ffffff;
font-size: 14px;
margin-top: 20px;
text-align: center;

17
src/views/SettleIn/enterprisesApply.vue

@ -79,9 +79,10 @@
format="yyyy 年 MM 月 dd 日"
value-format="yyyy-MM-dd">
</el-date-picker>
<div class="describe"><p>请填写营业执照上的营业期限 注意参照示例中的格式 结束时间需大于开始时间 有效期必须大于60天</p></div>
</el-form-item>
</div>
<div class="describe"><p>请填写营业执照上的营业期限 注意参照示例中的格式 结束时间需大于开始时间 有效期必须大于60天</p></div>
<el-form-item label="营业执照" prop="subjectLicense">
<div class="idImgesBox">
<div class="idImgaeLeft">
@ -430,8 +431,8 @@ export default {
.serialNumber {
width: 24px;
height: 24px;
color: #C5AA7B;
border: 1px solid #C5AA7B;
color: #183ECD;
border: 1px solid #183ECD;
border-radius: 4px;
margin-right: 10px;
text-align: center;
@ -498,7 +499,7 @@ export default {
right: 0;
background: #F7F7F7;
.bgBox {
height: 149px;
height: 150px;
align-items: center;
display: flex;
justify-content: center;
@ -573,8 +574,8 @@ export default {
width: 750px;
height: 50px;
margin: 40px auto 0 auto;
color: #FFEBC4;
background: #333333;
color: #FFFFFF;
background: #183ECD;
box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
}
}
@ -590,9 +591,9 @@ export default {
border-radius: 0;
border: 1px solid transparent;
color: #333;
background: #F9F9F9;
background: #F2F6FA;
&:focus{
border-color: #C5AA7B;
border-color: #183ECD;
}
}
}

17
src/views/SettleIn/individualBusiness.vue

@ -79,9 +79,10 @@
format="yyyy 年 MM 月 dd 日"
value-format="yyyy-MM-dd">
</el-date-picker>
<div class="describe"><p>请填写营业执照上的营业期限 注意参照示例中的格式 结束时间需大于开始时间 有效期必须大于60天</p></div>
</el-form-item>
</div>
<div class="describe"><p>请填写营业执照上的营业期限 注意参照示例中的格式 结束时间需大于开始时间 有效期必须大于60天</p></div>
<el-form-item label="营业执照" prop="subjectLicense">
<div class="idImgesBox">
<div class="idImgaeLeft">
@ -433,8 +434,8 @@ export default {
.serialNumber {
width: 24px;
height: 24px;
color: #C5AA7B;
border: 1px solid #C5AA7B;
color: #183ECD;
border: 1px solid #183ECD;
border-radius: 4px;
margin-right: 10px;
text-align: center;
@ -507,7 +508,7 @@ export default {
right: 0;
background: #F7F7F7;
.bgBox {
height: 149px;
height: 150px;
align-items: center;
display: flex;
justify-content: center;
@ -582,8 +583,8 @@ export default {
width: 750px;
height: 50px;
margin: 40px auto 0 auto;
color: #FFEBC4;
background: #333333;
color: #FFFFFF;
background: #183ECD;
box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
}
}
@ -599,9 +600,9 @@ export default {
border-radius: 0;
border: 1px solid transparent;
color: #333;
background: #F9F9F9;
background: #F2F6FA;
&:focus{
border-color: #C5AA7B;
border-color: #183ECD;
}
}
}

17
src/views/SettleIn/organization.vue

@ -77,9 +77,10 @@
format="yyyy 年 MM 月 dd 日"
value-format="yyyy-MM-dd">
</el-date-picker>
<div class="describe"><p>请填写营业执照上的营业期限 注意参照示例中的格式 结束时间需大于开始时间 有效期必须大于60天</p></div>
</el-form-item>
</div>
<div class="describe"><p>请填写营业执照上的营业期限 注意参照示例中的格式 结束时间需大于开始时间 有效期必须大于60天</p></div>
<el-form-item class="prove" label="机构证明材料" prop="otherLicense">
<div class="idImgesBox">
<div class="idImgaeLeft">
@ -426,8 +427,8 @@ export default {
.serialNumber {
width: 24px;
height: 24px;
color: #C5AA7B;
border: 1px solid #C5AA7B;
color: #183ECD;
border: 1px solid #183ECD;
border-radius: 4px;
margin-right: 10px;
text-align: center;
@ -495,7 +496,7 @@ export default {
right: 0;
background: #F7F7F7;
.bgBox {
height: 149px;
height: 150px;
align-items: center;
display: flex;
justify-content: center;
@ -570,8 +571,8 @@ export default {
width: 750px;
height: 50px;
margin: 40px auto 0 auto;
color: #FFEBC4;
background: #333333;
color: #FFFFFF;
background: #183ECD;
box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
}
}
@ -587,9 +588,9 @@ export default {
border-radius: 0;
border: 1px solid transparent;
color: #333;
background: #F9F9F9;
background: #F2F6FA;
&:focus{
border-color: #C5AA7B;
border-color: #183ECD;
}
}
}

18
src/views/SettleIn/personal.vue

@ -361,12 +361,12 @@ export default {
align-items: center;
width: 100%;
margin: 50px 0;
border-bottom: 1px solid #E6E6E6;
border-bottom: 1px solid #BBC4D0;
.serialNumber {
width: 24px;
height: 24px;
color: #C5AA7B;
border: 1px solid #C5AA7B;
color: #183ECD;
border: 1px solid #183ECD;
border-radius: 4px;
margin-right: 10px;
text-align: center;
@ -376,7 +376,7 @@ export default {
.formName {
font-size: 20px;
font-weight: 400;
color: #333333;
color: #404F64;
width: 200px;
}
}
@ -434,7 +434,7 @@ export default {
right: 0;
background: #F7F7F7;
.bgBox {
height: 149px;
height: 150px;
align-items: center;
display: flex;
justify-content: center;
@ -509,8 +509,8 @@ export default {
width: 750px;
height: 50px;
margin: 40px auto 0 auto;
color: #FFEBC4;
background: #333333;
color: #FFFFFF;
background: #183ECD;
box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
}
}
@ -526,9 +526,9 @@ export default {
border-radius: 0;
border: 1px solid transparent;
color: #333;
background: #F9F9F9;
background: #F2F6FA;
&:focus{
border-color: #C5AA7B;
border-color: #183ECD;
}
}
}

104
src/views/home/index.vue

@ -12,7 +12,7 @@
欢迎您{{userName == 'undefined' ? '' : userName}}
</div>
<div v-else class="rightBox">
我已有CERESHOP<span>快捷登录</span>
我已有Thee<span>快捷登录</span>
</div> -->
</div>
</div>
@ -20,7 +20,7 @@
<div class="entrance">
<div class="entranceInfo">
<img src="../../assets/images/title.webp" alt="">
<p>用心开好店打造大事业CERESHOP共同展望美好未来</p>
<p>用心开好店打造大事业Thee共同展望美好未来</p>
</div>
<!-- 申请跳转按钮 -->
<div class="entranceBtn">
@ -39,11 +39,13 @@
</div>
<!-- 手机端 -->
<div class="wap">
<div class="wapTop">
商家入驻
</div>
<div class="wapBan">
</div>
<div class="wapTop">
商家入驻
</div>
<div class="wapCent">
<div class="wapCentBox">
<div class="wapItemBox"
@ -72,25 +74,25 @@ export default {
pcBtnList: [
{
value: 0,
img: 'static/imgs/pc/pc-personal.svg',
img: 'static/imgs/pc/pc-personal.webp',
label: '个人商户',
type: 'personal'
},
{
value: 1,
img: 'static/imgs/pc/pc-IndividualBusiness.svg',
img: 'static/imgs/pc/pc-IndividualBusiness.webp',
label: '个体工商户',
type: 'IndividualBusiness'
},
{
value: 2,
img: 'static/imgs/pc/pc-enterprisesApply.svg',
img: 'static/imgs/pc/pc-enterprisesApply.webp',
label: '企业商户',
type: 'enterprisesApply'
},
{
value: 3,
img: 'static/imgs/pc/pc-organization.svg',
img: 'static/imgs/pc/pc-organization.webp',
label: '其他组织',
type: 'organization'
}
@ -111,7 +113,7 @@ export default {
},
{
value: 2,
img: 'static/imgs/mb/mb-mEnterprise.svg',
img: 'static/imgs/mb/mb-mEnterprise.webp',
label: '企业商户',
type: 'mEnterprise'
},
@ -189,7 +191,7 @@ export default {
background-repeat: no-repeat;
background-size: 100% 100%;
.loginTop {
background-color: #333333;
background-color: #0C1E3C;
position: relative;
z-index: 999;
.loginLogo {
@ -207,8 +209,8 @@ export default {
color: $fontColor;
}
.loginImgBox {
width: 51px;
height: 40px;
width: 137px;
height: 27px;
align-items: center;
display: flex;
margin-right: 20px;
@ -225,7 +227,7 @@ export default {
.rightBox {
font-size: 16px;
span {
color: #C5AA7B;
color: #183ECD;
padding-left: 10px;
cursor: pointer;
}
@ -233,7 +235,7 @@ export default {
}
}
.loginCent {
margin-top: 100px;
margin-top: 60px;
font-family: Microsoft YaHei;
display: flex;
justify-content: center;
@ -242,7 +244,7 @@ export default {
.entranceInfo{
img{
display: block;
width: 480px;
width: 400px;
margin: auto;
}
p{
@ -269,7 +271,7 @@ export default {
display: block;
margin-top: 18px;
text-align: center;
color: #FFEBC4;
color: #FFFFFF;
}
}
}
@ -287,10 +289,15 @@ export default {
@media screen and (max-width: 750px) {
.warp {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-content: center;
}
.login {
background: #F8F8F8;
background: #FFFFFF;
position: relative;
min-height: 0px;
.pc {
display: none;
@ -299,42 +306,59 @@ export default {
.wap {
display: block;
.wapTop {
height: 60px;
line-height: 60px;
color: #FFF;
background-color: #333333;
font-size: 18px;
text-align: center;
}
.wapBan {
// .wapBan {
// width: 100%;
// height: 0;
// // 100
// padding-bottom: calc((height / width) * 100 + '%');
// background-image: url("../../assets/images/mb-background.png") no-repeat top center;
// background-position: center center;
// background-size: 100%;
// background-repeat: no-repeat;
// }
.wapBan{
width: 100%;
background: url("../../assets/images/mb-background.png") no-repeat top center;
background-size: contain;
height: 300px;
background: url("../../assets/images/mb-background.png") no-repeat;
background-size: 100% auto;
padding-top: 56%;
height: 0px;
}
.wapTop {
position: absolute;
top: 2%;
left: auto;
right: auto;
width: 100%;
height: 60px;
line-height: 60px;
color: #FFF;
font-size: 18px;
text-align: center;
}
.wapCent {
position: absolute;
top: 25%;
width: 100%;
.wapCentBox {
width: 94%;
margin: -50px auto 0 auto;
padding: 5%;
width: 100%;
margin: 0 auto 0 auto;
padding: 0 5% 5% 5%;
background: #FFFFFF;
// box-shadow: 0px 1px 32px 2px #F4F4F4;
// border-radius: 10px;
.wapItemBox {
display: flex;
height: 90px;
height: 75px;
align-items: center;
justify-content: space-between;
width: 100%;
border-bottom: 1px solid #F6F4F7;
>>> .el-button--primary {
width: 80px;
color: #FFEBC4;
background-color: #333333;
color: #FFFFFF;
background-color: #183ECD;
border-radius: 0;
}
}
@ -345,8 +369,8 @@ export default {
display: flex;
align-items: center;
img {
width: 35px;
height: 35px;
width: 28px;
height: 28px;
margin-right: 12px;
}
}

12
src/views/moblie/mEnterprise.vue

@ -609,7 +609,7 @@ export default {
}
p {
font-size: 12px;
color: #676870;
color: #FFFFFF;
}
margin:50px 0 28px 0;
}
@ -633,15 +633,15 @@ export default {
overflow: hidden;
}
>>> .is-finish {
border-color: #C5AA7B;
border-color: #183ECD;
color: #FFFFFF;
font-weight: 500 !important;
.el-step__icon {
background: #FFFFFF;
height: 50px;
width: 50px;
color: #C5AA7B;
border: 1px solid #C5AA7B;
color: #183ECD;
border: 1px solid #183ECD;
border-radius: 0;
}
}
@ -751,8 +751,8 @@ export default {
margin: 50px auto 0 auto;
width: 315px;
height: 42px;
background: #333333;
color: $mainColor;
background: #183ECD;
color: #FFFFFF;
}
.businessLicense {
width: 100%;

10
src/views/moblie/mOtherOrg.vue

@ -632,15 +632,15 @@ export default {
overflow: hidden;
}
>>> .is-finish {
border-color: #C5AA7B;
border-color: #183ECD;
color: #FFFFFF;
font-weight: 500 !important;
.el-step__icon {
background: #FFFFFF;
height: 50px;
width: 50px;
color: #C5AA7B;
border: 1px solid #C5AA7B;
color: #183ECD;
border: 1px solid #183ECD;
border-radius: 0;
}
}
@ -750,8 +750,8 @@ export default {
margin: 50px auto 0 auto;
width: 315px;
height: 42px;
background: #333333;
color: $mainColor;
background: #183ECD;
color: #FFFFFF;
}
.businessLicense {
width: 100%;

10
src/views/moblie/mPersonal.vue

@ -499,15 +499,15 @@ export default {
overflow: hidden;
}
>>> .is-finish {
border-color: #C5AA7B;
border-color: #183ECD;
color: #FFFFFF;
font-weight: 500 !important;
.el-step__icon {
background: #FFFFFF;
height: 50px;
width: 50px;
color: #C5AA7B;
border: 1px solid #C5AA7B;
color: #183ECD;
border: 1px solid #183ECD;
border-radius: 0;
}
}
@ -616,8 +616,8 @@ export default {
margin: 50px auto 0 auto;
width: 315px;
height: 42px;
background: #333333;
color: $mainColor;
background: #183ECD;
color: #FFFFFF;
}
.businessLicense {
width: 100%;

2
src/views/moblie/mStatus.vue

@ -53,7 +53,7 @@ export default {
width: 80px;
height: 35px;
line-height: 35px;
background: #FFEBC4;
background: #183ECD;
color: #FFFFFF;
font-size: 14px;
text-align: center;

10
src/views/moblie/mUinitBusiness.vue

@ -632,15 +632,15 @@ export default {
overflow: hidden;
}
>>> .is-finish {
border-color: #C5AA7B;
border-color: #183ECD;
color: #FFFFFF;
font-weight: 500 !important;
.el-step__icon {
background: #FFFFFF;
height: 50px;
width: 50px;
color: #C5AA7B;
border: 1px solid #C5AA7B;
color: #183ECD;
border: 1px solid #183ECD;
border-radius: 0;
}
}
@ -750,8 +750,8 @@ export default {
margin: 50px auto 0 auto;
width: 315px;
height: 42px;
background: #333333;
color: $mainColor;
background: #183ECD;
color: #FFFFFF;
}
.businessLicense {
width: 100%;

BIN
static/cereshop.ico

26
static/imgs/mb/mb-mEnterprise.svg

@ -1,26 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45">
<defs>
<style>
.cls-1 {
fill: #fff;
opacity: 0;
}
.cls-2 {
fill: none;
stroke: #333;
stroke-width: 1.5px;
}
</style>
</defs>
<g id="组_1090" data-name="组 1090" transform="translate(-26 -344)">
<rect id="矩形_858" data-name="矩形 858" class="cls-1" width="45" height="45" transform="translate(26 344)"/>
<g id="组_1089" data-name="组 1089" transform="translate(0 -0.896)">
<path id="路径_474" data-name="路径 474" class="cls-2" d="M3649.947,12711.2l-12.359,4.647v20.923h12.359Z" transform="translate(-3599.845 -12359.092)"/>
<path id="路径_475" data-name="路径 475" class="cls-2" d="M3647.811,12716l9.972,4.651v16.213h-9.972Z" transform="translate(-3597.71 -12359.183)"/>
<path id="路径_476" data-name="路径 476" class="cls-2" d="M3641.737,12792.688h6.109" transform="translate(-3601 -12427.939)"/>
<path id="路径_477" data-name="路径 477" class="cls-2" d="M3641.737,12792.688h6.109" transform="translate(-3601 -12422.939)"/>
<path id="路径_478" data-name="路径 478" class="cls-2" d="M3641.737,12792.688h6.109" transform="translate(-3589.704 -12422.939)"/>
</g>
</g>
</svg>

BIN
static/imgs/mb/mb-mEnterprise.webp

49
static/imgs/mb/mb-mOtherOrg.svg

@ -1,44 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45">
<defs>
<style>
.cls-1 {
fill: #fff;
opacity: 0;
}
.cls-2, .cls-4 {
fill: none;
}
.cls-2 {
stroke: #333;
stroke-width: 1.5px;
}
.cls-3 {
stroke: none;
}
</style>
</defs>
<g id="组_1092" data-name="组 1092" transform="translate(-26 -414)">
<rect id="矩形_858" data-name="矩形 858" class="cls-1" width="45" height="45" transform="translate(26 414)"/>
<g id="组_1091" data-name="组 1091">
<g id="矩形_764" data-name="矩形 764" class="cls-2" transform="translate(35.671 422.672)">
<rect class="cls-3" width="11.68" height="11.68"/>
<rect class="cls-4" x="0.75" y="0.75" width="10.18" height="10.18"/>
</g>
<g id="矩形_765" data-name="矩形 765" class="cls-2" transform="translate(35.671 436.688)">
<rect class="cls-3" width="11.68" height="11.68"/>
<rect class="cls-4" x="0.75" y="0.75" width="10.18" height="10.18"/>
</g>
<g id="矩形_766" data-name="矩形 766" class="cls-2" transform="translate(49.687 436.688)">
<rect class="cls-3" width="11.68" height="11.68"/>
<rect class="cls-4" x="0.75" y="0.75" width="10.18" height="10.18"/>
</g>
<g id="矩形_767" data-name="矩形 767" class="cls-2" transform="translate(49.163 428.512) rotate(-45)">
<rect class="cls-3" width="9" height="9"/>
<rect class="cls-4" x="0.75" y="0.75" width="7.5" height="7.5"/>
</g>
</g>
</g>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="48.5px" height="48.5px">
<path fill-rule="evenodd" stroke="rgb(51, 51, 51)" stroke-width="3px" stroke-linecap="butt" stroke-linejoin="miter" fill="none"
d="M44.322,16.195 L36.412,24.107 C34.863,25.656 32.351,25.656 30.802,24.107 L22.891,16.195 C21.342,14.645 21.342,12.132 22.891,10.583 L30.802,2.671 C32.351,1.121 34.863,1.121 36.412,2.671 L44.322,10.583 C45.872,12.132 45.872,14.645 44.322,16.195 ZM16.565,45.492 L5.452,45.492 C3.275,45.492 1.510,43.727 1.510,41.550 L1.510,30.434 C1.510,28.257 3.275,26.492 5.452,26.492 L16.565,26.492 C18.742,26.492 20.507,28.257 20.507,30.434 L20.507,41.550 C20.507,43.727 18.742,45.492 16.565,45.492 ZM16.565,22.514 L5.452,22.514 C3.275,22.514 1.510,20.749 1.510,18.572 L1.510,7.456 C1.510,5.278 3.275,3.513 5.452,3.513 L16.565,3.513 C18.742,3.513 20.507,5.278 20.507,7.456 L20.507,18.572 C20.507,20.749 18.742,22.514 16.565,22.514 ZM28.456,26.492 L39.570,26.492 C41.747,26.492 43.511,28.257 43.511,30.434 L43.511,41.550 C43.511,43.727 41.747,45.492 39.570,45.492 L28.456,45.492 C26.280,45.492 24.515,43.727 24.515,41.550 L24.515,30.434 C24.515,28.257 26.280,26.492 28.456,26.492 Z"/>
</svg>

43
static/imgs/mb/mb-mUinitBusiness.svg

@ -1,38 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45">
<defs>
<style>
.cls-1, .cls-2 {
fill: #fff;
}
.cls-1 {
opacity: 0;
}
.cls-2, .cls-3 {
stroke: #333;
stroke-width: 1.5px;
}
.cls-3, .cls-5 {
fill: none;
}
.cls-4 {
stroke: none;
}
</style>
</defs>
<g id="组_1088" data-name="组 1088" transform="translate(-26 -274)">
<rect id="矩形_858" data-name="矩形 858" class="cls-1" width="45" height="45" transform="translate(26 274)"/>
<g id="组_1087" data-name="组 1087">
<path id="路径_325" data-name="路径 325" class="cls-2" d="M9.521,6.29V0H0V6.29" transform="translate(37 307.604) rotate(-90)"/>
<path id="路径_472" data-name="路径 472" class="cls-2" d="M9.521,0V6.29H0V0" transform="translate(54 307.604) rotate(-90)"/>
<g id="椭圆_236" data-name="椭圆 236" class="cls-2" transform="translate(41.5 281.001)">
<circle class="cls-4" cx="7" cy="7" r="7"/>
<circle class="cls-5" cx="7" cy="7" r="6.25"/>
</g>
<path id="路径_473" data-name="路径 473" class="cls-3" d="M3646.712,12726.5h6.562l-.905,2.448.905,4.6-3.243,2.716-3.135-2.716.6-4.6Z" transform="translate(-3601.512 -12428.417)"/>
</g>
</g>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="48.5px" height="44.5px">
<path fill-rule="evenodd" stroke="rgb(51, 51, 51)" stroke-width="3px" stroke-linecap="round" stroke-linejoin="round" fill="none"
d="M37.768,25.817 C34.549,25.817 31.791,24.012 30.624,21.445 C29.466,23.991 26.742,25.782 23.556,25.811 L23.556,25.814 C23.545,25.814 23.534,25.817 23.523,25.817 C23.516,25.817 23.509,25.815 23.501,25.815 C23.494,25.815 23.487,25.817 23.479,25.817 C23.468,25.817 23.457,25.814 23.446,25.814 L23.446,25.811 C20.261,25.782 17.536,23.991 16.379,21.445 C15.212,24.012 12.453,25.817 9.234,25.817 C4.960,25.817 1.494,22.635 1.494,18.711 C1.494,17.753 1.702,16.841 2.077,16.008 C2.314,15.483 7.533,6.899 9.792,3.191 C10.430,2.143 11.570,1.507 12.802,1.507 L34.250,1.507 C35.485,1.507 36.628,2.147 37.265,3.200 C39.511,6.913 44.689,15.483 44.925,16.008 C45.300,16.841 45.508,17.753 45.508,18.711 C45.508,22.635 42.043,25.817 37.768,25.817 ZM16.324,23.627 C17.490,26.194 20.249,27.743 23.468,27.743 C26.687,27.743 29.446,26.194 30.613,23.627 C31.780,26.194 34.538,27.743 37.757,27.743 C39.321,27.743 40.774,27.314 41.991,26.582 L41.991,35.362 C41.991,38.748 39.232,41.492 35.829,41.492 L11.107,41.492 C7.704,41.492 4.945,38.748 4.945,35.362 L4.945,26.582 C6.162,27.314 7.615,27.743 9.179,27.743 C12.398,27.743 15.157,26.194 16.324,23.627 Z"/>
</svg>

41
static/imgs/mb/mb-personal.svg

@ -1,36 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45">
<defs>
<style>
.cls-1, .cls-2 {
fill: #fff;
}
.cls-1 {
opacity: 0;
}
.cls-2 {
stroke: #333;
stroke-width: 1.5px;
}
.cls-3 {
stroke: none;
}
.cls-4 {
fill: none;
}
</style>
</defs>
<g id="组_1086" data-name="组 1086" transform="translate(-26 -204)">
<rect id="矩形_858" data-name="矩形 858" class="cls-1" width="45" height="45" transform="translate(26 204)"/>
<g id="组_1085" data-name="组 1085" transform="translate(1.5 0.604)">
<path id="路径_325" data-name="路径 325" class="cls-2" d="M0,0H9.521V23.121H0Z" transform="translate(35.5 237) rotate(-90)"/>
<g id="椭圆_236" data-name="椭圆 236" class="cls-2" transform="translate(40 210.397)">
<circle class="cls-3" cx="7" cy="7" r="7"/>
<circle class="cls-4" cx="7" cy="7" r="6.25"/>
</g>
</g>
</g>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="45.5px" height="48.5px">
<path fill-rule="evenodd" stroke="rgb(51, 51, 51)" stroke-width="3px" stroke-linecap="butt" stroke-linejoin="miter" fill="none"
d="M36.515,45.488 L7.484,45.488 C4.183,45.488 1.507,42.731 1.507,39.331 C1.507,31.072 8.006,24.377 16.022,24.377 L27.976,24.377 C35.993,24.377 42.492,31.072 42.492,39.331 C42.492,42.731 39.816,45.488 36.515,45.488 ZM21.999,22.272 C16.431,22.272 11.917,17.621 11.917,11.885 C11.917,6.148 16.431,1.497 21.999,1.497 C27.568,1.497 32.082,6.148 32.082,11.885 C32.082,17.621 27.568,22.272 21.999,22.272 Z"/>
</svg>

1
static/imgs/pc/pc-IndividualBusiness.svg

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><defs><style>.a{fill:#fff;opacity:0.15;}.b{fill:#ffebc4;}</style></defs><g transform="translate(-820 -418)"><rect class="a" width="80" height="80" rx="10" transform="translate(820 418)"/><path class="b" d="M87.532,123.166c-.715,3.242-2.982,5.265-5.9,5.426-3.183.166-5.419-1.589-6.663-5.319-.092.345-.159.589-.236.84A6.285,6.285,0,0,1,62.46,123a2.419,2.419,0,0,1,.152-1.034c1.285-3.4,2.6-6.788,3.88-10.191a.773.773,0,0,1,.855-.613q20.14.025,40.281,0a.748.748,0,0,1,.823.563c1.269,3.251,2.52,6.512,3.865,9.738a3.891,3.891,0,0,1,.033,2.9,6.3,6.3,0,0,1-6.361,4.227,6.4,6.4,0,0,1-5.914-5.369c-.95,3.6-3.161,5.587-6.824,5.31-3.107-.218-4.955-2.157-5.721-5.358ZM66.77,130.574h3.546v21.3h17.2v3.58c-.252.017-.488.033-.714.033l-5.663,0q-5.663,0-11.326,0a3.116,3.116,0,0,1-3.075-3.025c-.017-4.831-.008-16.663,0-21.493a1.342,1.342,0,0,1,.018-.265c.005-.04.011-.083.016-.13Z" transform="translate(774.235 324.843)"/><g transform="translate(864.269 454.354)"><path class="b" d="M0,0H9.3V22.581H0Z" transform="translate(0 25.981) rotate(-90)"/><circle class="b" cx="6.836" cy="6.836" r="6.836" transform="translate(4.395 0)"/></g></g></svg>

BIN
static/imgs/pc/pc-IndividualBusiness.webp

1
static/imgs/pc/pc-enterprisesApply.svg

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><defs><style>.a,.b,.d{fill:#fff;}.a{opacity:0.15;}.b{opacity:0;}.c{fill:#ffebc4;}.d{stroke:#3d3e45;stroke-width:2px;}</style></defs><g transform="translate(-1020 -418)"><rect class="a" width="80" height="80" rx="10" transform="translate(1020 418)"/><g transform="translate(994 74)"><rect class="b" width="80" height="80" transform="translate(26 344)"/><g transform="translate(44.651 361)"><path class="c" d="M3659.559,12711.2l-21.971,8.262v37.2h21.971Z" transform="translate(-3637.588 -12711.204)"/><path class="c" d="M3647.811,12716l17.728,8.27v28.822h-17.728Z" transform="translate(-3622.84 -12707.634)"/><path class="d" d="M3641.737,12792.688H3652.6" transform="translate(-3636.414 -12770.222)"/><path class="d" d="M3641.737,12792.688H3652.6" transform="translate(-3636.414 -12761.333)"/><path class="d" d="M3641.737,12792.688H3652.6" transform="translate(-3613.332 -12761.333)"/></g></g></g></svg>

BIN
static/imgs/pc/pc-enterprisesApply.webp

1
static/imgs/pc/pc-organization.svg

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><defs><style>.a,.b{fill:#fff;}.a{opacity:0.15;}.b{opacity:0;}.c{fill:#ffebc4;}</style></defs><g transform="translate(-1220 -418)"><rect class="a" width="80" height="80" rx="10" transform="translate(1220 418)"/><g transform="translate(1194 4)"><rect class="b" width="80" height="80" transform="translate(26 414)"/><g transform="translate(43.193 431)"><rect class="c" width="20.765" height="20.765" transform="translate(0 0.932)"/><rect class="c" width="20.765" height="20.765" transform="translate(0 25.85)"/><rect class="c" width="20.765" height="20.765" transform="translate(24.918 25.85)"/><rect class="c" width="16" height="16" transform="translate(23.986 11.314) rotate(-45)"/></g></g></g></svg>

BIN
static/imgs/pc/pc-organization.webp

1
static/imgs/pc/pc-personal.svg

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><defs><style>.a,.b{fill:#fff;}.a{opacity:0.15;}.b{opacity:0;}.c{fill:#ffebc4;}</style></defs><g transform="translate(-620 -418)"><rect class="a" width="80" height="80" rx="10" transform="translate(620 418)"/><g transform="translate(594 214)"><rect class="b" width="80" height="80" transform="translate(26 204)"/><g transform="translate(45.556 220)"><path class="c" d="M0,0H16.925V41.1H0Z" transform="translate(0 47.293) rotate(-90)"/><circle class="c" cx="12.444" cy="12.444" r="12.444" transform="translate(8 0)"/></g></g></g></svg>

BIN
static/imgs/pc/pc-personal.webp

BIN
static/imgs/pc/personal-logo.png

After

Width: 407  |  Height: 36  |  Size: 4.8 KiB

1
static/imgs/pc/personal-logo.svg
File diff suppressed because it is too large
View File

BIN
static/thee.ico

15827
theme/index.css
File diff suppressed because it is too large
View File

Loading…
Cancel
Save