| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /* 页面背景 */
- page {
- background-color: #F8F8F8;
- padding-bottom: 200rpx;
- /* 底部留白 */
- font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
- }
- .qual-container {
- padding: 20rpx;
- }
- /* 顶部提示 */
- .top-tip {
- font-size: 24rpx;
- color: #666;
- margin-bottom: 20rpx;
- padding: 0 10rpx;
- line-height: 1.5;
- }
- /* 空状态 */
- .empty-state {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-top: 100rpx;
- padding-bottom: 60rpx;
- }
- .empty-tip {
- font-size: 30rpx;
- color: #999;
- margin-bottom: 40rpx;
- }
- .back-btn {
- width: 300rpx;
- height: 80rpx;
- line-height: 80rpx;
- border: 2rpx solid #FF5722;
- color: #FF5722;
- background-color: #fff;
- border-radius: 40rpx;
- font-size: 30rpx;
- }
- /* 资质卡片 */
- .qual-card {
- background-color: #fff;
- border-radius: 20rpx;
- padding: 30rpx;
- margin-bottom: 20rpx;
- }
- .card-title {
- font-size: 28rpx;
- /* 14号字体 */
- font-weight: bold;
- color: #333;
- margin-bottom: 30rpx;
- }
- /* 上传容器 */
- .upload-wrapper {
- display: flex;
- flex-wrap: wrap;
- }
- .img-item {
- width: 200rpx;
- height: 200rpx;
- position: relative;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- }
- .upload-box {
- width: 200rpx;
- height: 200rpx;
- background-color: #F8F8F8;
- /* 虚线框背景 */
- border: 2rpx dashed #eee;
- border-radius: 12rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-bottom: 20rpx;
- }
- .plus-icon {
- font-size: 60rpx;
- color: #ccc;
- font-weight: 300;
- margin-bottom: 10rpx;
- }
- .upload-text {
- font-size: 24rpx;
- color: #999;
- }
- /* 图片预览 */
- .preview-img {
- width: 100%;
- height: 100%;
- border-radius: 12rpx;
- }
- /* 删除按钮 */
- .delete-btn {
- position: absolute;
- top: -10rpx;
- right: -10rpx;
- width: 36rpx;
- height: 36rpx;
- background-color: #FF5722;
- border-radius: 50%;
- color: #fff;
- font-size: 24rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 10;
- border: 2rpx solid #fff;
- }
- /* 底部操作区 */
- .footer-actions {
- margin-top: 60rpx;
- padding: 0 20rpx;
- }
- .submit-btn {
- background: linear-gradient(90deg, #FF6F00 0%, #FF5722 100%);
- color: #fff;
- font-size: 28rpx;
- /* 14号字体 */
- font-weight: bold;
- height: 90rpx;
- line-height: 90rpx;
- border-radius: 45rpx;
- box-shadow: 0 10rpx 20rpx rgba(255, 87, 34, 0.2);
- }
- .submit-btn::after {
- border: none;
- }
|