// 颜色 $color-blue:#3387FF; $color-white:#FFFFFF; // 字体大小 $font_size_34:34rpx; $font_size_36:36rpx; page{ background-color: #fff; } .but_button690{ margin: 10rpx; width: 690rpx; height: 88rpx; font-size: $font_size_34; font-weight: normal; } .but_button630{ margin: 10rpx; width: 630rpx; height: 88rpx; font-size: $font_size_34; font-weight: normal; } .center_in_sequence{ display: flex; flex-direction: column; align-items: center; } .center_in{ width: 100%; display: flex; justify-content: center; align-items: center; } .space_between{ width: 100%; display: flex; justify-content: space-between; align-items: center; } .up_and_down{ display: flex; flex-direction: column; justify-content: space-between; align-items: center; } .font36{ font-size: $font_size_36; font-weight: bold; text-align: left; color: #333; } // 伪元素1rpx边框 .frame { position: relative; //重要 } .frame::after { position: absolute; content: ''; border-bottom: 4rpx solid #e4e7ed; width: 200%; height: 200%; top: 0; left: 0; transform: scale(0.5); transform-origin: 0 0; pointer-events: none; /* 使伪元素不会阻止鼠标事件 */ } .card_search_head{ padding: 20rpx 30rpx; background-color: #f3f4f6; }