123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- .container {
- padding: 30rpx;
- background-color: #F5F5F5;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- }
- .form-group {
- background-color: #FFFFFF;
- border-radius: 18rpx;
- padding: 0 40rpx;
- margin-bottom: 30rpx;
- }
- .form-item {
- display: flex;
- align-items: center;
- padding: 34rpx 0;
- }
- .form-item:first-child {
- border-bottom: 1rpx solid #EEEEEE;
- }
- .label {
- width: 120rpx;
- color: #333333;
- font-size: 30rpx;
- text-align: left;
- margin-right: 20rpx;
- }
- input {
- flex: 1;
- font-size: 30rpx;
- color: #333333;
- padding: 0 20rpx;
- text-align: right;
- }
- .placeholder {
- color: #999999;
- text-align: right;
- font-size: 28rpx;
- }
- .placeholdersecond {
- color: #999999;
- text-align: left;
- font-size: 28rpx;
- }
- .verify-btn {
- color: #0066FF;
- font-size: 28rpx;
- padding-left: 30rpx;
- }
- .group-select {
- background-color: #FFFFFF;
- border-radius: 8rpx;
- padding: 0 40rpx;
- padding-top: 20rpx;
- margin-bottom: 30rpx;
- position: relative;
- width: calc(100% - 80rpx);
- overflow: visible;
- }
- .section-title {
- font-size: 30rpx;
- color: #333333;
- padding: 34rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: relative;
- }
- .section-title::after {
- content: '';
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- height: 1rpx;
- background-color: #EEEEEE;
- }
- .tag-group {
- display: flex;
- flex-wrap: nowrap;
- gap: 12rpx;
- padding: 30rpx 0;
- overflow-x: auto;
- white-space: nowrap;
- }
- .tag {
- padding: 12rpx 24rpx;
- background-color: #F5F5F5;
- border-radius: 8rpx;
- font-size: 26rpx;
- color: rgba(0, 0, 0, 1);
- display: inline-block;
- }
- .tag.active {
- background-color: #E6F0FF;
- color: #0066FF;
- }
- .custom-group {
- position: relative;
- left: 0;
- right: 0;
- background-color: #FFFFFF;
- padding: 20rpx 0;
- margin-top: 0;
- }
- .custom-input {
- display: flex;
- align-items: center;
- background-color: #F5F5F5;
- border-radius: 8rpx;
- padding: 24rpx;
- margin: 0;
- }
- .custom-input input {
- text-align: left;
- }
- .count {
- font-size: 26rpx;
- color: #999999;
- margin-left: 24rpx;
- }
- .submit-btn {
- margin: 50rpx 5%;
- width: 90%;
- }
- .submit-btn button {
- background-color: #0066FF;
- color: #FFFFFF;
- font-size: 32rpx;
- border-radius: 44rpx;
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- }
- .tips {
- padding: 0 30rpx;
- margin-top: 0;
- }
- .tips text {
- display: block;
- font-size: 26rpx;
- color: #999999;
- line-height: 1.8;
- margin-bottom: 10rpx;
- }
- .check-auth-btn {
- background-color: rgba(45, 128, 254, 0.12);
- font-family: 'PingFang SC', sans-serif;
- border-radius: 2px;
- padding: 10rpx 20rpx;
- color: rgba(31, 103, 212, 1);
- font-size: 28rpx;
-
- }
- .drawer-mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 100;
- }
- .drawer-container {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: #FFFFFF;
- border-radius: 24rpx 24rpx 0 0;
- z-index: 101;
- padding: 40rpx 30rpx;
- transform: translateY(100%);
- transition: transform 0.3s ease-out;
- }
- .drawer-container.show {
- transform: translateY(0);
- }
- .drawer-title {
- text-align: center;
- font-size: 32rpx;
- color: #333333;
- font-weight: 500;
- margin-bottom: 40rpx;
- }
- .auth-method {
- display: flex;
- align-items: center;
- padding: 30rpx 0;
- border-bottom: 1rpx solid #EEEEEE;
- }
- .auth-method:last-child {
- border-bottom: none;
- }
- .auth-method-icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
- .auth-method-content {
- flex: 1;
- }
- .auth-method-title {
- font-size: 30rpx;
- color: #333333;
- margin-bottom: 8rpx;
- }
- .auth-method-desc {
- font-size: 26rpx;
- color: #999999;
- }
- .auth-method-action {
- padding: 10rpx 30rpx;
- background-color: #0066FF;
- border-radius: 30rpx;
- color: #FFFFFF;
- font-size: 26rpx;
- }
- .drawer-close {
- width: 100%;
- height: 10rpx;
- background-color: #D8D8D8;
- border-radius: 5rpx;
- margin: 0 auto 30rpx;
- max-width: 80rpx;
- }
- /* 预览图样式 */
- .preview {
- display: flex;
- align-items: center;
- margin-left: 10rpx;
- color: #007bff;
- cursor: pointer;
- }
- .preview-icon {
- width: 32rpx;
- height: 32rpx;
- margin-right: 10rpx;
- }
- .preview-text {
- font-size: 28rpx;
- color: rgba(104, 108, 128, 1);
- }
- .preview-modal {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.7);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 1000;
- opacity: 0;
- visibility: hidden;
- transition: all 0.3s;
- }
- .preview-modal.show {
- opacity: 1;
- visibility: visible;
- }
- .preview-content {
- width: 90%;
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- }
- .preview-image {
- width: 100%;
- max-height: 80vh;
- }
- .close-preview-btn {
- margin-top: 30rpx;
- padding: 20rpx 60rpx;
- background: #FFFFFF;
- color: #333333;
- border-radius: 40rpx;
- font-size: 28rpx;
- }
|