|
|
- // 页面容器
- .container {
- margin: 0;
- padding: 0;
- }
-
-
-
- .ant-font-24{
- font-size: 24rpx;
- }
-
- .ant-flex-line{
- display: flex;
- align-items: center;
- line-height: 20rpx;
- overflow-x: auto;
- }
-
-
-
-
-
-
-
- // 签名
- .content-end {
- padding: 60rpx 0;
- text-align: center;
- position: relative;
- }
- .line {
- position: absolute;
- top: 74rpx;
- z-index: 1;
- width: 100%;
- border: 1rpx solid;
- border-image: linear-gradient(45deg, #F3F0F3, #c8cccc, #F3F0F3) 1
- }
- .center {
- position: absolute;
- top: 60;
- left: calc(50% - 99rpx);
- z-index: 2;
- background-color: #FFF;
- color: #A9A9A9;
- width: 198rpx;
- font-size: 18rpx;
- line-height: 28rpx;
- }
- // 测试使用
- .jtest {
- border: 1px dashed #3c9cff;
- }
-
-
-
-
-
-
-
-
-
- //查看密码
- .uni-eye-active {
- color: #007AFF;
- margin: 35rpx auto;
- width: 28rpx;
- height: 28rpx;
- background: url("/static/image/eshow.png") no-repeat center center;
- background-size: 100% 100%;
- }
- .uni-eye {
- margin: 35rpx auto;
- width: 28rpx;
- height: 28rpx;
- background: url("/static/image/ehide.png") no-repeat center center;
- background-size: 100% 100%;
- }
- //空列表
- .no-something {
- width: 413rpx;
- height: 520rpx;
- padding: 200rpx 0;
- margin: 0 auto;
- }
- .no-image {
- width: 413rpx;
- height: 361rpx;
- margin: 0 auto;
- }
- .no-tip {
- width: 413rpx;
- line-height: 62rpx;
- text-align: center;
- font-size: 26rpx;
- color: #808080;
- }
- .upload-button {
- width: 262rpx;
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 40rpx;
- text-align: center;
- color: #1B55E2;
- border: 1px solid #1B55E2;
- margin: 60rpx auto;
- }
- //弹窗
- .alert-container{
- min-height: 100vh;
- min-width: 100vw;
- position: fixed;
- z-index: 100;
- top: 0;
- left: 0;
- background: rgba(0,10,35,0.3);
- }
- .card-container{
- width: 500rpx;
- height: 250rpx;
- border-radius: 16rpx;
- background: white;
- position: fixed;
- z-index: 101;
- top: calc(50vh - 325rpx);
- left: calc(50vW - 250rpx);
- opacity: 1;
- }
- .card-success {
- width: 80rpx;
- height: 80rpx;
- /*border-radius: 50%;*/
- margin: 56rpx auto 28rpx;
- background: #FFFFFF url("/static/image/success.png") no-repeat center center;
- background-size: contain;
- }
- .card-text {
- line-height: 30rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #000000;
- text-align: center;
- margin: 0 auto;
- }
|