1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #body{
- padding: 0 5%;
- }
- .title{
- width: 100%;
- height: 200rpx;
- background-color: #F2F2F2;
- font-size: 40rpx;
- font-weight: 700;
- padding: 0 20rpx;
- position: relative;
- box-sizing: border-box
- }
- .txt{
- display: inline-block;
- position: absolute;
- margin-top: -40rpx;
- }
- .btn{
- float:right;
- background-color: #36A9CE;
- border-radius: 50rpx;
- font-size: 22rpx;
- font-weight: 400;
- color: white;
- line-height: 20rpx;
- margin-top: 130rpx;
- }
- .center{
- margin-top: 50rpx;
- box-sizing: border-box;
- background-color: rgba(215, 215, 215, 1);
- width: 100%;
- height: 1000rpx;
- }
- .center-title{
- display: inline-block;
- font-size: 32rpx;
- font-weight: 700;
- padding: 30rpx 30rpx ;
- }
- .center-text{
- box-sizing: border-box;
- padding: 20rpx;
- overflow: hidden;
- background-color: #AAAAAA;
- border-radius: 20rpx;
- margin-bottom: 40rpx;
- }
- .img,.text1,.text2{
- float: left;
- color: white;
- }
- .text1{
- padding-left: 15rpx;
- padding-bottom: 10rpx;
- font-weight: 700;
- }
- .text2{
- padding-left: 15rpx;
- font-weight: 500;
- }
|