13:51 25/12/2023
This commit is contained in:
806
assets/css/style-mb.css
Normal file
806
assets/css/style-mb.css
Normal file
@@ -0,0 +1,806 @@
|
||||
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: #c5c5c5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
border-radius: 30px;
|
||||
background-color: #c5c5c5;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #5d5d5d;
|
||||
border-radius: 30px;
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.7, #5d5d5d), color-stop(0.5, transparent), to(transparent));
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: "Inter", sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #000;
|
||||
font-family: "Inter", sans-serif;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
font-weight: normal;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 100%;
|
||||
font-family: "Inter", sans-serif;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none !important;
|
||||
color: var(--text-black);
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
content: "";
|
||||
clear: both;
|
||||
}
|
||||
|
||||
ul,
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ul,
|
||||
.ol {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.d-flex {
|
||||
display: flex !important;
|
||||
}
|
||||
|
||||
.d-block {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.flex-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.align-items {
|
||||
align-items: center !important;
|
||||
}
|
||||
|
||||
.space-between {
|
||||
justify-content: space-between !important;
|
||||
}
|
||||
|
||||
.space-center {
|
||||
justify-content: center !important;
|
||||
}
|
||||
|
||||
.d-block {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.flex-direction {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.line-clamp-1 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-3 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 3;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-4 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 4;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-5 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 5;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
padding: 0 10px;
|
||||
margin: 0 auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.container-mb {
|
||||
max-width: 640px;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.header {
|
||||
background: #fff;
|
||||
box-shadow: 3px 0px 11.4px 0px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.header .logo {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.header .box-user {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.header .box-user .txt {
|
||||
font-size: 16px;
|
||||
color: #555;
|
||||
}
|
||||
.header .box-user .fa-user-circle-o {
|
||||
color: #555;
|
||||
font-size: 23px;
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
.homepage .ground-list-product {
|
||||
margin: 20px 0;
|
||||
}
|
||||
.homepage .box-list-product {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.homepage .box-list-product .title {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
background: var(--Linear, linear-gradient(0deg, #8b0009 0%, #f80009 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
text-align: center;
|
||||
padding-bottom: 12px;
|
||||
position: relative;
|
||||
}
|
||||
.homepage .box-list-product .title::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
width: 73px;
|
||||
height: 1.5px;
|
||||
background: linear-gradient(0deg, #8b0009 0%, #f80009 100%);
|
||||
left: 50%;
|
||||
bottom: 8px;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
.homepage .box-list-product .list-product {
|
||||
margin-right: -12px;
|
||||
}
|
||||
|
||||
.product-item {
|
||||
margin-right: 12px;
|
||||
margin-bottom: 10px;
|
||||
width: calc(50% - 12px);
|
||||
}
|
||||
.product-item .product-image {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 230px;
|
||||
border: 1px solid #eaeaea;
|
||||
margin-bottom: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.product-item .product-image img {
|
||||
display: block;
|
||||
margin: auto;
|
||||
height: 100%;
|
||||
-o-object-fit: contain;
|
||||
object-fit: contain;
|
||||
}
|
||||
.product-item .product-name {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
height: 45px;
|
||||
text-align: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.product-item .product-cost {
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
color: #343434;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.product-item .starting-price {
|
||||
display: block;
|
||||
color: #e70000;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.product-item .deal-time-holder {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.product-item .product-time-holder {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.product-item .product-time-holder .item-time {
|
||||
margin-left: 10px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
flex-direction: column;
|
||||
border: 0.559px solid var(--Linear, #ff3d00);
|
||||
border-radius: 2.238px;
|
||||
background: #fff;
|
||||
}
|
||||
.product-item .product-time-holder .item-time b {
|
||||
width: 20px;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
font-size: 12px;
|
||||
background: var(--Linear, linear-gradient(90deg, #ff3d00 3.91%, #ffa800 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.product-item .product-time-holder .item-time b::after {
|
||||
content: ":";
|
||||
position: absolute;
|
||||
right: -8px;
|
||||
background: var(--Linear, linear-gradient(90deg, #ff3d00 3.91%, #ffa800 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.product-item .product-time-holder .item-time:last-child b {
|
||||
margin: 0;
|
||||
}
|
||||
.product-item .product-time-holder .item-time:last-child b::after {
|
||||
content: none;
|
||||
}
|
||||
.product-item .btn-auction {
|
||||
display: block;
|
||||
border-radius: 24px;
|
||||
border: 1px solid #3194fc;
|
||||
height: 40px;
|
||||
line-height: 38px;
|
||||
text-align: center;
|
||||
color: #3194fc;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.product-item .btn-auction:hover {
|
||||
background: #3194fc;
|
||||
color: #fff;
|
||||
}
|
||||
.product-item .deal-time-holder.end .txt {
|
||||
border-radius: 25px;
|
||||
background: #ededed;
|
||||
height: 24px;
|
||||
padding: 0 15px;
|
||||
line-height: 24px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.box-questions {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.box-questions .content-questions {
|
||||
margin: 12px 0;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.box-questions .title {
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
color: #1f8cff;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
padding: 10px 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.box-questions .content {
|
||||
padding: 0 10px 10px 10px;
|
||||
}
|
||||
.box-questions [data-toggle=collapse].collapsed .fa:before {
|
||||
content: "\f105";
|
||||
font-size: 20px;
|
||||
}
|
||||
.box-questions [data-toggle=collapse] .fa:before {
|
||||
content: "\f107";
|
||||
font-size: 20px;
|
||||
}
|
||||
.box-questions .card {
|
||||
margin-bottom: 12px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #b8b8b8;
|
||||
background: #fff;
|
||||
}
|
||||
.box-questions .card-header {
|
||||
background: #fff;
|
||||
border-radius: 5px;
|
||||
border-bottom: 0;
|
||||
padding: 10px 10px 5px 10px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: #3a3a3a;
|
||||
}
|
||||
.box-questions .card-body {
|
||||
padding: 0 10px 10px 10px;
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.box-questions .card-link.collapsed .card-header {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.footer .footer-phone {
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.footer .footer-phone a {
|
||||
width: 280px;
|
||||
margin: 0 auto;
|
||||
border-radius: 25px;
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
.footer .footer-phone .txt {
|
||||
height: 50px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
padding: 10px 50px 10px 20px;
|
||||
color: #1c4a10;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
line-height: 17px;
|
||||
position: relative;
|
||||
background: #f2ffea;
|
||||
background-clip: padding-box;
|
||||
-webkit-background-clip: padding-box;
|
||||
border: 2px solid transparent;
|
||||
margin: auto;
|
||||
border-radius: 25px;
|
||||
border: 1px solid #03ae00;
|
||||
}
|
||||
.footer .footer-phone .txt::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: -1;
|
||||
border-radius: inherit;
|
||||
background-image: linear-gradient(to right, #03ae00, #f2ffea);
|
||||
}
|
||||
.footer .footer-phone img {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
}
|
||||
.footer .footer-bottom {
|
||||
background: #f3f3f3;
|
||||
padding: 15px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.footer .footer-bottom h3,
|
||||
.footer .footer-bottom p {
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
margin-bottom: 2px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
background: #fff;
|
||||
padding: 0;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.breadcrumb ol {
|
||||
width: 100%;
|
||||
float: left;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.breadcrumb ol li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.breadcrumb ol li a span {
|
||||
font-size: 14px;
|
||||
line-height: 45px;
|
||||
float: left;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.breadcrumb ol li a span:hover {
|
||||
color: var(--color-hover);
|
||||
}
|
||||
|
||||
.breadcrumb ol li a:last-child {
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.breadcrumb ol li h1 {
|
||||
font-size: 15px;
|
||||
line-height: 40px;
|
||||
float: left;
|
||||
font-weight: 400;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.breadcrumb ol li i {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
float: left;
|
||||
line-height: 45px;
|
||||
}
|
||||
|
||||
.breadcrumb ol li:last-child i {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.breadcrumb i {
|
||||
color: #333;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.background-white {
|
||||
background: #fff;
|
||||
padding: 10px;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0px 0px 16px 0px rgba(141, 141, 141, 0.25);
|
||||
}
|
||||
|
||||
.page-product-detail .box-product-info {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.page-product-detail .product-image {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
height: 390px;
|
||||
overflow: hidden;
|
||||
border: 1px solid #eaeaea;
|
||||
}
|
||||
.page-product-detail .product-image img {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.page-product-detail .info-right {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.page-product-detail .info-right .name {
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.page-product-detail .info-right .box-price-normal {
|
||||
font-size: 16px;
|
||||
}
|
||||
.page-product-detail .info-right .name-price {
|
||||
margin-right: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.page-product-detail .info-right .current-highest-price {
|
||||
margin: 10px 0;
|
||||
}
|
||||
.page-product-detail .info-right .current-highest-price b {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
color: #e70000;
|
||||
}
|
||||
.page-product-detail .info-right .qt-view {
|
||||
margin-bottom: 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
.page-product-detail .info-right .qt-view b {
|
||||
color: #0061d3;
|
||||
font-size: 18px;
|
||||
}
|
||||
.page-product-detail .info-right .box-time {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.page-product-detail .info-right .box-time span {
|
||||
font-size: 16px;
|
||||
}
|
||||
.page-product-detail .info-right .box-time .item-time {
|
||||
position: relative;
|
||||
margin-left: 20px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
flex-direction: column;
|
||||
border: 1.5px solid transparent;
|
||||
background: #fff;
|
||||
background-clip: padding-box;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.page-product-detail .info-right .box-time .item-time::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
margin: -1.5px;
|
||||
border-radius: inherit;
|
||||
background: linear-gradient(to right, #ff3d00, #ffa800);
|
||||
}
|
||||
.page-product-detail .info-right .box-time .item-time b {
|
||||
width: 38px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
font-size: 20px;
|
||||
}
|
||||
.page-product-detail .info-right .box-time .item-time b::after {
|
||||
content: ":";
|
||||
position: absolute;
|
||||
right: -15px;
|
||||
font-size: 24px;
|
||||
background: var(--Linear, linear-gradient(90deg, #ff3d00 3.91%, #ffa800 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.page-product-detail .info-right .box-time .item-time:last-child b {
|
||||
margin: 0;
|
||||
}
|
||||
.page-product-detail .info-right .box-time .item-time:last-child b::after {
|
||||
content: none;
|
||||
}
|
||||
.page-product-detail .info-right .box-input-price {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.page-product-detail .info-right .box-input-price span {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.page-product-detail .info-right .box-input-price .input-price {
|
||||
height: 50px;
|
||||
width: 135px;
|
||||
border: 1px solid #b1b1b1;
|
||||
border-radius: 4px;
|
||||
font-size: 20px;
|
||||
color: #e70000;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
font-weight: 700;
|
||||
}
|
||||
.page-product-detail .info-right .box-input-price a {
|
||||
display: block;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-left: 6px;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
border: 1px solid #b1b1b1;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.page-product-detail .info-right .box-input-price a i {
|
||||
color: #777474;
|
||||
}
|
||||
.page-product-detail .info-right .box-input-price a.plus-price {
|
||||
position: relative;
|
||||
border: 1.5px solid transparent;
|
||||
background: #fff;
|
||||
background-clip: padding-box;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.page-product-detail .info-right .box-input-price a.plus-price::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
margin: -1.5px;
|
||||
border-radius: inherit;
|
||||
background: linear-gradient(to right, #ff3d00, #ffa800);
|
||||
}
|
||||
.page-product-detail .info-right .box-input-price a.plus-price i {
|
||||
color: #ff4d00;
|
||||
}
|
||||
.page-product-detail .info-right .btn-add-auction {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 65px;
|
||||
background: var(--Linear, linear-gradient(0deg, #8b0009 0%, #f80009 100%));
|
||||
border-radius: 30px;
|
||||
margin: 20px 0;
|
||||
text-align: center;
|
||||
line-height: 65px;
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
}
|
||||
.page-product-detail .box-spec-deposit {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.page-product-detail .box-specification {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.page-product-detail .box-auction-deposit {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.page-product-detail .box-participant-list .title {
|
||||
font-size: 20px;
|
||||
color: #e70000;
|
||||
font-weight: 700;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 1px solid #7a7a7a;
|
||||
}
|
||||
.page-product-detail .box-participant-list td {
|
||||
border-bottom: 1px solid #e6e6e6;
|
||||
padding: 10px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.page-product-detail .box-participant-list tr:first-child td img {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.page-product-detail .box-participant-list tr:first-child td span {
|
||||
color: #2546bb;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.page-product-detail .box-participant-list .content {
|
||||
max-height: 180px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
.page-product-detail .box-specification .title {
|
||||
font-size: 20px;
|
||||
color: #e70000;
|
||||
font-weight: 700;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 1px solid #dadada;
|
||||
}
|
||||
.page-product-detail .box-specification .content {
|
||||
position: relative;
|
||||
height: 287px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.page-product-detail .box-specification .content::after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
|
||||
width: 100%;
|
||||
height: 65px;
|
||||
z-index: 1;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
.page-product-detail .box-specification .more {
|
||||
display: block;
|
||||
width: 110px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
border: 1px solid #3e5ed0;
|
||||
border-radius: 30px;
|
||||
color: #3e5ed0;
|
||||
font-weight: 500;
|
||||
}
|
||||
.page-product-detail .box-auction-deposit .title {
|
||||
font-size: 20px;
|
||||
color: #e70000;
|
||||
font-weight: 700;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 1px solid #dadada;
|
||||
}
|
||||
.page-product-detail .box-auction-deposit .content p {
|
||||
margin-bottom: 5px;
|
||||
line-height: 23px;
|
||||
}
|
||||
.page-product-detail .box-auction-deposit .content img {
|
||||
height: 120px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.page-product-detail .btn-add-auction.coming {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
background: linear-gradient(269deg, #ff3d00 3.91%, #ffa800 100%) !important;
|
||||
}
|
||||
.page-product-detail .btn-add-auction.coming img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
}
|
||||
.page-product-detail .btn-add-auction.coming span {
|
||||
margin-right: 10px;
|
||||
margin-left: 30px;
|
||||
font-size: 18px;
|
||||
}
|
||||
.page-product-detail .btn-add-auction.coming .item-time {
|
||||
position: relative;
|
||||
margin-right: 12px;
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.page-product-detail .btn-add-auction.coming .item-time::before {
|
||||
position: absolute;
|
||||
content: ":";
|
||||
right: -9px;
|
||||
top: -2px;
|
||||
}
|
||||
.page-product-detail .btn-add-auction.coming .item-time:last-child::before {
|
||||
display: none;
|
||||
}
|
||||
.page-product-detail .btn-add-auction.ending {
|
||||
background: linear-gradient(0deg, #8e8e8e 0%, #d5d5d5 100%);
|
||||
color: #343434;
|
||||
}
|
||||
.page-product-detail .price-win {
|
||||
margin: 12px 0;
|
||||
}
|
||||
.page-product-detail .price-win b {
|
||||
color: #e70000;
|
||||
font-size: 16px;
|
||||
}
|
||||
.page-product-detail .user-win {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.page-product-detail .user-win .name {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.page-product-detail .user-win span {
|
||||
color: #0061d3;
|
||||
font-weight: 700;
|
||||
font-size: 18px;
|
||||
margin-left: 5px;
|
||||
}/*# sourceMappingURL=style-mb.css.map */
|
||||
Reference in New Issue
Block a user