1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* pages/companydetailgroup/companydetailgroup.wxss */
- page{
- background-color: #f7f7f7;
- }
- .cont{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .top{
- width: 710rpx;
- margin-bottom: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .top-left {
- width: 322rpx;
- height: 76rpx;
- background-color: #FFFFFF;
- border-radius: 37rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-left: 50rpx;
- padding-right: 40rpx;
- color: #3f3f3f;
- font-size: 28rpx;
- font-weight: 600;
- }
- .top-right {
- color: #656565;
- font-size: 24rpx;
- }
- .body{
- width: 100%;
- background-color: white;
- border-bottom: 1px solid #EBEBEB;
- display: flex;
- padding-top: 30rpx;
- padding-bottom: 28rpx;
- }
- .body image {
- width: 146rpx;
- height: 146rpx;
- border-radius: 10rpx;
- margin-left: 20rpx;
- }
- .body-right {
- margin-left: 22rpx;
- flex: 1;
- height: auto;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .body-right-top {
- display: flex;
- font-size: 28rpx;
- font-weight: bold;
- color: #464646;
- align-items: center;
- }
- .body-right-top-left {
- width: 380rpx;
- }
- .body-right-top-right {
- color: #FF874E;
- font-weight: bold;
- font-size: 32rpx;
- }
- .body-right-bottom {
- font-size: 24rpx;
- color: #656565;
- margin-bottom: 10rpx;
- }
|