123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- /* pages/distribution/rules.wxss */
- .container {
- min-height: 100vh;
- background: #f5f5f5;
- padding-bottom: 120rpx;
- }
- /* 头部样式 */
- .header {
- background: linear-gradient(135deg, #FF4D4F, #FF7875);
- padding: 40rpx 30rpx;
- text-align: center;
- }
- .header .title {
- color: #fff;
- font-size: 36rpx;
- font-weight: bold;
- }
- /* 规则内容 */
- .rules-content {
- padding: 20rpx;
- }
- .rule-section {
- background: #fff;
- border-radius: 12rpx;
- padding: 30rpx;
- margin-bottom: 20rpx;
- }
- .section-title {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .section-title .iconfont {
- font-size: 36rpx;
- margin-right: 10rpx;
- }
- .section-title text {
- font-size: 32rpx;
- color: #333;
- font-weight: bold;
- }
- .section-content {
- color: #666;
- }
- .rule-item {
- display: flex;
- align-items: flex-start;
- margin-bottom: 16rpx;
- font-size: 28rpx;
- line-height: 1.5;
- }
- .rule-item:last-child {
- margin-bottom: 0;
- }
- .rule-item .dot {
- width: 12rpx;
- height: 12rpx;
- background: #ff4d4f;
- border-radius: 50%;
- margin: 16rpx 16rpx 0 0;
- flex-shrink: 0;
- }
- /* 佣金表格 */
- .commission-table {
- margin-top: 20rpx;
- border: 1rpx solid #eee;
- border-radius: 8rpx;
- }
- .table-header {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- background: #f8f8f8;
- padding: 20rpx;
- text-align: center;
- font-weight: bold;
- font-size: 26rpx;
- color: #333;
- }
- .table-row {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- padding: 20rpx;
- text-align: center;
- font-size: 26rpx;
- color: #666;
- border-top: 1rpx solid #eee;
- }
- /* 图标颜色 */
- .icon-user { color: #1890FF; }
- .icon-money { color: #52C41A; }
- .icon-wallet { color: #722ED1; }
- .icon-info { color: #FA8C16; }
- .icon-service { color: #1890FF; }
- /* 联系客服 */
- .contact-service {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- height: 100rpx;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
- }
- .contact-service .iconfont {
- font-size: 40rpx;
- margin-right: 10rpx;
- }
- .contact-service text {
- font-size: 32rpx;
- color: #333;
- }
|