123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- /* components/face_verify/face_verify.wxss */
- @import '../../styles/index.wxss';
- .card-cont {
- position: relative;
- padding: 34rpx 0rpx;
- }
- .card-cont>.title {
- margin-left: 24rpx;
- font-size: 34rpx;
- font-weight: 500;
- }
- .radio-group {
- width: 100%;
- display: flex;
- justify-content: space-around;
- padding-top: 40rpx;
- padding-bottom: 15rpx;
- }
- .padding-sm {
- padding: 8rpx 70rpx;
- font-size: 30rpx;
- }
- .label {
- padding: 0 !important;
- }
- .btn {
- /* min-width: 236rpx; */
- height: 60rpx;
- background-color: #EEF1FA;
- font-size: 26rpx;
- border-radius: 8rpx;
- line-height: 60rpx;
- color: #515978;
- }
- button::after {
- border: none;
- }
- /* 按钮点击时 */
- .btn-click {
- background-color: #eef1fa94 !important;
- color: #354aa07c !important;
- }
- .picker::after {
- content: '';
- display: inline-block;
- width: 16rpx;
- height: 16rpx;
- margin-left: 15rpx;
- border-top: 2rpx solid #333333;
- border-right: 2rpx solid #333333;
- transform: rotate(45deg);
- }
- .btn-area {
- position: relative;
- width: 100%;
- padding-top: 46rpx;
- }
- .btn-area>button {
- width: 400rpx;
- height: 80rpx;
- background: linear-gradient(180deg, #6EAAFF 0%, #2F6FD1 100%);
- color: #FFFFFF;
- font-size: 30rpx;
- line-height: 80rpx;
- letter-spacing: 2rpx;
- }
- /* 提交按钮点击时 */
- .btn-click-submit {
- background: linear-gradient(180deg, #6EAAFF 0%, #2F6FD1 100%) !important;
- color: #FFFFFF;
- }
- /* 禁用字体颜色手动修改灰色 */
- .info {
- color: #c8c9cc !important;
- }
- .line-height {
- line-height: 80rpx;
- }
- .msg_info {
- font-size: 34rpx;
- font-style: normal;
- font-weight: 500;
- padding: 0 24rpx;
- }
- .phone-css {
- margin-right: 15rpx;
- line-height: 65rpx;
- }
- .tips {
- font-size: 44rpx;
- font-weight: 500;
- padding: 30rpx;
- text-align: center;
- }
- /* 照片显示 */
- .cu-form-group {
- background-color: transparent;
- }
- .cu-form-group {
- background-color: var(--white);
- padding: 1rpx 30rpx;
- display: flex;
- align-items: center;
- min-height: 100rpx;
- justify-content: space-between;
- }
- .cu-form-group .title {
- text-align: justify;
- padding-right: 30rpx;
- font-size: 25rpx !important;
- font-weight: normal !important;
- position: relative;
- height: 60rpx;
- line-height: 60rpx;
- color: #c8c9cc !important;
- }
- /* .title>text:nth-child(2)::after {
- content: "";
- border-right: 1px solid #c4c4c4;
- margin-left: 25rpx;
- } */
- .height {
- height: 200rpx;
- }
- .img_box{
- position: relative;
- }
- .img {
- width: 150rpx;
- height: 150rpx;
- }
|