真食物配套的电商小程序.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

176 lines
3.2 KiB

@charset "UTF-8";
/**
*相关初始化
*/
.font-color-red {
color: #2DB5AE !important;
}
.bg-color-red {
background-color: #2DB5AE !important;
color: #ffffff !important;
}
.icon-color {
color: #2DB5AE;
}
.cart-color {
color: #2DB5AE !important;
border: 1px solid #2DB5AE !important;
}
/* padding20 */
.padding20 {
padding: 20rpx;
}
/* pad20 */
.pad20 {
padding: 0 20rpx;
}
/* padding30 */
.padding30 {
padding: 30rpx;
}
/*pad30 */
.pad30 {
padding: 0 30rpx;
}
/* layout */
.acea-row {
display: flex;
flex-wrap: wrap;
/* 辅助类 */
}
.acea-row.row-middle {
align-items: center;
}
.acea-row.row-top {
align-items: flex-start;
}
.acea-row.row-bottom {
align-items: flex-end;
}
.acea-row.row-center {
justify-content: center;
}
.acea-row.row-right {
justify-content: flex-end;
}
.acea-row.row-left {
justify-content: flex-start;
}
.acea-row.row-between {
justify-content: space-between;
}
.acea-row.row-around {
justify-content: space-around;
}
.acea-row.row-column-around {
flex-direction: column;
justify-content: space-around;
}
.acea-row.row-column {
flex-direction: column;
}
.acea-row.row-column-between {
flex-direction: column;
justify-content: space-between;
}
/* 上下左右垂直居中 */
.acea-row.row-center-wrapper {
align-items: center;
justify-content: center;
}
/* 上下两边居中对齐 */
.acea-row.row-between-wrapper {
align-items: center;
justify-content: space-between;
}
.acea-row.row-center-column {
flex-direction: column;
align-items: center;
justify-content: center;
}
/* 轮播图 */
.slider-banner {
position: relative;
width: 100%;
/* height:750rpx; */
overflow: hidden;
}
.slider-banner .swiper-container {
height: 100%;
}
.slider-banner image {
display: block;
width: 100%;
height: 100%;
}
.start {
width: 122rpx;
height: 30rpx;
background-image: url("https://wx.yixiang.co/static/images/start.png");
background-repeat: no-repeat;
background-size: 122rpx auto;
}
.start.star5 {
background-position: 0 3rpx;
}
.start.star4 {
background-position: 0 -30rpx;
}
.start.star3 {
background-position: 0 -70rpx;
}
.start.star2 {
background-position: 0 -105rpx;
}
.start.star1 {
background-position: 0 -140rpx;
}
.start.star0 {
background-position: 0 -175rpx;
}
/* 单选框和多选框 */
.Loads {
font-size: 24rpx;
font-family: PingFang SC;
font-weight: 500;
color: #3A3A3C;
height: 80rpx;
}
.Loads .iconfont {
font-size: 30rpx;
margin-right: 10rpx;
height: 32rpx;
line-height: 32rpx;
}
/*加载动画*/
@keyframes load {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.loadingpic {
animation: load 3s linear 1s infinite;
}
.loading {
animation: load linear 1s infinite;
}
/* 多选框样式 */
checkbox .wx-checkbox-input {
width: 40rpx;
height: 40rpx;
border-radius: 50% !important;
color: #ffffff !important;
border: 2rpx solid #2DB5AE !important;
box-sizing: border-box;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
border: none !important;
color: #fff;
background: linear-gradient(135deg, #39D396 0%, #1B8DCC 100%);
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
font-size: 28rpx;
}