12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- Page {
- width: 100%;
- height: 100%;
- background-color: #F7F7F7;
- }
- .container {
- width: 100%;
- background-color: #F7F7F7;
- display: flex;
- flex-flow: column nowrap;
- justify-content: space-between;
- }
- .top{
- height: 400rpx;
- width: 100%;
-
- }
- .top_img{
- height: 400rpx;
- width: 100%;
- }
- .bottom{
- /* height: 1000rpx; */
- padding: 30rpx 20rpx;
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-between;
- }
- .left{
- width: 345rpx;
- }
- .left_1,.left_3,.right_2,.right_4{
- height: 120rpx;
- background-color: #DBA901;
- color: #fff;
- border-radius: 10rpx;
- border:4rpx solid #000;
- display: flex;
- flex-flow: row nowrap;
- justify-content: center;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .left_2,.left_4,.right_1,.right_3{
- height: 240rpx;
- background-color:#1296db;
- color: #fff;
- border-radius: 10rpx;
- border:4rpx solid #000;
- display: flex;
- flex-flow: row nowrap;
- justify-content: center;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .right{
- width: 345rpx;
- margin-left: 20rpx;
- }
|