123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- /* margin-top: 128rpx; */
- }
- /* 头部 logo */
- .header {
- width: 161rpx;
- height: 161rpx;
- box-shadow: 0rpx 0rpx 60rpx 0rpx rgba(0, 0, 0, 0.1);
- border-radius: 50%;
- background-color: #000000;
- margin-top: 128rpx;
- margin-bottom: 72rpx;
- margin-left: auto;
- margin-right: auto;
- }
- .header_title {
- text-align: center;
- height: 229px;
- font-size: 19px;
- display: flex;
- justify-content: center;
- align-content: center;
- align-items: center;
- }
- .header image {
- width: 161rpx;
- height: 161rpx;
- border-radius: 50%;
- }
- .vuew_ipun {
- border: none;
- border-radius: 2.5rem;
- -webkit-box-shadow: 0 0 30px 0 rgb(43 86 112 / 10%);
- box-shadow: 0 0 30px 0 rgb(43 86 112 / 10%);
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- color: #333333;
- padding: 20px 16px;
- margin: 16px 0;
- }
- /* 主体 */
- .main {
- display: flex;
- flex-direction: column;
- padding-left: 70rpx;
- padding-right: 70rpx;
- }
- .tips {
- color: #999999;
- font-size: 28rpx;
- margin-top: 64rpx;
- margin-left: 48rpx;
- }
- /* 登录按钮 */
- .wbutton {
- margin-top: 96rpx;
- }
- /* 其他登录方式 */
- .other_login {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- /* margin-top: 256rpx; */
- text-align: center;
- }
- .login_icon {
- border: none;
- font-size: 64rpx;
- margin: 0 64rpx 0 64rpx;
- color: rgba(0, 0, 0, 0.7);
- }
- .wechat_color {
- color: #83dc42;
- }
- .weibo_color {
- color: #f9221d;
- }
- .github_color {
- color: #24292e;
- }
- /* 底部 */
- .footer {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- font-size: 28rpx;
- margin-top: 74rpx;
- color: rgba(0, 0, 0, 0.7);
- text-align: center;
- height: 40rpx;
- line-height: 40rpx;
- /* position: absolute; */
- bottom: 31px;
- left: 0;
- right: 0;
- }
- .footer text {
- font-size: 24rpx;
- margin-left: 15rpx;
- margin-right: 15rpx;
- }
|