|
@@ -0,0 +1,70 @@
|
|
|
+/* pages/auth/auth.wxss */
|
|
|
+/* 开始 */
|
|
|
+page {
|
|
|
+ height: 100%;
|
|
|
+ display: table;
|
|
|
+}
|
|
|
+
|
|
|
+.auth {
|
|
|
+ margin-top: 0;
|
|
|
+ text-align: center;
|
|
|
+ display: table-cell;
|
|
|
+ flex-direction: column;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: flex-start;
|
|
|
+ padding: 100rpx;
|
|
|
+ vertical-align: middle;
|
|
|
+}
|
|
|
+
|
|
|
+.img {
|
|
|
+ border-radius: 50%;
|
|
|
+ /* border: 1px solid #fff; */
|
|
|
+ /* background-color: #fff; */
|
|
|
+ margin: 0 0 60rpx;
|
|
|
+ display: inline-block;
|
|
|
+ width: 200rpx;
|
|
|
+ height: 200rpx;
|
|
|
+ line-height: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.title {
|
|
|
+ display: inline-block;
|
|
|
+ width: 100%;
|
|
|
+ margin: 0 0 60rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.describe {
|
|
|
+ color: #a7aaa9;
|
|
|
+ font-size: 26rpx;
|
|
|
+ margin: 0 0 60rpx;
|
|
|
+ border-radius: 50%;
|
|
|
+ text-align: center;
|
|
|
+ display: inline-block;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.btn {
|
|
|
+ padding: 0 60rpx;
|
|
|
+ background-color: #19be6b;
|
|
|
+ color: #ffffff;
|
|
|
+ margin: 20rpx 0 200rpx;
|
|
|
+ text-align: center;
|
|
|
+ vertical-align: middle;
|
|
|
+ touch-action: manipulation;
|
|
|
+ cursor: pointer;
|
|
|
+ background-image: none;
|
|
|
+ white-space: nowrap;
|
|
|
+ user-select: none;
|
|
|
+ font-size: 14px;
|
|
|
+ border: 0 !important;
|
|
|
+ position: relative;
|
|
|
+ text-decoration: none;
|
|
|
+ height: 44px;
|
|
|
+ line-height: 44px;
|
|
|
+ box-shadow: inset 0 0 0 1px #19be6b;
|
|
|
+ /* background: #fff !important; */
|
|
|
+ /* color: #19be6b !important; */
|
|
|
+ display: inline-block;
|
|
|
+ border-radius: 10rpx;
|
|
|
+}
|