| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* pages/number/number.wxss */
- page{
- padding: 0;
- background: #F1F4F6;
- }
- .top{
- display: flex;
- padding: 40rpx 80rpx 40rpx 40rpx;
- background: -webkit-linear-gradient(bottom, #F1F4F6, #73BFFF);
- }
- .top>image{
- width: 30%;
- margin-right: 30rpx;
- }
- .name{
- color: #fff;
- font-size: 36rpx;
- height: 120rpx;
- }
- .code{
- color: #fff;
- font-size: 30rpx;
- }
- .tab{
- margin-top: 50rpx;
- display: flex;
- justify-content: space-between;
- padding: 0 20rpx;
- }
- .tab text{
- color: #666;
- font-size: 36rpx;
- }
- .tab .active{
- color: #3780CD;
- border-bottom: 2px solid #3780CD;
- padding-bottom: 20rpx;
- }
- .today{
- width: 90%;
- margin: 20rpx auto;
- background: #fff;
- border-radius: 20rpx;
- padding: 0 20rpx;
- display: flex;
- justify-content: space-between;
- box-shadow: 0 0 15px rgba(0, 0, 0, .2)
- }
- .today view{
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- line-height: 100rpx;
- }
- .today text{
- font-size: 24rpx;
- color: #666;
- line-height: 100rpx;
- }
- .tab1{
- text-align: center;
- border-bottom: 1px solid #DBDBDB;
- }
- .tab1 view{
- display: inline-block;
- margin: 0 40rpx;
- line-height: 100rpx;
- }
- .tab1 .active{
- color: #3780CD;
- border-bottom: 2px solid #3780CD;
- }
- .content{
- padding: 20rpx;
- }
- .content view{
- line-height: 56rpx;
- color: #666;
- }
- .container {
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- background: #fff;
- margin-bottom: 16rpx;
- }
- ec-canvas {
- width: 100%;
- height: 400rpx;
- }
|