2245 lines
48 KiB
SCSS
2245 lines
48 KiB
SCSS
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
|
|
:root {
|
|
--color-global: #004e99;
|
|
}
|
|
|
|
/* CSS Document */
|
|
body {
|
|
font-family: "Roboto", sans-serif;
|
|
font-size: 14px;
|
|
background-color: #f0f1f5;
|
|
word-break: break-word;
|
|
margin: 0 auto;
|
|
min-width: 1500px;
|
|
color: #000;
|
|
}
|
|
html {
|
|
font-family: "Roboto", sans-serif;
|
|
font-size: 62.5% !important;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
p {
|
|
margin: 0;
|
|
}
|
|
.form-control {
|
|
font-size: 14px;
|
|
padding: 8px;
|
|
border: 1px solid #b8b8b8;
|
|
&::placeholder {
|
|
color: #b8b8b8;
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background-color: #f5f5f5;
|
|
border-radius: 10px;
|
|
}
|
|
::-webkit-scrollbar {
|
|
width: 7px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--color-global);
|
|
border-radius: 20px;
|
|
}
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
.container-1500 {
|
|
max-width: 1520px;
|
|
margin: 0 auto;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1320px;
|
|
margin: 0 auto;
|
|
padding: 0 10px;
|
|
}
|
|
.overlay {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
z-index: 99;
|
|
display: none;
|
|
}
|
|
.overlay.active {
|
|
display: block;
|
|
}
|
|
.icon_global {
|
|
background: url(../images/icon_global.png) no-repeat;
|
|
background-size: 215px 55px;
|
|
display: block;
|
|
&.order-new {
|
|
width: 26px;
|
|
height: 26px;
|
|
background-position: -35px -2px;
|
|
}
|
|
&.user-contact {
|
|
width: 26px;
|
|
height: 26px;
|
|
background-position: -78px -2px;
|
|
}
|
|
&.order-installment {
|
|
width: 26px;
|
|
height: 26px;
|
|
background-position: -116px -1px;
|
|
}
|
|
&.return-goods {
|
|
width: 26px;
|
|
height: 26px;
|
|
background-position: -161px -1px;
|
|
}
|
|
&.support {
|
|
margin-right: 5px;
|
|
width: 28px;
|
|
height: 27px;
|
|
background-position: -194px -3px;
|
|
border: 1px solid #004e99;
|
|
border-radius: 50%;
|
|
}
|
|
&.filter {
|
|
width: 28px;
|
|
height: 20px;
|
|
background-position: 2px -32px;
|
|
}
|
|
&.other {
|
|
width: 28px;
|
|
height: 22px;
|
|
background-position: -32px -32px;
|
|
}
|
|
&.list {
|
|
width: 28px;
|
|
height: 22px;
|
|
background-position: -63px -32px;
|
|
}
|
|
&.add-attr {
|
|
width: 20px;
|
|
height: 20px;
|
|
background-position: -99px -34px;
|
|
}
|
|
&.view-attr {
|
|
width: 18px;
|
|
height: 15px;
|
|
background-position: -127px -39px;
|
|
}
|
|
}
|
|
.header {
|
|
background: #fff;
|
|
.header-top {
|
|
padding: 10px 0;
|
|
}
|
|
.form-search {
|
|
margin-right: 15px;
|
|
}
|
|
.input-search {
|
|
width: 220px;
|
|
height: 35px;
|
|
line-height: 35px;
|
|
border: 1px solid #dddddd;
|
|
border-radius: 37px;
|
|
margin-right: 5px;
|
|
padding: 8px 15px;
|
|
color: #b3b3b3;
|
|
&:focus-within {
|
|
outline: 1px solid var(--color-global);
|
|
}
|
|
}
|
|
.btn-search {
|
|
width: 60px;
|
|
height: 35px;
|
|
line-height: 32px;
|
|
border: 1px solid #4795df;
|
|
border-radius: 37px;
|
|
color: #4795df;
|
|
background: #fff;
|
|
outline: none;
|
|
&:hover {
|
|
background: var(--color-global);
|
|
color: #fff;
|
|
}
|
|
}
|
|
.notification {
|
|
margin: 0 15px 0 5px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
&.active {
|
|
background: #fff;
|
|
padding: 5px 5px 0 5px;
|
|
z-index: 999;
|
|
.hover-notification {
|
|
display: block;
|
|
}
|
|
}
|
|
.total-notification {
|
|
position: absolute;
|
|
top: -2px;
|
|
right: 2px;
|
|
width: 16px;
|
|
height: 16px;
|
|
line-height: 16px;
|
|
border-radius: 50%;
|
|
background: #e40000;
|
|
font-size: 10px;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
}
|
|
.icon_global {
|
|
&.bell {
|
|
width: 27px;
|
|
height: 25px;
|
|
background-position: 0 -4px;
|
|
}
|
|
}
|
|
.user_login {
|
|
width: 30px;
|
|
position: relative;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
&:hover {
|
|
border: 1px solid var(--color-global);
|
|
border-radius: 50%;
|
|
}
|
|
&.active {
|
|
z-index: 999;
|
|
.hover-user-login {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
.list-menu-sub {
|
|
display: none;
|
|
a {
|
|
display: block;
|
|
padding: 7px 10px;
|
|
border-bottom: 1px dotted var(--color-global);
|
|
font-size: 13px;
|
|
&:hover {
|
|
background: var(--color-global);
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.hover-notification {
|
|
position: absolute;
|
|
width: 300px;
|
|
right: -6px;
|
|
background: #fbfbfe;
|
|
z-index: 99;
|
|
top: 40px;
|
|
border-radius: 5px;
|
|
display: none;
|
|
&::before {
|
|
position: absolute;
|
|
content: "";
|
|
top: -12px;
|
|
right: 15px;
|
|
width: 0;
|
|
height: 0;
|
|
border-right: 11px solid transparent;
|
|
border-bottom: 12px solid #ffffff;
|
|
border-left: 11px solid transparent;
|
|
}
|
|
.title {
|
|
background: #fbfbfe;
|
|
padding: 5px 10px;
|
|
border-radius: 5px 5px 0 0;
|
|
border-bottom: 1px solid #ddd;
|
|
b {
|
|
color: #1a1c6b;
|
|
font-size: 20px;
|
|
}
|
|
i {
|
|
font-size: 18px;
|
|
color: gray;
|
|
}
|
|
}
|
|
.item {
|
|
padding: 10px 15px;
|
|
border-bottom: 1px solid #e6e6e6;
|
|
background: #f5f8fa;
|
|
span {
|
|
color: #8e8e8e;
|
|
font-size: 13px;
|
|
font-weight: 300;
|
|
}
|
|
&:hover {
|
|
background: #fff;
|
|
p {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
.more-all {
|
|
padding: 10px;
|
|
text-align: center;
|
|
display: block;
|
|
&:hover {
|
|
background: var(--color-global);
|
|
color: #fff;
|
|
}
|
|
}
|
|
.list-notification {
|
|
height: 255px;
|
|
overflow-x: auto;
|
|
}
|
|
}
|
|
.hover-user-login {
|
|
position: absolute;
|
|
width: 235px;
|
|
right: -6px;
|
|
background: #fbfbfe;
|
|
z-index: 99;
|
|
top: 40px;
|
|
border-radius: 5px;
|
|
padding: 20px 10px 10px 10px;
|
|
display: none;
|
|
&::before {
|
|
position: absolute;
|
|
content: "";
|
|
top: -12px;
|
|
right: 12px;
|
|
width: 0;
|
|
height: 0;
|
|
border-right: 11px solid transparent;
|
|
border-bottom: 12px solid #ffffff;
|
|
border-left: 11px solid transparent;
|
|
}
|
|
.avatar {
|
|
width: 30px !important;
|
|
height: 30px;
|
|
margin: 0 auto;
|
|
}
|
|
.name-user {
|
|
display: block;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
margin-bottom: 5px;
|
|
}
|
|
a {
|
|
display: block;
|
|
text-align: center;
|
|
color: #8e8e8e;
|
|
margin-bottom: 10px;
|
|
}
|
|
.logout {
|
|
color: #004e99;
|
|
margin-top: 20px;
|
|
i {
|
|
margin-left: 3px;
|
|
}
|
|
}
|
|
}
|
|
.list-menu {
|
|
background: var(--color-global);
|
|
.item {
|
|
padding: 7px 0;
|
|
position: relative;
|
|
&.active {
|
|
background: #fff;
|
|
.title {
|
|
color: var(--color-global);
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
&:hover {
|
|
background: #fff;
|
|
.title {
|
|
color: var(--color-global);
|
|
font-weight: bold;
|
|
i::before {
|
|
padding-top: 3px;
|
|
content: "\f0d8";
|
|
display: block;
|
|
}
|
|
}
|
|
.list-menu-sub {
|
|
display: block;
|
|
position: absolute;
|
|
top: 100%;
|
|
width: 200px;
|
|
z-index: 999;
|
|
background: #fff;
|
|
}
|
|
}
|
|
&:last-child {
|
|
.title {
|
|
border-right: none;
|
|
}
|
|
}
|
|
}
|
|
.title {
|
|
border-right: 0.7px solid #ffffff91;
|
|
padding: 0 20px;
|
|
color: #fff;
|
|
i {
|
|
padding: 0 5px;
|
|
font-size: 11px;
|
|
}
|
|
}
|
|
}
|
|
.page_content {
|
|
padding-bottom: 100px;
|
|
.title-main {
|
|
font-size: 24px;
|
|
color: var(--color-global);
|
|
padding: 15px 0;
|
|
font-weight: 700;
|
|
margin-bottom: 0;
|
|
}
|
|
.left {
|
|
border-radius: 3px;
|
|
border: 1px solid #ddd;
|
|
background: #fff;
|
|
padding: 10px;
|
|
margin-right: 12px;
|
|
}
|
|
.right {
|
|
width: calc(33.33333333% - 12px);
|
|
border-radius: 3px;
|
|
border: 1px solid #ddd;
|
|
background: #fff;
|
|
padding: 10px;
|
|
}
|
|
}
|
|
.box-info-order {
|
|
.item {
|
|
.border {
|
|
border-radius: 3px;
|
|
padding-bottom: 0 !important;
|
|
&:hover {
|
|
border: 1px solid var(--color-global) !important;
|
|
}
|
|
}
|
|
.txt {
|
|
font-weight: 300;
|
|
margin-bottom: 7px;
|
|
color: #6c6c6c;
|
|
}
|
|
.qyt {
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
color: var(--color-global);
|
|
}
|
|
.up {
|
|
color: #64c35c;
|
|
padding-right: 5px;
|
|
font-size: 16px;
|
|
}
|
|
.down {
|
|
color: #ffa51d;
|
|
font-size: 16px;
|
|
padding-right: 5px;
|
|
}
|
|
.time {
|
|
font-size: 10px;
|
|
color: #8e8e8e;
|
|
}
|
|
}
|
|
.backgroud-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
justify-content: center;
|
|
margin-bottom: 7px;
|
|
&.new {
|
|
background: #004e99;
|
|
}
|
|
&.contact {
|
|
background: #64c35c;
|
|
}
|
|
&.installment {
|
|
background: #4795df;
|
|
}
|
|
&.return {
|
|
background: #ffa51d;
|
|
}
|
|
}
|
|
}
|
|
.box-revenue-chart {
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
.total-revenue {
|
|
i {
|
|
color: #4795df;
|
|
margin-right: 10px;
|
|
}
|
|
.qty {
|
|
color: var(--color-global);
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
margin-left: 8px;
|
|
}
|
|
}
|
|
.option-chart select {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
.box-chart-access {
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
.list-thong-so {
|
|
.item {
|
|
margin-right: 25px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
i.fa-circle {
|
|
color: var(--color-global);
|
|
margin-right: 5px;
|
|
}
|
|
i.fa-circle.view {
|
|
color: #8dd4fc;
|
|
margin-right: 5px;
|
|
}
|
|
.qty {
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
color: var(--color-global);
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
.option-chart select {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
.box-edit-history {
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
margin-top: 20px;
|
|
.title {
|
|
padding: 10px;
|
|
b {
|
|
color: #004e99;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
table {
|
|
width: 100%;
|
|
}
|
|
tr {
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
td {
|
|
padding: 10px;
|
|
font-weight: 300;
|
|
}
|
|
th {
|
|
padding: 10px;
|
|
background: #f1f7fc;
|
|
color: #6c6c6c;
|
|
}
|
|
}
|
|
|
|
.box-report-summary {
|
|
.title {
|
|
color: #004e99;
|
|
font-size: 16px;
|
|
margin-bottom: 10px;
|
|
font-weight: bold;
|
|
}
|
|
.list-tab {
|
|
margin-bottom: 10px;
|
|
.item {
|
|
border: 0.7px solid #4795df;
|
|
padding: 5px 10px;
|
|
border-right: 0;
|
|
color: #6c6c6c;
|
|
background: #f1f7fc;
|
|
&:last-child {
|
|
padding: 5px 15px;
|
|
border-right: 0.7px solid #4795df;
|
|
}
|
|
&.active {
|
|
background: #4795df;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
|
|
.content-tab {
|
|
display: none;
|
|
&.active {
|
|
display: block;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
}
|
|
tr {
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
td {
|
|
padding: 10px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.qnt {
|
|
padding: 3px 10px;
|
|
border-radius: 8px;
|
|
background: #e8fbff;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
&.high {
|
|
border: 1px solid #004e99;
|
|
color: #004e99;
|
|
}
|
|
&.good {
|
|
border: 1px solid #64c35c;
|
|
color: #64c35c;
|
|
background: #e6ffe3;
|
|
}
|
|
&.medium {
|
|
border: 1px solid #ffa51d;
|
|
color: #ffa51d;
|
|
background: #fff9e8;
|
|
}
|
|
&.weak {
|
|
border: 1px solid red;
|
|
color: red;
|
|
background: rgb(255, 226, 226);
|
|
}
|
|
}
|
|
}
|
|
.title-key {
|
|
span {
|
|
color: #6c6c6c;
|
|
font-size: 14px;
|
|
font-weight: 300;
|
|
}
|
|
a {
|
|
color: #4795df;
|
|
font-size: 14px;
|
|
font-style: italic;
|
|
text-decoration-line: underline;
|
|
}
|
|
}
|
|
.list-key {
|
|
margin: 10px 0;
|
|
.item {
|
|
display: inline-block;
|
|
background: #e6eef6;
|
|
padding: 0 15px;
|
|
margin-right: 5px;
|
|
margin-bottom: 10px;
|
|
color: #004e99;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
font-size: 13px;
|
|
position: relative;
|
|
margin-left: 15px;
|
|
&::before {
|
|
position: absolute;
|
|
content: "";
|
|
left: -13px;
|
|
top: 0;
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 14px solid transparent;
|
|
border-right: 14px solid #e6eef6;
|
|
border-bottom: 16px solid transparent;
|
|
}
|
|
&::after {
|
|
position: absolute;
|
|
content: "";
|
|
left: 0;
|
|
top: 50%;
|
|
width: 5px;
|
|
height: 5px;
|
|
background: #fff;
|
|
transform: translate(0, -50%);
|
|
border-radius: 50%;
|
|
}
|
|
&:hover {
|
|
background: var(--color-global);
|
|
color: #fff;
|
|
&::before {
|
|
border-right: 14px solid var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.product-see-more {
|
|
th {
|
|
padding: 5px;
|
|
background: #f1f7fc;
|
|
color: #6c6c6c;
|
|
}
|
|
}
|
|
.table-list-website {
|
|
i {
|
|
text-align: center;
|
|
}
|
|
i.blue {
|
|
color: #359eff;
|
|
}
|
|
i.yellow {
|
|
color: #ffa51d;
|
|
}
|
|
i.green {
|
|
color: #64c35c;
|
|
}
|
|
th {
|
|
padding: 5px 10px;
|
|
}
|
|
}
|
|
}
|
|
.box-support-hurasoft {
|
|
a {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #004e99;
|
|
font-size: 16px;
|
|
margin: 20px 0;
|
|
font-weight: 500;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
.box-remind-me {
|
|
.title {
|
|
font-size: 16px;
|
|
color: #004e99;
|
|
margin-bottom: 10px;
|
|
}
|
|
input {
|
|
padding: 5px;
|
|
border-radius: 3px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
.input-work {
|
|
width: 59%;
|
|
}
|
|
.time-work {
|
|
width: 23%;
|
|
color: #6c6c6c;
|
|
margin-left: 5px;
|
|
}
|
|
#btn-remind {
|
|
margin-left: 5px;
|
|
border-radius: 3px;
|
|
background: #004e99;
|
|
color: #fff;
|
|
}
|
|
.table-list-work {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
border: 1px solid #ddd;
|
|
th,
|
|
td {
|
|
padding: 10px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
td:first-child {
|
|
font-weight: bold;
|
|
}
|
|
td:nth-child(n + 4) {
|
|
font-weight: 300;
|
|
text-decoration: underline;
|
|
}
|
|
.green {
|
|
color: #64c35c;
|
|
}
|
|
.red {
|
|
color: red;
|
|
}
|
|
}
|
|
}
|
|
.breadcrumb {
|
|
margin: 0;
|
|
}
|
|
.breadcrumb ol {
|
|
width: 100%;
|
|
float: left;
|
|
padding: 0;
|
|
margin: 0;
|
|
background: none;
|
|
}
|
|
.breadcrumb ol li {
|
|
float: left;
|
|
list-style: none;
|
|
}
|
|
.breadcrumb ol li a span {
|
|
font-size: 14px;
|
|
color: #333;
|
|
line-height: 35px;
|
|
float: left;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.breadcrumb ol li a span:hover {
|
|
color: #262261;
|
|
}
|
|
.breadcrumb ol li a:last-child {
|
|
color: #222;
|
|
}
|
|
.breadcrumb ol li i {
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
float: left;
|
|
line-height: 35px;
|
|
color: #b4b4b4;
|
|
}
|
|
.breadcrumb ol li:last-child i {
|
|
display: none;
|
|
}
|
|
.breadcrumb .icon_2023.home {
|
|
width: 16px;
|
|
height: 17px;
|
|
display: block;
|
|
background-position: -9px -110px;
|
|
margin-right: 10px;
|
|
margin-left: 0;
|
|
}
|
|
.breadcrumb .home span {
|
|
color: #b4b4b4;
|
|
font-size: 14px;
|
|
}
|
|
.breadcrumb ol li:last-child span {
|
|
color: #002a53;
|
|
}
|
|
.page_content.sell {
|
|
.title {
|
|
margin: 20px 0 10px 0;
|
|
}
|
|
.title-right {
|
|
a {
|
|
margin-left: 10px;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
background: #4795df;
|
|
color: #fff;
|
|
&:hover {
|
|
background: #fff;
|
|
color: #4795df;
|
|
border: 1px solid #4795df;
|
|
}
|
|
}
|
|
i {
|
|
padding-right: 5px;
|
|
}
|
|
}
|
|
#tabnav {
|
|
.item {
|
|
background: #e1edf9;
|
|
padding: 10px;
|
|
color: #004e99;
|
|
margin-right: 3px;
|
|
display: inline-block;
|
|
&.active {
|
|
background: #4795df;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
}
|
|
.content-sell {
|
|
background: #fff;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
}
|
|
.filter-sell {
|
|
padding: 10px;
|
|
}
|
|
.filter-left {
|
|
p {
|
|
margin-right: 30px;
|
|
}
|
|
}
|
|
.filter-right {
|
|
.item {
|
|
p {
|
|
font-size: 13px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
input {
|
|
font-size: 11px;
|
|
padding: 7px 10px;
|
|
margin-left: 8px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
}
|
|
.time-work {
|
|
width: 110px;
|
|
}
|
|
.search-keys {
|
|
width: 130px;
|
|
}
|
|
.btn-search {
|
|
background: #4795df;
|
|
border: none;
|
|
outline: none;
|
|
margin-left: 8px;
|
|
color: #fff;
|
|
height: 32px;
|
|
width: 60px;
|
|
line-height: 32px;
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
#tb_padding {
|
|
margin-bottom: 10px;
|
|
th {
|
|
padding: 10px 5px;
|
|
background: #f4f5f6;
|
|
select {
|
|
border: 1px solid #b8b8b8;
|
|
background: #fff;
|
|
padding: 5px 0;
|
|
}
|
|
}
|
|
.checkbox {
|
|
width: 50px;
|
|
input[type="checkbox"] {
|
|
margin-top: 6px;
|
|
}
|
|
}
|
|
input[type="checkbox"] {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
td {
|
|
padding: 10px 5px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
.btn-status-circle {
|
|
height: 19px;
|
|
width: 19px;
|
|
background-color: #bbb;
|
|
border-radius: 50%;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
.payment-unpaid {
|
|
background-color: #f90202;
|
|
color: white;
|
|
}
|
|
.payment-paid {
|
|
background-color: #64c35c;
|
|
color: white;
|
|
}
|
|
.fulfillment-unfulfilled {
|
|
background-color: #f90202;
|
|
color: white;
|
|
}
|
|
.order-new {
|
|
background-color: #ffa51d;
|
|
}
|
|
.assigned-person {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
.remove {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
.page_content.edit-sell {
|
|
.title {
|
|
margin: 10px 0;
|
|
}
|
|
.title-left {
|
|
.red {
|
|
font-size: 20px;
|
|
color: #f90202;
|
|
}
|
|
.time {
|
|
color: #474747;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
.title-right {
|
|
display: flex;
|
|
align-items: center;
|
|
.item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 10px;
|
|
border-left: 1px solid #000;
|
|
font-size: 15px;
|
|
&:first-child {
|
|
border-left: none;
|
|
}
|
|
p {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
.btn-print-cart {
|
|
background: #fff;
|
|
padding: 5px 15px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 3px;
|
|
color: #474747;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
background: var(--color-global);
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
.form-left {
|
|
width: 65%;
|
|
margin-right: 20px;
|
|
}
|
|
.form-right {
|
|
width: 35%;
|
|
select option:hover {
|
|
background: #4795df;
|
|
}
|
|
}
|
|
.box-user {
|
|
background: #fff;
|
|
padding: 10px;
|
|
b {
|
|
margin-bottom: 5px;
|
|
font-size: 16px;
|
|
display: block;
|
|
}
|
|
.item {
|
|
padding: 0 10px;
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
label {
|
|
font-size: 15px;
|
|
padding-bottom: 5px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
.form-control {
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
border: 0.5px solid #ddd;
|
|
}
|
|
.item-2 {
|
|
width: calc(50% - 10px);
|
|
margin-right: 10px;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
.box-list-product {
|
|
margin-top: 20px;
|
|
b {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
table {
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
}
|
|
|
|
th {
|
|
border-bottom: 1px solid #ddd;
|
|
background: #f4f5f6;
|
|
padding: 10px;
|
|
position: sticky;
|
|
}
|
|
td {
|
|
padding: 10px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
.name {
|
|
color: #2c7af4;
|
|
}
|
|
}
|
|
.box-expense {
|
|
margin-top: 20px;
|
|
b {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
table {
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
}
|
|
td {
|
|
padding: 10px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
i.fa-pencil {
|
|
color: #4795df;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
.box-history {
|
|
margin-top: 20px;
|
|
b {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
table {
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
}
|
|
th {
|
|
border-bottom: 1px solid #ddd;
|
|
background: #f4f5f6;
|
|
padding: 10px;
|
|
position: sticky;
|
|
}
|
|
td {
|
|
padding: 10px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
}
|
|
.box-assign {
|
|
background: #fff;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
b {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
.form-control.select {
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
.box-start-pay {
|
|
margin-top: 15px;
|
|
background: #fff;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
b {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
.form-control {
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
.box-start-ship {
|
|
margin-top: 15px;
|
|
background: #fff;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
b {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
.form-control {
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
.box-start-order {
|
|
margin-top: 15px;
|
|
background: #fff;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
b {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
.form-control {
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
.box-note {
|
|
margin-top: 15px;
|
|
background: #fff;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
b {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
.form-control {
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
.blue {
|
|
color: #4795df;
|
|
}
|
|
.link-blue {
|
|
color: var(--color-global);
|
|
}
|
|
.btn-save {
|
|
border-radius: 5px;
|
|
background: var(--color-global);
|
|
width: 120px;
|
|
height: 40px;
|
|
margin-top: 10px;
|
|
color: #fff;
|
|
font-size: 15px;
|
|
float: right;
|
|
outline: none;
|
|
border: none;
|
|
&:hover {
|
|
background: #013b72;
|
|
}
|
|
}
|
|
.paging {
|
|
margin: 10px 0;
|
|
}
|
|
.left-paging {
|
|
.item {
|
|
margin-right: 10px;
|
|
p {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
.paging .pages-needed {
|
|
padding: 5px 10px;
|
|
border: 1px solid #ddd;
|
|
width: 115px;
|
|
border-radius: 5px;
|
|
}
|
|
.paging .hura-change-page-size {
|
|
padding: 5px 10px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
outline: none;
|
|
}
|
|
.paging .right-paging {
|
|
color: #6c6c6c;
|
|
.content-paging {
|
|
margin-right: 15px;
|
|
.item {
|
|
padding: 2px 7px;
|
|
margin-left: 10px;
|
|
color: #6c6c6c;
|
|
font-size: 14px;
|
|
&.active {
|
|
border-radius: 3px;
|
|
background: #4795df;
|
|
color: #fff;
|
|
}
|
|
}
|
|
i {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn-edit {
|
|
i {
|
|
color: #6c6c6c;
|
|
margin-right: 3px;
|
|
}
|
|
}
|
|
.btn-remove {
|
|
i {
|
|
color: #6c6c6c;
|
|
}
|
|
}
|
|
.btn-excel {
|
|
border-radius: 5px;
|
|
background: #4795df;
|
|
padding: 10px 15px;
|
|
color: #fff;
|
|
&:hover {
|
|
background: #0084ff;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.page_content.gateway-payment {
|
|
.title {
|
|
margin: 10px 0;
|
|
}
|
|
.background-payment {
|
|
padding: 10px;
|
|
background: #fff;
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
#tb_padding {
|
|
table {
|
|
margin-top: 20px;
|
|
border-radius: 5px;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
}
|
|
th {
|
|
background: #f4f5f6;
|
|
padding: 10px;
|
|
position: sticky;
|
|
}
|
|
td {
|
|
padding: 10px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
}
|
|
.btn-submit {
|
|
float: right;
|
|
.btn {
|
|
width: 120px;
|
|
height: 40px;
|
|
border-radius: 5px;
|
|
background: #004e99;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
&:hover {
|
|
background: #0084ff;
|
|
}
|
|
}
|
|
.btn-back {
|
|
margin-left: 10px;
|
|
width: 120px;
|
|
height: 40px;
|
|
border-radius: 5px;
|
|
background: #bad8f6;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.page_content.pre-order-products {
|
|
.title {
|
|
margin: 10px 0;
|
|
}
|
|
.table-pre-order {
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
}
|
|
}
|
|
|
|
.page_content.product-list {
|
|
.title {
|
|
margin: 10px 0;
|
|
}
|
|
.content-product-list {
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
background: #fff;
|
|
}
|
|
.filter-product {
|
|
padding: 5px 0 10px 0;
|
|
.item {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
margin-left: 20px;
|
|
p {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
.select-filter-type {
|
|
width: 145px;
|
|
border-radius: 5px;
|
|
background: #e7f1fb;
|
|
padding: 7px;
|
|
position: relative;
|
|
select {
|
|
border: none;
|
|
outline: none;
|
|
width: 100%;
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
background: transparent;
|
|
font-weight: 300;
|
|
}
|
|
&::before {
|
|
position: absolute;
|
|
content: "\f0d7";
|
|
right: 7px;
|
|
top: 50%;
|
|
font: normal 400 1em/1 "Font Awesome 6 Free";
|
|
font-weight: 900;
|
|
font-style: 12px;
|
|
transform: translate(0, -50%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.page_content.add-product {
|
|
.title {
|
|
margin: 10px 0;
|
|
}
|
|
.form-control {
|
|
padding: 8px 15px;
|
|
}
|
|
.tabnav {
|
|
margin-top: 10px;
|
|
.item {
|
|
padding: 7px 10px;
|
|
color: #004e99;
|
|
background: #e1edf9;
|
|
margin-right: 7px;
|
|
&.active,
|
|
&:hover {
|
|
background: #4795df;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
.item {
|
|
.content-right {
|
|
width: 80%;
|
|
}
|
|
&.display {
|
|
label {
|
|
margin-right: 25px;
|
|
}
|
|
input[type="radio"] {
|
|
height: 16px;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
.item-summary {
|
|
.item-radio {
|
|
margin-right: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
input {
|
|
height: 16px;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
&.price {
|
|
.form-control {
|
|
width: 170px;
|
|
}
|
|
.note {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
.retail-price {
|
|
.form-control {
|
|
width: 170px;
|
|
margin-right: 10px;
|
|
}
|
|
.note {
|
|
a {
|
|
color: #4795df;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
.box-select {
|
|
width: 90px;
|
|
margin-right: 10px;
|
|
padding: 7px;
|
|
position: relative;
|
|
border-radius: 5px;
|
|
border: 1px solid #b8b8b8;
|
|
&::before {
|
|
position: absolute;
|
|
content: "\f0d7";
|
|
right: 7px;
|
|
top: 50%;
|
|
font: normal 400 1em/1 "Font Awesome 6 Free";
|
|
font-weight: 900;
|
|
transform: translate(0, -50%);
|
|
}
|
|
select {
|
|
border: none;
|
|
outline: none;
|
|
width: 100%;
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
background: transparent;
|
|
}
|
|
}
|
|
}
|
|
|
|
.page_content.price-list-update {
|
|
.title {
|
|
margin: 10px 0;
|
|
}
|
|
.content-price-list {
|
|
margin-top: 15px;
|
|
background: #fff;
|
|
padding: 10px;
|
|
}
|
|
}
|
|
.page_content.product-category {
|
|
.title {
|
|
margin: 10px 0;
|
|
}
|
|
.content-product-category {
|
|
margin-top: 15px;
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
.page_content.add-product-category {
|
|
.title {
|
|
margin: 10px 0;
|
|
.title-right {
|
|
.item-filter {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.box-avatar {
|
|
width: 50%;
|
|
img {
|
|
display: block;
|
|
width: 70px;
|
|
height: 70px;
|
|
margin-right: 10px;
|
|
}
|
|
a:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
.box-icon {
|
|
img {
|
|
display: block;
|
|
width: 70px;
|
|
height: 70px;
|
|
margin: 0 10px;
|
|
}
|
|
a:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
|
|
.item-summary {
|
|
.form-control {
|
|
padding: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.page_content.brand {
|
|
.title {
|
|
margin: 20px 0;
|
|
.title-right {
|
|
.item-filter {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
.title-left {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
color: #002a53;
|
|
}
|
|
}
|
|
.content-brand {
|
|
background: #fff;
|
|
padding: 15px;
|
|
.input-stt {
|
|
width: 45px;
|
|
height: 27px;
|
|
border-radius: 3px;
|
|
border: 1px solid #ddd;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-form-add {
|
|
margin-top: 20px;
|
|
background: #fff;
|
|
padding: 20px;
|
|
.item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 15px;
|
|
.label {
|
|
width: 20%;
|
|
font-size: 14px;
|
|
}
|
|
.content-right {
|
|
width: 75%;
|
|
}
|
|
&.display {
|
|
label {
|
|
margin-right: 25px;
|
|
}
|
|
input[type="radio"] {
|
|
height: 16px;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
.item-summary {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 15px;
|
|
.title {
|
|
width: 20%;
|
|
margin: 0;
|
|
}
|
|
.right-summary {
|
|
width: 75%;
|
|
}
|
|
}
|
|
.box-select {
|
|
position: relative;
|
|
border-radius: 5px;
|
|
border: 1px solid #b8b8b8;
|
|
&::before {
|
|
position: absolute;
|
|
content: "\f0d7";
|
|
right: 7px;
|
|
top: 50%;
|
|
font: normal 400 1em/1 "Font Awesome 6 Free";
|
|
font-weight: 900;
|
|
transform: translate(0, -50%);
|
|
}
|
|
select {
|
|
border: none;
|
|
}
|
|
}
|
|
.item-checkbox {
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
input[type="checkbox"] {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-right: 7px;
|
|
border-radius: 2px;
|
|
border: 1px solid #d9d9d9;
|
|
background: #f5f5f5;
|
|
}
|
|
}
|
|
.form-label-radio {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
span {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.page_content.add-brand {
|
|
.title {
|
|
margin: 20px 0;
|
|
.title-right {
|
|
.item-filter {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.box-avatar {
|
|
width: 50%;
|
|
img {
|
|
display: block;
|
|
width: 70px;
|
|
height: 70px;
|
|
margin-right: 10px;
|
|
}
|
|
a:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
|
|
.page_content.add-attribute {
|
|
.title {
|
|
margin: 20px 0;
|
|
.title-right {
|
|
.item-attr {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.item-radio {
|
|
width: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
input[type="radio"] {
|
|
height: 17px;
|
|
width: 17px;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
.table-attribute {
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
.add-attr {
|
|
margin-right: 10px;
|
|
span {
|
|
margin-right: 10px;
|
|
}
|
|
&.name {
|
|
input {
|
|
width: 240px;
|
|
}
|
|
}
|
|
&.value-sort {
|
|
input {
|
|
width: 148px;
|
|
}
|
|
}
|
|
&.value-order {
|
|
input {
|
|
width: 52px;
|
|
}
|
|
}
|
|
}
|
|
.btn-add {
|
|
border-radius: 5px;
|
|
border: 1px solid #b8b8b8;
|
|
background: #ebebeb;
|
|
padding: 8px;
|
|
}
|
|
}
|
|
|
|
.page_content.add-collection {
|
|
.title {
|
|
margin: 10px 0;
|
|
.title-right {
|
|
.item-attr {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.page_content.config_group {
|
|
.title {
|
|
margin: 20px 0;
|
|
.title-right {
|
|
.item-filter {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
.title-left {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
color: #002a53;
|
|
}
|
|
}
|
|
.table-list-config {
|
|
background: #fff;
|
|
padding: 10px;
|
|
}
|
|
}
|
|
.page_content.add-config {
|
|
.title {
|
|
margin: 10px 0;
|
|
.title-right {
|
|
.item-attr {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.tabnav {
|
|
margin-top: 10px;
|
|
.item {
|
|
padding: 7px 10px;
|
|
color: #004e99;
|
|
background: #e1edf9;
|
|
margin-right: 7px;
|
|
&.active,
|
|
&:hover {
|
|
background: #4795df;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
.box-form-add {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
/* ==== Khách hàng + Marketing ==== */
|
|
|
|
.customer-page {
|
|
.title {
|
|
margin-top: 10px;
|
|
.title-right {
|
|
.item-attr {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.customer-contact {
|
|
table td {
|
|
padding: 8px 0;
|
|
}
|
|
textarea {
|
|
min-height: 170px !important;
|
|
max-height: 250px !important;
|
|
}
|
|
p {
|
|
margin: 0 0 10px 0;
|
|
&:last-child {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
.customer-comment-detail-page {
|
|
font-size: 15px;
|
|
line-height: 19px;
|
|
font-weight: 300;
|
|
a {
|
|
color: #000;
|
|
&:hover {
|
|
color: #e10000;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
.col-left,
|
|
.col-right,
|
|
.comment-list {
|
|
background: #fff;
|
|
border: 1px solid #dddddd;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
margin-bottom: 20px;
|
|
}
|
|
.col-left {
|
|
padding: 20px 23px;
|
|
margin-right: 20px;
|
|
width: 65%;
|
|
}
|
|
.col-right {
|
|
width: calc(35% - 20px);
|
|
padding: 10px 15px;
|
|
b {
|
|
display: block;
|
|
}
|
|
}
|
|
.comment-list {
|
|
width: 100%;
|
|
text-align: center;
|
|
tr {
|
|
&:nth-child(1) {
|
|
background: #f4f5f6;
|
|
font-weight: 500;
|
|
td {
|
|
border: 0;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
td {
|
|
border-top: 1px solid #dddddd;
|
|
padding: 14px 10px;
|
|
&:nth-child(6) {
|
|
max-width: 300px;
|
|
text-align: left;
|
|
}
|
|
&:last-child {
|
|
width: 160px;
|
|
}
|
|
}
|
|
}
|
|
.item {
|
|
margin-bottom: 8px;
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
p {
|
|
margin: 8px 0 0 0;
|
|
border: 1px solid #dddddd;
|
|
border-radius: 5px;
|
|
background: #fcfdfe;
|
|
line-height: 21px;
|
|
padding: 9px 10px;
|
|
}
|
|
a {
|
|
text-decoration: underline;
|
|
&:hover {
|
|
color: #4795df;
|
|
}
|
|
}
|
|
}
|
|
textarea {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 10px;
|
|
height: 339px;
|
|
min-height: 339px;
|
|
max-height: 430px;
|
|
background: #fcfdfe;
|
|
border: 1px solid #dddddd;
|
|
border-radius: 5px;
|
|
margin: 10px 0 15px 0;
|
|
outline: none;
|
|
resize: none;
|
|
}
|
|
.note {
|
|
background: #ffd4d4;
|
|
color: #e10000;
|
|
line-height: 32px;
|
|
border-radius: 3px;
|
|
display: block;
|
|
}
|
|
table {
|
|
td:nth-child(1) {
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
}
|
|
.marketing-page {
|
|
p {
|
|
margin-top: 5px;
|
|
line-height: 19px;
|
|
}
|
|
table {
|
|
textarea {
|
|
min-height: 170px;
|
|
max-height: 250px;
|
|
}
|
|
}
|
|
}
|
|
.voucher-page {
|
|
table {
|
|
input[type="text"],
|
|
select {
|
|
width: fit-content;
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
.voucher-type {
|
|
white-space: nowrap;
|
|
line-height: 40px;
|
|
margin: 0 0 0 10px;
|
|
&::after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
* {
|
|
float: left;
|
|
}
|
|
input {
|
|
width: 122px !important;
|
|
margin: 0 8px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
.banner-page {
|
|
.banner-holder {
|
|
img {
|
|
max-width: 400px;
|
|
}
|
|
}
|
|
table {
|
|
input[type="text"],
|
|
select {
|
|
font-weight: 300;
|
|
padding: 0 12px;
|
|
}
|
|
}
|
|
.banner-size-holder {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
margin-right: 32px;
|
|
input {
|
|
width: 100px !important;
|
|
margin: 0 8px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
.global-time-group {
|
|
margin-top: 12px;
|
|
}
|
|
}
|
|
.marketing-tab-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
a {
|
|
line-height: 30px;
|
|
margin: 0 8px 0 0;
|
|
background: #e1edf9;
|
|
color: #004e99;
|
|
padding: 0 12px;
|
|
&:hover {
|
|
background: #fff;
|
|
}
|
|
&.current {
|
|
background: #4795df;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
}
|
|
.global-content-container {
|
|
img {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
b {
|
|
font-weight: 500;
|
|
}
|
|
sub {
|
|
bottom: 0;
|
|
top: 0px;
|
|
color: #f90202;
|
|
font-size: 15px;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
td {
|
|
vertical-align: top;
|
|
padding: 10px 0;
|
|
&:nth-child(1) {
|
|
font-weight: 500;
|
|
padding-right: 10px;
|
|
}
|
|
}
|
|
a {
|
|
color: #4795df;
|
|
display: inline-block;
|
|
}
|
|
input[type="checkbox"],
|
|
input[type="radio"] {
|
|
margin-right: 7px;
|
|
}
|
|
input[type="text"],
|
|
select,
|
|
textarea {
|
|
display: block;
|
|
width: 100%;
|
|
outline: none;
|
|
border-radius: 5px;
|
|
border: 1px solid #b8b8b8;
|
|
height: 40px;
|
|
padding: 0 16px;
|
|
color: #000;
|
|
background: #fff;
|
|
}
|
|
select {
|
|
padding: 0 14px;
|
|
color: #000;
|
|
}
|
|
textarea {
|
|
padding: 9px 16px;
|
|
min-height: 40px;
|
|
max-height: 120px;
|
|
}
|
|
label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
margin-right: 23px;
|
|
cursor: pointer;
|
|
input[type="text"] {
|
|
margin: 0 0 0 10px;
|
|
max-width: 72px;
|
|
text-align: center;
|
|
padding: 0 5px !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.global-content-container .btn-update,
|
|
.global-content-container .btn-reply {
|
|
display: inline-block;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
width: 120px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
color: #fff;
|
|
background: #004e99;
|
|
border: 0;
|
|
padding: 0;
|
|
float: right;
|
|
}
|
|
.breadcrumb-icons,
|
|
.global-time-group .box-time-item::after {
|
|
background: url(../images/sprite.png) no-repeat;
|
|
background-size: 70px 130px;
|
|
}
|
|
.global-time-group {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
white-space: nowrap;
|
|
p {
|
|
margin: 0 10px 0 0;
|
|
}
|
|
.box-time-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 10px 0 0;
|
|
border: 1px solid #b8b8b8;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
max-width: 358px;
|
|
width: 100%;
|
|
position: relative;
|
|
&::before {
|
|
content: "\2192";
|
|
font-size: 20px;
|
|
width: 10px;
|
|
height: 40px;
|
|
line-height: 38px;
|
|
opacity: 0.25;
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-120%);
|
|
}
|
|
&::after {
|
|
@extend .breadcrumb-icons;
|
|
content: "";
|
|
width: 16px;
|
|
height: 40px;
|
|
position: absolute;
|
|
right: 10px;
|
|
}
|
|
input,
|
|
select {
|
|
border-radius: 0 !important;
|
|
color: rgba(0, 0, 0, 0.25) !important;
|
|
border: 0 !important;
|
|
appearance: none;
|
|
width: 50% !important;
|
|
margin: 0 !important;
|
|
&:focus {
|
|
color: #000 !important;
|
|
}
|
|
&:last-child {
|
|
padding: 0 28px !important;
|
|
}
|
|
}
|
|
}
|
|
.time-date {
|
|
&::after {
|
|
background-position: -6px -66px;
|
|
}
|
|
}
|
|
.time-minute {
|
|
margin: 0;
|
|
&::after {
|
|
background-position: -43px -67px;
|
|
}
|
|
}
|
|
}
|
|
.breadcrumb-icons.icon-add {
|
|
background-position: -8px -104px;
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 5px;
|
|
}
|
|
.marketing-page {
|
|
.title {
|
|
margin: 10px 0;
|
|
.title-right {
|
|
.item-attr {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
i {
|
|
margin-right: 3px;
|
|
}
|
|
&:hover {
|
|
color: var(--color-global);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|