1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* teacher/pages/teacherUserDetail/teacherUserDetail.wxss */
- .teacher-user-detail {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- padding: 0px 10px;
- }
- .teacher-user-detail .header {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- width: 100%;
- height: 130px;
- /* border: 1px solid #333; */
- }
- .header van-image {
- margin: 0 15px;
- }
- .header van-icon {
- margin: 0 15px;
- background-color: #f8f8f8;
- padding: 15px;
- border-radius: 50%;
- }
- .teacher-user-detail .teacher-name {
- display: flex;
- flex-direction: column;
- }
- .teacher-name text {
- display: inline-block;
- margin-bottom: 5px;
- max-width: 300rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .teachder-detail {
- margin-top: 20px;
- width: 100%;
- }
- .content-detail {
- width: 100%;
- margin-top: 10px;
- padding: 5px;
- color: #555;
- font-size: 14px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
- }
|