| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .header {
- display: flex;
- margin-top: 84rpx;
- width: 100%;
- justify-content: center;
- }
- .header image {
- width: 160rpx;
- height: 160rpx;
- }
- .content {
- display: flex;
- width: 100%;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-top: 100rpx;
- }
- .content .company {
- font-size: 42rpx;
- font-family: SourceHanSansCN-Medium;
- font-weight: bold;
- color: rgba(51, 51, 51, 1);
- }
- .content .info {
- margin-top: 26rpx;
- font-size: 28rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- }
- .bottom {
- margin: 80rpx 44rpx 0 44rpx;
- background: linear-gradient(90deg, rgba(59, 120, 207, 1), rgba(80, 166, 195, 1));
- border-radius: 10rpx;
- height: 88rpx;
- line-height: 88rpx;
- font-size: 30rpx;
- font-family: SourceHanSansCN-Normal;
- font-weight: 400;
- color: rgba(255, 254, 254, 1);
- }
|