3228 lines
68 KiB
CSS
3228 lines
68 KiB
CSS
|
|
@charset "UTF-8";
|
||
|
|
*, ::after, ::before {
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
color: #000;
|
||
|
|
font-family: "Roboto", sans-serif;
|
||
|
|
background: #F3F3F3;
|
||
|
|
position: relative;
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 1.5;
|
||
|
|
text-align: left;
|
||
|
|
max-width: 650px;
|
||
|
|
margin: auto;
|
||
|
|
word-break: break-word;
|
||
|
|
counter-reset: section;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
b {
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
|
||
|
|
margin-top: 0;
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
font-weight: 500;
|
||
|
|
line-height: 1.2;
|
||
|
|
}
|
||
|
|
|
||
|
|
p {
|
||
|
|
margin-top: 0;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1, h2, h3, h4, h5, h6 {
|
||
|
|
margin-top: 0;
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.h1, h1 {
|
||
|
|
font-size: 2em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.h2, h2 {
|
||
|
|
font-size: 1.5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.h3, h3 {
|
||
|
|
font-size: 1.17em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.h4, h4, .h5, h5, .h6, h6 {
|
||
|
|
font-size: initial;
|
||
|
|
}
|
||
|
|
|
||
|
|
.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearfix::after {
|
||
|
|
content: "";
|
||
|
|
clear: both;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bg-white {
|
||
|
|
background: #fff !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.flex-wrap {
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-flex {
|
||
|
|
display: flex !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-block {
|
||
|
|
display: block !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-none {
|
||
|
|
display: none !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-inline-block {
|
||
|
|
display: inline-block !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.align-items-center {
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.align-items-baseline {
|
||
|
|
align-items: baseline;
|
||
|
|
}
|
||
|
|
|
||
|
|
.align-items-end {
|
||
|
|
align-items: flex-end;
|
||
|
|
}
|
||
|
|
|
||
|
|
.align-items-start {
|
||
|
|
align-items: flex-start;
|
||
|
|
}
|
||
|
|
|
||
|
|
.justify-content-between {
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
|
||
|
|
.justify-content-center {
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.overflow-hidden {
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.overflow-auto {
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.float-left {
|
||
|
|
float: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.float-right {
|
||
|
|
float: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.float-none {
|
||
|
|
float: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.position-relative {
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-white {
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-center {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-left {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-right {
|
||
|
|
text-align: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-uppercase {
|
||
|
|
text-transform: uppercase;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-capitalize {
|
||
|
|
text-transform: capitalize;
|
||
|
|
}
|
||
|
|
|
||
|
|
.w-100 {
|
||
|
|
width: 100% !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.w-50 {
|
||
|
|
width: 50% !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.w-auto {
|
||
|
|
width: auto !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.h-100 {
|
||
|
|
height: 100% !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.h-auto {
|
||
|
|
height: auto !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.m-0 {
|
||
|
|
margin: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.m-auto {
|
||
|
|
margin: auto !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mb-0 {
|
||
|
|
margin-bottom: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mt-0 {
|
||
|
|
margin-top: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ml-0 {
|
||
|
|
margin-left: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mr-0 {
|
||
|
|
margin-right: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mt-2 {
|
||
|
|
margin-top: 0.5rem !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mt-3 {
|
||
|
|
margin-top: 1rem !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mb-2 {
|
||
|
|
margin-bottom: 0.5rem !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mb-3 {
|
||
|
|
margin-bottom: 1rem !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.p-0 {
|
||
|
|
padding: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pt-0 {
|
||
|
|
padding-top: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pb-0 {
|
||
|
|
padding-bottom: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pl-0 {
|
||
|
|
padding-left: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pr-0 {
|
||
|
|
padding-right: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pt-2, .py-2 {
|
||
|
|
padding-top: 0.5rem !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pt-3, .py-3 {
|
||
|
|
padding-top: 1rem !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.border-0 {
|
||
|
|
border: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.p-15 {
|
||
|
|
padding: 0 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hidden-scroll::-webkit-scrollbar, .article-page .article-category-list::-webkit-scrollbar, .pd-product-tab-container .tab-title-group::-webkit-scrollbar, .product-category-child::-webkit-scrollbar, .home-product-container .category-child-holder::-webkit-scrollbar {
|
||
|
|
width: 0;
|
||
|
|
height: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-control {
|
||
|
|
display: block;
|
||
|
|
width: calc(100% - 1.5rem - 2px);
|
||
|
|
height: calc(1.5em + 0.75rem + 2px);
|
||
|
|
padding: 0.375rem 0.75rem;
|
||
|
|
font-size: 1rem;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 1.5;
|
||
|
|
color: #495057;
|
||
|
|
background-color: #fff;
|
||
|
|
background-clip: padding-box;
|
||
|
|
border: 1px solid #ced4da;
|
||
|
|
border-radius: 0.25rem;
|
||
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-underline {
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
|
||
|
|
.border-bottom {
|
||
|
|
border-bottom: 1px solid #ccc;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pb-1, .py-1 {
|
||
|
|
padding-bottom: 0.25rem !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.fit-img, .art-item img, .p-item img {
|
||
|
|
width: auto;
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
max-width: 100%;
|
||
|
|
max-height: 100%;
|
||
|
|
margin: auto;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions {
|
||
|
|
position: absolute;
|
||
|
|
width: 100%;
|
||
|
|
border: solid 1px #ddd;
|
||
|
|
right: 0;
|
||
|
|
max-height: 300px;
|
||
|
|
overflow: auto;
|
||
|
|
display: none;
|
||
|
|
background: #fff;
|
||
|
|
z-index: 9;
|
||
|
|
top: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions a {
|
||
|
|
display: flex;
|
||
|
|
align-items: flex-start;
|
||
|
|
padding: 10px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions a img {
|
||
|
|
width: 60px;
|
||
|
|
float: left;
|
||
|
|
margin-right: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions a .info {
|
||
|
|
width: calc(100% - 72px);
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions a .info .name {
|
||
|
|
display: block;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions a .info .price {
|
||
|
|
color: #ec1c24;
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions::-webkit-scrollbar-track {
|
||
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
|
||
|
|
background-color: #f1f1f1;
|
||
|
|
border-radius: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions::-webkit-scrollbar {
|
||
|
|
width: 6px;
|
||
|
|
background-color: #f1f1f1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.autocomplete-suggestions::-webkit-scrollbar-thumb {
|
||
|
|
border-radius: 10px;
|
||
|
|
background-color: #ccc;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-checkmark .check-icon .icon-circle {
|
||
|
|
border-color: #0542b7;
|
||
|
|
opacity: 0.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-checkmark .check-icon .icon-line {
|
||
|
|
background-color: #0542b7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-checkmark .check-icon {
|
||
|
|
border-color: #0542b7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-container .content-text {
|
||
|
|
font-size: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-container {
|
||
|
|
max-width: calc(100% - 20px);
|
||
|
|
}
|
||
|
|
|
||
|
|
.fancybox-thumbs__list a {
|
||
|
|
height: 90px;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
background-color: #fff;
|
||
|
|
transition: unset;
|
||
|
|
}
|
||
|
|
|
||
|
|
.fancybox-thumbs__list a:before {
|
||
|
|
border: 3px solid #1781E0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container {
|
||
|
|
display: block;
|
||
|
|
position: relative;
|
||
|
|
padding-left: 24px;
|
||
|
|
cursor: pointer;
|
||
|
|
-webkit-user-select: none;
|
||
|
|
-moz-user-select: none;
|
||
|
|
user-select: none;
|
||
|
|
line-height: 21px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container .checkmark {
|
||
|
|
position: absolute;
|
||
|
|
top: 3px;
|
||
|
|
left: 0;
|
||
|
|
height: 13px;
|
||
|
|
width: 13px;
|
||
|
|
background-color: #fff;
|
||
|
|
border-radius: 50%;
|
||
|
|
border: 1px solid #BFBFBF;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container input {
|
||
|
|
position: absolute;
|
||
|
|
opacity: 0;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container input:checked ~ .checkmark {
|
||
|
|
border-color: #118F3E;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container input:checked ~ .checkmark:after {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container input:checked ~ .checkmark:after {
|
||
|
|
content: "";
|
||
|
|
width: 8px;
|
||
|
|
height: 8px;
|
||
|
|
background: #118F3E;
|
||
|
|
border-radius: 50%;
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.fancybox-slide--video {
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-white {
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.red, .pd-config_group-holder .pd-config_group-list .price, .product-detail-page .pd-price {
|
||
|
|
color: #E80E0E;
|
||
|
|
}
|
||
|
|
|
||
|
|
.color-main, .article-cate-container .group-title a, .pd-product-tab-container .tab-title-group a.active, .pd-config_group-holder .pd-config_group-list a.current, .pd-summary-group .pd-summary-btn, .product-filter-container .btn-filter, .home-customer-review-container .btn-view, .home-customer-review-container .item::before, .home-product-container .btn-view, .home-product-container .group-title, .global-deal-container .global-deal-type a.current {
|
||
|
|
color: #00A551;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bg-main, .pd-offer-group .group-title, .global-header-container .icon-search {
|
||
|
|
background: #00A551;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bg-linear, .article-detail-page .header-search-group button, .article-page .article-category-list a.current, .pd-btn-group .btn-buynow, .product-filter-container .filter-list .current, .product-sort-group .box-right .icons.current::before, .product-sort-group .box-right .article-cate-container .group-title .current.title::before, .article-cate-container .group-title .product-sort-group .box-right .current.title::before, .product-sort-group .box-right .global-header-container .current.icon-search::before, .global-header-container .product-sort-group .box-right .current.icon-search::before, .product-sort-group .box-right .current.btn-filter::before, .home-customer-review-container .item-title, .home-product-container .group-title::before, .home-product-container .group-title::after, .global-deal-container, .global-newsletter-container .form-holder a, .art-item .art-category, .custom-dots .owl-dots .owl-dot.active, .paging a.current {
|
||
|
|
background: linear-gradient(270deg, #00A551 0%, #8EB958 102.33%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.bg-linear-animate {
|
||
|
|
background: repeating-linear-gradient(270deg, #00A551 0%, #8EB958 102.33%);
|
||
|
|
background-size: 200% auto;
|
||
|
|
background-position: 0 100%;
|
||
|
|
animation: 2s linear infinite forwards gradient-bg-antimation;
|
||
|
|
}
|
||
|
|
|
||
|
|
.fancybox-thumbs__list a {
|
||
|
|
height: 90px;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
background-color: #fff;
|
||
|
|
transition: unset;
|
||
|
|
}
|
||
|
|
|
||
|
|
.fancybox-thumbs__list a:before {
|
||
|
|
border: 3px solid #1781E0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container {
|
||
|
|
display: block;
|
||
|
|
position: relative;
|
||
|
|
padding-left: 24px;
|
||
|
|
cursor: pointer;
|
||
|
|
-webkit-user-select: none;
|
||
|
|
-moz-user-select: none;
|
||
|
|
user-select: none;
|
||
|
|
line-height: 21px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container .checkmark {
|
||
|
|
position: absolute;
|
||
|
|
top: 3px;
|
||
|
|
left: 0;
|
||
|
|
height: 13px;
|
||
|
|
width: 13px;
|
||
|
|
background-color: #fff;
|
||
|
|
border-radius: 50%;
|
||
|
|
border: 1px solid #BFBFBF;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container input {
|
||
|
|
position: absolute;
|
||
|
|
opacity: 0;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container input:checked ~ .checkmark {
|
||
|
|
border-color: #FF7A00;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container input:checked ~ .checkmark:after {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label-container input:checked ~ .checkmark:after {
|
||
|
|
content: "";
|
||
|
|
width: 8px;
|
||
|
|
height: 8px;
|
||
|
|
background: #FF7A00;
|
||
|
|
border-radius: 50%;
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.inherit, .article-page .article-category-list .title, .product-category-child .title, .art-item .art-title *, .p-item .p-name *, .global-breadcrumb h1 {
|
||
|
|
font-size: inherit;
|
||
|
|
font-weight: inherit;
|
||
|
|
line-height: inherit;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-2, .pd-config_group-holder .pd-config_group-list .title, .homepage-category-list .cat-title {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
-webkit-line-clamp: 2;
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-3, .art-item .art-summary, .art-item .art-title, .p-item .p-name {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
-webkit-line-clamp: 3;
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-4 {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
-webkit-line-clamp: 4;
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line-clamp-5 {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
-webkit-line-clamp: 5;
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes gradient-bg-antimation {
|
||
|
|
0% {
|
||
|
|
background-position: 0 0;
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
background-position: -200% 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
@keyframes dash {
|
||
|
|
0% {
|
||
|
|
stroke-dashoffset: 0;
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
stroke-dashoffset: 822;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.bg-content {
|
||
|
|
overflow: hidden;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.bg-content::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
left: -10px;
|
||
|
|
right: -10px;
|
||
|
|
background: linear-gradient(transparent, #fff);
|
||
|
|
height: 300px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-html-content {
|
||
|
|
text-align: center;
|
||
|
|
padding: 16px;
|
||
|
|
}
|
||
|
|
.btn-html-content a {
|
||
|
|
display: none;
|
||
|
|
line-height: 36px;
|
||
|
|
background: #FFFFFF;
|
||
|
|
color: #1988EC;
|
||
|
|
box-shadow: 0px 0px 0px 1px #1988EC;
|
||
|
|
border-radius: 10px;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 600;
|
||
|
|
margin: auto;
|
||
|
|
max-width: 126px;
|
||
|
|
width: 100%;
|
||
|
|
transition: 0.15s all;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.btn-html-content a i {
|
||
|
|
margin-left: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bg-popup {
|
||
|
|
position: fixed;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
background: rgba(0, 0, 0, 0.4);
|
||
|
|
z-index: 99;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.p-10 {
|
||
|
|
padding-left: 10px;
|
||
|
|
padding-right: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon-star {
|
||
|
|
background-image: url(../images/star.png);
|
||
|
|
width: 85px;
|
||
|
|
height: 14px;
|
||
|
|
display: inline-block;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: 85px 90px;
|
||
|
|
vertical-align: sub;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon-star.star-1 {
|
||
|
|
background-position: -2px -74px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon-star.star-2 {
|
||
|
|
background-position: -2px -56px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon-star.star-3 {
|
||
|
|
background-position: -2px -38px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon-star.star-4 {
|
||
|
|
background-position: -2px -20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon-star.star-5, .icon-star.star-0 {
|
||
|
|
background-position: -2px -2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icons, .article-cate-container .group-title .title::before, .product-sort-group .btn-filter::before, .global-header-container .icon-search::before {
|
||
|
|
background: url(../images/global-sprite.png) no-repeat;
|
||
|
|
background-size: 250px 250px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
padding: 0 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.global-breadcrumb {
|
||
|
|
padding: 10px 0;
|
||
|
|
font-size: 12px;
|
||
|
|
line-height: 14px;
|
||
|
|
}
|
||
|
|
.global-breadcrumb a {
|
||
|
|
color: #414141;
|
||
|
|
}
|
||
|
|
.global-breadcrumb ol, .global-breadcrumb ul {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
.global-breadcrumb li {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.global-breadcrumb li::after {
|
||
|
|
content: "/";
|
||
|
|
padding: 0 10px;
|
||
|
|
font-weight: 400;
|
||
|
|
font-size: 12px;
|
||
|
|
margin-top: 1px;
|
||
|
|
}
|
||
|
|
.global-breadcrumb li:last-child::after {
|
||
|
|
content: none;
|
||
|
|
}
|
||
|
|
.paging {
|
||
|
|
margin: 20px 0 10px;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.paging a {
|
||
|
|
width: 38px;
|
||
|
|
height: 38px;
|
||
|
|
line-height: 37px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: transparent;
|
||
|
|
text-align: center;
|
||
|
|
color: #A3A3A3;
|
||
|
|
margin: 0 4px;
|
||
|
|
overflow: hidden;
|
||
|
|
border: 1px solid #A3A3A3;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.paging a.current {
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
.paging a.current * {
|
||
|
|
filter: invert(1) brightness(100);
|
||
|
|
}
|
||
|
|
.paging .icon-prev, .paging .icon-next {
|
||
|
|
background: url(../images/global-icon-left.png) no-repeat 16px center;
|
||
|
|
background-size: 7px;
|
||
|
|
font-size: 0 !important;
|
||
|
|
display: block;
|
||
|
|
height: 100%;
|
||
|
|
background-position: 14px center;
|
||
|
|
}
|
||
|
|
.paging .icon-next {
|
||
|
|
transform: rotate(-180deg);
|
||
|
|
}
|
||
|
|
|
||
|
|
.custom-nav .owl-nav {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.custom-nav .owl-nav button {
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
transform: translateY(-50%);
|
||
|
|
margin: 0 !important;
|
||
|
|
width: 46px;
|
||
|
|
height: 46px;
|
||
|
|
background: rgba(0, 0, 0, 0.4) !important;
|
||
|
|
}
|
||
|
|
.custom-nav .owl-nav button.disabled {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.custom-nav .owl-nav .owl-prev {
|
||
|
|
left: 0;
|
||
|
|
border-radius: 0 40px 40px 0 !important;
|
||
|
|
}
|
||
|
|
.custom-nav .owl-nav .owl-next {
|
||
|
|
right: 0;
|
||
|
|
border-radius: 40px 0 0 40px !important;
|
||
|
|
}
|
||
|
|
.custom-nav .owl-nav .arrow {
|
||
|
|
filter: invert(1) brightness(100);
|
||
|
|
height: 100%;
|
||
|
|
display: block;
|
||
|
|
background: url(../images/global-icon-left.png) no-repeat;
|
||
|
|
background-position: 15px center;
|
||
|
|
background-size: 9px 17px;
|
||
|
|
transition: 0.2s all;
|
||
|
|
}
|
||
|
|
.custom-nav .owl-nav .arrow-next {
|
||
|
|
transform: rotate(180deg);
|
||
|
|
}
|
||
|
|
|
||
|
|
.custom-dots .owl-dots {
|
||
|
|
margin: 0 !important;
|
||
|
|
position: absolute;
|
||
|
|
bottom: 15px;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
}
|
||
|
|
.custom-dots .owl-dots .owl-dot {
|
||
|
|
margin: 0 6px 0 0;
|
||
|
|
width: 8px;
|
||
|
|
height: 8px;
|
||
|
|
border-radius: 50px;
|
||
|
|
transition: 0.2s all;
|
||
|
|
background: transparent;
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.8);
|
||
|
|
}
|
||
|
|
.custom-dots .owl-dots .owl-dot span {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.custom-dots .owl-dots .owl-dot.active {
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-custom-nav .owl-nav {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.pd-custom-nav .owl-nav button {
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
transform: translateY(-50%);
|
||
|
|
margin: 0 !important;
|
||
|
|
width: 18px;
|
||
|
|
height: 18px;
|
||
|
|
background: transparent !important;
|
||
|
|
}
|
||
|
|
.pd-custom-nav .owl-nav button.disabled {
|
||
|
|
opacity: 0.15;
|
||
|
|
}
|
||
|
|
.pd-custom-nav .owl-nav .owl-prev {
|
||
|
|
left: -20px;
|
||
|
|
}
|
||
|
|
.pd-custom-nav .owl-nav .owl-next {
|
||
|
|
right: -20px;
|
||
|
|
}
|
||
|
|
.pd-custom-nav .owl-nav .arrow {
|
||
|
|
height: 100%;
|
||
|
|
display: block;
|
||
|
|
background: url(../images/global-icon-left.png) no-repeat;
|
||
|
|
background-size: 9px;
|
||
|
|
}
|
||
|
|
.pd-custom-nav .owl-nav .arrow-next {
|
||
|
|
transform: rotate(180deg);
|
||
|
|
}
|
||
|
|
|
||
|
|
.p-item {
|
||
|
|
border-radius: 12px;
|
||
|
|
border: 1px solid #F5F5F5;
|
||
|
|
background: #FFF;
|
||
|
|
padding: 10px;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 12px;
|
||
|
|
line-height: 14px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.p-item a {
|
||
|
|
display: block;
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
.p-item .p-img {
|
||
|
|
position: relative;
|
||
|
|
padding-bottom: 100%;
|
||
|
|
margin: 0 0 7px 0;
|
||
|
|
}
|
||
|
|
.p-item .p-type-holder {
|
||
|
|
min-height: 20px;
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
line-height: 20px;
|
||
|
|
text-align: left;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
.p-item .p-bestsale {
|
||
|
|
margin: 0;
|
||
|
|
border-radius: 20px;
|
||
|
|
color: #fff;
|
||
|
|
background: linear-gradient(270deg, #FF7A00 0%, #FFB800 102.33%);
|
||
|
|
padding: 0 5px;
|
||
|
|
font-size: 11px;
|
||
|
|
font-weight: 700;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.p-item .p-bestsale::before {
|
||
|
|
content: "";
|
||
|
|
background: url(../images/p-icon-bestsale.png) no-repeat;
|
||
|
|
background-size: contain;
|
||
|
|
width: 11px;
|
||
|
|
height: 12px;
|
||
|
|
margin-right: 2px;
|
||
|
|
}
|
||
|
|
.p-item .p-name {
|
||
|
|
margin: 10px 0;
|
||
|
|
min-height: 42px;
|
||
|
|
}
|
||
|
|
.p-item .p-price-holder {
|
||
|
|
margin: 10px 0;
|
||
|
|
color: #A3A3A3;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 40px;
|
||
|
|
}
|
||
|
|
.p-item .p-price {
|
||
|
|
color: #E80E0E;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 800;
|
||
|
|
margin: 0 5px 0 0;
|
||
|
|
line-height: 20px;
|
||
|
|
}
|
||
|
|
.p-item .p-price u {
|
||
|
|
font-size: 12px;
|
||
|
|
line-height: inherit;
|
||
|
|
display: inline-block;
|
||
|
|
margin-left: 1px;
|
||
|
|
}
|
||
|
|
.p-item .p-discount {
|
||
|
|
border-radius: 5px;
|
||
|
|
background: #E80E0E;
|
||
|
|
color: #fff;
|
||
|
|
padding: 0 3px;
|
||
|
|
font-weight: 500;
|
||
|
|
line-height: 20px;
|
||
|
|
}
|
||
|
|
.p-item .p-old-price {
|
||
|
|
width: 100%;
|
||
|
|
text-decoration: line-through;
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
.p-item .p-btn-group {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
line-height: 28px;
|
||
|
|
}
|
||
|
|
.p-item .p-rate {
|
||
|
|
margin: 0;
|
||
|
|
color: #FF7A00;
|
||
|
|
font-size: 12px;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.p-item .p-rate::after {
|
||
|
|
content: "";
|
||
|
|
background: url(../images/star_rating.png) no-repeat;
|
||
|
|
background-size: 10px 44px;
|
||
|
|
width: 10px;
|
||
|
|
height: 10px;
|
||
|
|
position: absolute;
|
||
|
|
right: -12px;
|
||
|
|
top: 7px;
|
||
|
|
}
|
||
|
|
.p-item .p-btn-add {
|
||
|
|
width: 28px;
|
||
|
|
height: 28px;
|
||
|
|
border-radius: 5px;
|
||
|
|
background: url(../images/p-icon-cart.png) no-repeat center;
|
||
|
|
background-color: #F5F5F5;
|
||
|
|
background-size: 18px;
|
||
|
|
}
|
||
|
|
.p-item .p-deal-line {
|
||
|
|
height: 16px;
|
||
|
|
line-height: 16px;
|
||
|
|
margin: 0 0 8px;
|
||
|
|
border-radius: 12px;
|
||
|
|
background: linear-gradient(90deg, #FF7A00 2.7%, #FFCD9F 100%);
|
||
|
|
font-size: 11px;
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 500;
|
||
|
|
color: #fff;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.p-item .p-deal-line::before {
|
||
|
|
content: "";
|
||
|
|
width: 25px;
|
||
|
|
height: 25px;
|
||
|
|
background: url(../images/p-icon-deal-discount.png) no-repeat;
|
||
|
|
background-size: 25px;
|
||
|
|
z-index: 1;
|
||
|
|
position: absolute;
|
||
|
|
left: -4px;
|
||
|
|
bottom: -3px;
|
||
|
|
}
|
||
|
|
.p-item .p-deal-time {
|
||
|
|
border-radius: 12px;
|
||
|
|
border: 1px dashed #FF7A00;
|
||
|
|
background: #FFF;
|
||
|
|
color: #FF7A00;
|
||
|
|
font-size: 11px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
.p-item .p-deal-time * {
|
||
|
|
line-height: 22px;
|
||
|
|
}
|
||
|
|
.p-item .p-deal-countdown {
|
||
|
|
font-size: 13px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.p-item .p-deal-countdown b {
|
||
|
|
font-weight: 700;
|
||
|
|
margin-left: 3px;
|
||
|
|
}
|
||
|
|
.p-item .p-deal-countdown b::after {
|
||
|
|
content: " :";
|
||
|
|
}
|
||
|
|
.p-item .p-deal-countdown b:last-child::after {
|
||
|
|
content: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.art-item {
|
||
|
|
background: #fff;
|
||
|
|
color: #2F2F2F;
|
||
|
|
font-weight: 300;
|
||
|
|
line-height: 14px;
|
||
|
|
font-size: 11px;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
.art-item a {
|
||
|
|
display: block;
|
||
|
|
color: #2F2F2F;
|
||
|
|
}
|
||
|
|
.art-item .art-img {
|
||
|
|
width: 48%;
|
||
|
|
position: relative;
|
||
|
|
margin: 0 10px 0 0;
|
||
|
|
padding-bottom: 30%;
|
||
|
|
border-radius: 12px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.art-item .art-text {
|
||
|
|
width: calc(52% - 10px);
|
||
|
|
}
|
||
|
|
.art-item .art-category {
|
||
|
|
display: table;
|
||
|
|
min-height: 20px;
|
||
|
|
line-height: 14px;
|
||
|
|
padding: 3px 10px;
|
||
|
|
border-radius: 0px 20px;
|
||
|
|
color: #FFF !important;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 10px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
}
|
||
|
|
.art-item .art-title {
|
||
|
|
font-weight: 500;
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 16px;
|
||
|
|
margin: 0 0 8px;
|
||
|
|
}
|
||
|
|
.art-item .art-summary {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.art-item .art-time {
|
||
|
|
display: inline-flex;
|
||
|
|
color: #B6B6B6;
|
||
|
|
font-weight: 400;
|
||
|
|
margin: 0 10px 0 0;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.art-item .art-time:last-child {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.art-item .icons, .art-item .article-cate-container .group-title .title::before, .article-cate-container .group-title .art-item .title::before, .art-item .product-sort-group .btn-filter::before, .product-sort-group .art-item .btn-filter::before, .art-item .global-header-container .icon-search::before, .global-header-container .art-item .icon-search::before {
|
||
|
|
width: 20px;
|
||
|
|
height: 15px;
|
||
|
|
}
|
||
|
|
.art-item .icon-clock {
|
||
|
|
background-position: -181px -44px;
|
||
|
|
}
|
||
|
|
.art-item .icon-visit {
|
||
|
|
background-position: -152px -44px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.video-item {
|
||
|
|
position: relative;
|
||
|
|
padding-bottom: 60%;
|
||
|
|
border-radius: 8px;
|
||
|
|
overflow: hidden;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.video-item::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.video-item::after {
|
||
|
|
content: "";
|
||
|
|
background: url(../images/icon-video.png) no-repeat center;
|
||
|
|
background-size: contain;
|
||
|
|
width: 56px;
|
||
|
|
height: 56px;
|
||
|
|
border-radius: 50%;
|
||
|
|
text-align: center;
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.video-item img {
|
||
|
|
position: absolute;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
-o-object-fit: cover;
|
||
|
|
object-fit: cover;
|
||
|
|
}
|
||
|
|
.video-item .video-title {
|
||
|
|
position: absolute;
|
||
|
|
left: 10px;
|
||
|
|
right: 10px;
|
||
|
|
bottom: 10px;
|
||
|
|
color: #fff;
|
||
|
|
z-index: 1;
|
||
|
|
margin: 0;
|
||
|
|
font-weight: 600;
|
||
|
|
line-height: 20px;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.global-header-container {
|
||
|
|
background: #fff;
|
||
|
|
padding: 8px 10px;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
position: sticky;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
z-index: 99;
|
||
|
|
box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
|
||
|
|
}
|
||
|
|
.global-header-container img {
|
||
|
|
display: block;
|
||
|
|
width: auto;
|
||
|
|
}
|
||
|
|
.global-header-container .header-logo {
|
||
|
|
width: 57px;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.global-header-container .header-right-group {
|
||
|
|
width: 80px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding-left: 10px;
|
||
|
|
}
|
||
|
|
.global-header-container .header-right-group .icons, .global-header-container .header-right-group .article-cate-container .group-title .title::before, .article-cate-container .group-title .global-header-container .header-right-group .title::before, .global-header-container .header-right-group .product-sort-group .btn-filter::before, .product-sort-group .global-header-container .header-right-group .btn-filter::before, .global-header-container .header-right-group .icon-search::before {
|
||
|
|
width: 22px;
|
||
|
|
height: 30px;
|
||
|
|
}
|
||
|
|
.global-header-container .cart-count {
|
||
|
|
width: 14px;
|
||
|
|
height: 14px;
|
||
|
|
line-height: 14px;
|
||
|
|
border-radius: 50%;
|
||
|
|
text-align: center;
|
||
|
|
background: linear-gradient(90deg, #FFB800 2.7%, #FFF59F 57.03%, #FFB800 100%);
|
||
|
|
color: #000;
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 700;
|
||
|
|
position: absolute;
|
||
|
|
top: -2px;
|
||
|
|
right: -5px;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.global-header-container .icon-cart {
|
||
|
|
display: block;
|
||
|
|
height: 100%;
|
||
|
|
position: relative;
|
||
|
|
background-position: -216px -6px;
|
||
|
|
}
|
||
|
|
.global-header-container .icon-menu {
|
||
|
|
background-position: -8px -219px;
|
||
|
|
}
|
||
|
|
.global-header-container .icon-search {
|
||
|
|
width: 43px;
|
||
|
|
height: 40px;
|
||
|
|
border-left: 1px solid #C3C3C3;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.global-header-container .icon-search::before {
|
||
|
|
content: "";
|
||
|
|
display: block;
|
||
|
|
height: 100%;
|
||
|
|
background-position: 2px -35px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header-search-group {
|
||
|
|
width: calc(100% - 157px);
|
||
|
|
margin-right: 10px;
|
||
|
|
border-radius: 0px 21px 21px 0px;
|
||
|
|
box-shadow: 0px 0px 0px 1px #C3C3C3;
|
||
|
|
background: #fff;
|
||
|
|
position: relative;
|
||
|
|
border-radius: 21px;
|
||
|
|
overflow: hidden;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.header-search-group * {
|
||
|
|
height: 40px;
|
||
|
|
border: 0;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.header-search-group input {
|
||
|
|
padding: 0 10px;
|
||
|
|
width: calc(100% - 43px);
|
||
|
|
}
|
||
|
|
|
||
|
|
.global-newsletter-container {
|
||
|
|
background: linear-gradient(270deg, #E3F2E9 0%, #CEE4B4 102.33%);
|
||
|
|
padding: 20px 0 0;
|
||
|
|
}
|
||
|
|
.global-newsletter-container img {
|
||
|
|
display: block;
|
||
|
|
width: auto;
|
||
|
|
margin: 14px auto 0;
|
||
|
|
max-height: 160px;
|
||
|
|
}
|
||
|
|
.global-newsletter-container .group-title {
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 22px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 0 0 13px 0;
|
||
|
|
}
|
||
|
|
.global-newsletter-container .form-holder {
|
||
|
|
position: relative;
|
||
|
|
background: #fff;
|
||
|
|
border-radius: 50px;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.global-newsletter-container .form-holder input {
|
||
|
|
width: calc(100% - 80px);
|
||
|
|
height: 52px;
|
||
|
|
padding: 0 15px;
|
||
|
|
border-radius: 50px 0 0 50px;
|
||
|
|
margin: 0;
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
.global-newsletter-container .form-holder input::-moz-placeholder {
|
||
|
|
color: #A3A3A3;
|
||
|
|
}
|
||
|
|
.global-newsletter-container .form-holder input::placeholder {
|
||
|
|
color: #A3A3A3;
|
||
|
|
}
|
||
|
|
.global-newsletter-container .form-holder a {
|
||
|
|
width: 80px;
|
||
|
|
line-height: 52px;
|
||
|
|
text-align: center;
|
||
|
|
color: #FFF;
|
||
|
|
text-transform: uppercase;
|
||
|
|
border-radius: 0 50px 50px 0;
|
||
|
|
font-weight: 700;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.global-newsletter-container .newsletter-error {
|
||
|
|
color: red;
|
||
|
|
margin-top: 15px;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.global-footer-container {
|
||
|
|
background: #fff;
|
||
|
|
padding: 14px 0;
|
||
|
|
line-height: 24px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.global-footer-container .item-bct img {
|
||
|
|
display: block;
|
||
|
|
width: auto;
|
||
|
|
max-width: 110px;
|
||
|
|
}
|
||
|
|
.global-footer-container .group-title {
|
||
|
|
font-size: 15px;
|
||
|
|
font-weight: 600;
|
||
|
|
line-height: 20px;
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
}
|
||
|
|
.global-footer-container a {
|
||
|
|
display: table;
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
.global-footer-container p {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.global-footer-container .address-item {
|
||
|
|
margin-bottom: 18px;
|
||
|
|
}
|
||
|
|
.global-footer-container .item {
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
.global-footer-container .item .group-title {
|
||
|
|
border-radius: 8px;
|
||
|
|
background: #F3F3F3;
|
||
|
|
margin: 0;
|
||
|
|
line-height: 40px;
|
||
|
|
position: relative;
|
||
|
|
padding: 0 10px;
|
||
|
|
font-size: 13px;
|
||
|
|
text-transform: unset;
|
||
|
|
}
|
||
|
|
.global-footer-container .item .group-title.active::after {
|
||
|
|
transform: rotate(0deg);
|
||
|
|
}
|
||
|
|
.global-footer-container .item .group-title::after {
|
||
|
|
content: "▲";
|
||
|
|
font-size: 10px;
|
||
|
|
position: absolute;
|
||
|
|
top: -1px;
|
||
|
|
right: 10px;
|
||
|
|
transform: rotate(-180deg);
|
||
|
|
}
|
||
|
|
.global-footer-container .item-list {
|
||
|
|
display: none;
|
||
|
|
padding: 10px 20px;
|
||
|
|
}
|
||
|
|
.global-footer-container .item-social-media {
|
||
|
|
margin: 10px 0 0;
|
||
|
|
}
|
||
|
|
.global-footer-container .item-social-media .group-title {
|
||
|
|
margin-top: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.global-footer-end {
|
||
|
|
border-top: 1px dashed #D9D9D9;
|
||
|
|
font-size: 13px;
|
||
|
|
color: #797979;
|
||
|
|
line-height: 20px;
|
||
|
|
padding-top: 10px;
|
||
|
|
margin-top: 10px;
|
||
|
|
}
|
||
|
|
.global-footer-end a {
|
||
|
|
display: inline-block;
|
||
|
|
color: inherit;
|
||
|
|
}
|
||
|
|
.global-footer-end p {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.global-footer-end b {
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-social-media {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
.footer-social-media .icons, .footer-social-media .article-cate-container .group-title .title::before, .article-cate-container .group-title .footer-social-media .title::before, .footer-social-media .product-sort-group .btn-filter::before, .product-sort-group .footer-social-media .btn-filter::before, .footer-social-media .global-header-container .icon-search::before, .global-header-container .footer-social-media .icon-search::before {
|
||
|
|
width: 36px;
|
||
|
|
height: 36px;
|
||
|
|
margin: 0 8px 0 0;
|
||
|
|
transition: 0.3s all;
|
||
|
|
position: relative;
|
||
|
|
bottom: 0;
|
||
|
|
background-size: 500px 500px;
|
||
|
|
}
|
||
|
|
.footer-social-media .icon-facebook {
|
||
|
|
background-position: -90px -90px;
|
||
|
|
}
|
||
|
|
.footer-social-media .icon-youtube {
|
||
|
|
background-position: -162px -90px;
|
||
|
|
}
|
||
|
|
.footer-social-media .icon-zalo {
|
||
|
|
background-position: -234px -90px;
|
||
|
|
}
|
||
|
|
.footer-social-media .icon-qr {
|
||
|
|
background-position: -4px -81px;
|
||
|
|
}
|
||
|
|
.footer-social-media .icon-cash {
|
||
|
|
background-position: -52px -80px;
|
||
|
|
}
|
||
|
|
.footer-social-media .icon-clock {
|
||
|
|
background-position: -94px -81px;
|
||
|
|
}
|
||
|
|
.footer-social-media .icon-wallet {
|
||
|
|
background-position: -134px -81px;
|
||
|
|
}
|
||
|
|
.footer-social-media p {
|
||
|
|
margin: 0 30px 10px 0;
|
||
|
|
font-size: 10px;
|
||
|
|
line-height: 20px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.footer-social-media p:last-child {
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.footer-social-media p .icons, .footer-social-media p .article-cate-container .group-title .title::before, .article-cate-container .group-title .footer-social-media p .title::before, .footer-social-media p .product-sort-group .btn-filter::before, .product-sort-group .footer-social-media p .btn-filter::before, .footer-social-media p .global-header-container .icon-search::before, .global-header-container .footer-social-media p .icon-search::before {
|
||
|
|
margin: auto auto 8px;
|
||
|
|
display: block;
|
||
|
|
width: 30px;
|
||
|
|
height: 20px;
|
||
|
|
background-size: 250px 250px;
|
||
|
|
position: unset;
|
||
|
|
}
|
||
|
|
|
||
|
|
.global-fixed-social {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 10%;
|
||
|
|
right: 10px;
|
||
|
|
z-index: 99;
|
||
|
|
animation-duration: 1s;
|
||
|
|
animation-duration: 1s;
|
||
|
|
animation-fill-mode: both;
|
||
|
|
transform: translateX(2000px) scale(0.7);
|
||
|
|
}
|
||
|
|
.global-fixed-social a {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.global-fixed-social .icon-mess {
|
||
|
|
width: 54px;
|
||
|
|
height: 54px;
|
||
|
|
margin: 0 0 10px;
|
||
|
|
background-position: center;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: 54px;
|
||
|
|
}
|
||
|
|
.global-fixed-social .global-go-top {
|
||
|
|
background: rgba(139, 185, 88, 0.5);
|
||
|
|
width: 40px;
|
||
|
|
height: 40px;
|
||
|
|
border-radius: 50%;
|
||
|
|
transition: 0.3s all;
|
||
|
|
margin: auto;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.global-fixed-social .global-go-top::before {
|
||
|
|
content: "";
|
||
|
|
display: block;
|
||
|
|
height: 100%;
|
||
|
|
transform: rotate(90deg);
|
||
|
|
background: url(../images/global-icon-left.png) no-repeat;
|
||
|
|
background-position: center;
|
||
|
|
background-size: 6px;
|
||
|
|
filter: brightness(100);
|
||
|
|
}
|
||
|
|
|
||
|
|
.global-deal-container {
|
||
|
|
margin: 50px 0 10px;
|
||
|
|
border-radius: 12px;
|
||
|
|
padding: 70px 10px 20px;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.global-deal-container .group-title {
|
||
|
|
text-align: center;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: center;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 8px 0;
|
||
|
|
margin: -116px auto 0;
|
||
|
|
}
|
||
|
|
.global-deal-container .group-title .title {
|
||
|
|
color: #FFF;
|
||
|
|
text-shadow: 0px 4px 4px rgba(156, 0, 0, 0.96);
|
||
|
|
font-size: 32px;
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 800;
|
||
|
|
line-height: 36px;
|
||
|
|
margin: 0 18px 0 0;
|
||
|
|
}
|
||
|
|
.global-deal-container .icon-clock {
|
||
|
|
width: 36px;
|
||
|
|
height: 36px;
|
||
|
|
margin-right: 7px;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: 36px;
|
||
|
|
background-position: center;
|
||
|
|
animation: tada 1.8s infinite ease-in-out;
|
||
|
|
}
|
||
|
|
.global-deal-container .deal-time-holder {
|
||
|
|
margin-top: 7px;
|
||
|
|
font-weight: 300;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
border-radius: 18px;
|
||
|
|
box-shadow: 0px 0px 0px 1px #FFF;
|
||
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.59) 57.29%, rgba(255, 255, 255, 0.8) 96.87%);
|
||
|
|
padding: 5px 14px;
|
||
|
|
line-height: 26px;
|
||
|
|
}
|
||
|
|
.global-deal-container .deal-countdown-holder {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.global-deal-container .deal-countdown-holder b {
|
||
|
|
border-radius: 5px;
|
||
|
|
background: #000;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: 800;
|
||
|
|
position: relative;
|
||
|
|
padding: 0 3px;
|
||
|
|
margin: 0 5px;
|
||
|
|
height: 26px;
|
||
|
|
line-height: 27px;
|
||
|
|
}
|
||
|
|
.global-deal-container .deal-countdown-holder b::after {
|
||
|
|
content: ":";
|
||
|
|
position: absolute;
|
||
|
|
right: -8px;
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
.global-deal-container .deal-countdown-holder b:last-child::after {
|
||
|
|
content: none;
|
||
|
|
}
|
||
|
|
.global-deal-container .global-deal-type {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.global-deal-container .global-deal-type a {
|
||
|
|
margin: 10px 0;
|
||
|
|
color: #fff;
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-weight: 700;
|
||
|
|
opacity: 0.7;
|
||
|
|
padding: 12px;
|
||
|
|
border: 1px solid #fff;
|
||
|
|
border-radius: 50px;
|
||
|
|
width: calc(50% - 5px);
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.global-deal-container .global-deal-type a.current {
|
||
|
|
background: #fff;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
.global-deal-container .btn-deal {
|
||
|
|
display: table;
|
||
|
|
margin: 19px auto 0;
|
||
|
|
color: #fff;
|
||
|
|
text-decoration-line: underline;
|
||
|
|
}
|
||
|
|
.global-deal-container .product-holder {
|
||
|
|
min-height: 280px;
|
||
|
|
margin: 0 -10px 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.homepage {
|
||
|
|
padding: 10px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.homepage .home-slider-group {
|
||
|
|
min-height: 22vh;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.homepage .product-holder {
|
||
|
|
position: relative;
|
||
|
|
min-height: 300px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.homepage-category-list {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
.homepage-category-list a {
|
||
|
|
text-align: center;
|
||
|
|
margin: 0 10px 10px 0;
|
||
|
|
border-radius: 8px;
|
||
|
|
border: 1px solid #E3E3E3;
|
||
|
|
background: linear-gradient(180deg, #FFF 53.65%, #EFEFEF 100%);
|
||
|
|
box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
|
||
|
|
color: #000;
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 16px;
|
||
|
|
width: calc(25% - 8px);
|
||
|
|
padding: 19px 4px 4px 4px;
|
||
|
|
}
|
||
|
|
.homepage-category-list a:nth-child(4n) {
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.homepage-category-list .cat-thumb {
|
||
|
|
display: block;
|
||
|
|
width: 28px;
|
||
|
|
height: 24px;
|
||
|
|
margin: 0 auto 10px;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: center;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home-policy-container {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.home-policy-container .item {
|
||
|
|
border-radius: 10px;
|
||
|
|
border: 1px solid #F5F5F5;
|
||
|
|
background: #FFF;
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
width: calc(50% - 5px);
|
||
|
|
line-height: 14px;
|
||
|
|
font-size: 13px;
|
||
|
|
padding: 12px 10px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.home-policy-container .item:nth-child(5n) {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.home-policy-container b {
|
||
|
|
font-weight: 700;
|
||
|
|
margin-bottom: 4px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.home-policy-container a {
|
||
|
|
color: inherit;
|
||
|
|
display: inline;
|
||
|
|
}
|
||
|
|
.home-policy-container .text {
|
||
|
|
margin: 0;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.home-policy-container .icons, .home-policy-container .article-cate-container .group-title .title::before, .article-cate-container .group-title .home-policy-container .title::before, .home-policy-container .product-sort-group .btn-filter::before, .product-sort-group .home-policy-container .btn-filter::before, .home-policy-container .global-header-container .icon-search::before, .global-header-container .home-policy-container .icon-search::before {
|
||
|
|
width: 48px;
|
||
|
|
height: 40px;
|
||
|
|
margin: 0 auto 8px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.home-policy-container .icon-1 {
|
||
|
|
background-position: -207px -117px;
|
||
|
|
}
|
||
|
|
.home-policy-container .icon-2 {
|
||
|
|
background-position: -10px -171px;
|
||
|
|
}
|
||
|
|
.home-policy-container .icon-3 {
|
||
|
|
background-position: -77px -171px;
|
||
|
|
}
|
||
|
|
.home-policy-container .icon-4 {
|
||
|
|
background-position: -140px -171px;
|
||
|
|
}
|
||
|
|
.home-policy-container .icon-5 {
|
||
|
|
background-position: -201px -171px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home-collection-container {
|
||
|
|
margin: 10px 0;
|
||
|
|
padding: 15px 10px 24px;
|
||
|
|
border-radius: 12px;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
}
|
||
|
|
.home-collection-container .group-title {
|
||
|
|
text-align: center;
|
||
|
|
margin: 0 0 15px 0;
|
||
|
|
color: #FFF;
|
||
|
|
font-size: 24px;
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 300;
|
||
|
|
line-height: 28px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
}
|
||
|
|
.home-collection-container .group-title span {
|
||
|
|
display: block;
|
||
|
|
margin: 8px 0 20px;
|
||
|
|
}
|
||
|
|
.home-collection-container .group-title b {
|
||
|
|
font-size: 36px;
|
||
|
|
font-weight: 700;
|
||
|
|
display: inline-block;
|
||
|
|
line-height: 42px;
|
||
|
|
}
|
||
|
|
.home-collection-container .group-title .text-bg {
|
||
|
|
border-radius: 31px;
|
||
|
|
background: linear-gradient(270deg, #F00 0%, #FF7A41 102.33%);
|
||
|
|
padding: 0 13px;
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
.home-collection-container .btn-view {
|
||
|
|
color: #FFF;
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 400;
|
||
|
|
text-decoration-line: underline;
|
||
|
|
text-transform: uppercase;
|
||
|
|
display: table;
|
||
|
|
margin: 20px auto 0;
|
||
|
|
}
|
||
|
|
.home-collection-container .product-collection {
|
||
|
|
margin: 0 -10px 0 0;
|
||
|
|
min-height: 300px;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home-product-container {
|
||
|
|
padding: 25px 10px;
|
||
|
|
border-radius: 12px;
|
||
|
|
background: #fff;
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
.home-product-container .category-child-holder {
|
||
|
|
display: flex;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: auto;
|
||
|
|
font-size: 12px;
|
||
|
|
margin: 15px 0;
|
||
|
|
}
|
||
|
|
.home-product-container .category-child-holder a {
|
||
|
|
color: #000;
|
||
|
|
margin: 0 34px 0 0;
|
||
|
|
}
|
||
|
|
.home-product-container .group-title {
|
||
|
|
margin: 0;
|
||
|
|
position: relative;
|
||
|
|
font-size: 20px;
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 23px;
|
||
|
|
padding-bottom: 12px;
|
||
|
|
display: table;
|
||
|
|
}
|
||
|
|
.home-product-container .group-title::before, .home-product-container .group-title::after {
|
||
|
|
content: "";
|
||
|
|
height: 8px;
|
||
|
|
transform: skewX(-20deg);
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
}
|
||
|
|
.home-product-container .group-title::before {
|
||
|
|
width: 5px;
|
||
|
|
}
|
||
|
|
.home-product-container .group-title::after {
|
||
|
|
left: 9px;
|
||
|
|
right: 0;
|
||
|
|
}
|
||
|
|
.home-product-container .btn-view {
|
||
|
|
display: table;
|
||
|
|
font-size: 12px;
|
||
|
|
margin: 15px auto 0;
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home-article-container {
|
||
|
|
padding: 20px 10px 10px;
|
||
|
|
border-radius: 12px;
|
||
|
|
background: #FFF;
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
.home-article-container .group-title {
|
||
|
|
text-align: center;
|
||
|
|
line-height: 14px;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.home-article-container .group-title .title {
|
||
|
|
margin: 0 0 9px 0;
|
||
|
|
font-size: 20px;
|
||
|
|
line-height: 23px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-transform: uppercase;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.home-article-container .group-title a {
|
||
|
|
color: #00A551;
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: 400;
|
||
|
|
text-decoration-line: underline;
|
||
|
|
text-transform: uppercase;
|
||
|
|
display: table;
|
||
|
|
margin: auto;
|
||
|
|
}
|
||
|
|
.home-article-container .video-holder {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.home-article-container .video-item {
|
||
|
|
position: relative;
|
||
|
|
margin: 10px 0 0 0;
|
||
|
|
border-radius: 10px;
|
||
|
|
overflow: hidden;
|
||
|
|
cursor: pointer;
|
||
|
|
width: calc(50% - 5px);
|
||
|
|
padding-bottom: 30%;
|
||
|
|
}
|
||
|
|
.home-article-container .video-item::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.home-article-container .video-item::after {
|
||
|
|
content: "";
|
||
|
|
background: url(../images/icon-video.png) no-repeat center;
|
||
|
|
background-size: contain;
|
||
|
|
width: 30px;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 30px;
|
||
|
|
border-radius: 50%;
|
||
|
|
text-align: center;
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.home-article-container .video-item:nth-child(1) {
|
||
|
|
width: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding-bottom: 62%;
|
||
|
|
}
|
||
|
|
.home-article-container .video-item:nth-child(1)::after {
|
||
|
|
width: 60px;
|
||
|
|
height: 60px;
|
||
|
|
}
|
||
|
|
.home-article-container .video-item:nth-child(1) .title {
|
||
|
|
display: block;
|
||
|
|
font-size: 13px;
|
||
|
|
position: absolute;
|
||
|
|
left: 10px;
|
||
|
|
right: 10px;
|
||
|
|
bottom: 15px;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
color: #fff;
|
||
|
|
z-index: 2;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
}
|
||
|
|
.home-article-container .video-item .title {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.home-article-container .video-item img {
|
||
|
|
position: absolute;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
-o-object-fit: cover;
|
||
|
|
object-fit: cover;
|
||
|
|
}
|
||
|
|
.home-article-container .custom-dots .owl-dots {
|
||
|
|
margin-top: 10px !important;
|
||
|
|
position: unset;
|
||
|
|
}
|
||
|
|
.home-article-container .custom-dots .owl-dots .owl-dot {
|
||
|
|
border-color: #00A551;
|
||
|
|
}
|
||
|
|
.home-article-container .art-item {
|
||
|
|
margin-top: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home-customer-review-container {
|
||
|
|
padding: 50px 10px 12px;
|
||
|
|
background-color: #fff;
|
||
|
|
border-radius: 15px;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
overflow: hidden;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: top;
|
||
|
|
background-size: contain;
|
||
|
|
font-size: 12px;
|
||
|
|
line-height: 16px;
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .group-title {
|
||
|
|
text-align: center;
|
||
|
|
width: 100%;
|
||
|
|
margin: 0 0 10px;
|
||
|
|
line-height: 14px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .group-title p {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .group-title .title {
|
||
|
|
color: #000;
|
||
|
|
font-size: 20px;
|
||
|
|
line-height: 23px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 0 0 7px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .item {
|
||
|
|
background: #fff;
|
||
|
|
position: relative;
|
||
|
|
margin: 65px 0 0 0;
|
||
|
|
border-radius: 16px;
|
||
|
|
border: 2px solid #76b657;
|
||
|
|
padding: 10px 10px 14px;
|
||
|
|
width: calc(50% - 5px);
|
||
|
|
}
|
||
|
|
.home-customer-review-container .item::before {
|
||
|
|
content: "0" counter(section);
|
||
|
|
counter-increment: section;
|
||
|
|
font-size: 36px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 42px;
|
||
|
|
text-decoration-line: underline;
|
||
|
|
text-transform: uppercase;
|
||
|
|
background: #fff;
|
||
|
|
margin: 0 0 12px;
|
||
|
|
display: block;
|
||
|
|
position: absolute;
|
||
|
|
top: -52px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .item img {
|
||
|
|
display: block;
|
||
|
|
width: auto;
|
||
|
|
border-radius: 15px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .item-title {
|
||
|
|
line-height: 14px;
|
||
|
|
font-size: 11px;
|
||
|
|
display: table;
|
||
|
|
border-radius: 16px 0;
|
||
|
|
color: #FFF;
|
||
|
|
font-weight: 700;
|
||
|
|
padding: 9px 5px 9px 8px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 0;
|
||
|
|
position: relative;
|
||
|
|
top: -11px;
|
||
|
|
left: -11px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .item-summary {
|
||
|
|
margin-bottom: 12px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .btn-view {
|
||
|
|
display: table;
|
||
|
|
text-decoration: underline;
|
||
|
|
margin: 0 0 12px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home-introduce-container {
|
||
|
|
margin: 10px 0;
|
||
|
|
border-radius: 15px;
|
||
|
|
background: #FFF;
|
||
|
|
position: relative;
|
||
|
|
padding: 0;
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 16px;
|
||
|
|
border: 3px solid #00A551;
|
||
|
|
}
|
||
|
|
.home-introduce-container img {
|
||
|
|
display: block;
|
||
|
|
width: auto;
|
||
|
|
border-radius: 15px;
|
||
|
|
}
|
||
|
|
.home-introduce-container svg {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.home-introduce-container .introduce-content-holder {
|
||
|
|
padding: 0 10px;
|
||
|
|
margin-top: -20px;
|
||
|
|
}
|
||
|
|
.home-introduce-container .introduce-line-top svg:last-child {
|
||
|
|
margin-top: -80px !important;
|
||
|
|
}
|
||
|
|
.home-introduce-container .introduce-line-bottom {
|
||
|
|
margin: -40px 0 0 0;
|
||
|
|
max-height: 122px;
|
||
|
|
}
|
||
|
|
.home-introduce-container p {
|
||
|
|
margin: 0 0 12px;
|
||
|
|
}
|
||
|
|
.home-introduce-container .title {
|
||
|
|
font-size: 20px;
|
||
|
|
line-height: 23px;
|
||
|
|
font-weight: 700;
|
||
|
|
margin: 0 0 18px;
|
||
|
|
}
|
||
|
|
.home-introduce-container .quote {
|
||
|
|
border-radius: 20px 0px;
|
||
|
|
background: linear-gradient(270deg, rgba(0, 165, 81, 0.25) 0%, rgba(142, 185, 88, 0.25) 102.33%);
|
||
|
|
padding: 16px;
|
||
|
|
margin-bottom: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home-customer-images-container {
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
.home-customer-images-container img {
|
||
|
|
display: block;
|
||
|
|
margin: auto;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.home-customer-images-container .col-left {
|
||
|
|
margin: 0 0 12px;
|
||
|
|
}
|
||
|
|
.home-customer-images-container .col-left img {
|
||
|
|
border-radius: 15px;
|
||
|
|
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.25);
|
||
|
|
}
|
||
|
|
.home-customer-images-container .col-right {
|
||
|
|
padding: 10px;
|
||
|
|
border-radius: 15px;
|
||
|
|
background: linear-gradient(90deg, #00A551 0%, #FFB446 100%);
|
||
|
|
}
|
||
|
|
.home-customer-images-container .owl-theme .active span {
|
||
|
|
background: linear-gradient(90deg, #FFB800 2.7%, #FFF59F 57.03%, #FFB800 100%) !important;
|
||
|
|
border-color: transparent !important;
|
||
|
|
}
|
||
|
|
.home-customer-images-container .owl-theme span {
|
||
|
|
width: 8px !important;
|
||
|
|
height: 8px !important;
|
||
|
|
border: 1px solid #D9D9D9 !important;
|
||
|
|
background: transparent !important;
|
||
|
|
margin: 0 3px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.deal-page .global-deal-container {
|
||
|
|
margin-top: 35px;
|
||
|
|
}
|
||
|
|
.deal-page .global-deal-container .group-title {
|
||
|
|
margin: -91px auto 0;
|
||
|
|
}
|
||
|
|
.deal-page .product-holder {
|
||
|
|
margin: 0;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.deal-page .p-item {
|
||
|
|
margin-bottom: 10px;
|
||
|
|
width: calc(50% - 5px);
|
||
|
|
}
|
||
|
|
.deal-page .paging a {
|
||
|
|
border-color: #fff;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.deal-page .paging a * {
|
||
|
|
filter: brightness(100);
|
||
|
|
}
|
||
|
|
.deal-page .paging a.current {
|
||
|
|
background: linear-gradient(90deg, #FFB800 2.7%, #FFF59F 57.03%, #FFB800 100%);
|
||
|
|
border-color: transparent;
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
.deal-page .paging a.current * {
|
||
|
|
filter: unset;
|
||
|
|
}
|
||
|
|
|
||
|
|
.product-page .product-banner-group {
|
||
|
|
margin-bottom: 13px;
|
||
|
|
min-height: 10vh;
|
||
|
|
}
|
||
|
|
.product-page .product-banner-group img {
|
||
|
|
border-radius: 12px;
|
||
|
|
}
|
||
|
|
.product-page .product-content-container {
|
||
|
|
padding: 10px;
|
||
|
|
background: #fff;
|
||
|
|
border-radius: 12px;
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
.product-page .product-holder {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.product-page .p-item {
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
width: calc(50% - 5px);
|
||
|
|
}
|
||
|
|
.product-page .static-html-container {
|
||
|
|
padding: 15px 0 10px 0;
|
||
|
|
font-size: 13px;
|
||
|
|
margin-top: 35px;
|
||
|
|
border-top: 2px solid #00A551;
|
||
|
|
}
|
||
|
|
|
||
|
|
.static-html-container {
|
||
|
|
position: relative;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.static-html-container .static-content * {
|
||
|
|
font-family: inherit !important;
|
||
|
|
line-height: inherit !important;
|
||
|
|
}
|
||
|
|
.static-html-container .btn-static-group {
|
||
|
|
text-align: center;
|
||
|
|
margin-top: 14px;
|
||
|
|
}
|
||
|
|
.static-html-container .btn-static-group a {
|
||
|
|
color: #00A551;
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 16px;
|
||
|
|
text-decoration-line: underline;
|
||
|
|
text-transform: uppercase;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.product-category-child {
|
||
|
|
margin: 13px 0 20px;
|
||
|
|
display: flex;
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 15px;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
.product-category-child .item {
|
||
|
|
color: #000;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0 10px;
|
||
|
|
text-align: center;
|
||
|
|
margin: 0 13px 0 0;
|
||
|
|
width: 70px;
|
||
|
|
}
|
||
|
|
.product-category-child .image {
|
||
|
|
display: block;
|
||
|
|
width: 50px;
|
||
|
|
height: 50px;
|
||
|
|
border-radius: 50%;
|
||
|
|
position: relative;
|
||
|
|
margin: 0 auto 7px auto;
|
||
|
|
overflow: hidden;
|
||
|
|
background: #FFF;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: center;
|
||
|
|
background-size: 28px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.product-sort-group {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
border-radius: 12px;
|
||
|
|
background: #FFF;
|
||
|
|
padding: 5px 10px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.product-sort-group .box-left, .product-sort-group .box-right {
|
||
|
|
padding: 5px 0;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.product-sort-group .btn-filter {
|
||
|
|
color: #000;
|
||
|
|
line-height: 33px;
|
||
|
|
border-radius: 8px;
|
||
|
|
border: 1px solid #F5F5F5;
|
||
|
|
background: #FFF;
|
||
|
|
padding: 0 10px;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.product-sort-group .btn-filter::before {
|
||
|
|
content: "";
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
background-position: -216px -44px;
|
||
|
|
margin-right: 3px;
|
||
|
|
}
|
||
|
|
.product-sort-group select {
|
||
|
|
height: 34px;
|
||
|
|
border-radius: 8px;
|
||
|
|
border: 1px solid #F5F5F5;
|
||
|
|
background: #FFF;
|
||
|
|
padding: 0 5px;
|
||
|
|
}
|
||
|
|
.product-sort-group .box-right .icons, .product-sort-group .box-right .article-cate-container .group-title .title::before, .article-cate-container .group-title .product-sort-group .box-right .title::before, .product-sort-group .box-right .global-header-container .icon-search::before, .global-header-container .product-sort-group .box-right .icon-search::before, .product-sort-group .box-right .btn-filter::before {
|
||
|
|
width: 30px;
|
||
|
|
height: 30px;
|
||
|
|
background-color: #F3F3F3;
|
||
|
|
margin: 0 0 0 5px;
|
||
|
|
border-radius: 8px;
|
||
|
|
overflow: hidden;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.product-sort-group .box-right .icons.current::before, .product-sort-group .box-right .article-cate-container .group-title .current.title::before, .article-cate-container .group-title .product-sort-group .box-right .current.title::before, .product-sort-group .box-right .global-header-container .current.icon-search::before, .global-header-container .product-sort-group .box-right .current.icon-search::before, .product-sort-group .box-right .current.btn-filter::before {
|
||
|
|
content: "";
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
.product-sort-group .box-right .icons.current::after {
|
||
|
|
content: "";
|
||
|
|
background: inherit;
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
z-index: 1;
|
||
|
|
filter: brightness(100);
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
.product-sort-group .icon-grid {
|
||
|
|
background-position: -174px -75px;
|
||
|
|
}
|
||
|
|
.product-sort-group .icon-list {
|
||
|
|
background-position: -211px -75px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.product-filter-container {
|
||
|
|
background: #fff;
|
||
|
|
z-index: -99;
|
||
|
|
padding: 10px;
|
||
|
|
position: fixed;
|
||
|
|
bottom: -100%;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
top: 100%;
|
||
|
|
transition: 0.15s all;
|
||
|
|
}
|
||
|
|
.product-filter-container.active {
|
||
|
|
transition: 0.15s all;
|
||
|
|
bottom: 0;
|
||
|
|
top: 0;
|
||
|
|
z-index: 999;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-footer {
|
||
|
|
border-top: 1px solid #e1e1e1;
|
||
|
|
padding: 10px 0;
|
||
|
|
text-align: center;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin-top: 10px;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-footer a {
|
||
|
|
width: calc(50% - 5px);
|
||
|
|
line-height: 34px;
|
||
|
|
padding: 0 10px;
|
||
|
|
color: #000;
|
||
|
|
box-shadow: 0px 0px 0px 1px #e5e5e5;
|
||
|
|
border-radius: 8px;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-footer a:first-child {
|
||
|
|
color: #E80E0E;
|
||
|
|
box-shadow: 0px 0px 0px 1px #E80E0E;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-content {
|
||
|
|
height: calc(100% - 65px);
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-item {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-item.active .filter-list a {
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-title {
|
||
|
|
font-weight: 500;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-list {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-list a {
|
||
|
|
width: calc(50% - 10px);
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
color: #000;
|
||
|
|
line-height: 18px;
|
||
|
|
border: 1px solid #d5d5d5;
|
||
|
|
border-radius: 8px;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 13px;
|
||
|
|
padding: 8px 10px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-list a:nth-child(n+7) {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.product-filter-container .filter-list .current {
|
||
|
|
color: #fff;
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
.product-filter-container .btn-filter {
|
||
|
|
display: block;
|
||
|
|
text-align: center;
|
||
|
|
position: relative;
|
||
|
|
line-height: 30px;
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
.product-filter-container .btn-filter::before {
|
||
|
|
content: "Xem thêm +";
|
||
|
|
padding: 0 20px;
|
||
|
|
background: #fff;
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
.product-filter-container .btn-filter::after {
|
||
|
|
content: "";
|
||
|
|
height: 1px;
|
||
|
|
background: #d5d5d5;
|
||
|
|
width: 100%;
|
||
|
|
position: absolute;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
top: 50%;
|
||
|
|
transform: translateY(-50%);
|
||
|
|
z-index: -1;
|
||
|
|
}
|
||
|
|
.product-filter-container .btn-filter.active::before {
|
||
|
|
content: "Thu gọn -";
|
||
|
|
}
|
||
|
|
|
||
|
|
.product-detail-page .pd-box-group {
|
||
|
|
border-radius: 12px;
|
||
|
|
background: #FFF;
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
.product-detail-page .page-title {
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 21px;
|
||
|
|
margin: 0 0 15px;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-price-group {
|
||
|
|
margin: 10px 0;
|
||
|
|
line-height: 21px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-price-group * {
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-price {
|
||
|
|
font-size: 32px;
|
||
|
|
font-weight: 800;
|
||
|
|
margin: 0 10px 5px 0;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-price u {
|
||
|
|
font-size: 20px;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-old-price {
|
||
|
|
margin: 0 10px 5px 0;
|
||
|
|
color: #A3A3A3;
|
||
|
|
font-size: 18px;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-discount {
|
||
|
|
color: #fff;
|
||
|
|
border-radius: 5px;
|
||
|
|
background: #E80E0E;
|
||
|
|
font-weight: 500;
|
||
|
|
padding: 0 3px;
|
||
|
|
vertical-align: text-bottom;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-desc-group .group-title, .product-detail-page .pd-spec-group .group-title, .product-detail-page .pd-comment-container .group-title {
|
||
|
|
border-bottom: 1px solid #F5F5F5;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 20px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 0 -10px 13px;
|
||
|
|
padding: 5px 10px 0;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-desc-group .group-title span, .product-detail-page .pd-spec-group .group-title span, .product-detail-page .pd-comment-container .group-title span {
|
||
|
|
display: inline-block;
|
||
|
|
padding-bottom: 7px;
|
||
|
|
border-bottom: 1px solid #00A551;
|
||
|
|
}
|
||
|
|
.product-detail-page .static-html-container {
|
||
|
|
margin: 0 -10px;
|
||
|
|
}
|
||
|
|
.product-detail-page .static-html-container .static-content {
|
||
|
|
padding: 0 10px;
|
||
|
|
}
|
||
|
|
.product-detail-page .static-html-container .group-title {
|
||
|
|
margin: 0 0 13px;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-desc-group {
|
||
|
|
line-height: 20px;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-desc-group .static-html-container {
|
||
|
|
padding: 0;
|
||
|
|
margin-bottom: 30px;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-desc-group .static-html-container::before {
|
||
|
|
content: none;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-spec-group .btn-show {
|
||
|
|
display: block;
|
||
|
|
text-align: center;
|
||
|
|
line-height: 30px;
|
||
|
|
margin-top: 10px;
|
||
|
|
color: #00A551;
|
||
|
|
text-transform: uppercase;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-spec-holder {
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.product-detail-page .pd-spec-holder tr:nth-child(n+12) {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-image-large {
|
||
|
|
border-radius: 15px;
|
||
|
|
margin-bottom: 24px;
|
||
|
|
overflow: hidden;
|
||
|
|
position: relative;
|
||
|
|
border: 6px solid #92c26c;
|
||
|
|
border-left: 6px solid #519064;
|
||
|
|
border-right: 6px solid #519064;
|
||
|
|
}
|
||
|
|
.pd-image-large img {
|
||
|
|
border-radius: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-gallery-holder {
|
||
|
|
padding: 0 20px;
|
||
|
|
margin: 20px 0;
|
||
|
|
}
|
||
|
|
.pd-gallery-holder .item {
|
||
|
|
display: block;
|
||
|
|
overflow: hidden;
|
||
|
|
border-radius: 15px;
|
||
|
|
border: 1px solid #D9D9D9;
|
||
|
|
}
|
||
|
|
.pd-gallery-holder .item.mz-thumb-selected {
|
||
|
|
border: 2px solid #00A551;
|
||
|
|
}
|
||
|
|
.pd-gallery-holder img {
|
||
|
|
filter: unset !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-summary-group {
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 16px;
|
||
|
|
margin: 0 0 15px;
|
||
|
|
}
|
||
|
|
.pd-summary-group .pd-summary-btn {
|
||
|
|
display: table;
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
.pd-summary-group .pd-summary-btn::before {
|
||
|
|
content: "Xem thêm +";
|
||
|
|
}
|
||
|
|
.pd-summary-group .pd-summary-btn.active::before {
|
||
|
|
content: "Thu gọn -";
|
||
|
|
}
|
||
|
|
.pd-summary-group .pd-summary-list.active .item {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.pd-summary-group .item {
|
||
|
|
margin-bottom: 10px;
|
||
|
|
position: relative;
|
||
|
|
padding-left: 12px;
|
||
|
|
}
|
||
|
|
.pd-summary-group .item::before {
|
||
|
|
content: "●";
|
||
|
|
font-size: 6px;
|
||
|
|
position: absolute;
|
||
|
|
top: -1px;
|
||
|
|
left: 0;
|
||
|
|
}
|
||
|
|
.pd-summary-group .item:nth-child(n+6) {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-deal-price-group {
|
||
|
|
border-radius: 15px;
|
||
|
|
background: linear-gradient(270deg, #F00 0%, #FF7A41 102.33%);
|
||
|
|
margin: 15px 0;
|
||
|
|
padding: 8px 16px 14px;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: 300;
|
||
|
|
line-height: 26px;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-price {
|
||
|
|
margin: 0 0 4px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-price * {
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-price > span {
|
||
|
|
min-width: 90px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-price b {
|
||
|
|
font-size: 28px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 33px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-price b u {
|
||
|
|
vertical-align: middle;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .p-deal-old-price {
|
||
|
|
font-weight: 400;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .p-deal-discount {
|
||
|
|
color: #E80E0E;
|
||
|
|
font-weight: 500;
|
||
|
|
background: #fff;
|
||
|
|
padding: 0 3px;
|
||
|
|
display: inline-block;
|
||
|
|
min-width: unset !important;
|
||
|
|
border-radius: 5px;
|
||
|
|
line-height: 20px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-time {
|
||
|
|
margin-bottom: 4px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-time, .pd-deal-price-group .pd-deal-countdown {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-countdown b {
|
||
|
|
margin: 0 0 0 10px;
|
||
|
|
background: #fff;
|
||
|
|
border-radius: 5px;
|
||
|
|
padding: 4px 3px;
|
||
|
|
position: relative;
|
||
|
|
color: #E80E0E;
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: 800;
|
||
|
|
line-height: 17px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-countdown b::before {
|
||
|
|
content: ":";
|
||
|
|
color: #fff;
|
||
|
|
position: absolute;
|
||
|
|
left: -8px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-countdown b:first-child::before {
|
||
|
|
content: none;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-info {
|
||
|
|
width: 100%;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
font-size: 13px;
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 600;
|
||
|
|
margin-top: 10px;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-line {
|
||
|
|
border-radius: 12px;
|
||
|
|
background: #FFF7AF;
|
||
|
|
max-width: 270px;
|
||
|
|
width: 100%;
|
||
|
|
height: 16px;
|
||
|
|
position: relative;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-icon {
|
||
|
|
height: 16px;
|
||
|
|
border-radius: 20px;
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
width: 0;
|
||
|
|
background: #FFD600;
|
||
|
|
max-width: 100%;
|
||
|
|
min-width: 10px;
|
||
|
|
}
|
||
|
|
.pd-deal-price-group .pd-deal-icon::before {
|
||
|
|
content: "";
|
||
|
|
background: url(../images/p-icon-deal-discount.png) no-repeat right;
|
||
|
|
background-size: 25px;
|
||
|
|
width: 25px;
|
||
|
|
height: 25px;
|
||
|
|
position: absolute;
|
||
|
|
bottom: -3px;
|
||
|
|
right: -11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-status-group {
|
||
|
|
margin: 0 0 18px;
|
||
|
|
font-size: 12px;
|
||
|
|
line-height: 14px;
|
||
|
|
}
|
||
|
|
.pd-status-group b {
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
.pd-status-group p {
|
||
|
|
display: inline-block;
|
||
|
|
margin: 0 20px 10px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-config_group-holder {
|
||
|
|
margin: 0 0 15px 0;
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 16px;
|
||
|
|
}
|
||
|
|
.pd-config_group-holder .group-title {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.pd-config_group-holder .pd-config_group-list {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.pd-config_group-holder .pd-config_group-list a {
|
||
|
|
margin: 11px 0 0 0;
|
||
|
|
width: calc(50% - 4px);
|
||
|
|
padding: 10px;
|
||
|
|
border-radius: 8px;
|
||
|
|
border: 1px solid #D9D9D9;
|
||
|
|
background: #FFF;
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
.pd-config_group-holder .pd-config_group-list a.current {
|
||
|
|
border: 2px solid #00A551;
|
||
|
|
}
|
||
|
|
.pd-config_group-holder .pd-config_group-list .title {
|
||
|
|
margin-bottom: 4px;
|
||
|
|
}
|
||
|
|
.pd-config_group-holder .pd-config_group-list .price {
|
||
|
|
font-size: 15px;
|
||
|
|
font-weight: 800;
|
||
|
|
line-height: 18px;
|
||
|
|
}
|
||
|
|
.pd-config_group-holder .pd-config_group-list .price u {
|
||
|
|
font-size: 12px;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-offer-group {
|
||
|
|
margin: 36px 0 18px;
|
||
|
|
border-radius: 15px;
|
||
|
|
border: 1px dashed #00A551;
|
||
|
|
background: #FFF;
|
||
|
|
padding: 34px 20px 14px;
|
||
|
|
position: relative;
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 20px;
|
||
|
|
}
|
||
|
|
.pd-offer-group .group-title {
|
||
|
|
border-radius: 20px;
|
||
|
|
margin: 0;
|
||
|
|
color: #FFF;
|
||
|
|
line-height: 38px;
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-align: center;
|
||
|
|
padding: 0 15px;
|
||
|
|
position: absolute;
|
||
|
|
top: -20px;
|
||
|
|
left: 20px;
|
||
|
|
}
|
||
|
|
.pd-offer-group .item {
|
||
|
|
position: relative;
|
||
|
|
padding-left: 35px;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
.pd-offer-group .item:last-child {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.pd-offer-group .item::before {
|
||
|
|
content: "";
|
||
|
|
width: 16px;
|
||
|
|
height: 10px;
|
||
|
|
border: 3px solid #00A551;
|
||
|
|
border-top: 0;
|
||
|
|
border-right: 0;
|
||
|
|
position: absolute;
|
||
|
|
top: 2px;
|
||
|
|
left: 0;
|
||
|
|
transform: rotate(-45deg);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-quantity-group {
|
||
|
|
margin: 14px 0;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.pd-quantity-group p {
|
||
|
|
margin: 0 22px 0 0;
|
||
|
|
}
|
||
|
|
.pd-quantity-group .quanity-change-group {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
border-radius: 5px;
|
||
|
|
box-shadow: 0px 0px 0px 1px #D9D9D9;
|
||
|
|
background: #FFF;
|
||
|
|
text-align: center;
|
||
|
|
width: 102px;
|
||
|
|
}
|
||
|
|
.pd-quantity-group .quanity-change-group a {
|
||
|
|
line-height: 40px;
|
||
|
|
width: 28px;
|
||
|
|
color: #000;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.pd-quantity-group .quanity-change-group input {
|
||
|
|
width: 46px;
|
||
|
|
height: 40px;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
border: 0;
|
||
|
|
border-left: 1px solid #CECECE;
|
||
|
|
border-right: 1px solid #CECECE;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-btn-group {
|
||
|
|
margin: 14px 0;
|
||
|
|
}
|
||
|
|
.pd-btn-group a {
|
||
|
|
margin: 0 0 8px;
|
||
|
|
display: block;
|
||
|
|
text-align: center;
|
||
|
|
color: #000;
|
||
|
|
border-radius: 10px;
|
||
|
|
line-height: 21px;
|
||
|
|
border: 1px solid transparent;
|
||
|
|
background: #fff;
|
||
|
|
padding: 8px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.pd-btn-group a b {
|
||
|
|
font-weight: 700;
|
||
|
|
font-size: 18px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.pd-btn-group a span {
|
||
|
|
display: block;
|
||
|
|
line-height: 15px;
|
||
|
|
}
|
||
|
|
.pd-btn-group .btn-buynow {
|
||
|
|
line-height: 52px;
|
||
|
|
color: #fff;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.pd-btn-group .btn-add-cart {
|
||
|
|
border-color: #00A551;
|
||
|
|
color: #00A551;
|
||
|
|
}
|
||
|
|
.pd-btn-group .btn-pay-install {
|
||
|
|
background: #286ED6;
|
||
|
|
border-color: transparent;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.pd-btn-group .btn-credit {
|
||
|
|
background: linear-gradient(90deg, #FFB800 2.7%, #FFF59F 57.03%, #FFB800 100%);
|
||
|
|
}
|
||
|
|
.pd-btn-group .btn-credit img {
|
||
|
|
display: inline-block;
|
||
|
|
margin: 0 4px;
|
||
|
|
width: auto;
|
||
|
|
height: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-static-item {
|
||
|
|
margin-bottom: 16px;
|
||
|
|
border-radius: 15px;
|
||
|
|
overflow: hidden;
|
||
|
|
background: linear-gradient(90deg, #FFB446 0%, #00A551 100%);
|
||
|
|
padding: 2px;
|
||
|
|
}
|
||
|
|
.pd-static-item img {
|
||
|
|
display: block;
|
||
|
|
width: auto;
|
||
|
|
margin: auto;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-video {
|
||
|
|
background: #fff;
|
||
|
|
padding: 12px;
|
||
|
|
border-radius: 0 0 13px 13px;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-video a {
|
||
|
|
display: block;
|
||
|
|
position: relative;
|
||
|
|
padding-bottom: 100%;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-video a::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-video a::after {
|
||
|
|
content: "";
|
||
|
|
background: url(../images/icon-video.png) no-repeat center;
|
||
|
|
background-size: contain;
|
||
|
|
width: 56px;
|
||
|
|
height: 56px;
|
||
|
|
line-height: 30px;
|
||
|
|
border-radius: 50%;
|
||
|
|
text-align: center;
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-video img {
|
||
|
|
position: absolute;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
-o-object-fit: cover;
|
||
|
|
object-fit: cover;
|
||
|
|
}
|
||
|
|
.pd-static-item .group-title {
|
||
|
|
font-size: 15px;
|
||
|
|
line-height: 18px;
|
||
|
|
font-weight: bold;
|
||
|
|
text-align: center;
|
||
|
|
margin: 0;
|
||
|
|
padding: 12px;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-summary {
|
||
|
|
background: #fff;
|
||
|
|
text-align: center;
|
||
|
|
padding: 20px;
|
||
|
|
border-radius: 13px;
|
||
|
|
font-size: 15px;
|
||
|
|
line-height: 20px;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-summary .title {
|
||
|
|
color: #00A551;
|
||
|
|
font-weight: 800;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-summary p {
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-summary a {
|
||
|
|
display: table;
|
||
|
|
margin: 10px auto 14px;
|
||
|
|
color: #FF7A00;
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-summary .pd-btn-support {
|
||
|
|
display: block;
|
||
|
|
margin: 14px 0 0 0;
|
||
|
|
border-radius: 5px;
|
||
|
|
border: 1px solid #FF7A00;
|
||
|
|
background: #FFF;
|
||
|
|
font-size: 15px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 32px;
|
||
|
|
transition: 0.2s all;
|
||
|
|
}
|
||
|
|
.pd-static-item .item-summary .pd-btn-support:hover {
|
||
|
|
background: #FF7A00;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.pd-static-item .static-line {
|
||
|
|
font-weight: 300;
|
||
|
|
position: relative;
|
||
|
|
margin: 14px 0 8px;
|
||
|
|
}
|
||
|
|
.pd-static-item .static-line::before {
|
||
|
|
content: "";
|
||
|
|
background: #D9D9D9;
|
||
|
|
height: 1px;
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
transform: translateY(-50%);
|
||
|
|
}
|
||
|
|
.pd-static-item .static-line span {
|
||
|
|
padding: 0 12px;
|
||
|
|
background: #fff;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-spec-holder {
|
||
|
|
padding: 10px;
|
||
|
|
line-height: 20px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.pd-spec-holder * {
|
||
|
|
margin: 0;
|
||
|
|
font-weight: inherit !important;
|
||
|
|
line-height: inherit !important;
|
||
|
|
}
|
||
|
|
.pd-spec-holder tr:nth-child(odd) {
|
||
|
|
background: #F3F3F3;
|
||
|
|
}
|
||
|
|
.pd-spec-holder tr:nth-child(odd) td:first-child {
|
||
|
|
border-radius: 5px 0 0 5px;
|
||
|
|
}
|
||
|
|
.pd-spec-holder tr:nth-child(odd) td:last-child {
|
||
|
|
border-radius: 0 5px 5px 0;
|
||
|
|
}
|
||
|
|
.pd-spec-holder td {
|
||
|
|
padding: 10px 12px;
|
||
|
|
vertical-align: baseline;
|
||
|
|
}
|
||
|
|
.pd-spec-holder td:nth-child(1) {
|
||
|
|
font-weight: bold !important;
|
||
|
|
min-width: 100px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pd-product-tab-container {
|
||
|
|
min-height: 380px;
|
||
|
|
}
|
||
|
|
.pd-product-tab-container .tab-title-group {
|
||
|
|
padding: 5px 10px 0;
|
||
|
|
margin: 0 -10px;
|
||
|
|
border-bottom: 1px solid #F5F5F5;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
display: flex;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
.pd-product-tab-container .tab-title-group a {
|
||
|
|
margin-right: 27px;
|
||
|
|
color: #5B5B5B;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 23px;
|
||
|
|
padding-bottom: 11px;
|
||
|
|
border-bottom: 1px solid transparent;
|
||
|
|
}
|
||
|
|
.pd-product-tab-container .tab-title-group a.active {
|
||
|
|
border-color: #00A551;
|
||
|
|
}
|
||
|
|
.pd-product-tab-container .box-product-holder {
|
||
|
|
position: relative;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.article-page {
|
||
|
|
padding-bottom: 10px;
|
||
|
|
}
|
||
|
|
.article-page .article-category-list {
|
||
|
|
display: flex;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
.article-page .article-category-list a {
|
||
|
|
margin: 0 6px 10px 0;
|
||
|
|
border-radius: 0px 24px;
|
||
|
|
color: #000;
|
||
|
|
background: #FFF;
|
||
|
|
padding: 0 14px;
|
||
|
|
line-height: 32px;
|
||
|
|
white-space: nowrap;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.article-page .article-category-list a.current {
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.article-page .article-category-list a.current .image {
|
||
|
|
filter: brightness(100);
|
||
|
|
}
|
||
|
|
.article-page .article-category-list .image {
|
||
|
|
width: 14px;
|
||
|
|
height: 14px;
|
||
|
|
margin-right: 5px;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: center;
|
||
|
|
background-size: 14px auto;
|
||
|
|
}
|
||
|
|
.article-page .article-category-list .title {
|
||
|
|
font-size: 11px;
|
||
|
|
font-weight: 600;
|
||
|
|
color: inherit;
|
||
|
|
}
|
||
|
|
.article-page .article-list {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.article-page .top-article-group, .article-page .article-cate-container {
|
||
|
|
padding: 10px;
|
||
|
|
border-radius: 12px;
|
||
|
|
background: #fff;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.article-page .art-item {
|
||
|
|
padding: 8px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.top-article-group .group-title {
|
||
|
|
font-size: 20px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-transform: uppercase;
|
||
|
|
line-height: 23px;
|
||
|
|
margin-bottom: 14px;
|
||
|
|
}
|
||
|
|
.top-article-group .art-item:first-child {
|
||
|
|
display: block;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.top-article-group .art-item:first-child .art-img, .top-article-group .art-item:first-child .art-text {
|
||
|
|
width: 100%;
|
||
|
|
margin: 0 0 14px 0;
|
||
|
|
}
|
||
|
|
.top-article-group .art-item:first-child .art-img {
|
||
|
|
padding-bottom: 62%;
|
||
|
|
}
|
||
|
|
.top-article-group .art-item:first-child .art-summary {
|
||
|
|
display: block;
|
||
|
|
margin: 8px 0;
|
||
|
|
color: #2F2F2F;
|
||
|
|
}
|
||
|
|
|
||
|
|
.article-cate-container .group-title {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin: 0 0 14px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.article-cate-container .group-title a {
|
||
|
|
margin-top: 10px;
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
.article-cate-container .group-title .title {
|
||
|
|
font-size: 20px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 23px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
position: relative;
|
||
|
|
padding-left: 32px;
|
||
|
|
margin: 10px 0 0;
|
||
|
|
}
|
||
|
|
.article-cate-container .group-title .title::before {
|
||
|
|
content: "";
|
||
|
|
width: 22px;
|
||
|
|
height: 24px;
|
||
|
|
position: absolute;
|
||
|
|
left: 0;
|
||
|
|
background-position: -6px -93px;
|
||
|
|
background-size: 200px 200px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.article-category-page .category-page-title {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
margin-bottom: 14px;
|
||
|
|
}
|
||
|
|
.article-category-page .category-page-title .title {
|
||
|
|
font-size: 20px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 23px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.article-category-page .category-page-title .image {
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
margin-right: 5px;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: contain;
|
||
|
|
background-position: center;
|
||
|
|
}
|
||
|
|
.article-category-page .top-article-group {
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.article-detail-page .col-left, .article-detail-page .col-right, .article-detail-page .article-related-container {
|
||
|
|
border-radius: 15px;
|
||
|
|
background: #FFF;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
.article-detail-page .col-right .group-title {
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 7px -10px 15px;
|
||
|
|
border-bottom: 1px solid #F5F5F5;
|
||
|
|
padding: 0 10px;
|
||
|
|
}
|
||
|
|
.article-detail-page .col-right .group-title * {
|
||
|
|
border-bottom: 1px solid #00A551;
|
||
|
|
padding-bottom: 10px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.article-detail-page .header-search-group {
|
||
|
|
width: 100%;
|
||
|
|
margin: 0 0 10px;
|
||
|
|
}
|
||
|
|
.article-detail-page .header-search-group form {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
width: 100%;
|
||
|
|
border-radius: 21px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.article-detail-page .header-search-group form * {
|
||
|
|
height: 42px;
|
||
|
|
}
|
||
|
|
.article-detail-page .header-search-group button {
|
||
|
|
color: #fff;
|
||
|
|
border: 0;
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
font-weight: 700;
|
||
|
|
font-size: 13px;
|
||
|
|
white-space: nowrap;
|
||
|
|
width: 100px;
|
||
|
|
}
|
||
|
|
.article-detail-page .header-search-group input {
|
||
|
|
width: calc(100% - 100px);
|
||
|
|
}
|
||
|
|
.article-detail-page .page-title, .article-detail-page .group-title {
|
||
|
|
font-size: 20px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 23px;
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
.article-detail-page .art-detail-time p {
|
||
|
|
margin: 0 20px 15px 0;
|
||
|
|
display: inline-flex;
|
||
|
|
color: #B6B6B6;
|
||
|
|
font-weight: 400;
|
||
|
|
font-size: 13px;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.article-detail-page .art-detail-time .icons, .article-detail-page .art-detail-time .global-header-container .icon-search::before, .global-header-container .article-detail-page .art-detail-time .icon-search::before, .article-detail-page .art-detail-time .product-sort-group .btn-filter::before, .product-sort-group .article-detail-page .art-detail-time .btn-filter::before, .article-detail-page .art-detail-time .article-cate-container .group-title .title::before, .article-cate-container .group-title .article-detail-page .art-detail-time .title::before {
|
||
|
|
width: 20px;
|
||
|
|
height: 15px;
|
||
|
|
}
|
||
|
|
.article-detail-page .art-detail-time .icon-clock {
|
||
|
|
background-position: -181px -44px;
|
||
|
|
}
|
||
|
|
.article-detail-page .art-detail-time .icon-visit {
|
||
|
|
background-position: -152px -44px;
|
||
|
|
}
|
||
|
|
.article-detail-page .art-detail-content * {
|
||
|
|
font-family: inherit !important;
|
||
|
|
line-height: inherit !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.article-related-container .group-title {
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin: 7px 0 15px;
|
||
|
|
}
|
||
|
|
.article-related-container .art-item {
|
||
|
|
display: block;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.article-related-container .art-item .art-img, .article-related-container .art-item .art-text {
|
||
|
|
width: 100%;
|
||
|
|
margin: 0 0 14px 0;
|
||
|
|
}
|
||
|
|
.article-related-container .art-item .art-img {
|
||
|
|
padding-bottom: 62%;
|
||
|
|
}
|
||
|
|
.article-related-container .custom-dots .owl-dots {
|
||
|
|
margin-top: 10px !important;
|
||
|
|
position: unset;
|
||
|
|
}
|
||
|
|
.article-related-container .custom-dots .owl-dots .owl-dot {
|
||
|
|
border-color: #00A551;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 320px) {
|
||
|
|
.art-item {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.art-item .art-img, .art-item .art-text {
|
||
|
|
width: 100%;
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
}
|
||
|
|
.art-item .art-img {
|
||
|
|
padding-bottom: 62%;
|
||
|
|
}
|
||
|
|
.art-item .art-category {
|
||
|
|
text-align: left;
|
||
|
|
font-size: 8px;
|
||
|
|
margin: 0 0 5px 0;
|
||
|
|
}
|
||
|
|
.art-item .art-title {
|
||
|
|
font-size: 11px;
|
||
|
|
line-height: 13px;
|
||
|
|
}
|
||
|
|
.art-item .art-time {
|
||
|
|
display: flex;
|
||
|
|
margin: 5px 0;
|
||
|
|
}
|
||
|
|
.global-header-container .header-logo {
|
||
|
|
width: 40px;
|
||
|
|
}
|
||
|
|
.global-header-container .header-right-group {
|
||
|
|
width: 60px;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.header-search-group {
|
||
|
|
width: calc(100% - 120px);
|
||
|
|
}
|
||
|
|
.homepage-category-list a {
|
||
|
|
width: calc(33.3333333333% - 7px);
|
||
|
|
}
|
||
|
|
.homepage-category-list a:nth-child(4n) {
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.homepage-category-list a:nth-child(3n) {
|
||
|
|
margin-right: 0;
|
||
|
|
}
|
||
|
|
.global-deal-container .global-deal-type a {
|
||
|
|
padding: 10px 0;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container {
|
||
|
|
padding-top: 30px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .group-title {
|
||
|
|
font-size: 10px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .group-title .title {
|
||
|
|
font-size: 16px;
|
||
|
|
line-height: 18px;
|
||
|
|
}
|
||
|
|
.home-customer-review-container .item {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.home-introduce-container {
|
||
|
|
font-size: 12px;
|
||
|
|
line-height: 14px;
|
||
|
|
}
|
||
|
|
.home-introduce-container .introduce-line-top {
|
||
|
|
margin-top: -20px;
|
||
|
|
}
|
||
|
|
.home-introduce-container .introduce-line-bottom {
|
||
|
|
max-height: 110px;
|
||
|
|
}
|
||
|
|
.home-introduce-container .title {
|
||
|
|
font-size: 16px;
|
||
|
|
line-height: 19px;
|
||
|
|
margin: 0 0 13px;
|
||
|
|
}
|
||
|
|
}/*# sourceMappingURL=mobile_css.css.map */
|