123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- /* 底部操作菜单 */
- .page-bottom {
- position: fixed;
- bottom: 0rpx;
- z-index: 95;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- width: 750rpx;
- height: 120rpx;
- background-color: #ffffff;
- /* box-shadow: 0 0 20rpx 0 rgba(0, 0, 0, 0.5);
- border-radius: 16rpx; */
- }
- .page-bottom .p-b-btn {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- font-size: 24rpx;
- color: #606266;
- width: 96rpx;
- height: 80rpx;
- }
- .page-bottom .p-b-btn .iconfont {
- font-size: 40rpx;
- line-height: 48rpx;
- color: #909399;
- }
- .page-bottom .p-b-btn.active,
- .page-bottom .p-b-btn.active .iconfont {
- color: #5dbc7c;
- }
- .page-bottom .p-b-btn .iconlikefill {
- font-size: 46rpx;
- }
- .page-bottom .p-b-btn image {
- width: 56rpx;
- height: 58rpx;
- }
- .page-bottom .action-btn-group {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- height: 76rpx;
- -webkit-border-radius: 100px;
- border-radius: 100px;
- overflow: hidden;
- margin-left: 20rpx;
- position: relative;
- }
- .page-bottom .action-btn-group:after {
- content: '';
- position: absolute;
- top: 50%;
- right: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- height: 28rpx;
- width: 0;
- border-right: 1px solid rgba(255, 255, 255, 0.5);
- }
- .page-bottom .action-btn-group .action-btn {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- width: 270rpx;
- height: 100%;
- font-size: 28rpx;
- padding: 0;
- -webkit-border-radius: 0;
- border-radius: 0;
- background: transparent;
- }
- .page-bottom .action-btn-group .action-btn.buy-now-btn {
- background-color: #303e49;
- }
- .page-bottom .action-btn-group .action-btn.add-cart-btn {
- background-color: #5dbc7c;
- }
- .p-b-btn {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- font-size: 24rpx;
- color: #606266;
- width: 96rpx;
- height: 80rpx;
- }
- .p-b-btn .iconfont {
- font-size: 40rpx;
- line-height: 48rpx;
- color: #909399;
- }
- .p-b-btn.active,
- .p-b-btn.active .iconfont {
- color: #5dbc7c;
- }
- .p-b-btn .icon-fenxiang2 {
- font-size: 42rpx;
- -webkit-transform: translateY(-2rpx);
- transform: translateY(-2rpx);
- }
- .p-b-btn .iconlikefill {
- font-size: 46rpx;
- }
|