2935 lines
66 KiB
SCSS
2935 lines
66 KiB
SCSS
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
::-webkit-scrollbar-track {
|
|
background-color: #f5f5f5;
|
|
border-radius: 10px;
|
|
}
|
|
::-webkit-scrollbar {
|
|
width: 7px;
|
|
height: 5px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #a4a4a4;
|
|
border-radius: 20px;
|
|
background-image: -webkit-gradient(
|
|
linear,
|
|
0 0,
|
|
0 100%,
|
|
color-stop(0.7, #a4a4a4),
|
|
color-stop(0.5, transparent),
|
|
to(transparent)
|
|
);
|
|
}
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
font-family: "Kanit", sans-serif;
|
|
}
|
|
body {
|
|
color: #222;
|
|
font-family: "Kanit", sans-serif;
|
|
font-size: 15px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
&.active {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
html {
|
|
font-size: 100%;
|
|
font-family: "Kanit", sans-serif;
|
|
}
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #000;
|
|
}
|
|
.clearfix {
|
|
content: "";
|
|
clear: both;
|
|
}
|
|
li,
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
.ol,
|
|
.ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
.d-flex {
|
|
display: -webkit-box !important;
|
|
display: -ms-flexbox !important;
|
|
display: flex !important;
|
|
}
|
|
.d-block {
|
|
display: block;
|
|
}
|
|
.flex-wrap {
|
|
-ms-flex-wrap: wrap !important;
|
|
flex-wrap: wrap !important;
|
|
}
|
|
.text-center {
|
|
text-align: center !important;
|
|
}
|
|
.align-items {
|
|
-webkit-box-align: center !important;
|
|
-ms-flex-align: center !important;
|
|
align-items: center !important;
|
|
}
|
|
.space-between {
|
|
-webkit-box-pack: justify !important;
|
|
-ms-flex-pack: justify !important;
|
|
justify-content: space-between !important;
|
|
}
|
|
.space-center {
|
|
-webkit-box-pack: center !important;
|
|
-ms-flex-pack: center !important;
|
|
justify-content: center !important;
|
|
}
|
|
.d-block {
|
|
display: block !important;
|
|
}
|
|
.d-none {
|
|
display: none !important;
|
|
}
|
|
.flex-direction {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
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;
|
|
}
|
|
|
|
.container-mb {
|
|
padding: 0;
|
|
max-width: 430px;
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
}
|
|
.container {
|
|
padding: 0 10px;
|
|
max-width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.header {
|
|
background: #166dd8;
|
|
padding: 6px 0;
|
|
transition: 0.5s;
|
|
top: -50px;
|
|
.logo {
|
|
width: 66px;
|
|
img {
|
|
height: 26px;
|
|
display: block;
|
|
}
|
|
}
|
|
.header-right {
|
|
.item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 10px;
|
|
img {
|
|
width: 14px;
|
|
display: block;
|
|
}
|
|
span {
|
|
color: #fff;
|
|
margin-left: 3px;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
}
|
|
i {
|
|
color: #fff;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
&.header-fixed {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 999;
|
|
}
|
|
}
|
|
|
|
.homepage {
|
|
.banner {
|
|
width: 100%;
|
|
display: block;
|
|
img {
|
|
display: block;
|
|
height: 100%;
|
|
}
|
|
}
|
|
.box-top-auction {
|
|
margin-top: 15px;
|
|
.title {
|
|
width: 295px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
background: #ea3e00;
|
|
color: #fff;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
border-radius: 26px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.list-auction {
|
|
padding-bottom: 40px;
|
|
}
|
|
}
|
|
.box-list-auction {
|
|
margin-top: 40px;
|
|
.background-auction {
|
|
background: #166dd8;
|
|
border-radius: 15px;
|
|
padding: 10px;
|
|
}
|
|
.title {
|
|
height: 60px;
|
|
width: 100%;
|
|
text-align: center;
|
|
line-height: 60px;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
background: #f1b510;
|
|
border-radius: 35px;
|
|
color: #fff;
|
|
margin: -45px auto auto auto;
|
|
}
|
|
.main-title {
|
|
margin-top: 15px;
|
|
.left {
|
|
text-align: center;
|
|
p {
|
|
font-size: 20px;
|
|
line-height: 29px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
}
|
|
span {
|
|
color: #fff;
|
|
font-size: 13px;
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
.box-time {
|
|
display: flex;
|
|
color: #fff;
|
|
span {
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
.item-time b {
|
|
width: 22px;
|
|
height: 22px;
|
|
background: #000000;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
line-height: 22px;
|
|
}
|
|
.more-all {
|
|
color: #fff;
|
|
text-align: right;
|
|
display: block;
|
|
margin-top: 5px;
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
.item-auction {
|
|
margin-bottom: 10px;
|
|
}
|
|
.list-auction {
|
|
margin-top: 15px;
|
|
}
|
|
.box-auction {
|
|
margin-bottom: 30px;
|
|
&.coming-soon {
|
|
margin-bottom: 0;
|
|
.item-auction:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-time {
|
|
display: flex;
|
|
align-items: center;
|
|
.item-time {
|
|
margin-left: 12px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
}
|
|
.item-time b {
|
|
width: 16px;
|
|
height: 16px;
|
|
line-height: 16px;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
position: relative;
|
|
border-radius: 5px;
|
|
}
|
|
.item-time b::after {
|
|
content: ":";
|
|
position: absolute;
|
|
right: -8px;
|
|
color: #fff;
|
|
top: 0;
|
|
}
|
|
.item-time:first-child {
|
|
margin-left: 0;
|
|
}
|
|
.item-time:last-child b {
|
|
margin: 0;
|
|
}
|
|
.item-time:last-child b::after {
|
|
content: none;
|
|
}
|
|
}
|
|
|
|
.item-auction {
|
|
display: flex;
|
|
padding: 10px;
|
|
border: 1px solid #e2e2e2;
|
|
border-radius: 10px;
|
|
width: 100%;
|
|
background: #fff;
|
|
.images {
|
|
display: block;
|
|
position: relative;
|
|
width: 110px;
|
|
height: 110px;
|
|
margin-right: 10px;
|
|
overflow: hidden;
|
|
img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
transform: scale(1);
|
|
transition: 0.3s;
|
|
}
|
|
&:hover {
|
|
img {
|
|
transform: scale(1.05);
|
|
transition: 0.3s;
|
|
}
|
|
}
|
|
.box-join {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 55px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
color: #fff;
|
|
background: #f1b510;
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
.icon_auction {
|
|
background: url(../images/icon-auction.png) no-repeat;
|
|
width: 14px;
|
|
height: 14px;
|
|
display: block;
|
|
background-size: contain;
|
|
}
|
|
span {
|
|
margin-left: 2px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
.info {
|
|
width: calc(100% - 120px);
|
|
}
|
|
.name {
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
&:hover {
|
|
color: #166dd8;
|
|
}
|
|
}
|
|
.old-price {
|
|
display: block;
|
|
margin: 5px 0;
|
|
font-size: 13px;
|
|
color: #000000;
|
|
}
|
|
.price-auction {
|
|
.txt {
|
|
font-size: 16px;
|
|
margin-right: 10px;
|
|
font-weight: 500;
|
|
}
|
|
.price-highest {
|
|
color: #f00000;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
.btn-add {
|
|
width: 140px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
background: #f00000;
|
|
color: #fff;
|
|
text-align: center;
|
|
border-radius: 26px;
|
|
display: block;
|
|
margin-top: 10px;
|
|
&:hover {
|
|
border: 1px solid #f00000;
|
|
color: #f00000;
|
|
background: #fff;
|
|
}
|
|
&.continue {
|
|
background: #5f00b1;
|
|
&:hover {
|
|
border: 1px solid #5f00b1;
|
|
color: #5f00b1;
|
|
background: #fff;
|
|
}
|
|
}
|
|
&.coming {
|
|
background: #afafaf;
|
|
&:hover {
|
|
border: 1px solid #afafaf;
|
|
color: #afafaf;
|
|
background: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.swiper-pagination {
|
|
bottom: 0;
|
|
}
|
|
.swiper-pagination-bullet {
|
|
width: 10px;
|
|
height: 10px;
|
|
&.swiper-pagination-bullet-active {
|
|
background: #f1b510;
|
|
}
|
|
}
|
|
|
|
.box-deal-hot {
|
|
margin-top: 12px;
|
|
.background-deal {
|
|
background: #ee4d2d;
|
|
border-radius: 15px;
|
|
padding: 10px;
|
|
}
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 10px;
|
|
.icon-deal {
|
|
display: block;
|
|
width: 20px;
|
|
height: 24px;
|
|
background: url(../images/icon-flash.png) no-repeat;
|
|
background-size: contain;
|
|
}
|
|
p {
|
|
margin-left: 7px;
|
|
text-transform: uppercase;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.tab-list {
|
|
margin-bottom: 10px;
|
|
.item {
|
|
width: calc(100% / 2 - 5px);
|
|
padding: 7px;
|
|
border-radius: 15px 15px 0 0;
|
|
background: #afafaf;
|
|
color: #fff;
|
|
&.active,
|
|
&:hover {
|
|
background: #166dd8;
|
|
}
|
|
p {
|
|
font-size: 15px;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
margin-bottom: 5px;
|
|
}
|
|
span {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
.box-time {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.item-time {
|
|
margin-left: 12px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
}
|
|
.item-time b {
|
|
background: #000;
|
|
width: 26px;
|
|
height: 26px;
|
|
line-height: 26px;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
position: relative;
|
|
border-radius: 5px;
|
|
}
|
|
.item-time b::after {
|
|
content: ":";
|
|
position: absolute;
|
|
right: -7px;
|
|
color: #fff;
|
|
}
|
|
.item-time:last-child b {
|
|
margin: 0;
|
|
}
|
|
.item-time:last-child b::after {
|
|
content: none;
|
|
}
|
|
}
|
|
.product-list {
|
|
margin-right: -10px;
|
|
}
|
|
.more-all {
|
|
width: 110px;
|
|
height: 32px;
|
|
line-height: 31px;
|
|
display: block;
|
|
border-radius: 5px;
|
|
border: 1px solid #fff;
|
|
margin: 0 auto auto auto;
|
|
text-align: center;
|
|
color: #fff;
|
|
&:hover {
|
|
background: #fff;
|
|
color: #ee4d2d;
|
|
}
|
|
}
|
|
}
|
|
|
|
.item-deal {
|
|
width: calc(100% / 2 - 10px);
|
|
margin-right: 10px;
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
border-radius: 12px;
|
|
background: #fff;
|
|
.images {
|
|
width: 140px;
|
|
height: 140px;
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
overflow: hidden;
|
|
img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
transform: scale(1);
|
|
transition: 0.3s;
|
|
}
|
|
&:hover {
|
|
img {
|
|
transform: scale(1.05);
|
|
transition: 0.3s;
|
|
}
|
|
}
|
|
}
|
|
.box-sold {
|
|
width: 100%;
|
|
background: #ffe9c2;
|
|
height: 18px;
|
|
line-height: 18px;
|
|
border-radius: 26px;
|
|
position: relative;
|
|
.line {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100%;
|
|
background: #f48320;
|
|
border-radius: 26px;
|
|
}
|
|
.txt {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 100%;
|
|
text-align: center;
|
|
z-index: 9;
|
|
color: #222;
|
|
font-size: 10px;
|
|
}
|
|
}
|
|
.name {
|
|
margin: 8px 0 0 0;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
line-height: 15px;
|
|
height: 30px;
|
|
&:hover {
|
|
color: #166dd8;
|
|
}
|
|
}
|
|
.price {
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #f00000;
|
|
}
|
|
.old-price {
|
|
color: #afafaf;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
margin-right: 15px;
|
|
}
|
|
.saleoff {
|
|
width: 42px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
padding-left: 10px;
|
|
background: #f00000;
|
|
font-size: 12px;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
font-weight: 600;
|
|
position: relative;
|
|
&::before {
|
|
position: absolute;
|
|
left: -6px;
|
|
top: 0;
|
|
width: 15px;
|
|
height: 20px;
|
|
content: "";
|
|
background: url(../images/icon-flash.png) no-repeat;
|
|
background-size: cover;
|
|
}
|
|
}
|
|
.btn-add {
|
|
width: 140px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
margin: 12px auto auto auto;
|
|
border-radius: 26px;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
background: #166dd8;
|
|
display: block;
|
|
&:hover {
|
|
background: #fff;
|
|
color: #166dd8;
|
|
border: 1px solid #116dd8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-faq {
|
|
margin-top: 15px;
|
|
.background-faq {
|
|
border: 2px solid #166dd8;
|
|
border-radius: 15px;
|
|
padding: 10px;
|
|
}
|
|
.title {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
color: #110e83;
|
|
}
|
|
.content-faq {
|
|
.item {
|
|
margin-bottom: 10px;
|
|
border: 1px solid #e2e2e2;
|
|
border-radius: 8px;
|
|
padding: 10px;
|
|
background: #f8f8f8;
|
|
&.active {
|
|
background: #ffffff;
|
|
.content {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
.content {
|
|
display: none;
|
|
margin: 5px 0 0 10px;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
}
|
|
.faqlink {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #3a3a3a;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
.main-footer {
|
|
background: #110e83;
|
|
margin-top: 15px;
|
|
padding-bottom: 20px;
|
|
}
|
|
.footer-policies {
|
|
padding: 25px 0 5px 0;
|
|
border-bottom: 1px solid #646386;
|
|
margin-right: -20px;
|
|
.item-policies {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: calc(100% / 2 - 20px);
|
|
margin-right: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.icons {
|
|
width: 40px;
|
|
height: 30px;
|
|
display: block;
|
|
margin-bottom: 13px;
|
|
img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
}
|
|
.txt {
|
|
color: #fff;
|
|
font-size: 13px;
|
|
text-align: center;
|
|
b {
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
}
|
|
.contact-footer {
|
|
position: relative;
|
|
}
|
|
.info-contact {
|
|
padding: 15px 0 20px 0;
|
|
color: #fff;
|
|
b {
|
|
text-transform: uppercase;
|
|
font-size: 15px;
|
|
margin-bottom: 2px;
|
|
display: block;
|
|
}
|
|
p {
|
|
font-weight: 300;
|
|
display: block;
|
|
}
|
|
}
|
|
.btn-phone {
|
|
margin: 0 auto;
|
|
width: 270px;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.page-auction {
|
|
.background-aution {
|
|
margin-top: 65px;
|
|
background: #166dd8;
|
|
padding: 10px;
|
|
border-radius: 15px;
|
|
}
|
|
.title {
|
|
width: 100%;
|
|
display: block;
|
|
height: 60px;
|
|
line-height: 60px;
|
|
text-align: center;
|
|
border-radius: 35px;
|
|
background: #f1b510;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-size: 24px;
|
|
margin: -40px auto auto auto;
|
|
font-weight: 600;
|
|
}
|
|
.tab-list {
|
|
margin-top: 10px;
|
|
.item {
|
|
width: calc(100% / 2 - 5px);
|
|
padding: 7px;
|
|
background: #afafaf;
|
|
color: #fff;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
&.active,
|
|
&:hover {
|
|
background: #fff;
|
|
color: #166dd8;
|
|
}
|
|
p {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
line-height: 29px;
|
|
}
|
|
span {
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
}
|
|
.box-time {
|
|
margin: 15px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
color: #fff;
|
|
span {
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
.item-time {
|
|
margin-left: 12px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
}
|
|
.item-time b {
|
|
background: #000;
|
|
width: 26px;
|
|
height: 26px;
|
|
line-height: 26px;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
position: relative;
|
|
border-radius: 5px;
|
|
}
|
|
.item-time b::after {
|
|
content: ":";
|
|
position: absolute;
|
|
right: -7px;
|
|
color: #fff;
|
|
}
|
|
.item-time:last-child b {
|
|
margin: 0;
|
|
}
|
|
.item-time:last-child b::after {
|
|
content: none;
|
|
}
|
|
.item-auction {
|
|
margin-bottom: 10px;
|
|
}
|
|
.paging {
|
|
margin: 5px 0;
|
|
}
|
|
}
|
|
|
|
.paging {
|
|
.item {
|
|
width: 30px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
border: 1px solid #fff;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
margin-right: 10px;
|
|
display: block;
|
|
color: #fff;
|
|
&.active,
|
|
&:hover {
|
|
background: #f1b510;
|
|
border: 1px solid #f1b510;
|
|
}
|
|
}
|
|
}
|
|
|
|
.breadcrumb {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.link-back {
|
|
box-shadow: 0px 1px 2px 0px #00000029;
|
|
width: 32px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
display: block;
|
|
border-radius: 50%;
|
|
}
|
|
.name {
|
|
width: calc(100% - 32px);
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
.page-detail {
|
|
.box-group-images {
|
|
margin-bottom: 10px;
|
|
img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 355px;
|
|
object-fit: contain;
|
|
}
|
|
}
|
|
.product-name {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
margin-bottom: 15px;
|
|
}
|
|
.box-group-time {
|
|
background: #166dd8;
|
|
width: 100%;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
img {
|
|
width: 26px;
|
|
display: block;
|
|
margin-right: 5px;
|
|
}
|
|
.title {
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
color: #fff;
|
|
margin-left: 5px;
|
|
}
|
|
.icon {
|
|
&.auction {
|
|
background: url(../images/icon-auction.png) no-repeat;
|
|
background-size: contain;
|
|
width: 15px;
|
|
height: 15px;
|
|
display: block;
|
|
margin-right: 3px;
|
|
}
|
|
&.time {
|
|
background: url(../images/icon-fire-time.png) no-repeat;
|
|
background-size: contain;
|
|
display: block;
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 3px;
|
|
}
|
|
}
|
|
.total-auction {
|
|
width: 62px;
|
|
height: 27px;
|
|
line-height: 27px;
|
|
text-align: center;
|
|
background: #f1b510;
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 14px;
|
|
}
|
|
.p-box-time {
|
|
background: #f00000;
|
|
width: 115px;
|
|
height: 28px;
|
|
line-height: 28px;
|
|
text-align: center;
|
|
justify-content: center;
|
|
border-radius: 14px;
|
|
color: #fff;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
.group-price-detail {
|
|
margin-top: 10px;
|
|
padding: 10px 0;
|
|
border-top: 1px dashed #e2e2e2;
|
|
border-bottom: 1px dashed #e2e2e2;
|
|
}
|
|
.box-starting-price {
|
|
width: 50%;
|
|
border-right: 1px dashed #e2e2e2;
|
|
p {
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
text-transform: uppercase;
|
|
color: #000;
|
|
}
|
|
.starting-price {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
.box-price-step {
|
|
padding-left: 20px;
|
|
p {
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
text-transform: uppercase;
|
|
color: #000;
|
|
}
|
|
.price-step {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
.box-specification {
|
|
margin: 13px 0;
|
|
.item {
|
|
display: flex;
|
|
margin-bottom: 10px;
|
|
}
|
|
i {
|
|
font-size: 14px;
|
|
color: #166dd8;
|
|
margin-right: 10px;
|
|
margin-top: 4.3px;
|
|
}
|
|
p {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
.box-add-auction {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
padding: 15px 10px;
|
|
background: #fff;
|
|
width: 100%;
|
|
z-index: 999;
|
|
display: none;
|
|
&.active {
|
|
display: block;
|
|
}
|
|
}
|
|
.btn-auction {
|
|
width: 100%;
|
|
text-align: center;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
border-radius: 26px;
|
|
color: #fff;
|
|
background: #f00000;
|
|
text-transform: uppercase;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
display: block;
|
|
}
|
|
.box-price-live {
|
|
i.fa-caret-up {
|
|
font-size: 32px;
|
|
color: #2ad363;
|
|
margin-top: 8px;
|
|
margin-right: 5px;
|
|
}
|
|
.current-price {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: #ef0000;
|
|
}
|
|
.unit-price {
|
|
margin-top: 12px;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
.list-user-auction {
|
|
background: #fff5e5;
|
|
padding: 15px;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
.item {
|
|
background: #fff;
|
|
box-shadow: 0px 2px 2px 0px #00000026;
|
|
height: 28px;
|
|
line-height: 28px;
|
|
border-radius: 5px;
|
|
margin-bottom: 8px;
|
|
padding: 10px 8px;
|
|
.fa-caret-up {
|
|
color: #2ad363;
|
|
}
|
|
.fa-caret-down {
|
|
color: #f00000;
|
|
}
|
|
i {
|
|
margin-top: 3px;
|
|
font-size: 16px;
|
|
margin-right: 5px;
|
|
}
|
|
.number {
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
color: #f48320;
|
|
padding-right: 5px;
|
|
}
|
|
.name-user {
|
|
color: #1355f0;
|
|
padding-right: 5px;
|
|
}
|
|
.price {
|
|
color: #f00000;
|
|
font-weight: 600;
|
|
padding-left: 5px;
|
|
}
|
|
.time {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
.content-user {
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
max-height: 103px;
|
|
padding-right: 10px;
|
|
}
|
|
}
|
|
.form-input-price {
|
|
margin-top: 20px;
|
|
.p-title {
|
|
text-align: center;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
margin-bottom: 10px;
|
|
}
|
|
.form-input {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
}
|
|
.input-price {
|
|
width: 80%;
|
|
height: 56px;
|
|
border: 1px solid #afafaf;
|
|
border-radius: 28px 0 0 28px;
|
|
text-align: center;
|
|
font-size: 32px;
|
|
padding: 0 20px;
|
|
}
|
|
.btn-send {
|
|
width: calc(100% - 80%);
|
|
height: 56px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #166dd8;
|
|
outline: none;
|
|
border: 0;
|
|
border-radius: 0 28px 28px 0;
|
|
cursor: pointer;
|
|
color: #fff;
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
.list-suggest {
|
|
p {
|
|
font-size: 14px;
|
|
font-weight: 300;
|
|
margin-right: 15px;
|
|
white-space: nowrap;
|
|
margin-bottom: 5px;
|
|
}
|
|
#price-list {
|
|
width: 400px;
|
|
overflow-x: auto;
|
|
scroll-behavior: smooth;
|
|
}
|
|
.item {
|
|
flex: 0 0 82px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
text-align: center;
|
|
margin-right: 5px;
|
|
border-radius: 15px;
|
|
background: #f1f1f1;
|
|
color: #929292;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
.box-live-auction {
|
|
position: fixed;
|
|
left: 0;
|
|
width: 100%;
|
|
top: 38px;
|
|
background: #fff;
|
|
z-index: 999;
|
|
padding: 10px;
|
|
display: none;
|
|
height: 100vh;
|
|
&.active {
|
|
display: block;
|
|
}
|
|
.main-title-live {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
.close {
|
|
box-shadow: 0px 1px 2px 0px #00000029;
|
|
width: 32px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
display: block;
|
|
border-radius: 50%;
|
|
}
|
|
p {
|
|
width: calc(100% - 32px);
|
|
margin-right: 16px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
.content-revew-history {
|
|
margin-top: 22px;
|
|
border-top: 10px solid #f5f5f5;
|
|
}
|
|
.list-product-auction {
|
|
margin-top: 5px;
|
|
.backgrond-auction {
|
|
background: #166dd8;
|
|
border-radius: 15px;
|
|
padding: 15px;
|
|
}
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
color: #fff;
|
|
}
|
|
.item-auction {
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
}
|
|
}
|
|
.box-info-product {
|
|
margin-top: 15px;
|
|
.item-tab {
|
|
width: calc(100% / 2 - 5px);
|
|
height: 50px;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
border-radius: 15px 15px 0 0;
|
|
background: #f5f5f5;
|
|
color: #000;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-right: 5px;
|
|
&.active,
|
|
&:hover {
|
|
background: #166dd8;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.content-tab {
|
|
display: none;
|
|
&.active {
|
|
display: block;
|
|
}
|
|
.info {
|
|
margin-top: 15px;
|
|
img {
|
|
width: 100%;
|
|
display: block;
|
|
margin-right: 10px;
|
|
height: 290px;
|
|
object-fit: contain;
|
|
}
|
|
ul li {
|
|
list-style: inside;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.box-user-win {
|
|
border-top: 1px dashed #e2e2e2;
|
|
margin-top: 10px;
|
|
padding: 10px 0;
|
|
.price-win {
|
|
align-items: flex-end;
|
|
p {
|
|
font-weight: 700;
|
|
margin-right: 5px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 7px;
|
|
}
|
|
.price {
|
|
font-size: 28px;
|
|
color: #ef0000;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
.info-user-win {
|
|
margin-top: 5px;
|
|
background: #ffe0ac;
|
|
width: 100%;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
padding: 0 20px;
|
|
border-radius: 5px;
|
|
p {
|
|
color: #f00000;
|
|
margin-right: 5px;
|
|
}
|
|
b {
|
|
font-weight: 500;
|
|
color: #f00000;
|
|
}
|
|
}
|
|
.icon-cup {
|
|
background: url(../images/icon-cup.png) no-repeat;
|
|
background-size: contain;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: block;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.swiper-pagination {
|
|
width: 41px !important;
|
|
height: 28px;
|
|
background: #0000004d;
|
|
border-radius: 14px;
|
|
line-height: 28px;
|
|
text-align: center;
|
|
display: block;
|
|
right: 10px;
|
|
bottom: 10px;
|
|
left: unset !important;
|
|
}
|
|
.swiper-pagination {
|
|
color: #fff !important;
|
|
}
|
|
|
|
.icon-star {
|
|
background: url(../images/icon-star.png) no-repeat;
|
|
width: 80px;
|
|
height: 12px;
|
|
display: block;
|
|
background-size: 100%;
|
|
&.star5 {
|
|
background-position: 0 0;
|
|
}
|
|
&.star4 {
|
|
background-position: 0 -17px;
|
|
}
|
|
&.star3 {
|
|
background-position: 0 -34px;
|
|
}
|
|
&.star2 {
|
|
background-position: 0 -50px;
|
|
}
|
|
&.star1 {
|
|
background-position: 0 -67px;
|
|
}
|
|
&.star0 {
|
|
background-position: 0 -84px;
|
|
}
|
|
}
|
|
|
|
.box-review {
|
|
padding: 20px 0;
|
|
.title-left {
|
|
margin-bottom: 5px;
|
|
h2 {
|
|
font-size: 16px;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
.main-title {
|
|
.total {
|
|
font-size: 14px;
|
|
margin-left: 5px;
|
|
display: block;
|
|
}
|
|
}
|
|
.btn-review {
|
|
width: 146px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
background: #166dd8;
|
|
color: #fff;
|
|
border-radius: 26px;
|
|
&:hover {
|
|
border: 1px solid #166dd8;
|
|
color: #116dd8;
|
|
background: #fff;
|
|
}
|
|
}
|
|
.list-review {
|
|
margin-top: 15px;
|
|
}
|
|
.item-review {
|
|
margin-bottom: 10px;
|
|
position: relative;
|
|
}
|
|
.avatar {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-right: 7px;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
display: block;
|
|
}
|
|
}
|
|
.info-cnt {
|
|
width: calc(100% - 47px);
|
|
.cnt {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
.name-user {
|
|
font-weight: 700;
|
|
}
|
|
.total-view {
|
|
font-size: 14px;
|
|
i {
|
|
color: #f1b510;
|
|
}
|
|
}
|
|
.time {
|
|
font-size: 13px;
|
|
color: #afafaf;
|
|
margin-right: 10px;
|
|
}
|
|
.btn-reply {
|
|
color: #166dd8;
|
|
}
|
|
.list-image {
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
.item {
|
|
width: 65px;
|
|
height: 65px;
|
|
display: block;
|
|
margin-right: 10px;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
.list-reppy {
|
|
width: 100%;
|
|
margin-left: 45px;
|
|
}
|
|
.item-reply {
|
|
position: relative;
|
|
margin-bottom: 10px;
|
|
&::after {
|
|
position: absolute;
|
|
width: 26px;
|
|
height: 115%;
|
|
border-radius: 0 0 0 18px;
|
|
background: transparent;
|
|
border: 1px solid #e2e2e2;
|
|
content: "";
|
|
left: -27px;
|
|
border-top: 0;
|
|
border-right: 0;
|
|
bottom: 84%;
|
|
}
|
|
}
|
|
.more-review {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #166dd8;
|
|
padding-top: 15px;
|
|
margin-top: 15px;
|
|
border-top: 1px solid #f5f5f5;
|
|
i {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-question {
|
|
background: #f5f5f5;
|
|
padding: 15px 10px;
|
|
.title {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
span {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
.form-question {
|
|
display: flex;
|
|
}
|
|
.input-question {
|
|
box-shadow: 0px 4px 4px 0px #00000026;
|
|
background: #ffffff;
|
|
width: calc(100% - 70px);
|
|
height: 94px;
|
|
border-radius: 10px;
|
|
border: 0;
|
|
outline: 0;
|
|
padding: 10px 15px;
|
|
&::placeholder {
|
|
color: #afafaf;
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
.btn-question {
|
|
width: 60px;
|
|
margin-left: 10px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
border: 0;
|
|
outline: 0;
|
|
background: #166dd8;
|
|
color: #fff;
|
|
border-radius: 26px;
|
|
cursor: pointer;
|
|
&:hover {
|
|
background: #fff;
|
|
border: 1px solid #166dd8;
|
|
color: #116dd8;
|
|
}
|
|
}
|
|
.list-question {
|
|
margin-top: 15px;
|
|
}
|
|
.item-question {
|
|
margin-bottom: 15px;
|
|
.avatar {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 10px;
|
|
margin-top: 3px;
|
|
}
|
|
.info-cnt {
|
|
width: calc(100% - 30px);
|
|
}
|
|
.info-user {
|
|
.name-user {
|
|
font-weight: 600;
|
|
margin-right: 15px;
|
|
}
|
|
.time {
|
|
color: #afafaf;
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
.cnt {
|
|
background: #fff;
|
|
box-shadow: 0px 4px 4px 0px #00000026;
|
|
padding: 10px 15px;
|
|
border-radius: 10px;
|
|
font-size: 13px;
|
|
font-weight: 300;
|
|
}
|
|
.click-question {
|
|
margin-top: 10px;
|
|
color: #166dd8;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
font-weight: 400;
|
|
i {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
.list-reply {
|
|
margin-top: 15px;
|
|
margin-left: 30px;
|
|
}
|
|
.reply-question {
|
|
margin-bottom: 15px;
|
|
.avatar {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 10px;
|
|
margin-top: 3px;
|
|
}
|
|
.info-cnt {
|
|
width: calc(100% - 30px);
|
|
}
|
|
.info-user {
|
|
.name-user {
|
|
font-weight: 600;
|
|
margin-right: 15px;
|
|
}
|
|
.time {
|
|
color: #afafaf;
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
.cnt {
|
|
background: #fff;
|
|
box-shadow: 0px 4px 4px 0px #00000026;
|
|
padding: 10px 15px;
|
|
border-radius: 10px;
|
|
font-size: 13px;
|
|
font-weight: 300;
|
|
}
|
|
.click-question {
|
|
margin-top: 10px;
|
|
color: #166dd8;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
font-weight: 400;
|
|
i {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
.more-question {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #166dd8;
|
|
padding-top: 15px;
|
|
margin-top: 15px;
|
|
border-top: 1px solid #f5f5f5;
|
|
i {
|
|
margin-left: 5px;
|
|
margin-top: 3px;
|
|
}
|
|
}
|
|
}
|
|
.box-history {
|
|
padding: 15px 10px;
|
|
.title {
|
|
font-size: 20px;
|
|
text-align: center;
|
|
padding: 5px 0;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
.cnt-history {
|
|
margin-top: 15px;
|
|
box-shadow: 0px 4px 4px 4px #00000026;
|
|
padding: 0 10px 15px 10px;
|
|
border-radius: 15px;
|
|
}
|
|
.tab-history {
|
|
background: #afafaf;
|
|
padding: 5px;
|
|
border-radius: 20px;
|
|
margin-right: -5px;
|
|
.item-tab {
|
|
width: calc(100% / 3 - 5px);
|
|
margin-right: 5px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: #fff;
|
|
height: 34px;
|
|
line-height: 34px;
|
|
&.active,
|
|
&:hover {
|
|
background: #fff;
|
|
box-shadow: 0px 4px 4px 0px #00000040;
|
|
color: #000;
|
|
border-radius: 20px;
|
|
}
|
|
}
|
|
}
|
|
table {
|
|
text-align: left;
|
|
}
|
|
.table-tab {
|
|
display: none;
|
|
height: 230px;
|
|
overflow: auto;
|
|
width: 100%;
|
|
&.active {
|
|
display: block;
|
|
}
|
|
thead {
|
|
background: #fff;
|
|
}
|
|
th {
|
|
position: sticky;
|
|
top: 0;
|
|
width: 30%;
|
|
height: 35px;
|
|
background: #fff;
|
|
border-bottom: 1px solid #dfdfdf;
|
|
}
|
|
td {
|
|
font-size: 13px;
|
|
width: 30%;
|
|
height: 35px;
|
|
border-bottom: 1px solid #dfdfdf;
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-deposit {
|
|
margin-top: 15px;
|
|
.title {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
.content-deposit {
|
|
margin-left: 10px;
|
|
padding-left: 20px;
|
|
border-left: 2px solid #f1b510;
|
|
}
|
|
.circle {
|
|
width: 24px;
|
|
height: 24px;
|
|
background-color: #1e7ef7;
|
|
border: 2px solid #f7c12a;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.circle-inner {
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: #fff;
|
|
border-radius: 50%;
|
|
border: 2px solid #f7c12a;
|
|
}
|
|
.item {
|
|
margin-bottom: 20px;
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.step {
|
|
width: 102px;
|
|
position: relative;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
color: #fff;
|
|
border-radius: 21px;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
background: #166dd8;
|
|
margin-bottom: 10px;
|
|
.circle {
|
|
position: absolute;
|
|
left: -33px;
|
|
top: 20%;
|
|
}
|
|
}
|
|
.price {
|
|
padding: 0 5px;
|
|
color: #f00000;
|
|
}
|
|
.note {
|
|
color: #f00000;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
.contact-deposit {
|
|
margin-top: 10px;
|
|
font-style: italic;
|
|
b {
|
|
color: #f00000;
|
|
}
|
|
}
|
|
.pay-qr {
|
|
.title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin: 15px 0;
|
|
}
|
|
img {
|
|
width: 123px;
|
|
height: 123px;
|
|
margin-right: 10px;
|
|
}
|
|
.info {
|
|
width: calc(100% - 133px);
|
|
}
|
|
}
|
|
}
|
|
|
|
body.page-detail .footer {
|
|
padding-bottom: 70px;
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
z-index: 9999;
|
|
display: none;
|
|
}
|
|
.overlay.active {
|
|
display: block;
|
|
}
|
|
|
|
.box-popup {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
border: 2px solid #f1b510;
|
|
width: 97%;
|
|
border-radius: 30px;
|
|
padding: 10px;
|
|
background: #fff;
|
|
z-index: 99991;
|
|
display: none;
|
|
&.active {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.popup-rules {
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 10px;
|
|
font-size: 24px;
|
|
color: #afafaf;
|
|
}
|
|
.note-time {
|
|
font-weight: 400;
|
|
margin-bottom: 20px;
|
|
display: block;
|
|
color: #000000c2;
|
|
}
|
|
.content {
|
|
height: 300px;
|
|
overflow-y: auto;
|
|
}
|
|
.content * {
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
font-weight: 400;
|
|
color: #000000cc;
|
|
}
|
|
.btn-submit {
|
|
display: block;
|
|
width: 168px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
text-align: center;
|
|
margin: 20px auto;
|
|
background: #116dd8;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
border-radius: 26px;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
&:hover {
|
|
border: 1px solid #116dd8;
|
|
background: #fff;
|
|
color: #116dd8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.input-checkbox {
|
|
margin-top: 12px;
|
|
display: block;
|
|
position: relative;
|
|
padding-left: 30px;
|
|
margin-bottom: 12px;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
height: 0;
|
|
width: 0;
|
|
&:checked ~ .checkmark {
|
|
background-color: #3194fc;
|
|
}
|
|
}
|
|
.checkmark {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 20px;
|
|
width: 20px;
|
|
background-color: #eee;
|
|
border-radius: 15px;
|
|
&:after {
|
|
content: "";
|
|
position: absolute;
|
|
display: block;
|
|
}
|
|
}
|
|
&:hover input ~ .checkmark {
|
|
background-color: #3194fc;
|
|
}
|
|
input:checked ~ .checkmark:after {
|
|
display: block;
|
|
}
|
|
.checkmark:after {
|
|
left: 7px;
|
|
top: 2px;
|
|
width: 5px;
|
|
height: 10px;
|
|
border: solid white;
|
|
border-width: 0 3px 3px 0;
|
|
-webkit-transform: rotate(45deg);
|
|
-ms-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|
|
|
|
.radio-checkbox {
|
|
display: block;
|
|
position: relative;
|
|
padding-left: 30px;
|
|
cursor: pointer;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
line-height: 20px;
|
|
input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.checkmark {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 20px;
|
|
width: 20px;
|
|
background-color: #eee;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
&:hover input ~ .checkmark {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
input:checked ~ .checkmark {
|
|
background-color: #166dd8;
|
|
}
|
|
|
|
.checkmark:after {
|
|
content: "";
|
|
position: absolute;
|
|
display: none;
|
|
}
|
|
|
|
input:checked ~ .checkmark:after {
|
|
display: block;
|
|
}
|
|
|
|
.checkmark:after {
|
|
top: 6px;
|
|
left: 5.5px;
|
|
width: 9px;
|
|
height: 9px;
|
|
border-radius: 50%;
|
|
background: white;
|
|
}
|
|
}
|
|
|
|
.popup-login {
|
|
.content {
|
|
margin: 20px auto;
|
|
}
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
line-height: 24px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.btn-login {
|
|
padding: 0 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
height: 52px;
|
|
margin-bottom: 10px;
|
|
border: 1px solid #8e8e8e;
|
|
border-radius: 10px;
|
|
&:hover {
|
|
border: 1px solid #116dd8;
|
|
}
|
|
img {
|
|
height: 28px;
|
|
width: 28px;
|
|
}
|
|
span {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.popup-yeucau {
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
line-height: 24px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
.btn-submit {
|
|
display: block;
|
|
width: 168px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
text-align: center;
|
|
margin: 20px auto;
|
|
background: #116dd8;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
border-radius: 26px;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
&:hover {
|
|
border: 1px solid #116dd8;
|
|
background: #fff;
|
|
color: #116dd8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.popup-info-pay {
|
|
.title-main {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
line-height: 24px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.popup-thongbao {
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
line-height: 24px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
p {
|
|
font-size: 14px;
|
|
text-align: center;
|
|
}
|
|
.btn-submit {
|
|
display: block;
|
|
width: 168px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
text-align: center;
|
|
margin: 20px auto;
|
|
background: #116dd8;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
border-radius: 26px;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
&:hover {
|
|
border: 1px solid #116dd8;
|
|
background: #fff;
|
|
color: #116dd8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.popup-success {
|
|
&::before {
|
|
position: absolute;
|
|
content: "";
|
|
background: url(../images/background-firework.png) no-repeat;
|
|
background-size: contain;
|
|
width: 120px;
|
|
height: 85px;
|
|
left: 0;
|
|
top: 20px;
|
|
}
|
|
&::after {
|
|
position: absolute;
|
|
content: "";
|
|
background: url(../images/background-firework.png) no-repeat;
|
|
background-size: contain;
|
|
width: 120px;
|
|
height: 85px;
|
|
right: 0;
|
|
top: 20px;
|
|
transform: scaleX(-1);
|
|
}
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
background: linear-gradient(90deg, #d00000 11.46%, #ff2929 29.26%, #eb2121 47.05%, #d00000 88.22%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
}
|
|
.note-title {
|
|
background: linear-gradient(90deg, #d00000 11.46%, #ff2929 29.26%, #eb2121 47.05%, #d00000 88.22%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
font-size: 18px;
|
|
text-align: center;
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
.content {
|
|
padding: 0 20px;
|
|
text-align: center;
|
|
line-height: 19px;
|
|
margin-top: 25px;
|
|
font-weight: 400;
|
|
}
|
|
.btn-submit {
|
|
display: block;
|
|
width: 168px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
text-align: center;
|
|
margin: 20px auto;
|
|
background: #116dd8;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
border-radius: 26px;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
&:hover {
|
|
border: 1px solid #116dd8;
|
|
background: #fff;
|
|
color: #116dd8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.popup-error {
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
background: linear-gradient(90deg, #ea9000 4.5%, #f4bc20 65%, #f1d710 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
}
|
|
.fa-exclamation-triangle {
|
|
background: linear-gradient(90deg, #ea9000 4.5%, #f4bc20 65%, #f1d710 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
font-size: 58px;
|
|
text-align: center;
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
.btn-submit {
|
|
display: block;
|
|
width: 168px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
text-align: center;
|
|
margin: 20px auto;
|
|
background: #116dd8;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
border-radius: 26px;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
&:hover {
|
|
border: 1px solid #116dd8;
|
|
background: #fff;
|
|
color: #116dd8;
|
|
}
|
|
}
|
|
.content {
|
|
color: #1e1e1e;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.page-list-deal {
|
|
.background-deal {
|
|
margin-top: 10px;
|
|
background: #ee4d2d;
|
|
border-radius: 15px;
|
|
padding: 10px;
|
|
}
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 10px;
|
|
.icon-deal {
|
|
display: block;
|
|
width: 29px;
|
|
height: 29px;
|
|
background: url(../images/icon-flash.png) no-repeat;
|
|
background-size: contain;
|
|
}
|
|
p {
|
|
text-transform: uppercase;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.tab-list {
|
|
margin-bottom: 10px;
|
|
.item {
|
|
width: calc(100% / 2 - 5px);
|
|
padding: 7px;
|
|
border-radius: 15px 15px 0 0;
|
|
background: #afafaf;
|
|
color: #fff;
|
|
&.active,
|
|
&:hover {
|
|
background: #166dd8;
|
|
}
|
|
p {
|
|
font-size: 15px;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
margin-bottom: 5px;
|
|
}
|
|
span {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
.box-time {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.item-time {
|
|
margin-left: 12px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
}
|
|
.item-time b {
|
|
background: #000;
|
|
width: 26px;
|
|
height: 26px;
|
|
line-height: 26px;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
position: relative;
|
|
border-radius: 5px;
|
|
}
|
|
.item-time b::after {
|
|
content: ":";
|
|
position: absolute;
|
|
right: -7px;
|
|
color: #fff;
|
|
}
|
|
.item-time:last-child b {
|
|
margin: 0;
|
|
}
|
|
.item-time:last-child b::after {
|
|
content: none;
|
|
}
|
|
}
|
|
.product-list {
|
|
margin-right: -10px;
|
|
}
|
|
.paging {
|
|
margin-top: 10px;
|
|
.item.active {
|
|
background: #166dd8;
|
|
border: 1px solid #116dd8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.page-detail.deal {
|
|
.box-deal-time {
|
|
background: #ee4d2d;
|
|
width: 100%;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
img {
|
|
width: 22px;
|
|
height: 29px;
|
|
display: block;
|
|
margin-right: 10px;
|
|
}
|
|
.title {
|
|
font-size: 20px;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
}
|
|
.right {
|
|
color: #fff;
|
|
span {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
.main-price {
|
|
margin: 10px 0;
|
|
.price {
|
|
font-size: 26px;
|
|
font-weight: 600;
|
|
color: #f00000;
|
|
margin-right: 10px;
|
|
}
|
|
.old-price {
|
|
color: #afafaf;
|
|
font-size: 14px;
|
|
margin-right: 15px;
|
|
}
|
|
.saleoff {
|
|
width: 42px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
padding-left: 10px;
|
|
background: #f00000;
|
|
font-size: 12px;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
font-weight: 600;
|
|
position: relative;
|
|
&::before {
|
|
position: absolute;
|
|
left: -6px;
|
|
top: 0;
|
|
width: 15px;
|
|
height: 20px;
|
|
content: "";
|
|
background: url(../images/icon-flash.png) no-repeat;
|
|
background-size: cover;
|
|
}
|
|
}
|
|
}
|
|
.btn-deal {
|
|
width: 100%;
|
|
text-align: center;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
border-radius: 26px;
|
|
color: #fff;
|
|
background: #116dd8;
|
|
text-transform: uppercase;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
display: block;
|
|
}
|
|
.box-btn-deal {
|
|
position: fixed;
|
|
width: 100%;
|
|
padding: 10px;
|
|
background: #fff;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 99;
|
|
border: 0;
|
|
margin: 0;
|
|
}
|
|
.list-product-deal {
|
|
margin-top: 5px;
|
|
.backgrond-deal {
|
|
background: #ee4d2d;
|
|
border-radius: 15px;
|
|
padding: 10px;
|
|
}
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
color: #fff;
|
|
}
|
|
.item-auction {
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
}
|
|
.list {
|
|
margin-right: -10px;
|
|
}
|
|
}
|
|
.box-sold-detail {
|
|
width: 100%;
|
|
background: #ffe9c2;
|
|
height: 18px;
|
|
line-height: 18px;
|
|
border-radius: 26px;
|
|
position: relative;
|
|
.line {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100%;
|
|
background: #f48320;
|
|
border-radius: 26px;
|
|
}
|
|
.txt {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 100%;
|
|
text-align: center;
|
|
z-index: 9;
|
|
color: #222;
|
|
font-size: 10px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|
|
|
|
.popup-add-cart {
|
|
padding: 0;
|
|
.title {
|
|
width: 100%;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
background: #f1b510;
|
|
color: #fff;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
border-radius: 27px 27px 0 0;
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
.form-cart {
|
|
padding: 15px;
|
|
}
|
|
.title-form {
|
|
margin-bottom: 10px;
|
|
i {
|
|
font-size: 23px;
|
|
margin-right: 10px;
|
|
color: #f1b510;
|
|
position: relative;
|
|
&::after {
|
|
position: absolute;
|
|
content: "";
|
|
background-color: #f1b510;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
right: -7px;
|
|
top: -4px;
|
|
z-index: 999;
|
|
border: 3px solid #fff;
|
|
}
|
|
}
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
color: #f1b510;
|
|
}
|
|
.input {
|
|
width: 100%;
|
|
height: 40px;
|
|
border-radius: 8px;
|
|
border: 1px solid #e6e6e6;
|
|
outline: none;
|
|
padding: 15px;
|
|
background: #f5f5f5;
|
|
}
|
|
.item-input {
|
|
margin-bottom: 10px;
|
|
&.error {
|
|
.note-error {
|
|
color: #f00000;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
select.input {
|
|
padding: 0 10px;
|
|
}
|
|
.box-provisional {
|
|
margin-bottom: 10px;
|
|
}
|
|
.total-amount {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: #f00000;
|
|
}
|
|
|
|
.btn-send-cart {
|
|
display: block;
|
|
width: 100%;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
text-align: center;
|
|
margin: 20px auto auto auto;
|
|
background: #116dd8;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
border-radius: 26px;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
&:hover {
|
|
border: 1px solid #116dd8;
|
|
background: #fff;
|
|
color: #116dd8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.popup-buy-success {
|
|
.title {
|
|
font-size: 18px;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
color: #a0d427;
|
|
img {
|
|
width: 58px;
|
|
height: 58px;
|
|
display: block;
|
|
margin: auto auto 15px auto;
|
|
}
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
.content {
|
|
text-align: center;
|
|
p {
|
|
font-style: italic;
|
|
}
|
|
a {
|
|
color: #f00000;
|
|
}
|
|
b {
|
|
display: block;
|
|
margin: 15px 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.page-account {
|
|
.content-account {
|
|
margin-top: 20px;
|
|
}
|
|
.name-avatar {
|
|
margin-bottom: 20px;
|
|
.avatar {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
line-height: 40px;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
background: #d9d9d9;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
.info {
|
|
b {
|
|
display: block;
|
|
font-size: 18px;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
}
|
|
.tab {
|
|
margin-right: -10px;
|
|
}
|
|
.item-tab {
|
|
width: calc(100% / 3 - 10px);
|
|
margin-right: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 66px;
|
|
margin-bottom: 10px;
|
|
border-radius: 5px;
|
|
align-items: center;
|
|
background: #afafaf;
|
|
color: #fff;
|
|
padding: 0 16px;
|
|
i {
|
|
margin-right: 10px;
|
|
}
|
|
span {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
width: 66px;
|
|
margin: 0 auto;
|
|
}
|
|
&.active,
|
|
&:hover {
|
|
background: #116dd8;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.input {
|
|
width: 100%;
|
|
height: 40px;
|
|
border-radius: 8px;
|
|
border: 1px solid #e6e6e6;
|
|
outline: none;
|
|
padding: 15px;
|
|
margin-bottom: 10px;
|
|
background: #f5f5f5;
|
|
}
|
|
.box-phone {
|
|
position: relative;
|
|
.btn-otp {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
display: block;
|
|
width: 130px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
background: #f1b510;
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
&:hover {
|
|
color: #f1b510;
|
|
border: 1px solid #f1b510;
|
|
background: #fff;
|
|
}
|
|
}
|
|
}
|
|
.box-sex {
|
|
margin-bottom: 10px;
|
|
.item {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
.btn-update {
|
|
display: block;
|
|
margin: 20px auto auto auto;
|
|
width: 180px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
text-align: center;
|
|
color: #fff;
|
|
background: #f00000;
|
|
border-radius: 8px;
|
|
outline: 0;
|
|
border: 0;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
.table-history {
|
|
.title {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
margin-bottom: 20px;
|
|
}
|
|
table {
|
|
text-align: left;
|
|
}
|
|
thead {
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
th {
|
|
background: #e2e2e2;
|
|
height: 40px;
|
|
padding: 0 10px;
|
|
}
|
|
td {
|
|
height: 40px;
|
|
padding: 0 10px;
|
|
}
|
|
.status {
|
|
&.ship {
|
|
color: #17c967;
|
|
}
|
|
&.cancel {
|
|
color: #d00000;
|
|
}
|
|
&.processing {
|
|
color: #f48320;
|
|
}
|
|
&.success {
|
|
color: #0caaf9;
|
|
}
|
|
}
|
|
}
|
|
.content-tab {
|
|
display: none;
|
|
&.active {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.popup-input-opt {
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
line-height: 24px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.click-close {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: -10px;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
width: 42px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
background: #222;
|
|
border: 3px solid #f1b510;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
.input-otp {
|
|
width: 100%;
|
|
height: 40px;
|
|
border: 0;
|
|
outline: 0;
|
|
border-bottom: 1px solid #bdbdbd;
|
|
margin: 0 auto;
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
|
|
.btn-submit {
|
|
display: block;
|
|
width: 168px;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
text-align: center;
|
|
margin: 20px auto;
|
|
background: #116dd8;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
border-radius: 26px;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
&:hover {
|
|
border: 1px solid #116dd8;
|
|
background: #fff;
|
|
color: #116dd8;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 414px) {
|
|
.item-auction .price-auction .price-highest {
|
|
font-size: 14px;
|
|
}
|
|
}
|