123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- .container4 {
- padding: 20rpx;
- background-color: #f5f5f5;
- min-height: 100vh;
- padding-top: calc(90rpx + 44px + 20rpx); /* 增加了额外的顶部间距 */
- }
- .custom-nav {
- display: flex;
- align-items: center;
- height: 90rpx;
- margin-bottom: 20rpx;
- background-color: #2E82FF;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 1000;
- padding: 0 20rpx;
- padding-top: 88rpx;
- }
- .back-icon {
- position: fixed;
- top: 115rpx;
- left: 30rpx;
- z-index: 999;
- width: 40rpx;
- height: 40rpx;
- }
- .nav-title {
- flex: 1;
- text-align: center;
- font-size: 34rpx;
- color: #fff;
- }
- .nav-placeholder {
- width: 60rpx;
- }
- .bill-card {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 30rpx;
- margin-bottom: 10rpx;
- box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
- position: relative;
- }
- /* 第一个卡片额外的顶部间距 */
- /* .first-card {
- margin-top: 10rpx;
- } */
- .bill-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx 0;
- }
- .bill-rownew {
- display: flex;
- font-size: 32rpx;
- justify-content: space-between;
- align-items: center;
- padding: 10rpx 0;
- }
- .bill-row-address {
- color: rgba(104, 108, 128, 1);
- }
- /* 必填项标记 */
- .required {
- color: #ff4d4f;
- margin-left: 4rpx;
- }
- /* 单选框样式 */
- .radio-group {
- display: flex;
- justify-content: flex-end;
- }
- .radio {
- margin-left: 30rpx;
- font-size: 32rpx;
- color: #333;
- font-weight: 500;
- }
- .divider {
- height: 1rpx;
- background-color: #eee;
- margin: 10rpx 0; /* 增加了分隔线上下间距 */
- }
- .solid-divider {
- height: 1rpx;
- background-color: #ddd;
- margin: 15rpx 0 20rpx 0;
- }
- .card-title {
- font-size: 32rpx;
- color: #333;
- font-weight: 500;
- margin-bottom: 10rpx;
- padding: 10rpx 0;
- }
- .input-right {
- text-align: right;
- width: 60%;
- }
- .input-text {
- color: rgba(104, 108, 128, 1);
- }
- .preview-text {
- color: #333;
- }
- .placeholder-style {
- color: #999;
- text-align: right;
- }
- .selector-value {
- display: flex;
- align-items: center;
- }
- .arrow {
- margin-left: 10rpx;
- color: #999;
- }
- .fault-description textarea {
- width: 100%;
- height: 150rpx;
- padding: 10rpx;
- box-sizing: border-box;
- font-size: 28rpx;
- }
- .upload-section {
- display: flex;
- flex-wrap: wrap;
- }
- .upload-btn-container {
- width: 150rpx;
- height: 150rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- border-radius: 8rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .solid-border {
- border: 2rpx solid #ccc;
- }
- .upload-btn {
- width: 120rpx;
- height: 120rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .plus-icon {
- font-size: 60rpx;
- color: #999;
- }
- .upload-tip {
- font-size: 24rpx;
- color: #999;
- margin-top: 10rpx;
- }
- .image-preview {
- display: flex;
- flex-wrap: wrap;
- }
- .image-item {
- width: 150rpx;
- height: 150rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- position: relative;
- }
- .image-item image {
- width: 100%;
- height: 100%;
- border-radius: 8rpx;
- }
- .delete-icon {
- position: absolute;
- top: -15rpx;
- right: -15rpx;
- width: 40rpx;
- height: 40rpx;
- background-color: rgba(0, 0, 0, 0.5);
- color: #fff;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 24rpx;
- }
- .submit-btn {
- width: 90%;
- height: 90rpx;
- background-color: #0080ff;
- color: white;
- border-radius: 45rpx;
- font-size: 36rpx;
- font-weight: 600;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 60rpx auto;
- }
- .submit-btn.disabled {
- opacity: 0.7;
- }
- .reply-item {
- background-color: #f8f8f8;
- border-radius: 8rpx;
- margin-top: 20rpx;
- }
- .reply-time {
- font-size: 28rpx;
- color: #666;
- padding: 20rpx;
- }
- .reply-timenew {
- font-size: 32rpx;
- color: #666;
- padding: 10rpx;
- }
- .reply-content {
- font-size: 30rpx;
- color: #333;
- padding: 20rpx;
- line-height: 1.5;
- }
- .reply-content {
- font-size: 28rpx;
- color: #333;
- padding: 10rpx 0;
- line-height: 1.5;
- }
- .reply-time {
- font-size: 28rpx;
- color: rgba(104, 108, 128, 1);
- text-align: right;
- }
- /* 禁用状态的输入框样式 */
- input[disabled], textarea[disabled] {
- color: #333;
- background-color: transparent;
- }
- /* 自定义单选按钮的选中颜色 */
- radio .wx-radio-input.wx-radio-input-checked {
- background-color: rgba(46, 130, 255, 1) !important;
- border-color: rgba(46, 130, 255, 1) !important;
- }
- radio .wx-radio-input.wx-radio-input-checked::before {
- color: #ffffff !important; /* 选中后中间的对勾颜色 */
- }
|