|
@@ -1 +1,133 @@
|
|
-/* pages/permisission/permission.wxss */
|
|
|
|
|
|
+/* pages/permisission/permission.wxss */
|
|
|
|
+.entery-container {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ background-color: #F7F7F7;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
+ align-items: center;
|
|
|
|
+}
|
|
|
|
+.permission-btn {
|
|
|
|
+ background-color: var(--maincolor);
|
|
|
|
+ color: #fff;
|
|
|
|
+ margin-top: 10rpx;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.form-box{
|
|
|
|
+ width: 100%;
|
|
|
|
+ margin-top: 80rpx;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.avatar {
|
|
|
|
+ width: 100%;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+}
|
|
|
|
+.img-item {
|
|
|
|
+ width: 160rpx;
|
|
|
|
+ height: 160rpx;
|
|
|
|
+ background-color: var(--maincolor);
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+}
|
|
|
|
+.form {
|
|
|
|
+ width: 100%;
|
|
|
|
+ margin-top: 80rpx;
|
|
|
|
+}
|
|
|
|
+.form-item {
|
|
|
|
+ width: 690rpx;
|
|
|
|
+ height: 99rpx;
|
|
|
|
+ margin: 0 auto;
|
|
|
|
+ position: relative;
|
|
|
|
+ border-bottom:1px solid #E4E4E4;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
+ align-items: center;
|
|
|
|
+}
|
|
|
|
+.chose-date-picker {
|
|
|
|
+ position: absolute;
|
|
|
|
+ right: 20rpx;
|
|
|
|
+}
|
|
|
|
+.form-item .title {
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #333333;
|
|
|
|
+}
|
|
|
|
+.weui-input {
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #333333;
|
|
|
|
+}
|
|
|
|
+.picker {
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #999999;
|
|
|
|
+}
|
|
|
|
+.form-item .chose-date {
|
|
|
|
+ width: 400rpx;
|
|
|
|
+ height: 100%;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
+ align-items: center;
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #333333;
|
|
|
|
+ margin-left: 26rpx;
|
|
|
|
+}
|
|
|
|
+.radio {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
+ align-items: center;
|
|
|
|
+}
|
|
|
|
+.radio-item {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
+ align-items: center;
|
|
|
|
+ margin-left: 20rpx;
|
|
|
|
+ margin-right: 98rpx;
|
|
|
|
+}
|
|
|
|
+.radio-cricle {
|
|
|
|
+ width: 34rpx;
|
|
|
|
+ height: 34rpx;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ border: 1rpx solid #D9D9D9;
|
|
|
|
+ margin-right: 14rpx;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-items: center;
|
|
|
|
+}
|
|
|
|
+.radio-cricle .inner-cricle {
|
|
|
|
+ width: 16rpx;
|
|
|
|
+ height: 16rpx;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+}
|
|
|
|
+.radio-cricle-active {
|
|
|
|
+ border: 1rpx solid #1890FF;
|
|
|
|
+}
|
|
|
|
+.radio-cricle-active .inner-cricle{
|
|
|
|
+ background-color: #1890FF;
|
|
|
|
+}
|
|
|
|
+.radio-text {
|
|
|
|
+ font-size: 28rpx;
|
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: rgba(0,0,0,0.85);
|
|
|
|
+}
|
|
|
|
+.submit-btn {
|
|
|
|
+ width: 690rpx;
|
|
|
|
+ height: 80rpx;
|
|
|
|
+ background: #45A6B5;
|
|
|
|
+ border-radius: 10rpx;
|
|
|
|
+ margin: 80rpx auto 0;
|
|
|
|
+ color: #fff;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-items: center;
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+}
|