68 lines
1.7 KiB
Plaintext
68 lines
1.7 KiB
Plaintext
|
@charset "UTF-8";
|
|||
|
/**
|
|||
|
* 下方引入的为Tuniao UI的集成样式文件,为scss预处理器,其中包含了一些"tn-"开头的自定义变量
|
|||
|
* 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
|
|||
|
* Tuniao UI自定义的css类名和scss变量,均以"tn-"开头,不会造成冲突,请放心使用
|
|||
|
*/
|
|||
|
/* 授权 */
|
|||
|
.login-page.data-v-cd7cd652 {
|
|||
|
width: 100vw;
|
|||
|
height: 100vh;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
}
|
|||
|
/* 授权按钮 */
|
|||
|
.submit-btn.data-v-cd7cd652 {
|
|||
|
width: 100%;
|
|||
|
background-color: #05C160;
|
|||
|
color: #FFFFFF;
|
|||
|
margin-top: 60rpx;
|
|||
|
border-radius: 10rpx;
|
|||
|
padding: 25rpx;
|
|||
|
font-size: 32rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
margin: 30rpx;
|
|||
|
}
|
|||
|
/* 间隔线 start*/
|
|||
|
.tn-strip-bottom-min.data-v-cd7cd652 {
|
|||
|
width: 100%;
|
|||
|
border-bottom: 1rpx solid #F8F9FB;
|
|||
|
}
|
|||
|
.tn-strip-bottom.data-v-cd7cd652 {
|
|||
|
width: 100%;
|
|||
|
border-bottom: 20rpx solid rgba(241, 241, 241, 0.8);
|
|||
|
}
|
|||
|
/* 间隔线 end*/
|
|||
|
/* 用户头像 start */
|
|||
|
.logo-image.data-v-cd7cd652 {
|
|||
|
width: 80rpx;
|
|||
|
height: 80rpx;
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
.logo-pic.data-v-cd7cd652 {
|
|||
|
background-size: cover;
|
|||
|
background-repeat: no-repeat;
|
|||
|
background-position: top;
|
|||
|
border: 2rpx solid rgba(255, 255, 255, 0.05);
|
|||
|
box-shadow: 0rpx 0rpx 80rpx 0rpx rgba(0, 0, 0, 0.15);
|
|||
|
border-radius: 50%;
|
|||
|
overflow: hidden;
|
|||
|
}
|
|||
|
/* 底部悬浮按钮 start*/
|
|||
|
.tn-tabbar-height.data-v-cd7cd652 {
|
|||
|
min-height: 100rpx;
|
|||
|
height: calc(120rpx + env(safe-area-inset-bottom) / 2);
|
|||
|
}
|
|||
|
.tn-footerfixed.data-v-cd7cd652 {
|
|||
|
position: fixed;
|
|||
|
width: 100%;
|
|||
|
bottom: calc(30rpx + env(safe-area-inset-bottom));
|
|||
|
z-index: 1024;
|
|||
|
box-shadow: 0 1rpx 6rpx rgba(0, 0, 0, 0);
|
|||
|
}
|
|||
|
/* 底部悬浮按钮 end*/
|
|||
|
|