1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .box-btn{
- width: 100%;
- text-align: center;
- padding: 15px 0;
- }
- .code{
- width: 90vw;
- height: 10vw;
- text-align: center;
- background-color: #409eff;
- border-radius: 5px;
- border: #409eff;
- color: #fff;
- }
- .code-img{
- width: 100%;
- text-align: center;
- padding: 15px 0;
- }
- #qrcode img{
- margin: 0 auto;
- }
- #saveBtn{
- width: 45vw;
- height: 10vw;
- text-align: center;
- background-color: #67c23a;
- border-radius: 5px;
- border: #67c23a;
- color: #fff;
- }
- #clearBtn{
- width: 45vw;
- height: 10vw;
- text-align: center;
- background-color: #e6a23c;
- border-radius: 5px;
- border: #e6a23c;
- color: #fff;
- }
- #followBtn {
- padding: 10px 16px;
- background-color: #409eff;
- color: white;
- border: #409eff;
- border-radius: 5px;
- cursor: pointer;
- position: absolute;
- right: 4.2vw;
- margin-top: -2.8vw;
- font-size: 14px;
- }
- #followBtn.followed {
- background-color: #f0f9eb;
- border: 1px solid #67c23a;
- color: #71c647;
- font-size: 14px;
- }
|