| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .goodslist_boxs {
- margin: 0rpx 30rpx;
- width: calc(100% - 60rpx);
- height: calc( 100vh - 40rpx);
- }
- .input-group {
- display: flex;
- flex-direction: column;
- margin-bottom: 20rpx;
- }
- .input-group label {
- font-size: 32rpx;
- color: #333;
- margin-bottom: 10rpx;
- }
- .input-group input {
- height: 80rpx;
- background: #fff;
- border: 1px solid #ddd;
- border-radius: 4rpx;
- padding: 0 20rpx;
- font-size: 28rpx;
- border-radius: 12rpx;
- }
- .confirm-btn {
- background-color: #409eff;
- color: white;
- border: none;
- border-radius: 40rpx;
- width: calc( 100% - 60rpx) !important;
- height: 80rpx;
- font-size: 30rpx;
- margin-top: 50rpx;
- position: fixed;
- bottom: 40rpx;
- }
- navigator {
- text-align: center;
- font-size: 24rpx;
- color: #007aff;
- margin-top: 50rpx;
- }
- /* 标题样式 */
- .van-dialog__header {
- text-align: center !important;
- font-size: 18px !important;
- font-weight: bold !important;
- }
- /* 内容样式 */
- .van-dialog__message-text {
- width: 100% !important;
- /* text-align: center !important; */
- font-size: 18px !important;
- color: #333 !important;
- }
- /* 确认按钮样式 */
- .van-dialog__confirm {
- color: #1989fa !important; /* 蓝色 */
- font-size: 16px !important;
- }
- wx-button:not([size=mini]) {
- margin-left: auto;
- margin-right: auto;
- width: 100%; /* 根据内容自适应 */
- }
- .van-dialog__button {
- flex: 1;
- text-align: center;
- }
- /* 按钮容器居中 */
- .van-dialog__footer {
- align-content: center !important;
- display: flex !important;
- justify-content: center !important;
- }
- .van-dialog__message {
- text-align: left !important;
- padding: 14rpx 60rpx 30rpx 60rpx !important;
- line-height: 1.8 !important; /* 调大行距 */
- }
|