79 lines
1.9 KiB
Plaintext
79 lines
1.9 KiB
Plaintext
// @import (css) '../common/index.wxss';
|
|
@import '../common/style/index.less';
|
|
|
|
@link-color: #266fe8;
|
|
@footer-info-font-size: @font-size-s;
|
|
@footer-item-font-size: @font-size-s;
|
|
@footer-title-font-size: @font-size-m;
|
|
@footer-info-line-height: 32rpx;
|
|
@footer-item-line-height: 40rpx;
|
|
@footer-title-line-height: 48rpx;
|
|
@footer-link-list-margin-bottom: 12rpx;
|
|
@footer-icon-margin-right: 16rpx;
|
|
@footer-item-padding-left: 6rpx;
|
|
@footer-custom-item-padding: 10rpx;
|
|
@footer-icon-width: 48rpx;
|
|
@footer-icon-height: 48rpx;
|
|
@footer-title-url-width: 256rpx;
|
|
@footer-item-color: @link-color;
|
|
@footer-copyright-info-color: @text-level-4-color;
|
|
|
|
.@{prefix}-footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
|
|
&__copyright-info {
|
|
font-size: @footer-info-font-size;
|
|
line-height: @footer-info-line-height;
|
|
color: @footer-copyright-info-color;
|
|
}
|
|
|
|
&__link-list {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: @footer-link-list-margin-bottom;
|
|
}
|
|
|
|
&__link-item {
|
|
color: @footer-item-color;
|
|
font-size: @footer-item-font-size;
|
|
line-height: @footer-item-line-height;
|
|
padding-left: @footer-item-padding-left;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&__link-item:not(:last-child)::after {
|
|
content: '|';
|
|
color: @footer-item-color;
|
|
display: inline-block;
|
|
padding-left: @footer-custom-item-padding;
|
|
padding-right: @footer-custom-item-padding;
|
|
}
|
|
|
|
&__logo {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
&__icon {
|
|
width: @footer-icon-width;
|
|
height: @footer-icon-height;
|
|
margin-right: @footer-icon-margin-right;
|
|
}
|
|
|
|
&__title {
|
|
font-weight: bold;
|
|
font-size: @footer-title-font-size;
|
|
line-height: @footer-title-line-height;
|
|
font-style: italic;
|
|
}
|
|
|
|
&__title-url {
|
|
width: @footer-title-url-width;
|
|
}
|
|
}
|