1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- body{
- background: #F6F7F9;width: 100%;min-height: 100vh;box-sizing: border-box;
- }
- input{
- border: none;
- }
- /* toast */
- .alert-info {
- position: fixed;
- top: 1.74rem;
- right: 0;
- left: 0;
- bottom: 0;
- text-align: center;
- z-index: 9;
- }
- .alert-info p {
- display: inline-block;
- height: 0.38rem;
- color: #fff;
- font-size: 0.14rem;
- line-height: 0.38rem;
- padding: 0 0.10rem;
- background-color: rgba(0, 0, 0, 0.7);
- border-radius: 5px;
- }
- .loading {
- position: fixed;
- top: 0;
- left: 0;
- display: none;
- width: 100%;
- height: 100vh;
- }
- .loading img {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- width: 0.3rem;
- height: 0.3rem;
- }
- /* 完善信息 */
- .inputDiv{
- display: flex;align-items: center;background: #fff;border-bottom: 0.01rem solid #D8D8D8;font-size: 0.14rem;color: #333;
- width: 100%;height: 0.6rem;
- }
- .perfectInfo .top{
- width: 100%;height: 0.8rem;background:linear-gradient(270deg,#1B82D2 0%,#75BAFF 100%);padding:0.15rem 0;
- }
- .perfectInfo .top .userImg{
- width: 0.54rem;height: 0.54rem;border-radius: 50%;margin: auto;
- }
- .perfectInfo .top h3{
- text-align: center;margin: auto;color: #fff;font-size: 0.16rem;margin-top: 0.08rem;
- }
- .inputDiv:nth-last-of-type(2){
- border-bottom: none;
- }
- .perfectInfo .uploadID{
- background: #fff;margin-top: 0.1rem;color: #333333;
- }
- .perfectInfo .uploadID{
- display: flex;align-items: center;justify-content: space-around;text-align: center;padding: 0.15rem 0;
- }
- .perfectInfo .uploadID .justID, .perfectInfo .uploadID .backID{
- position:relative;
- }
- .perfectInfo .uploadID p{
- color: #888888;font-size: 0.12rem;line-height: 0.21rem;margin-top: 0.1rem;
- }
- .perfectInfo .uploadID .img{
- width: 1.12rem;height:0.63rem;margin:auto;overflow: hidden;
- }
- .perfectInfo .uploadID .img img{
- width: 100%;height: 100%;
- }
- .inputDiv label{
- width: 25%;text-align: center;
- }
|