1337 lines
26 KiB
CSS
1337 lines
26 KiB
CSS
|
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
||
|
|
:root {
|
||
|
|
--color-global: #f32a1d;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-track {
|
||
|
|
background-color: #c5c5c5;
|
||
|
|
border-radius: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar {
|
||
|
|
width: 8px;
|
||
|
|
border-radius: 30px;
|
||
|
|
background-color: #c5c5c5;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb {
|
||
|
|
background: #5d5d5d;
|
||
|
|
border-radius: 30px;
|
||
|
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.7, #5d5d5d), color-stop(0.5, transparent), to(transparent));
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
font-family: "Inter", sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
color: #000;
|
||
|
|
font-family: "Inter", sans-serif;
|
||
|
|
margin: 0 auto;
|
||
|
|
background: url(../images/background-body.png) no-repeat;
|
||
|
|
background-size: cover;
|
||
|
|
font-weight: normal;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
body.active {
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
html {
|
||
|
|
font-size: 100%;
|
||
|
|
font-family: "Inter", sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
img {
|
||
|
|
max-width: 100%;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
text-decoration: none !important;
|
||
|
|
color: var(--text-black);
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearfix {
|
||
|
|
content: "";
|
||
|
|
clear: both;
|
||
|
|
}
|
||
|
|
|
||
|
|
ul,
|
||
|
|
li {
|
||
|
|
list-style: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
table {
|
||
|
|
border-collapse: collapse;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ul,
|
||
|
|
.ol {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
list-style: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-flex {
|
||
|
|
display: flex !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-block {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.flex-wrap {
|
||
|
|
flex-wrap: wrap !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-center {
|
||
|
|
text-align: center !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.align-items {
|
||
|
|
align-items: center !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.space-between {
|
||
|
|
justify-content: space-between !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.space-center {
|
||
|
|
justify-content: center !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-block {
|
||
|
|
display: block !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.flex-direction {
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-1 {
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-line-clamp: 1;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-2 {
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-line-clamp: 2;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-3 {
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-line-clamp: 3;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-4 {
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-line-clamp: 4;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-5 {
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-line-clamp: 5;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
width: 1220px;
|
||
|
|
padding: 0 10px;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon_2023 {
|
||
|
|
background: url(../images/icon_2023.png) no-repeat;
|
||
|
|
background-size: 280px 185px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header {
|
||
|
|
background: #fff;
|
||
|
|
padding: 5px 0;
|
||
|
|
}
|
||
|
|
.header .icon_2023 {
|
||
|
|
width: 15px;
|
||
|
|
height: 16px;
|
||
|
|
}
|
||
|
|
.header .icon_2023.thele {
|
||
|
|
background-position: 2px -2px;
|
||
|
|
}
|
||
|
|
.header .icon_2023.muahang {
|
||
|
|
background-position: -20px -2px;
|
||
|
|
}
|
||
|
|
.header .icon_2023.phone {
|
||
|
|
background-position: -42px -2px;
|
||
|
|
}
|
||
|
|
.header .icon_2023.user {
|
||
|
|
background-position: -66px -2px;
|
||
|
|
}
|
||
|
|
.header .header-right .item {
|
||
|
|
margin-left: 40px;
|
||
|
|
}
|
||
|
|
.header .header-right .item i {
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
.header .header-right .phone {
|
||
|
|
color: #cb1616;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.header .header-right i.fa-caret-down {
|
||
|
|
color: #cacaca;
|
||
|
|
}
|
||
|
|
|
||
|
|
.homepage .banner {
|
||
|
|
margin: 15px 0;
|
||
|
|
width: 100%;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh {
|
||
|
|
background: #fff;
|
||
|
|
padding: 20px 0;
|
||
|
|
border-radius: 12px;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .icon_2023 {
|
||
|
|
width: 50px;
|
||
|
|
height: 50px;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .icon_2023.group {
|
||
|
|
background-position: -1px -43px;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .icon_2023.share {
|
||
|
|
background-position: -77px -44px;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .icon_2023.cart {
|
||
|
|
background-position: -154px -43px;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .icon_2023.check {
|
||
|
|
background-position: -230px -43px;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .item {
|
||
|
|
margin-right: 100px;
|
||
|
|
text-align: center;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .item .icon_2023 {
|
||
|
|
margin: 0 auto;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .item .icon_2023::before {
|
||
|
|
position: absolute;
|
||
|
|
content: "";
|
||
|
|
left: 55px;
|
||
|
|
top: 50%;
|
||
|
|
width: 145px;
|
||
|
|
height: 1px;
|
||
|
|
background: #cb1616;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .item .icon_2023.share::before {
|
||
|
|
width: 185px;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .item .txt {
|
||
|
|
text-align: center;
|
||
|
|
display: block;
|
||
|
|
margin-top: 7px;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .item:last-child {
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.homepage .box-quytrinh .item:last-child .icon_2023::before {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.homepage .box-combo-sold-out {
|
||
|
|
margin: 24px 120px 30px 120px;
|
||
|
|
}
|
||
|
|
.homepage .box-group-user .title {
|
||
|
|
font-size: 24px;
|
||
|
|
color: #d60a00;
|
||
|
|
font-weight: 800;
|
||
|
|
text-transform: uppercase;
|
||
|
|
padding: 25px 0;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.homepage .box-group-user .product-item {
|
||
|
|
border: 1px solid #f5f5f5;
|
||
|
|
box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
|
||
|
|
padding: 15px;
|
||
|
|
}
|
||
|
|
.homepage .box-group-user .product-item .product-image {
|
||
|
|
width: 200px;
|
||
|
|
height: 200px;
|
||
|
|
}
|
||
|
|
.homepage .box-group-user .product-item .product-info {
|
||
|
|
width: calc(100% - 210px);
|
||
|
|
}
|
||
|
|
.homepage .group-list-product {
|
||
|
|
margin: 30px 0;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .title span {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
color: #fff;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 35px 15px 13px 15px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .title .icon_2023 {
|
||
|
|
width: 60px;
|
||
|
|
height: 65px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .title .icon_2023.title_left {
|
||
|
|
background-position: 0 -116px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .title .icon_2023.title_right {
|
||
|
|
background-position: -100px -116px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .product-list {
|
||
|
|
margin-right: -15px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .product-item {
|
||
|
|
width: calc(33.3333333333% - 15px);
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .product-image {
|
||
|
|
width: 110px;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .product-info {
|
||
|
|
width: calc(100% - 120px);
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .product-time-holder b {
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .add-group {
|
||
|
|
width: 110px;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 30px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .add-group span {
|
||
|
|
font-size: 10px;
|
||
|
|
margin: 0 2px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .add-group i {
|
||
|
|
font-size: 20px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .add-member {
|
||
|
|
font-size: 12px;
|
||
|
|
width: 110px;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 30px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .list-memeber .note {
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .product-name {
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product .product-item .red {
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.homepage .list-category {
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.homepage .list-category .item-cate {
|
||
|
|
padding: 0 10px;
|
||
|
|
border: 1px solid #fff;
|
||
|
|
border-radius: 5px;
|
||
|
|
color: #fff;
|
||
|
|
margin-right: 10px;
|
||
|
|
height: 35px;
|
||
|
|
line-height: 35px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.homepage .list-category .item-cate.active, .homepage .list-category .item-cate:hover {
|
||
|
|
background: linear-gradient(180deg, #03b49f 0%, #146863 100%);
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product.coming .title {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
font-weight: 700;
|
||
|
|
font-size: 24px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
line-height: 46px;
|
||
|
|
height: 46px;
|
||
|
|
background: linear-gradient(180deg, #c7c7c7 0%, #eaeaea 100%);
|
||
|
|
}
|
||
|
|
.homepage .box-list-product.coming .price-banle {
|
||
|
|
margin: 0 0 5px 0;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product.coming .box-time {
|
||
|
|
border: 1px solid #e11010;
|
||
|
|
border-radius: 4px;
|
||
|
|
width: 96px;
|
||
|
|
height: 21px;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product.coming .box-time b {
|
||
|
|
color: #f32a1d;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product.coming .box-time b::before {
|
||
|
|
color: #f32a1d;
|
||
|
|
}
|
||
|
|
.homepage .box-list-product.coming .box-time .icon_2023.time {
|
||
|
|
background-position: -268px -10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.product-item {
|
||
|
|
width: calc(50% - 15px);
|
||
|
|
margin-right: 15px;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
border-radius: 10px;
|
||
|
|
background: #fff;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
.product-item .product-image {
|
||
|
|
width: 150px;
|
||
|
|
height: 150px;
|
||
|
|
display: block;
|
||
|
|
border-radius: 8px;
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.product-item .product-image img {
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
-o-object-fit: contain;
|
||
|
|
object-fit: contain;
|
||
|
|
}
|
||
|
|
.product-item .product-image.sold::before {
|
||
|
|
position: absolute;
|
||
|
|
content: "";
|
||
|
|
left: 0;
|
||
|
|
top: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background: rgba(0, 0, 0, 0.5);
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.product-item .product-image .icon-sold {
|
||
|
|
position: absolute;
|
||
|
|
background: url(../images/icon_sold-out.png) no-repeat;
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
width: 96px;
|
||
|
|
height: 50px;
|
||
|
|
z-index: 9;
|
||
|
|
}
|
||
|
|
.product-item .product-image .soluongnhom {
|
||
|
|
position: absolute;
|
||
|
|
top: 5px;
|
||
|
|
left: 5px;
|
||
|
|
border-radius: 3px;
|
||
|
|
padding: 2px 5px;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 11px;
|
||
|
|
color: #fff;
|
||
|
|
background: linear-gradient(90deg, #e11010 -5.98%, #f3501d 100%);
|
||
|
|
}
|
||
|
|
.product-item .product-info {
|
||
|
|
width: calc(100% - 160px);
|
||
|
|
margin-left: 10px;
|
||
|
|
}
|
||
|
|
.product-item .product-name {
|
||
|
|
font-weight: 400;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
.product-item .product-name:hover {
|
||
|
|
color: var(--color-global);
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
.product-item .retail_price {
|
||
|
|
font-size: 15px;
|
||
|
|
color: #f32a1d;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.product-item .price-old {
|
||
|
|
color: #cacaca;
|
||
|
|
margin-left: 5px;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
.product-item .box-price {
|
||
|
|
margin: 5px 0;
|
||
|
|
}
|
||
|
|
.product-item .total-group {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.product-item .total-group .icon_2023 {
|
||
|
|
width: 25px;
|
||
|
|
height: 23px;
|
||
|
|
}
|
||
|
|
.product-item .total-group .icon_2023.group {
|
||
|
|
background-position: -154px 0;
|
||
|
|
background-size: 310px 220px;
|
||
|
|
}
|
||
|
|
.product-item .total-group span {
|
||
|
|
font-size: 13px;
|
||
|
|
color: #f32a1d;
|
||
|
|
font-weight: 500;
|
||
|
|
margin-left: 2px;
|
||
|
|
}
|
||
|
|
.product-item .box-memeber .item {
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
text-align: center;
|
||
|
|
background: #8c8c8c;
|
||
|
|
line-height: 19px;
|
||
|
|
color: #fff;
|
||
|
|
border-radius: 50%;
|
||
|
|
font-size: 12px;
|
||
|
|
margin-left: 2px;
|
||
|
|
z-index: 2;
|
||
|
|
}
|
||
|
|
.product-item .box-memeber .item.add {
|
||
|
|
background: #fff;
|
||
|
|
border: 1.5px dashed #8c8c8c;
|
||
|
|
color: #8c8c8c;
|
||
|
|
line-height: 18px;
|
||
|
|
margin-left: -5px;
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.product-item .list-memeber {
|
||
|
|
margin-top: 10px;
|
||
|
|
margin-bottom: 17px;
|
||
|
|
}
|
||
|
|
.product-item .list-memeber .note {
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
.product-item .box-sold {
|
||
|
|
margin: 10px 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 16px;
|
||
|
|
position: relative;
|
||
|
|
border-radius: 7px;
|
||
|
|
background: linear-gradient(0deg, #ffeee3 0%, #ffeee3 100%), #ffeee3;
|
||
|
|
}
|
||
|
|
.product-item .box-sold .quantity-sold {
|
||
|
|
font-size: 11px;
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 600;
|
||
|
|
position: absolute;
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
.product-item .box-sold .icon_2023 {
|
||
|
|
width: 20px;
|
||
|
|
height: 26px;
|
||
|
|
position: absolute;
|
||
|
|
left: 0;
|
||
|
|
bottom: 0;
|
||
|
|
z-index: 9;
|
||
|
|
}
|
||
|
|
.product-item .box-sold .icon_2023.hot {
|
||
|
|
background-position: -112px 4px;
|
||
|
|
}
|
||
|
|
.product-item .box-sold .line-deal {
|
||
|
|
position: absolute;
|
||
|
|
content: "";
|
||
|
|
left: 0;
|
||
|
|
top: 0;
|
||
|
|
height: 100%;
|
||
|
|
border-radius: 7px 0px 0px 7px;
|
||
|
|
background: linear-gradient(90deg, #f32a1d -5.98%, #ff6d1b 100%);
|
||
|
|
}
|
||
|
|
.product-item .icon_2023 {
|
||
|
|
width: 15px;
|
||
|
|
height: 15px;
|
||
|
|
}
|
||
|
|
.product-item .icon_2023.time {
|
||
|
|
background-position: -240px -10px;
|
||
|
|
background-size: 395px 254px;
|
||
|
|
}
|
||
|
|
.product-item .product-time-holder {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
margin-left: 5px;
|
||
|
|
color: #6c6c6c;
|
||
|
|
}
|
||
|
|
.product-item .product-time-holder b {
|
||
|
|
position: relative;
|
||
|
|
margin-right: 7px;
|
||
|
|
}
|
||
|
|
.product-item .product-time-holder b::before {
|
||
|
|
position: absolute;
|
||
|
|
right: -5px;
|
||
|
|
top: -1px;
|
||
|
|
content: ":";
|
||
|
|
color: #6c6c6c;
|
||
|
|
}
|
||
|
|
.product-item .product-time-holder b:last-child {
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.product-item .product-time-holder b:last-child::before {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.product-item .add-member {
|
||
|
|
width: 170px;
|
||
|
|
height: 35px;
|
||
|
|
border-radius: 17px;
|
||
|
|
background: linear-gradient(90deg, #10d18c -5.98%, #a7e15e 100%);
|
||
|
|
text-align: center;
|
||
|
|
line-height: 35px;
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.product-item .add-member .fa-plus {
|
||
|
|
font-size: 13px;
|
||
|
|
border-radius: 50%;
|
||
|
|
border: 2px solid #fff;
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
line-height: 19px;
|
||
|
|
font-weight: 400;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.product-item .note-leader {
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
.product-item .note-leader .icon_2023 {
|
||
|
|
width: 14px;
|
||
|
|
height: 14px;
|
||
|
|
}
|
||
|
|
.product-item .note-leader .icon_2023.bell {
|
||
|
|
background-position: -90px 0;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.product-item .note-leader span {
|
||
|
|
font-size: 11px;
|
||
|
|
color: #858585;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
.product-item .red {
|
||
|
|
color: #f32a1d;
|
||
|
|
font-size: 13px;
|
||
|
|
margin-left: 5px;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
.product-item .price-banle {
|
||
|
|
margin: 10px 0 17px 0;
|
||
|
|
color: #6c6c6c;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
.product-item .add-group {
|
||
|
|
width: 150px;
|
||
|
|
height: 35px;
|
||
|
|
line-height: 35px;
|
||
|
|
border-radius: 17px;
|
||
|
|
background: linear-gradient(90deg, #e11010 -5.98%, #f3501d 100%);
|
||
|
|
text-align: center;
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.product-item .add-group i {
|
||
|
|
font-size: 25px;
|
||
|
|
background: linear-gradient(90deg, #fff -11.54%, rgba(255, 255, 255, 0.17) 100%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
}
|
||
|
|
.product-item .add-group span {
|
||
|
|
margin: 0 3px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.background-white {
|
||
|
|
background: #fff;
|
||
|
|
border-radius: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.box-successful-purchase {
|
||
|
|
background: url(../images/background-successful-purchase.png) no-repeat;
|
||
|
|
background-size: 100%;
|
||
|
|
height: 440px;
|
||
|
|
border-radius: 15px;
|
||
|
|
}
|
||
|
|
.box-successful-purchase .title {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
color: #d60a00;
|
||
|
|
text-align: center;
|
||
|
|
text-transform: uppercase;
|
||
|
|
padding: 40px 0 16px 0;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.box-successful-purchase .content {
|
||
|
|
padding: 0 10px 60px 50px;
|
||
|
|
overflow: auto;
|
||
|
|
height: 280px;
|
||
|
|
margin-right: 41px;
|
||
|
|
}
|
||
|
|
.box-successful-purchase td {
|
||
|
|
padding: 10px 14px;
|
||
|
|
}
|
||
|
|
.box-successful-purchase td:first-child {
|
||
|
|
border-radius: 8px 0 0 8px;
|
||
|
|
}
|
||
|
|
.box-successful-purchase td:last-child {
|
||
|
|
border-radius: 0 8px 8px 0;
|
||
|
|
}
|
||
|
|
.box-successful-purchase th {
|
||
|
|
background: #ffeee3;
|
||
|
|
padding: 10px 14px;
|
||
|
|
}
|
||
|
|
.box-successful-purchase th:first-child {
|
||
|
|
border-radius: 8px 0 0 8px;
|
||
|
|
}
|
||
|
|
.box-successful-purchase th:last-child {
|
||
|
|
border-radius: 0 8px 8px 0;
|
||
|
|
}
|
||
|
|
.box-successful-purchase thead th {
|
||
|
|
position: sticky;
|
||
|
|
top: 0;
|
||
|
|
}
|
||
|
|
.box-successful-purchase tr:nth-child(2n) {
|
||
|
|
background: #f9f4f1;
|
||
|
|
}
|
||
|
|
.box-successful-purchase .name {
|
||
|
|
width: 26px;
|
||
|
|
height: 26px;
|
||
|
|
margin-right: 8px;
|
||
|
|
background: #8c8c8c;
|
||
|
|
border-radius: 50%;
|
||
|
|
text-align: center;
|
||
|
|
line-height: 26px;
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.box-successful-purchase .price b {
|
||
|
|
color: #f32a1d;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.box-successful-purchase .price del {
|
||
|
|
color: #a7a7a7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.box-thele {
|
||
|
|
background: url(../images/background-thele.png) no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
height: 410px;
|
||
|
|
border-radius: 15px;
|
||
|
|
padding: 15px;
|
||
|
|
}
|
||
|
|
.box-thele .title {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-transform: uppercase;
|
||
|
|
color: #d60a00;
|
||
|
|
text-align: center;
|
||
|
|
padding: 10px 0 20px 0;
|
||
|
|
}
|
||
|
|
.box-thele .content {
|
||
|
|
background: #fff;
|
||
|
|
width: 100%;
|
||
|
|
height: 316px;
|
||
|
|
border-radius: 12px;
|
||
|
|
padding: 30px 40px;
|
||
|
|
}
|
||
|
|
.box-thele .item {
|
||
|
|
margin-bottom: 6px;
|
||
|
|
}
|
||
|
|
.box-thele .item .number {
|
||
|
|
font-size: 20px;
|
||
|
|
color: #d60a00;
|
||
|
|
font-weight: 700;
|
||
|
|
margin-right: 14px;
|
||
|
|
}
|
||
|
|
.box-thele .item ul {
|
||
|
|
margin-bottom: 0;
|
||
|
|
}
|
||
|
|
.box-thele .item .txt {
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
.box-thele .item .txt p {
|
||
|
|
margin-bottom: 0;
|
||
|
|
}
|
||
|
|
.box-thele .item .txt li {
|
||
|
|
list-style: inside;
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.box-questions {
|
||
|
|
padding: 15px;
|
||
|
|
margin: 15px 0;
|
||
|
|
}
|
||
|
|
.box-questions .title {
|
||
|
|
font-size: 24px;
|
||
|
|
color: #d60a00;
|
||
|
|
text-transform: uppercase;
|
||
|
|
text-align: center;
|
||
|
|
font-weight: 700;
|
||
|
|
margin: 10px 0 20px 0;
|
||
|
|
}
|
||
|
|
.box-questions .item {
|
||
|
|
width: calc(50% - 15px);
|
||
|
|
margin-right: 15px;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.box-questions .item .number {
|
||
|
|
color: #d60a00;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.box-questions .card {
|
||
|
|
border-radius: 10px;
|
||
|
|
background: #ffeee3;
|
||
|
|
border: 0;
|
||
|
|
}
|
||
|
|
.box-questions .card span {
|
||
|
|
color: #000;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.box-questions .card-header {
|
||
|
|
border-radius: 10px;
|
||
|
|
border-bottom: 0;
|
||
|
|
background: #ffeee3;
|
||
|
|
}
|
||
|
|
.box-questions .card-body {
|
||
|
|
background: #fff;
|
||
|
|
padding: 7px 10px;
|
||
|
|
}
|
||
|
|
.box-questions [data-toggle=collapse].collapsed .fa:before {
|
||
|
|
content: "\f0da";
|
||
|
|
font-size: 20px;
|
||
|
|
}
|
||
|
|
.box-questions [data-toggle=collapse] .fa:before {
|
||
|
|
content: "\f0d7";
|
||
|
|
font-size: 20px;
|
||
|
|
}
|
||
|
|
.box-questions a:hover {
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer {
|
||
|
|
background: #fff;
|
||
|
|
}
|
||
|
|
.footer .footer-main-content {
|
||
|
|
padding: 25px 0;
|
||
|
|
}
|
||
|
|
.footer .item-footer {
|
||
|
|
width: calc(33.3333333333% - 50px);
|
||
|
|
margin-right: 50px;
|
||
|
|
}
|
||
|
|
.footer .item-footer:last-child {
|
||
|
|
width: 33.3333333333%;
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.footer .item-footer p {
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
.footer .icon_social {
|
||
|
|
background: url(../images/icon_social.png) no-repeat;
|
||
|
|
width: 32px;
|
||
|
|
height: 32px;
|
||
|
|
display: block;
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
.footer .icon_social.youtobe {
|
||
|
|
background-position: -4px -6px;
|
||
|
|
}
|
||
|
|
.footer .icon_social.tiktok {
|
||
|
|
background-position: -41px -6px;
|
||
|
|
}
|
||
|
|
.footer .icon_social.facebook {
|
||
|
|
background-position: -80px -6px;
|
||
|
|
}
|
||
|
|
.footer .icon_social.zalo {
|
||
|
|
background-position: -118px -6px;
|
||
|
|
}
|
||
|
|
.footer .icon_social.map {
|
||
|
|
background-position: -158px -6px;
|
||
|
|
}
|
||
|
|
.footer span {
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
.footer a {
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.footer .footer-bottom {
|
||
|
|
background: #fafafa;
|
||
|
|
padding: 20px 0;
|
||
|
|
}
|
||
|
|
.footer .footer-bottom .logo {
|
||
|
|
height: 60px;
|
||
|
|
width: 188px;
|
||
|
|
}
|
||
|
|
.footer .footer-bottom .content-right {
|
||
|
|
width: calc(100% - 200px);
|
||
|
|
margin-left: 15px;
|
||
|
|
}
|
||
|
|
.footer .footer-bottom .content-right p {
|
||
|
|
margin-bottom: 5px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.background-group-form {
|
||
|
|
background: url(../images/background-popup.png) no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
position: relative;
|
||
|
|
padding: 10px;
|
||
|
|
border-radius: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.box-login {
|
||
|
|
position: fixed;
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
width: 490px;
|
||
|
|
z-index: 9999;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.box-login .content {
|
||
|
|
background: #fff;
|
||
|
|
padding-bottom: 20px;
|
||
|
|
border-radius: 12px;
|
||
|
|
}
|
||
|
|
.box-login .content .title {
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-align: center;
|
||
|
|
margin: 0 50px;
|
||
|
|
padding: 15px 0;
|
||
|
|
}
|
||
|
|
.box-login .btn-login {
|
||
|
|
width: 242px;
|
||
|
|
height: 35px;
|
||
|
|
border-radius: 5px;
|
||
|
|
background: linear-gradient(90deg, #1270e1 -5.98%, #26a7f8 100%);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
margin: 0 auto 20px auto;
|
||
|
|
}
|
||
|
|
.box-login .btn-login .icon {
|
||
|
|
width: 35px;
|
||
|
|
height: 35px;
|
||
|
|
border-right: 1px solid rgba(255, 255, 255, 0.5019607843);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
text-align: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.box-login .btn-login .icon i {
|
||
|
|
font-size: 18px;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.box-login .btn-login .txt {
|
||
|
|
width: calc(100% - 35px);
|
||
|
|
text-align: center;
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.box-login .btn-login.google {
|
||
|
|
background: linear-gradient(90deg, #ea4335 -5.98%, #ff6a5e 100%);
|
||
|
|
}
|
||
|
|
.box-login .btn-close {
|
||
|
|
position: absolute;
|
||
|
|
right: 0;
|
||
|
|
top: 0;
|
||
|
|
width: 30px;
|
||
|
|
height: 30px;
|
||
|
|
background: #2f2f2f;
|
||
|
|
color: #fff;
|
||
|
|
line-height: 25px;
|
||
|
|
text-align: center;
|
||
|
|
border: 2px solid #fff;
|
||
|
|
box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.25);
|
||
|
|
border-radius: 50%;
|
||
|
|
}
|
||
|
|
.box-login .btn-close i {
|
||
|
|
font-size: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.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;
|
||
|
|
}
|
||
|
|
|
||
|
|
.global-popup {
|
||
|
|
position: fixed;
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
width: 490px;
|
||
|
|
z-index: 9999;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.global-popup.active {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.global-popup .btn-close {
|
||
|
|
position: absolute;
|
||
|
|
right: 0;
|
||
|
|
top: 0;
|
||
|
|
width: 30px;
|
||
|
|
height: 30px;
|
||
|
|
background: #2f2f2f;
|
||
|
|
color: #fff;
|
||
|
|
line-height: 25px;
|
||
|
|
text-align: center;
|
||
|
|
border: 2px solid #fff;
|
||
|
|
box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.25);
|
||
|
|
border-radius: 50%;
|
||
|
|
}
|
||
|
|
.global-popup .btn-close i {
|
||
|
|
font-size: 15px;
|
||
|
|
}
|
||
|
|
.global-popup .content {
|
||
|
|
background: #fff;
|
||
|
|
padding-bottom: 20px;
|
||
|
|
border-radius: 12px;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
.global-popup .content .title {
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-align: center;
|
||
|
|
margin: 0 50px;
|
||
|
|
padding: 15px 0 5px 0;
|
||
|
|
}
|
||
|
|
.global-popup .content .note {
|
||
|
|
margin: 0 50px;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.global-popup .box-share-link {
|
||
|
|
margin: 15px 0;
|
||
|
|
}
|
||
|
|
.global-popup .info-link {
|
||
|
|
width: calc(100% - 91px);
|
||
|
|
margin-right: 10px;
|
||
|
|
height: 40px;
|
||
|
|
border-radius: 5px;
|
||
|
|
border: 1px solid #f4f4f4;
|
||
|
|
background: #edf4ff;
|
||
|
|
box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.global-popup .info-link span {
|
||
|
|
white-space: nowrap;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.global-popup .info-link .blue {
|
||
|
|
color: rgba(0, 133, 255, 0.8);
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
.global-popup .btn-copy {
|
||
|
|
width: 81px;
|
||
|
|
height: 40px;
|
||
|
|
border-radius: 5px;
|
||
|
|
border: 1px solid #f4f4f4;
|
||
|
|
background: #edf4ff;
|
||
|
|
box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
|
||
|
|
text-align: center;
|
||
|
|
line-height: 40px;
|
||
|
|
color: #000;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
.global-popup .list-btn-share {
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.global-popup .list-btn-share b {
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.global-popup .list-btn-share a {
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.global-popup .list-btn-share img {
|
||
|
|
width: 26px;
|
||
|
|
height: 26px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.global-popup .form-add-email input {
|
||
|
|
width: 100%;
|
||
|
|
height: 40px;
|
||
|
|
padding: 0 10px;
|
||
|
|
border-radius: 5px;
|
||
|
|
border: 1px solid #f4f4f4;
|
||
|
|
background: #fff;
|
||
|
|
box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
|
||
|
|
outline: none;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.global-popup .form-add-email input::-moz-placeholder {
|
||
|
|
font-size: 13px;
|
||
|
|
color: rgba(172, 172, 172, 0.8);
|
||
|
|
}
|
||
|
|
.global-popup .form-add-email input::placeholder {
|
||
|
|
font-size: 13px;
|
||
|
|
color: rgba(172, 172, 172, 0.8);
|
||
|
|
}
|
||
|
|
.global-popup .form-add-email input:focus {
|
||
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||
|
|
}
|
||
|
|
.global-popup .content-email {
|
||
|
|
max-height: 210px;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
.global-popup .add-email {
|
||
|
|
text-align: center;
|
||
|
|
color: rgba(0, 133, 255, 0.8);
|
||
|
|
font-weight: 500;
|
||
|
|
display: block;
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
.global-popup .btn-add-member {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-evenly;
|
||
|
|
margin: 15px auto;
|
||
|
|
width: 180px;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 30px;
|
||
|
|
text-align: center;
|
||
|
|
border-radius: 17px;
|
||
|
|
background: linear-gradient(90deg, #0090f9 -5.98%, #00b2ff 100%);
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.global-popup .product-item {
|
||
|
|
width: 100%;
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.global-popup .product-item .product-image {
|
||
|
|
height: 115px;
|
||
|
|
}
|
||
|
|
.global-popup .product-item .note-member {
|
||
|
|
margin-left: 10px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.global-popup .product-item .box-qnt {
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
left: 50%;
|
||
|
|
width: 100%;
|
||
|
|
transform: translate(-50%, 0);
|
||
|
|
color: #222;
|
||
|
|
}
|
||
|
|
.global-popup .product-item .box-qnt .sl {
|
||
|
|
width: 40px;
|
||
|
|
height: 20px;
|
||
|
|
line-height: 20px;
|
||
|
|
border-radius: 3px;
|
||
|
|
background: rgba(0, 0, 0, 0.5);
|
||
|
|
text-align: center;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 10px;
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
.global-popup .product-item .box-qnt .conlai {
|
||
|
|
width: 53px;
|
||
|
|
height: 20px;
|
||
|
|
line-height: 20px;
|
||
|
|
border-radius: 3px;
|
||
|
|
background: linear-gradient(90deg, rgba(249, 60, 0, 0.85) -5.98%, rgba(255, 122, 0, 0.85) 100%);
|
||
|
|
text-align: center;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 10px;
|
||
|
|
}
|
||
|
|
.global-popup .avatar-leader {
|
||
|
|
position: absolute;
|
||
|
|
left: 50%;
|
||
|
|
top: -30px;
|
||
|
|
transform: translate(-50%, 0);
|
||
|
|
width: 60px;
|
||
|
|
height: 60px;
|
||
|
|
border-radius: 50%;
|
||
|
|
z-index: 99;
|
||
|
|
background: #8c8c8c;
|
||
|
|
color: #fff;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 36px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 55px;
|
||
|
|
border: 3px solid #fff;
|
||
|
|
box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
|
||
|
|
}
|
||
|
|
.global-popup .title-member {
|
||
|
|
display: block;
|
||
|
|
margin: 20px auto 10px auto;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.global-popup .btn-member-add-group {
|
||
|
|
width: 210px;
|
||
|
|
height: 46px;
|
||
|
|
border-radius: 17px;
|
||
|
|
background: linear-gradient(90deg, #10d18c -5.98%, #a7e15e 100%);
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
margin: 10px auto;
|
||
|
|
color: #fff;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.global-popup .btn-member-add-group b {
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.global-popup .btn-member-add-group .product-time-holder b {
|
||
|
|
margin-right: 10px;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.global-popup .btn-member-add-group .product-time-holder b::before {
|
||
|
|
position: absolute;
|
||
|
|
content: ":";
|
||
|
|
right: -8px;
|
||
|
|
top: -1px;
|
||
|
|
}
|
||
|
|
.global-popup .btn-member-add-group .product-time-holder b:last-child {
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.global-popup .btn-member-add-group .product-time-holder b:last-child::before {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.global-popup .txt {
|
||
|
|
padding: 10px 0;
|
||
|
|
}
|
||
|
|
.global-popup .name-leader {
|
||
|
|
padding-bottom: 10px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.global-popup .btn-blue {
|
||
|
|
text-align: center;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 7px 0;
|
||
|
|
display: block;
|
||
|
|
width: 100px;
|
||
|
|
font-size: 14px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
border-radius: 17px;
|
||
|
|
background: linear-gradient(90deg, #0090f9 -5.98%, #00b2ff 100%);
|
||
|
|
}
|
||
|
|
.global-popup .info-pay {
|
||
|
|
border-radius: 12px;
|
||
|
|
border: 1px solid #dadada;
|
||
|
|
padding: 10px;
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
.global-popup .info-pay .title {
|
||
|
|
margin: 0 auto 5px auto;
|
||
|
|
padding: 0;
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.global-popup .info-pay .left {
|
||
|
|
width: 86px;
|
||
|
|
height: 86px;
|
||
|
|
}
|
||
|
|
.global-popup .info-pay .right {
|
||
|
|
margin-left: 15px;
|
||
|
|
width: calc(100% - 96px);
|
||
|
|
}
|
||
|
|
.global-popup .info-pay .right span {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.global-popup .box-timeout-pay {
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
.global-popup .box-timeout-pay .product-time-holder {
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
.global-popup .box-timeout-pay .product-time-holder b {
|
||
|
|
margin-right: 10px;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.global-popup .box-timeout-pay .product-time-holder b::before {
|
||
|
|
position: absolute;
|
||
|
|
content: ":";
|
||
|
|
right: -8px;
|
||
|
|
top: -1px;
|
||
|
|
}
|
||
|
|
.global-popup .box-timeout-pay .product-time-holder b:last-child {
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.global-popup .box-timeout-pay .product-time-holder b:last-child::before {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.global-popup .box-cskh {
|
||
|
|
border-radius: 5px;
|
||
|
|
border: 1px solid #f4f4f4;
|
||
|
|
background: #edf4ff;
|
||
|
|
box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
|
||
|
|
padding: 10px 40px;
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.global-popup .name-group {
|
||
|
|
width: 100%;
|
||
|
|
box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
|
||
|
|
border-radius: 5px;
|
||
|
|
border: 1px solid #f4f4f4;
|
||
|
|
height: 40px;
|
||
|
|
padding: 0 10px;
|
||
|
|
margin: 10px 0;
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
.global-popup .name-group::-moz-placeholder {
|
||
|
|
font-size: 13px;
|
||
|
|
color: rgba(172, 172, 172, 0.8);
|
||
|
|
}
|
||
|
|
.global-popup .name-group::placeholder {
|
||
|
|
font-size: 13px;
|
||
|
|
color: rgba(172, 172, 172, 0.8);
|
||
|
|
}
|
||
|
|
.global-popup .name-group:focus {
|
||
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||
|
|
}
|
||
|
|
.global-popup .vd {
|
||
|
|
font-size: 14px;
|
||
|
|
font-style: italic;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.global-popup .btn-add-group {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-evenly;
|
||
|
|
margin: 15px auto;
|
||
|
|
width: 120px;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 30px;
|
||
|
|
text-align: center;
|
||
|
|
border-radius: 17px;
|
||
|
|
background: var(--gadien1, linear-gradient(90deg, #f93c00 -5.98%, #ff7a00 100%));
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.global-popup .btn-add-group i {
|
||
|
|
background: linear-gradient(90deg, #fff -11.54%, rgba(255, 255, 255, 0.17) 100%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
font-size: 25px;
|
||
|
|
}/*# sourceMappingURL=style.css.map */
|