123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /* pages/companydetail/companydetail.wxss */
- page{
- background-color: #f7f7f7;
- }
- .cont{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .top{
- width: 710rpx;
- height: 392rpx;
- background-color: white;
- border-radius: 20rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- margin-bottom: 30rpx;
- }
- .top>view{
- width: 88%;
- }
- .one{
- color: #464646;
- font-size: 32rpx;
- font-weight: 600;
- }
- .two{
- color: #656565;
- font-size: 24rpx;
- }
- .three{
- display: flex;
- flex-direction: row;
- color: white;
- font-size: 24rpx;
- }
- .three>view{
- width: 218rpx;
- height: 44rpx;
- border-radius: 10rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .three>view:first-child{
- background-color: #FF874E;
- }
- .three>view:last-child{
- background-color: #00B88C;
- margin-left: 20rpx;
- }
- .four{
- color: #656565;
- font-size: 24rpx;
- }
- .five{
- color: #656565;
- font-size: 24rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .body{
- width: 100%;
- height: 170rpx;
- background-color: white;
- display: flex;
- align-items: center;
- justify-content: space-around;
- border-bottom: 1px solid #EBEBEB;
- }
- .center{
- display: flex;
- flex-direction: column;
- width: 340rpx;
- height: 65%;
- justify-content: space-between;
- white-space: nowrap;
- }
- .center>p:first-child{
- color: #464646;
- font-size: 28rpx;
- font-weight: 600;
- }
- .center>p:last-child{
- color: #656565;
- font-size: 24rpx;
- width: 300rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .foot{
- display: flex;
- flex-direction: column;
- height: 65%;
- justify-content: space-between;
- }
- .foot>p:first-child{
- color: #FF874E;
- display: flex;
- flex-direction: row-reverse;
- font-size: 32rpx;
- font-weight: 600;
- }
- .foot>p:last-child{
- color: #656565;
- font-size: 24rpx;
- }
|