mobileclient/combining.css

558 lines
9.1 KiB
CSS
Raw Permalink Normal View History

2024-02-24 14:17:04 +08:00
* {
2024-03-15 20:45:15 +08:00
margin: 0;
2024-02-24 14:17:04 +08:00
padding: 0;
font-family: HYQiHei;
list-style: none;
2024-02-29 15:18:42 +08:00
font-size: 0.14rem;
2024-02-24 14:17:04 +08:00
}
html {
font-size: 26.66666667vw;
height: 100%;
}
body {
-webkit-text-size-adjust: 100% !important;
text-size-adjust: 100% !important;
-moz-text-size-adjust: 100% !important;
font-size: 0.14rem;
height: 100%;
}
@media screen and (min-width: 900px) {
html {
transform: scale(0.3);
background: #fff;
transform-origin: 50% 0px 0px;
height: calc(100vh);
}
2024-04-12 21:24:30 +08:00
2024-02-24 14:17:04 +08:00
#app {
height: 6rem !important;
background: #f4f6f9;
overflow-y: scroll;
}
2024-04-12 21:24:30 +08:00
2024-02-24 14:17:04 +08:00
.mask {
height: 6rem !important;
}
}
#app {
width: 100%;
height: 100%;
box-sizing: border-box;
overflow: scroll;
}
.content {
min-height: 100%;
2024-03-15 19:45:47 +08:00
background: #ff4830;
2024-02-24 14:17:04 +08:00
position: relative;
}
2024-03-15 19:45:47 +08:00
.content .banner {
width: 100%;
max-height: 100%;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box {
padding: 0.16rem;
padding-top: 0;
}
.content .box .goods-box {
background-size: 100% 100%;
min-height: 1.8rem;
width: 100%;
padding-top: 0.2rem;
2024-03-01 23:58:25 +08:00
box-sizing: border-box;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .goods-box .title {
text-align: center;
2024-03-25 21:34:39 +08:00
color: #ff3024;
2024-03-15 19:45:47 +08:00
font-weight: bold;
font-size: 0.16rem;
padding-left: 0.12rem;
box-sizing: border-box;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .goods-box .notis {
margin: 0 0 0.1rem;
2024-03-25 21:34:39 +08:00
color: #ffd3d8;
2024-03-15 19:45:47 +08:00
text-align: center;
font-size: 0.13rem;
}
.content .box .g-b-u {
overflow-x: scroll;
margin-top: 0.28rem;
margin-bottom: 0.12rem;
width: 94%;
margin-left: 0.14rem;
2024-02-24 14:17:04 +08:00
box-sizing: border-box;
2024-03-15 19:45:47 +08:00
list-style: none;
display: -webkit-box;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g-b-u::-webkit-scrollbar {
display: none;
2024-03-01 23:58:25 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g-b-u li {
background-size: 100% 100%;
height: 1.16rem;
2024-04-19 15:37:18 +08:00
width: 1rem;
2024-03-15 19:45:47 +08:00
margin-left: 0.1rem;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g-b-u li:first-child {
margin-left: 0;
2024-03-01 23:58:25 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g-b-u li .g-b-u-t {
2024-03-25 21:34:39 +08:00
color: #fd4b34;
2024-03-15 19:45:47 +08:00
font-size: 0.12rem;
text-align: center;
2024-03-01 23:58:25 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g-b-u li .reduce {
text-align: center;
2024-03-25 21:34:39 +08:00
color: #ff877d;
2024-03-01 23:58:25 +08:00
font-size: 0.12rem;
}
2024-03-15 19:45:47 +08:00
.content .box .g-b-u li .money {
text-align: center;
2024-03-25 21:34:39 +08:00
color: #fc4a2f;
font-size: 0.2rem;
2024-03-15 19:45:47 +08:00
font-weight: bold;
margin: 0.02rem 0;
}
.content .box .g-b-u li .money span {
2024-02-24 14:17:04 +08:00
font-size: 0.12rem;
2024-03-15 19:45:47 +08:00
font-weight: 400;
display: inline-block;
margin-right: -0.04rem;
2024-03-01 23:58:25 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g-b-u li .g-b-but {
font-size: 0.12rem;
text-align: center;
2024-03-15 23:08:50 +08:00
width: 70%;
2024-03-25 21:34:39 +08:00
color: #fc4934;
2024-03-15 23:08:50 +08:00
background: #ffe9e9;
padding: 0.04rem 0.04rem;
border-radius: 0.2rem;
margin: 0 auto;
margin-top: 0.22rem;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g_b_title {
color: #fff;
font-size: 0.18rem;
2024-02-24 14:17:04 +08:00
display: flex;
align-items: center;
2024-03-15 19:45:47 +08:00
margin: 0.2rem;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g_b_title img {
width: 0.26rem;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g_b_title img:first-child {
margin-right: 0.1rem;
transform: rotateY(360deg);
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .g_b_title img:last-child {
margin-left: 0.1rem;
2024-02-24 14:17:04 +08:00
transform: rotateY(180deg);
}
2024-03-15 19:45:47 +08:00
.content .box .box-cotent,
.content .box .box-footer {
margin-bottom: 0.12rem;
}
.content .box .time {
font-size: 0.12rem;
margin-top: 0.08rem;
text-align: center;
color: #fff;
width: 100%;
margin: 0 auto;
line-height: 0.18rem;
2024-04-05 11:14:40 +08:00
padding: 0.05rem 0;
2024-03-15 19:45:47 +08:00
}
.content .box .box-footer {
display: flex;
flex-direction: column;
}
2024-02-24 19:17:51 +08:00
.content .box .box-footer .group_image {
max-width: 100%;
max-height: 100%;
display: block;
margin: 0 auto;
}
2024-02-24 14:17:04 +08:00
.content .box .box-footer .b-f-i {
2024-03-25 21:34:39 +08:00
color: #ff4901;
2024-02-24 14:17:04 +08:00
line-height: 0.24rem;
2024-02-24 19:17:51 +08:00
min-height: 2rem;
2024-02-24 14:17:04 +08:00
}
2024-03-15 19:45:47 +08:00
.content .box .box-footer .b-f-i p {
font-size: 0.12rem;
}
.content .box .box-footer .b-f-b {
background-size: 100% 100%;
padding: 0 0.24rem;
}
.content .box .box-footer .b-f-img {
width: 100%;
max-height: 100%;
}
2024-02-24 14:17:04 +08:00
.content .box .box-cotent {
display: flex;
flex-direction: column;
}
.content .box .box-cotent input {
2024-03-15 19:45:47 +08:00
width: 100%;
2024-02-24 14:17:04 +08:00
border: 0;
outline: 0;
background: #f8f9fd;
height: 0.42rem;
border-radius: 0.2rem;
padding: 0 0.2rem;
box-sizing: border-box;
2024-03-01 23:58:25 +08:00
display: block;
margin: 0 auto;
margin-bottom: 0.14rem;
2024-02-24 14:17:04 +08:00
}
.content .box .box-cotent .but {
2024-03-15 19:45:47 +08:00
margin-top: 0.05rem;
width: 100%;
2024-04-09 16:22:46 +08:00
height: 0.66rem;
2024-04-12 21:24:30 +08:00
background: url("https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/combining/ysf_but.png") no-repeat;
2024-04-09 16:22:46 +08:00
background-size: 100%;
border: none;
2024-04-05 11:14:40 +08:00
}
.ff-btn {
margin-top: 0.05rem;
width: 100%;
height: 0.48rem;
2024-03-15 19:45:47 +08:00
margin-bottom: 0.08rem;
2024-04-12 21:24:30 +08:00
background: url("https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/combining/zh-btn-hs.png") no-repeat;
2024-04-05 11:14:40 +08:00
background-size: 100%;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
.ff-text {
font-weight: 500;
font-size: 0.18rem;
color: #666666;
text-align: center;
line-height: 0.48rem;
2024-02-24 14:17:04 +08:00
}
.prompt {
display: inline-block;
min-width: 50%;
padding: 0.08rem;
background: transparent;
border-radius: 0.2rem;
color: #fff;
position: fixed;
top: 20%;
left: -150%;
margin-left: -25%;
text-align: center;
font-size: 0.14rem;
transition: left 0.2s;
z-index: 99999;
}
.backIcon {
width: 0.4rem;
position: fixed;
left: 0.1rem;
top: 0.1rem;
z-index: 99999;
}
.proactive {
left: 47%;
background: rgba(0, 0, 0, 0.7);
}
2024-03-25 16:48:56 +08:00
.countdown {
position: absolute;
2024-03-25 21:34:39 +08:00
top: 1.5%;
2024-03-25 16:48:56 +08:00
left: 7%;
display: flex;
align-items: center;
color: #fff;
}
.countdown p {
margin: 0.05rem;
background: url("https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/reduce/check_1.png");
background-size: 100% 100%;
2024-03-25 19:47:06 +08:00
min-width: 0.18rem;
padding: 0.028rem;
2024-03-25 16:48:56 +08:00
}
2024-02-24 14:17:04 +08:00
.mask {
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
top: 0;
left: 0;
2024-02-24 19:17:51 +08:00
z-index: 9999;
2024-02-24 14:17:04 +08:00
}
.mask .model {
width: 80%;
background-color: #fff;
border-radius: 0.12rem;
padding: 0.16rem;
box-sizing: border-box;
margin-top: -2rem;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.mask .model .m-title {
2024-03-25 21:34:39 +08:00
font-size: 0.18rem;
2024-02-24 14:17:04 +08:00
color: #000;
}
.mask .model .m-icon {
width: 50%;
max-height: 100%;
}
.mask .model .m-msg {
color: #666666;
padding: 0.2rem 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 0.4rem;
}
.mask .model .m-but {
font-size: 0.16rem;
color: #fff;
2024-03-01 23:58:25 +08:00
background-color: #e52600;
2024-02-24 14:17:04 +08:00
border-radius: 0.2rem;
height: 0.42rem;
border: 0;
outline: 0;
width: 50%;
margin: 0 auto;
}
2024-04-05 11:14:40 +08:00
.ani_dot {
font-family: simsun;
font-size: 0.3rem;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
:root .ani_dot {
/* 这里使用Hack是因为IE6~IE8浏览器下 vertical-align解析不规范值为bottom或其他会改变按钮的实际高度*/
display: inline-block;
width: 1.5em;
vertical-align: bottom;
overflow: hidden;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
@-webkit-keyframes dot {
0% {
width: 0;
margin-right: 1.5em;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
33% {
width: 0.5em;
margin-right: 1em;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
66% {
width: 1em;
margin-right: 0.5em;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
100% {
width: 1.5em;
margin-right: 0;
}
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
.ani_dot {
-webkit-animation: dot 3s infinite step-start;
}
@keyframes dot {
0% {
width: 0;
margin-right: 1.5em;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
33% {
width: 0.5em;
margin-right: 1em;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
66% {
width: 1em;
margin-right: 0.5em;
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
100% {
width: 1.5em;
margin-right: 0;
}
}
2024-04-12 21:24:30 +08:00
2024-04-05 11:14:40 +08:00
.ani_dot {
animation: dot 3s infinite step-start;
}
/* 弹窗 */
.tip-pop {
width: 100%;
height: 100vh;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
background: rgba(0, 0, 0, 0.5);
}
.tip-main {
width: 2.835rem;
min-height: 1.5rem;
margin: 0 auto;
2024-04-06 16:42:47 +08:00
position: absolute;
top: 20%;
2024-04-05 11:14:40 +08:00
background-color: #fff;
border-radius: 0.15rem;
text-align: center;
}
.tip-pop-head {
width: 2.835rem;
height: 0.76rem;
2024-04-12 21:24:30 +08:00
background: url("https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/combining/zh-pop.png") no-repeat;
2024-04-05 11:14:40 +08:00
background-size: 100%;
display: flex;
justify-content: center;
}
.tip-pop-dd {
width: 0.61rem;
height: 0.7rem;
margin-top: -0.25rem;
}
.tip-title {
font-weight: 500;
font-size: 0.16rem;
color: #fd5b23;
text-align: center;
}
.tip-card-status {
font-weight: 400;
font-size: 0.16rem;
color: #333333;
text-align: center;
padding: 0.15rem 0;
}
.tip-card-text {
font-weight: 400;
font-size: 0.13rem;
color: #666666;
text-align: center;
}
.tip-btn {
background: #fd5b23;
border-radius: 0.29rem;
border: none;
color: #fff;
text-align: center;
margin: 0.2rem auto;
padding: 0.05rem 0.2rem;
}
2024-04-12 21:24:30 +08:00
2024-04-06 13:54:28 +08:00
.err-list-p {
2024-04-06 17:12:58 +08:00
padding: 0.04rem;
font-size: 0.14rem;
2024-04-06 13:54:28 +08:00
}
2024-04-10 18:00:34 +08:00
.content .box .g-b-u li .g-b-u-t-new {
color: #fd4b34;
font-size: 0.12rem;
text-align: center;
background: #ffe2a5;
border-radius: 0px 0px 0.07rem 0.07rem;
padding: 0.02rem 0.04rem;
2024-04-10 20:52:22 +08:00
position: relative;
top: -2px;
2024-04-10 18:00:34 +08:00
}
.content .g-b-but-new-box {
width: 0.84rem;
height: 0.3rem !important;
color: #fc4934;
background-color: #ffe2a5;
border-radius: 0.2rem;
line-height: 0.3rem;
margin: 0.06rem auto 0 auto;
}
.content .g-b-but-new {
font-size: 0.12rem;
text-align: center;
width: 0.84rem;
height: 0.3rem !important;
color: #fc4934;
background-color: #ffe2a5;
border-radius: 0.2rem;
line-height: 0.3rem;
margin-bottom: 0.2rem;
}
.demo-swiper1 {
height: 0.3rem !important;
}
.demo-swiper-wrapper {
display: flex;
flex-direction: column;
}
.demo-swiper-slide {
height: 0.3rem !important;
2024-04-12 21:24:30 +08:00
}