12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @import "/css/form.wxss";
- /* 滑动区域 */
- scroll-view {
- height: 330rpx;
- }
- /* 盒子 */
- .input_text_box {
- width: 510rpx;
- height: 100rpx;
- border-radius: 70px;
- opacity: 0.7;
- }
- /* 头像 */
- .input_text_img {
- width: 76rpx;
- height: 76rpx;
- border-radius: 50rpx;
- margin-left: -6rpx;
- }
- .text_box {
- flex: 1;
- display: flex;
- align-items: center;
- height: 100%;
- }
- /* 用户名 */
- .user_name {
- width: 230rpx;
- font-size: 28rpx;
- height: 40rpx;
- line-height: 40rpx;
- color: #333333;
- margin-left: 14rpx;
- }
- /* 职位 */
- .user_identity {
- width: 100rpx;
- height: 40rpx;
- line-height: 40rpx;
- font-size: 28rpx;
- color: #000000;
- text-align: right;
- }
- /* 选中后样式 */
- .optfor {
- background-color: #4BBECF;
- }
- .optfor .user_identity {
- color: #ffffff;
- }
|