Files
auction_program/assets/css/style.scss
2024-10-17 09:32:26 +07:00

2941 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;
}
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;
}
.container {
padding: 0 10px;
max-width: 1210px;
margin: 0 auto;
}
.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;
}
.header {
background: #166dd8;
padding: 6px 0;
.logo {
img {
height: 35px;
display: block;
}
}
.header-right {
span,
i {
color: #fff;
margin-left: 5px;
font-size: 14px;
text-transform: uppercase;
}
.item {
margin-left: 20px;
display: flex;
align-items: center;
&:hover span {
color: #f1b510;
}
}
img {
width: 15px;
}
i.fa-solid.fa-caret-down {
margin-bottom: 5px;
}
}
}
.homepage {
.banner {
margin-bottom: 20px;
img {
display: block;
width: 100%;
}
}
.box-top-auction {
.title {
width: 390px;
height: 55px;
line-height: 55px;
text-align: center;
border-radius: 26px;
font-size: 32px;
color: #fff;
text-transform: uppercase;
background: #ea3e00;
font-weight: 600;
}
.list-auction {
margin-top: 20px;
margin-right: -15px;
}
}
}
.item-auction {
display: flex;
padding: 10px;
border: 1px solid #e2e2e2;
border-radius: 10px;
width: calc(100% / 3 - 15px);
margin-right: 15px;
margin-bottom: 15px;
background: #fff;
.images {
display: block;
position: relative;
width: 120px;
height: 120px;
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% - 130px);
}
.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;
}
}
}
}
.box-list-auction {
margin-top: 65px;
.background-auction {
background: #166dd8;
border-radius: 15px;
padding: 15px;
}
.title {
background: #f1b510;
width: 430px;
height: 70px;
line-height: 70px;
color: #fff;
border-radius: 35px;
text-align: center;
font-size: 32px;
font-weight: 600;
text-transform: uppercase;
margin: -45px auto auto auto;
}
.tab-list {
margin: 25px 0 30px 0;
.item {
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
padding: 10px;
border-radius: 15px 15px 0 0;
background: #afafaf;
color: #fff;
&.active,
&:hover {
background: #f1b510;
}
p {
font-size: 16px;
font-weight: 700;
padding-right: 5px;
text-transform: uppercase;
}
span {
font-size: 13px;
}
}
.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 {
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;
}
}
.list-auction {
margin-right: -15px;
}
.more-all {
width: 110px;
height: 32px;
line-height: 31px;
display: block;
border-radius: 5px;
border: 1px solid #fff;
margin: 10px auto auto auto;
text-align: center;
color: #fff;
&:hover {
background: #fff;
color: #ee4d2d;
}
}
}
.box-deal-hot {
margin-top: 30px;
.background-deal {
background: #ee4d2d;
border-radius: 15px;
padding: 15px;
}
.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: 32px;
font-weight: 700;
color: #fff;
}
}
.tab-list {
margin: 25px 0 30px 0;
.item {
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
padding: 10px;
border-radius: 15px 15px 0 0;
background: #afafaf;
color: #fff;
&.active,
&:hover {
background: #166dd8;
}
p {
font-size: 16px;
font-weight: 700;
padding-right: 5px;
text-transform: uppercase;
}
span {
font-size: 13px;
}
}
.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 {
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: -15px;
}
.more-all {
width: 110px;
height: 32px;
line-height: 31px;
display: block;
border-radius: 5px;
border: 1px solid #fff;
margin: 15px auto auto auto;
text-align: center;
color: #fff;
&:hover {
background: #fff;
color: #ee4d2d;
}
}
}
.item-deal {
width: calc(100% / 5 - 15px);
margin-right: 15px;
margin-bottom: 15px;
padding: 15px;
border-radius: 12px;
background: #fff;
.images {
width: 200px;
height: 200px;
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: 32px;
font-weight: 600;
text-transform: uppercase;
color: #110e83;
}
.content-faq {
.item {
float: left;
width: calc(100% / 2 - 15px);
margin-right: 15px;
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: 16px;
font-weight: 700;
color: #3a3a3a;
}
}
}
.footer {
.main-footer {
background: #110e83;
margin-top: 15px;
}
.footer-policies {
padding: 25px 0;
border-bottom: 1px solid #646386;
.item-policies {
display: flex;
align-items: center;
width: calc(100% / 4);
}
.icons {
width: 26px;
height: 30px;
display: block;
margin-right: 13px;
}
.txt {
width: calc(100% - 26px - 13px);
color: #fff;
font-size: 16px;
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 {
width: 235px;
display: block;
position: absolute;
right: 0;
top: 50%;
transform: translate(0, -50%);
}
}
.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;
float: left;
display: flex;
align-items: center;
color: #000;
line-height: 40px;
}
.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: 0 10px;
float: left;
line-height: 40px;
font-style: normal;
}
.breadcrumb ol li:last-child i {
display: none;
}
.breadcrumb i {
color: #333;
font-size: 15px;
}
.page-auction {
.background-aution {
margin-top: 65px;
background: #166dd8;
padding: 15px;
border-radius: 15px;
}
.title {
width: 430px;
display: block;
height: 70px;
line-height: 70px;
text-align: center;
border-radius: 35px;
background: #f1b510;
color: #fff;
text-transform: uppercase;
font-size: 32px;
margin: -50px auto auto auto;
font-weight: 600;
}
.tab-list {
margin: 25px 0 30px 0;
.item {
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
padding: 10px;
border-radius: 15px 15px 0 0;
background: #afafaf;
color: #fff;
&.active,
&:hover {
background: #f1b510;
}
p {
font-size: 16px;
font-weight: 700;
padding-right: 5px;
text-transform: uppercase;
}
span {
font-size: 13px;
}
}
.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 {
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;
}
}
.list-auction {
margin-right: -15px;
}
}
.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;
}
}
}
.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;
}
}
.page-detail {
.content-main-detail {
margin-top: 20px;
.content-left {
width: calc(100% - 490px - 32px);
margin-right: 32px;
}
.content-right {
width: 490px;
}
}
.BigImage {
width: calc(100% - 85px - 32px);
margin-left: 32px;
}
.thumbImage {
height: 400px;
}
.box-thumbImage {
width: 85px;
height: 560px;
box-sizing: border-box;
padding: 30px 0;
position: relative;
}
.box-thumbImage .swiper-slide {
cursor: pointer;
}
.box-thumbImage img {
width: 100%;
height: 100%;
object-fit: contain;
}
.box-thumbImage .swiper-slide-thumb-active img {
opacity: 1;
border: 1px solid transparent;
border-image: linear-gradient(359.53deg, #3935c8 82.81%, #1355f0 92%, #0caaf9 99.12%);
border-image-slice: 1;
border-radius: 10px;
}
.product-name {
font-size: 20px;
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: 20px;
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: 20px 0 27px 0;
.item {
display: flex;
margin-bottom: 15px;
}
i {
font-size: 14px;
color: #166dd8;
margin-right: 10px;
margin-top: 4.3px;
}
p {
font-size: 14px;
}
}
.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;
&:hover {
border: 1px solid #f00000;
color: #f00000;
background: #fff;
}
}
.box-live-auction {
margin-top: 20px;
}
.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 30px 15px 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: 423px;
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% - 423px);
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;
}
}
.content-revew-history {
margin-top: 22px;
.content-left {
width: calc(100% - 490px - 18px);
margin-right: 18px;
}
.content-right {
width: 490px;
}
}
.box-info-product {
margin-top: 20px;
.item-tab {
width: 222px;
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: 290px;
display: block;
margin-right: 10px;
height: 290px;
object-fit: contain;
}
ul {
width: calc(100% - 300px);
}
ul li {
list-style: inside;
font-size: 14px;
line-height: 20px;
}
}
}
}
.list-product-auction {
background: #166dd8;
margin-top: 15px;
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%;
.images {
width: 160px;
height: 160px;
}
.info {
width: calc(100% - 170px);
}
}
}
.box-user-win {
border-top: 1px dashed #e2e2e2;
margin-top: 15px;
padding-top: 10px;
.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 {
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;
}
}
}
.box-thumbImage .swiper-button-next::after {
font-size: 16px;
color: #000;
font-weight: 700;
}
.box-thumbImage .swiper-button-next {
position: absolute;
top: 468px;
transform: rotate(90deg);
left: 35%;
}
.box-thumbImage .swiper-button-prev {
position: absolute;
top: 0;
transform: rotate(90deg);
left: 35%;
}
.box-thumbImage .swiper-button-prev::after {
font-size: 16px;
color: #000;
font-weight: 700;
}
.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 {
box-shadow: 0px 4px 4px 4px #00000026;
background: #fff;
border-radius: 15px;
padding: 20px 15px;
.title-left {
h2 {
font-size: 16px;
margin-right: 10px;
}
.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 {
margin-top: 25px;
background: #f5f5f5;
padding: 15px;
border-radius: 15px;
.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-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);
}
}
}
.box-history {
box-shadow: 0px 4px 4px 4px #00000026;
padding: 15px;
border-radius: 15px;
.title {
font-size: 20px;
text-align: center;
padding: 5px 0;
font-weight: 700;
text-transform: uppercase;
}
.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 {
margin-top: 15px;
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 {
width: 30%;
height: 35px;
border-bottom: 1px solid #dfdfdf;
}
}
}
.overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 99;
display: none;
}
.overlay.active {
display: block;
}
.box-popup {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border: 2px solid #f1b510;
width: 590px;
border-radius: 30px;
padding: 15px;
background: #fff;
z-index: 999;
display: none;
&.active {
display: block;
}
}
.popup-rules {
.title {
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
text-align: center;
margin-bottom: 15px;
}
.click-close {
position: absolute;
top: 10px;
right: 20px;
font-size: 24px;
color: #afafaf;
}
.note-time {
font-weight: 400;
margin-bottom: 20px;
display: block;
color: #000000c2;
}
.content {
height: 340px;
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;
}
}
}
.popup-login {
.content {
width: 390px;
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: 24px;
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: 20px;
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: 24px;
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;
}
}
.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: 390px;
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;
}
}
}
.input-checkbox {
margin-top: 12px;
display: block;
position: relative;
padding-left: 30px;
margin-bottom: 12px;
cursor: pointer;
font-size: 14px;
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;
}
}
.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;
}
}
}
.content-left {
width: 187px;
margin-right: 32px;
}
.item-tab {
width: 100%;
display: flex;
height: 42px;
margin-bottom: 10px;
border-radius: 5px;
align-items: center;
background: #afafaf;
color: #fff;
padding: 0 16px;
i {
margin-right: 10px;
}
span {
font-size: 13px;
}
&.active,
&:hover {
background: #116dd8;
color: #fff;
}
}
.form-info {
width: 567px;
}
.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;
}
.content-right {
width: calc(100% - 187px - 32px);
}
.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;
}
}
}
.page-list-deal {
.background-deal {
margin-top: 10px;
background: #ee4d2d;
border-radius: 15px;
padding: 15px;
}
.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: 32px;
font-weight: 700;
color: #fff;
}
}
.tab-list {
margin: 25px 0 30px 0;
.item {
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
padding: 10px;
border-radius: 15px 15px 0 0;
background: #afafaf;
color: #fff;
&.active,
&:hover {
background: #166dd8;
}
p {
font-size: 16px;
font-weight: 700;
padding-right: 5px;
text-transform: uppercase;
}
span {
font-size: 13px;
}
}
.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 {
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: -15px;
}
.paging {
margin-top: 20px;
.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 {
.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;
&:hover {
border: 1px solid #116dd8;
color: #116dd8;
background: #fff;
}
}
.list-product-deal {
background: #ee4d2d;
margin-top: 15px;
border-radius: 15px;
padding: 15px;
.title {
font-size: 20px;
font-weight: 700;
text-transform: uppercase;
text-align: center;
margin-bottom: 10px;
color: #fff;
}
.list {
margin-right: -15px;
}
.item-deal {
width: calc(100% / 2 - 15px);
}
}
.box-sold-detail {
width: 290px;
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: 70px;
line-height: 70px;
background: #f1b510;
color: #fff;
font-size: 24px;
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;
}
}
}
.box-select {
.item-input {
width: calc(100% / 2 - 5px);
}
.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: 390px;
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: 24px;
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;
}
}
}