| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- .main {
- position: relative;
- }
- .name-cert-container {
-
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .page-center{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .name-cert-main {
- width: 347px;
- }
- .name-cert-label {
- font-size: 13px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0b121a;
- line-height: 16px;
- margin-bottom: 8px;
- }
- .name-cert-title-area {
- text-align: center;
- margin-bottom: 40px;
- }
- .name-cert-icon {
- width: 70px;
- height: 70px;
- }
- .name-cert-title {
- margin-top: 4px;
- margin-bottom: 8px;
- font-size: 18px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #0b121a;
- line-height: 20px;
- text-align: center;
- }
- .name-cert-tips {
- text-align: center;
- font-size: 13px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #828c99;
- line-height: 16px;
- }
- .qrcode-tips {
- text-align: center;
- }
- .qrcode-img {
- text-align: center;
- width: 300px;
- margin-top: 20px;
- img {
- width: 100%;
- }
- }
- .name-cert-success-btn {
- margin-top: 80px;
- }
- .name-cert-fail-btn {
- margin-top: 104px;
- }
- .name-cert-fail-tips {
- margin-top: 30px;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 16px;
- }
- .cert-btn {
- width: 188px;
- }
- .name-cert-submit {
- text-align: center;
- }
- .upload-main {
- display: flex;
- justify-content: space-between;
- }
- .upload-box {
- width: 166px;
- height: 143px;
- overflow: hidden;
- margin-bottom: 20px;
- }
- .upload-img {
- width: 166px;
- height: 143px;
- border: 1px solid #ebf4ff;
- border-radius: 8px;
- overflow: hidden;
- box-sizing: border-box;
- position: relative;
- &::after{
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0,0,0,0.6);
- z-index: 2;
- opacity: 0;
- transition:all 0.3s;
- }
- &:hover{
- .el-icon-delete{
- opacity: 1;
- }
- &::after{
- opacity: 1;
- }
- }
- .el-icon-delete{
- position: absolute;
- z-index: 4;
- left: 50%;
- top: 50%;
- transform: translate(-50%,-50%);
- opacity: 0;
- transition:all 0.3s;
- color:#fff;
- font-size: 20px;
- }
- .avatar{
- width:100%;
- }
- }
- .upload-area {
- width: 166px;
- height: 143px;
- background-color: #ebf4ff;
- border: 1px solid #ebf4ff;
- background-repeat: no-repeat;
- background-position: 50% 13px;
- background-size: 130px 86px;
- border-radius: 8px;
- padding-top: 111px;
- box-sizing: border-box;
- p {
- // margin-top: 111px;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #308eff;
- line-height: 20px;
- text-align: center;
- }
- &.z_file {
- background-image: url("~@/assets/img/cert/z.png");
- }
- &.f_file {
- background-image: url("~@/assets/img/cert/f.png");
- }
- }
|