123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .notice-container {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- background-color: #ffffff;
- padding: 30rpx;
- }
- .notice-title {
- font-size: 36rpx;
- font-weight: bold;
- margin-top: 20rpx;
- margin-bottom: 10rpx;
- color: #333;
- }
- .notice-subtitle {
- font-size: 26rpx;
- color: #999;
- margin-bottom: 30rpx;
- }
- .notice-grid {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- margin-bottom: 30rpx;
- }
- .notice-item {
- width: 47%;
- height: 180rpx;
- border-radius: 8rpx;
- padding: 20rpx;
- margin-bottom: 20rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- text-align: center;
- box-sizing: border-box;
- }
- .light {
- background-color: #f0f9eb;
- }
- .smile {
- background-color: #f0f9eb;
- }
- .headphone {
- background-color: #f0f9eb;
- }
- .wifi {
- background-color: #f0f9eb;
- }
- .forbidden {
- background-color: #fff8e6;
- }
- .icon-container {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-bottom: 15rpx;
- }
- .iconfont {
- font-size: 40rpx;
- color: #333;
- }
- .item-text {
- font-size: 24rpx;
- color: #333;
- line-height: 1.4;
- display: -webkit-box;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
- .warning-tip {
- color: #ff9800;
- font-size: 24rpx;
- margin-bottom: 60rpx;
- }
- .disclaimer {
- font-size: 24rpx;
- color: #999;
- line-height: 1.5;
- margin-bottom: 30rpx;
- }
- .agreement {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 40rpx;
- }
- .agreement-text {
- font-size: 28rpx;
- color: #333;
- margin-left: 10rpx;
- }
- .next-btn {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- background-color: #0039b3;
- color: #fff;
- border-radius: 8rpx;
- font-size: 32rpx;
- text-align: center;
- }
- .next-btn[disabled] {
- background-color: #0039b3;
- color: #fff;
- }
|