| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .container {
- padding: 20rpx;
- background-color: #f5f5f5;
- }
- .header {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- padding: 20rpx 0;
- text-align: center;
- }
- .content {
- margin-top: 20rpx;
- }
- .card {
- background-color: #fff;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
- overflow: hidden;
- padding: 20rpx;
- }
- .notice-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 20rpx;
- }
- .notice-info {
- display: flex;
- justify-content: space-between;
- font-size: 24rpx;
- color: #999;
- margin-bottom: 20rpx;
- }
- .dock-photo {
- width: 100%;
- height: 400rpx;
- border-radius: 8rpx;
- margin-bottom: 20rpx;
- }
- .notice-content {
- font-size: 28rpx;
- color: #666;
- line-height: 1.6;
- margin-bottom: 30rpx;
- text-align: justify;
- }
- .contact-section {
- margin-bottom: 20rpx;
- }
- .contact-info {
- font-size: 28rpx;
- color: #333;
- margin-bottom: 20rpx;
- display: block;
- }
- .contact-btn {
- background-color: #1aad19;
- color: #fff;
- font-size: 28rpx;
- margin-bottom: 20rpx;
- }
- .share-btn {
- background-color: #576b95;
- color: #fff;
- font-size: 28rpx;
- }
- .contact-btn::after,
- .share-btn::after {
- border: none;
- }
|