1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- .eva-section {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- flex-direction: column;
- padding: 20rpx 30rpx;
- background: #fff;
- margin-top: 16rpx;
- }
- .eva-section,.eva-section .e-header {
- display: flex;
- }
- .eva-section .e-header {
- -webkit-box-align: center;
- align-items: center;
- height: 70rpx;
- font-size: 26rpx;
- color: #909399;
- }
- .eva-section .e-header .tit {
- font-size: 30rpx;
- color: #303133;
- margin-right: 4rpx;
- }
- .eva-section .e-header .tip {
- -webkit-box-flex: 1;
- flex: 1;
- text-align: right;
- }
- .eva-section .e-header .iconenter {
- margin-left: 10rpx;
- }
- .eva-section .eva-box {
- display: flex;
- padding: 20rpx 0;
- }
- .eva-section .eva-box .portrait {
- flex-shrink: 0;
- width: 80rpx;
- height: 80rpx;
- border-radius: 100px;
- }
- .eva-section .eva-box .right {
- -webkit-box-flex: 1;
- flex: 1;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- flex-direction: column;
- font-size: 28rpx;
- color: #606266;
- padding-left: 26rpx;
- }
- .eva-section .eva-box .right .con {
- font-size: 28rpx;
- color: #303133;
- padding: 20rpx 0;
- }
- .eva-section .eva-box .right .bot {
- display: flex;
- -webkit-box-pack: justify;
- justify-content: space-between;
- font-size: 24rpx;
- color: #909399;
- }
- .eva-section .con_image {
- width: 130rpx;
- height: 130rpx;
- display: inline-block;
- padding: 15rpx;
- }
- .eva-section .con_image image {
- width: 100%;
- height: 100%;
- }
|