| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- /* pages/feedback/index.wxss */
- .f-container {
- box-sizing: border-box;
- }
- .f-container {
- height: 100vh;
- overflow: hidden;
- overflow-y: scroll;
- background: #f7f7f7;
- }
- .header {
- padding: 40rpx 32rpx 30rpx;
- background: #fff;
- }
- .header .title {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- }
- .header .desc {
- font-size: 28rpx;
- color: #666;
- margin-top: 16rpx;
- }
- .block {
- margin-top: 20rpx;
- background: #fff;
- padding: 32rpx;
- }
- .block-title {
- font-size: 30rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 24rpx;
- }
- .required {
- color: #f44;
- }
- .qs-list {
- display: flex;
- flex-wrap: wrap;
- }
- .qs-item {
- padding: 12rpx 28rpx;
- margin: 0 24rpx 24rpx 0;
- border: 2rpx solid #999;
- border-radius: 8rpx;
- font-size: 28rpx;
- color: #333;
- }
- .qs-item.active {
- border-color: #276fff;
- color: #276fff;
- background: rgba(39, 111, 255, 0.08);
- }
- .textarea {
- width: 100%;
- min-height: 240rpx;
- padding: 20rpx;
- background: #f9f9f9;
- border-radius: 8rpx;
- font-size: 30rpx;
- line-height: 48rpx;
- }
- .word-limit {
- text-align: right;
- font-size: 24rpx;
- color: #999;
- margin-top: 12rpx;
- }
- .uploader {
- margin-top: 20rpx;
- }
- .upload-grid {
- display: flex;
- flex-wrap: wrap;
- }
- .image-item,
- .add-btn {
- position: relative;
- width: 180rpx;
- height: 180rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- border-radius: 12rpx;
- overflow: hidden;
- background: #f5f5f5;
- }
- .image-item .img {
- width: 100%;
- height: 100%;
- }
- .uploading {
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6);
- color: #fff;
- font-size: 24rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- padding: 20rpx;
- }
- .delete {
- position: absolute;
- right: 0rpx;
- top: 0rpx;
- width: 30rpx;
- height: 30rpx;
- }
- .add-btn {
- border: 2rpx dashed #ccc;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .icon-add {
- width: 40rpx;
- height: 40rpx;
- font-size: 80rpx;
- }
- .upload-tip {
- font-size: 24rpx;
- color: #999;
- margin-top: 16rpx;
- }
- .contact-input {
- height: 88rpx;
- padding: 0 20rpx;
- background: #f9f9f9;
- border-radius: 8rpx;
- font-size: 30rpx;
- }
- .footer {
- padding: 30rpx 30rpx 60rpx 30rpx;
- background: #fff;
- justify-content: space-between;
- display: flex;
- }
- .btn-primary {
- width: 330rpx !important;
- height: 96rpx;
- line-height: 2;
- background: #276fff;
- color: #fff;
- border-radius: 12rpx;
- font-size: 32rpx;
- }
- .btn-service {
- width: 330rpx !important;
- height: 96rpx;
- line-height: 2;
- color: #333;
- border-radius: 12rpx;
- font-size: 32rpx;
- background: #efefef;
- margin-left: 30rpx;
- }
- /* 昵称弹窗 */
- .popup-mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: flex-end;
- justify-content: center;
- z-index: 999;
- }
- .popup-panel {
- width: 640rpx;
- background: #fff;
- border-radius: 20rpx;
- overflow: hidden;
- box-shadow: 0 16rpx 40rpx rgba(0, 0, 0, 0.08);
- margin-bottom: 100rpx;
- }
- .popup-title {
- padding: 32rpx;
- font-size: 32rpx;
- font-weight: 600;
- color: #333;
- text-align: center;
- }
- .popup-body {
- padding: 0 32rpx 32rpx;
- }
- .popup-input {
- width: 100%;
- height: 88rpx;
- padding: 0 24rpx;
- box-sizing: border-box;
- background: #f7f7f7;
- border-radius: 12rpx;
- font-size: 30rpx;
- }
- .popup-footer {
- display: block;
- border-top: 1rpx solid #f1f1f1;
- padding: 20rpx 0;
- }
- .popup-btn {
- width: 100%;
- border: none;
- border-radius: 0;
- height: 80rpx;
- line-height: 1.8;
- font-size: 30rpx;
- }
- .popup-btn.confirm {
- background: #276fff;
- color: #fff;
- border-radius: 12rpx;
- }
|