Files
xstore/assets/script/style.css

806 lines
16 KiB
CSS
Raw Normal View History

2025-10-04 11:46:59 +07:00
:root {
--color-blue: #0f5edd;
--text-green: #00c75d;
}
::-webkit-scrollbar-track {
background-color: #f5f5f5;
border-radius: 10px;
}
::-webkit-scrollbar {
width: 7px;
background-color: #fff;
}
::-webkit-scrollbar-thumb {
background: #00112b;
border-radius: 20px;
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.7, #00112b), color-stop(0.5, transparent), to(transparent));
}
body {
font-family: "Roboto", sans-serif;
font-size: 14px;
background: #fcfcfc;
max-width: 1920px;
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: space-between;
2025-10-06 09:35:00 +07:00
margin: 0 auto !important;
2025-10-04 11:46:59 +07:00
}
html {
font-family: "Roboto", sans-serif;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
.container {
max-width: 1200px !important;
margin: 0 auto;
}
.icon_2025 {
display: block;
background: url(../images/icon_2025.png) no-repeat;
background-size: 92px 82px;
}
.icon_2025.checkbox {
width: 18px;
height: 23px;
background-position: 0 0;
}
.icon_2025.boxreview {
width: 18px;
height: 23px;
background-position: -34px 0;
}
.icon_2025.cart {
width: 23px;
height: 23px;
background-position: -68px 0;
}
.icon_2025.up {
width: 22px;
height: 22px;
background-position: 1px -29px;
}
.icon_2025.thuhut {
width: 22px;
height: 22px;
background-position: -34px -29px;
}
.icon_2025.tietkiem {
width: 22px;
height: 22px;
background-position: -69px -29px;
}
.icon_2025.up-sale {
width: 22px;
height: 22px;
background-position: 1px -58px;
}
.icon_2025.setting {
width: 22px;
height: 22px;
background-position: -33px -58px;
}
.icon_2025.support {
width: 24px;
height: 24px;
background-position: -68px -60px;
}
2025-10-07 08:23:59 +07:00
.header-left .menu a {
position: relative;
}
.header-left .menu a::after {
position: absolute;
content: "";
left: 0;
bottom: -3px;
width: 100%;
height: 2px;
background: var(--color-blue);
display: none;
}
.header-left .menu a:hover::after {
display: block;
}
2025-10-04 11:46:59 +07:00
.homepage .banner {
2025-10-06 09:35:00 +07:00
background: url(../images/background-banner.png) no-repeat;
2025-10-04 11:46:59 +07:00
background-size: 100% 100%;
min-height: 920px;
}
.homepage .background-tamnhin {
background: url(../images/background-tamnhin.jpg) no-repeat;
background-size: 100% 100%;
background-position: center;
}
.effect-image {
position: relative;
overflow: hidden;
}
.effect-image:before {
position: absolute;
top: 0;
left: -100%;
z-index: 2;
display: block;
content: "";
width: 50%;
height: 100%;
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
transform: skewX(-25deg);
cursor: pointer;
}
.effect-image:hover:before {
animation: image 1.1s;
}
@keyframes image {
100% {
left: 125%;
}
}
.breadcrumb li:last-child i {
display: none;
}
.breadcrumb li a span:hover {
color: var(--color-blue);
font-weight: bold;
}
.background-pricing {
background: url(../images/background-pricing.png) no-repeat;
background-size: 100% 100%;
background-position: center center;
}
.content-compare li {
margin-bottom: 10px;
position: relative;
padding-left: 15px;
color: #5d5d69;
}
.content-compare li::before {
position: absolute;
content: "";
left: 0;
top: 7px;
width: 5px;
height: 5px;
background: #000;
clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.background-free {
background: url(../images/background-banner.jpg) no-repeat;
background-size: 100% 100%;
min-height: 640px;
}
.form-input label::before {
position: absolute;
content: "*";
right: -10px;
top: -3px;
color: red;
}
.form-select select:focus {
outline: none;
}
.form-select option {
padding: 0 10px;
}
.form-select label::before {
position: absolute;
content: "*";
right: -10px;
top: -3px;
color: red;
}
.page-login {
background: url(../images/background-login.jpg) no-repeat;
background-size: 100% 100%;
background-position: center;
2025-10-07 08:23:59 +07:00
}
.header-mobile {
display: none;
}
.header-mobile .item-menu {
display: block;
}
.header-mobile .item-menu .text-menu {
position: relative;
width: -moz-fit-content;
width: fit-content;
}
.header-mobile .item-menu .text-menu::after {
position: absolute;
content: "";
left: 0;
bottom: -3px;
width: 100%;
height: 2px;
background: var(--color-blue);
display: none;
}
.header-mobile .item-menu .text-menu:hover::after {
display: block;
}
.header-mobile .item-menu.active .text-menu::after {
display: block;
}
.footer-mobile {
display: none;
}
@media (max-width: 1200px) {
body {
max-width: 1200px !important;
}
.container {
max-width: 1024px !important;
padding: 0 15px;
}
.header-pc {
display: none;
}
.header-mobile {
display: block;
}
.homepage .banner {
min-height: auto;
}
.homepage .banner .title {
font-size: 24px;
line-height: 32px;
}
.homepage .banner .image-banner img {
height: auto;
}
.box-benefit {
padding: 30px 0 !important;
}
.box-benefit .title {
font-size: 24px;
}
.box-benefit .item .title {
font-size: 18px;
}
.box-benefit .item .content {
font-size: 14px;
}
.box-platforms {
padding: 30px 0 !important;
}
.box-platforms .title {
font-size: 24px;
}
.box-platforms .content-platforms {
width: 100%;
padding: 20px;
}
.box-platforms .box-item .content {
padding: 15px;
}
.box-product-sell {
margin: 20px 0 !important;
}
.box-product-sell .content {
padding: 20px 20px 20px 0;
}
.box-product-sell .item-sell {
gap: 20px;
}
.box-tamnhin {
margin-bottom: 50px !important;
}
.box-tamnhin .title {
font-size: 24px;
}
.box-tamnhin .content-tamnhin .title {
font-size: 24px;
}
2025-10-08 01:01:48 +07:00
.page-pricing .page-title {
font-size: 24px;
}
.page-pricing .container-tinhnang {
width: 100%;
padding: 0 15px;
}
.page-pricing .container-faq {
width: 100%;
padding: 0 15px;
}
.page-pricing .container-dieukhoan {
width: 100%;
padding: 0 15px;
}
.page-pricing .box-xstore .title {
font-size: 24px;
}
.page-pricing .box-xstore .btn {
width: 200px;
}
.page-pricing .box-faq .title {
font-size: 24px;
}
2025-10-07 08:23:59 +07:00
}
@media (max-width: 1000px) {
body {
max-width: 100% !important;
}
.container {
max-width: 100% !important;
padding: 0 15px;
}
.homepage .tieuchi {
width: 100%;
padding: 0 15px;
}
.box-tamnhin .content-tamnhin {
width: 100%;
}
2025-10-08 01:01:48 +07:00
.item-features {
padding: 20px 0 !important;
margin-bottom: 30px !important;
}
.item-features .title {
font-size: 24px;
}
.item-features .note {
font-size: 14px;
}
2025-10-07 08:23:59 +07:00
.item-features .content {
width: 100%;
padding: 0 15px;
}
2025-10-08 01:01:48 +07:00
.item-features .list {
margin: 20px 0 !important;
}
2025-10-07 08:23:59 +07:00
.box-chuyendoi {
width: 100% !important;
}
.page-features .page-title {
font-size: 24px;
}
.page-features .page-note {
font-size: 18px;
}
2025-10-08 01:01:48 +07:00
.page-features .content-tammoi {
padding-top: 50px;
}
.page-features .content-tammoi .title {
font-size: 24px;
}
.page-features .content-tammoi .list {
margin-bottom: 50px;
}
.page-features .content-tammoi .list span {
font-size: 14px;
}
.page-features .user-xstore .title {
font-size: 24px;
padding: 30px 0;
}
.page-features .user-xstore .btn {
margin-bottom: 40px;
}
.page-features .user-xstore .box-link {
padding: 20px;
}
.page-pricing .list-pricing {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-pricing .box-faq {
margin-top: 50px;
}
2025-10-07 08:23:59 +07:00
}
@media (max-width: 834px) {
.homepage .tieuchi .item p {
2025-10-08 01:01:48 +07:00
font-weight: bold;
2025-10-07 08:23:59 +07:00
}
.footer-pc .grid-cols-4 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
2025-10-08 01:01:48 +07:00
.page-features .breadcrumb {
padding: 20px 0;
}
.page-features .page-name {
padding-bottom: 30px;
}
.page-features .content-tammoi .list {
margin-bottom: 50px;
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-features .content-tammoi .list span {
font-size: 14px;
}
2025-10-07 08:23:59 +07:00
}
@media (max-width: 768px) {
.homepage .tieuchi {
width: 100%;
}
2025-10-08 01:01:48 +07:00
.page-features .content-tammoi .list {
margin-bottom: 50px;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-features .content-tammoi .list span {
font-size: 14px;
}
.page-free-trial .container-faq {
width: 100%;
padding: 0 15px;
}
.page-free-trial .content-from-trial {
padding: 0 15px;
}
.page-free-trial .page-title {
font-size: 24px;
}
2025-10-07 08:23:59 +07:00
}
@media (max-width: 680px) {
.homepage .tieuchi {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.homepage .tieuchi .item {
border-bottom: 1px solid #8a8a8a;
border-right: 0;
padding: 20px 0;
}
.homepage .tieuchi .item:last-child {
border: 0;
}
.homepage .banner .title {
padding: 64px 15px 0 15px;
}
.footer-mobile {
display: block;
}
.footer-pc {
display: none;
}
2025-10-08 01:01:48 +07:00
.page-features .content-tammoi .w-\[calc\(100\%\/4\)\],
.page-features .content-tammoi .w-\[calc\(100\%\/5\)\] {
width: 100%;
}
.page-free-trial .content-from-trial .list {
grid-template-columns: repeat(1, minmax(0, 1fr));
padding: 30px 0;
}
.page-pricing .page-title {
font-size: 20px;
}
.page-pricing .box-tinhnang {
margin-top: 50px;
}
.page-pricing .box-tinhnang h2 {
font-size: 20px;
}
.page-pricing .box-tinhnang .content-faq {
overflow: auto;
}
.page-pricing .box-tinhnang .table tr {
height: 45px;
line-height: 45px;
}
.page-pricing .box-tinhnang .table td {
white-space: nowrap;
padding: 0 10px;
}
.page-pricing .box-tinhnang .table th {
white-space: nowrap;
}
.page-pricing .box-tinhnang .table p {
width: 100%;
}
.page-pricing .box-xstore {
margin-top: 50px;
}
.page-pricing .box-xstore .title {
font-size: 20px;
padding: 0 15px;
}
.page-pricing .box-faq .title {
font-size: 20px;
}
.page-login .content-login {
width: 96%;
2025-10-08 09:18:44 +07:00
padding: 15px;
}
.page-login {
background-size: cover;
2025-10-08 01:01:48 +07:00
}
2025-10-07 08:23:59 +07:00
}
@media (max-width: 480px) {
.homepage .banner .title {
font-size: 20px;
}
.box-benefit .title {
font-size: 20px;
}
.box-benefit .list {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.box-platforms .content-platforms {
padding: 15px;
}
.box-platforms .title {
font-size: 20px;
margin-bottom: 30px;
}
.box-platforms .box-item {
grid-template-columns: repeat(1, minmax(0, 1fr));
flex-wrap: wrap;
}
.box-platforms .box-item .image {
width: 100%;
padding: 15px;
}
.box-platforms .box-item .image a {
height: 100%;
}
.box-platforms .box-item .content {
width: 100%;
}
.box-product-sell .item-sell {
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 0;
}
.box-product-sell .item-sell .content {
padding: 15px;
}
.box-tamnhin .background-tamnhin {
padding: 15px;
}
.box-tamnhin .title {
font-size: 20px;
}
.box-tamnhin .list {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.box-tamnhin .box-faq {
padding: 15px;
}
.box-tamnhin .box-faq h2 {
font-size: 20px;
}
.box-tamnhin .box-faq .item-faq .title {
font-size: 16px;
}
2025-10-08 01:01:48 +07:00
.page-features .page-name {
padding-bottom: 10px;
}
.page-features .page-title {
font-size: 20px;
padding-bottom: 10px;
}
.page-features .page-note {
font-size: 16px;
padding-bottom: 10px;
}
.page-features .content-tammoi {
padding-top: 20px;
}
.page-features .content-tammoi .title {
font-size: 20px;
padding: 0 15px;
}
.page-features .content-tammoi .list {
margin-bottom: 50px;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-features .content-tammoi .list a {
padding: 0 10px;
}
.page-features .content-tammoi .list span {
font-size: 13px;
}
.page-features .content-chuyendoi {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.page-features .content-chuyendoi .name-chuyendoi {
font-size: 14px;
margin-bottom: 10px;
}
.page-features .content-chuyendoi .note-chuyendoi {
font-size: 14px;
}
.page-features .content-top-features {
padding-bottom: 20px;
}
.page-features .user-xstore .title {
font-size: 20px;
padding: 30px 0;
}
.page-features .user-xstore .btn {
margin-bottom: 40px;
font-size: 14px;
width: 200px;
}
.page-features .user-xstore .box-link {
padding: 20px;
}
.page-features .user-xstore .list-xstore {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-features .list.list-tab a {
width: 100%;
}
.item-features .box-image {
margin-top: 20px;
padding: 10px !important;
}
.item-features .box-image img {
display: block;
height: auto;
}
.item-features .list-faq {
margin-top: 20px;
}
.box-tamnhin .box-faq .btn {
width: 150px;
}
.box-tamnhin .box-faq .btn p {
font-size: 16px;
}
.box-tamnhin .box-faq .btn i {
margin-top: 0;
}
.page-free-trial .breadcrumb {
padding: 20px 0;
}
.page-free-trial .page-title {
font-size: 20px;
}
.page-free-trial .page-name {
margin: 30px 0;
}
.page-free-trial .from-trial {
margin-top: -345px;
}
.page-free-trial .content-from-trial .list {
padding: 15px 0;
}
.page-free-trial .content-from-trial .left b {
font-size: 15px;
}
.page-free-trial .content-from-trial .left p {
font-size: 14px;
}
.page-free-trial .content-from-trial .box-form {
padding: 15px;
}
.page-free-trial .content-from-trial .box-form .title {
font-size: 20px;
}
.page-free-trial .box-faq {
margin-top: 30px;
}
.page-free-trial .box-faq .title {
font-size: 24px;
}
.page-free-trial .box-faq .title-faq b {
font-size: 14px;
}
.page-pricing .page-title {
font-size: 18px;
}
.page-pricing .list-pricing {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (max-width: 435px) {
.homepage .banner .title {
font-size: 18px;
line-height: 28px;
}
.homepage .banner .btn {
margin-top: 30px;
margin-bottom: 30px;
}
.box-benefit .title {
font-size: 18px;
}
.icon_2025.checkbox {
width: 35px;
height: 40px;
background-position: 0 0;
background-size: 185px 165px;
}
.icon_2025.boxreview {
width: 35px;
height: 43px;
background-position: -69px 0;
background-size: 185px 165px;
}
.icon_2025.cart {
width: 40px;
height: 40px;
background-position: -141px 0;
background-size: 185px 165px;
}
.homepage .tieuchi p {
font-size: 16px !important;
font-weight: bold;
}
.box-benefit .item .title {
font-size: 15px;
}
.box-platforms .box-item h3 {
font-size: 16px;
}
.box-platforms .box-item ul {
margin-top: 10px;
margin-bottom: 10px;
font-size: 14px;
}
.box-product-sell .content h2 {
font-size: 16px;
}
.box-product-sell .content p {
font-size: 14px;
margin-top: 10px;
margin-bottom: 10px;
}
.box-tamnhin .title {
font-size: 18px;
}
.box-platforms .box-item {
margin-bottom: 30px;
}
.box-tamnhin .item-tamnhin img {
margin-bottom: 20px;
}
.box-tamnhin .item-tamnhin b {
font-size: 16px;
}
.box-tamnhin .item-tamnhin p {
font-size: 14px;
margin-top: 10px;
margin-bottom: 10px;
}
.box-tamnhin .box-faq h2 {
font-size: 16px;
margin-bottom: 20px;
}
.box-tamnhin .item-faq b {
font-size: 14px;
}
.page-features .content-tammoi .title {
font-size: 18px;
}
.item-features .note {
padding: 0 10px;
font-size: 14px;
}
.item-features .item-faq b {
font-size: 14px;
}
.item-features .item-faq .title-faq {
padding: 15px 10px 0 10px;
}
.page-features .user-xstore .btn {
margin-bottom: 30px;
}
.page-features .list-xstore span {
font-size: 14px;
}
2025-10-04 11:46:59 +07:00
}/*# sourceMappingURL=style.css.map */