123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**index.wxss**/
- .container {
- width: 100%;
- height: 100%;
- position: relative;
- }
- .con{
- width: 80%;
- position: absolute;
- top: 45%;
- left: 50%;
- transform: translate(-50%,-50%);
- }
- .nav {
- width: 100%;
- height: 82rpx;
- display: flex;
- justify-content: center;
- background: #FFFFFF;
- overflow: hidden;
- box-shadow: 0rpx 6rpx 12rpx rgba(0, 0, 0, 0.65);
- margin-top: 10%;
- border-radius: 10rpx 10rpx 0rpx 0rpx;
- }
- .line{
- width: 1rpx;
- height: 100%;
- background: #1C2E4C;
- opacity: 0.4;
- }
- .nav .cur {
- background: linear-gradient(to top, #1C2E4C 0%, #38A2D7 100%);
- color: #FFFFFF;
- }
- .list {
- box-sizing: border-box;
- width: 100%;
- font-size: 28rpx;
- font-weight: 400;
- line-height: 82rpx;
- text-align: center;
- color: #1C2E4C;
- }
|