12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**index.wxss**/
- .container {
- width: 100%;
- height: 100%;
- position: relative;
- }
- .con{
- width: 80%;
- height: 100%;
- position: absolute;
- top: 50%;
- 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;
- }
- .list,
- .bigPic,
- .mail {
- box-sizing: border-box;
- width: 100%;
- font-size: 28rpx;
- font-weight: 400;
- line-height: 82rpx;
- text-align: center;
- color: black;
- }
- .nav .cur {
- background: linear-gradient(to top, #1C2E4C 0%, #38A2D7 100%);
- color: #FFFFFF;
- }
|