The minor problem of WeChat Mini Programs's front-end layout

as shown in the following figure, the red background is a view container that contains a checkbox and a text.

clipboard.png

now I want to adjust the top margin of the text (the height of the checkbox position does not change), that is, the text moves down 3px. Could you tell me how to write CSS? I tried for a long time, but I didn"t get it done.

.wxml

.check
{
  width: 560rpx;
  height:80rpx; 
  padding-left: 20px;
  text-align: left;
  background-color: red;
  line-height: 50rpx;
}
Css
Jul.08,2021

set margin-top: 3px for .txtLight element and set overflow: hidden for check element

Menu