选择身份
This commit is contained in:
78
src/components/user/systematic-notification-pop.vue
Normal file
78
src/components/user/systematic-notification-pop.vue
Normal file
@@ -0,0 +1,78 @@
|
||||
<template>
|
||||
<div class="pop-mask flexcenter">
|
||||
|
||||
|
||||
<div class="content">
|
||||
|
||||
<div class="header flexcenter">
|
||||
<img class="header-icon" src="@/assets/img/user/inform-icon.png" />
|
||||
<img class="header-text" src="@/assets/img/user/inform-text.png" />
|
||||
</div>
|
||||
|
||||
|
||||
<!--
|
||||
<div class="attention flexacenter">
|
||||
<div class="attention-text"></div>
|
||||
<div class="attention-btn"></div>
|
||||
</div>
|
||||
|
||||
<div class="list"></div> -->
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.pop-mask {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: rgba(0, 0, 0, 0.698039215686274);
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 700px;
|
||||
height: 750px;
|
||||
background-color: rgba(255, 255, 255, 1);
|
||||
border-radius: 16px;
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
|
||||
|
||||
.header {
|
||||
width: 100%;
|
||||
height: 160px;
|
||||
background: -webkit-linear-gradient(157.579749142889deg, rgba(82, 217, 219, 1) 0%, rgba(44, 100, 235, 1) 59%);
|
||||
background: -moz-linear-gradient(-67.5797491428887deg, rgba(82, 217, 219, 1) 0%, rgba(44, 100, 235, 1) 59%);
|
||||
background: linear-gradient(-67.5797491428887deg, rgba(82, 217, 219, 1) 0%, rgba(44, 100, 235, 1) 59%);
|
||||
border-radius: 16px 16px 0 0;
|
||||
|
||||
.header-icon {
|
||||
width: 52px;
|
||||
height: 57px;
|
||||
margin-right: 21px;
|
||||
}
|
||||
|
||||
.header-text {
|
||||
width: 145px;
|
||||
height: 47px;
|
||||
}
|
||||
}
|
||||
|
||||
.attention {
|
||||
// margin: 0 auto;
|
||||
// width: 660px;
|
||||
// height: 50px;
|
||||
// background-color: rgba(255, 255, 255, 1);
|
||||
// border-radius: 230px;
|
||||
// -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0784313725490196);
|
||||
// -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0784313725490196);
|
||||
// box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0784313725490196);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user