| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- .content {
- display: flex;
- flex-direction: column;
- justify-content:center;
- /* margin-top: 128upx; */
- }
- /* 头部 logo */
- .header {
- width:80px;
- height:80px;
- box-shadow:0upx 0upx 60upx 0upx rgba(0,0,0,0.1);
- border-radius:8px;
- background-color: #fff;
- margin-top: 84px;
- margin-bottom: 36px;
- margin-left: auto;
- margin-right: auto;
- padding: 5px;
- text-align: center;
- }
- .header image{
- width:70px;
- height:70px;
- border-radius:50%;
- }
- /* 主体 */
- .main {
- display: flex;
- flex-direction: column;
- padding-left: 70upx;
- padding-right: 70upx;
- }
- .tips {
- color: #999999;
- font-size: 28upx;
- margin-top: 64upx;
- margin-left: 48upx;
- }
- /* 其他登录方式 */
- .other_login{
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- margin-top: 256upx;
- text-align: center;
- }
- .login_icon{
- border: none;
- font-size: 64upx;
- margin: 0 64upx 0 64upx;
- 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: 28upx;
- margin-top: 64upx;
- color: rgba(0,0,0,0.7);
- text-align: center;
- height: 40upx;
- line-height: 40upx;
- }
- .footer text{
- font-size: 24upx;
- margin-left: 15upx;
- margin-right: 15upx;
- }
- .contentInRowS{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .contentInRowL{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content:flex-start;
- }
- .contentInRowC{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content:center;
- }
- .contentIncolumn{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content:flex-start;
- }
- .contentIncolumnC{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content:center;
- }
- .allViewBG{
- width: 100%;
- height:100%;
- background-image: url("/static/allvBG.png");
- /* background-image: url("/static/images/wodetop.jpg"); */
- background-size: cover;
- background-position: center bottom;
- }
- .loginV{
- width: 100%;
- height:100%;
- background-image: url("/static/mine/loginBG.png");
- /* background-image: url("/static/images/wodetop.jpg"); */
- background-size: cover;
- background-position: center bottom;
- }
- .appName{
- margin-top: 30upx;
- font-size: 36upx;
- font-weight: bold;
- font-language-override: 'DOUYUFont-Regular';
- }
- .barTitle{
- letter-spacing: 4rpx;
- font-style: italic;
- color:black;
- font-weight: bold;
- }
- .topLine{
- border: solid lightgray;
- border-width: 1px 1px 0rpx 1px;
- }
- .bottomLine{
- border: solid lightgray;
- border-width: 0px 0px 1rpx 0px;
- }
|