vr-shopxo-source/public/static/admin/default/css/site.css

275 lines
5.2 KiB
CSS
Raw Normal View History

2019-05-16 17:42:37 +00:00
/**
2024-01-19 06:49:32 +00:00
* /
2019-05-16 17:42:37 +00:00
*/
2024-01-19 06:49:32 +00:00
.address-list li {
padding: 1rem 1.2rem;
color: #333;
2019-05-16 17:42:37 +00:00
}
2024-01-19 06:49:32 +00:00
.address-list li:nth-child(odd) {
background-color: #fff;
2023-08-27 08:10:21 +00:00
}
2024-01-19 06:49:32 +00:00
.address-list li:nth-child(even) {
background: #F6F6F6;
2019-05-16 17:42:37 +00:00
}
2018-12-28 10:58:37 +00:00
2021-03-06 15:49:19 +00:00
.address-list .address-logo {
2024-01-19 06:49:32 +00:00
width: 3.2rem;
height: 3.2rem;
2023-08-27 08:10:21 +00:00
margin-right: 0.2rem;
2021-03-06 15:49:19 +00:00
vertical-align: text-top;
}
2024-01-19 06:49:32 +00:00
2019-11-12 10:44:59 +00:00
.address-list .edit-submit,
.address-list .delete-submit {
cursor: pointer;
2024-01-19 06:49:32 +00:00
display: inline-flex;
align-items: center;
gap: 0.3rem;
color: var(--color-main);
padding: 0 1rem;
2019-11-18 10:34:53 +00:00
}
2024-01-19 06:49:32 +00:00
.address-list .edit-submit:hover,
.address-list .delete-submit:hover {
color: #146BE6;
2019-11-18 10:34:53 +00:00
}
2024-01-19 06:49:32 +00:00
2019-11-18 10:34:53 +00:00
@media only screen and (max-width:640px) {
2024-01-19 06:49:32 +00:00
2019-11-18 10:34:53 +00:00
.address-list .edit-submit,
.address-list .delete-submit {
position: absolute;
2023-08-27 08:10:21 +00:00
top: 1.2rem;
right: 0.5rem;
2019-11-18 10:34:53 +00:00
float: none !important;
}
2024-01-19 06:49:32 +00:00
2019-11-18 10:34:53 +00:00
.address-list .delete-submit {
2023-08-27 08:10:21 +00:00
right: 7rem;
2019-11-18 10:34:53 +00:00
}
2020-11-25 14:59:17 +00:00
}
/**
2023-08-27 08:10:21 +00:00
*
2020-11-25 14:59:17 +00:00
*/
.manual-mode-goods-container li {
position: relative;
2024-01-19 06:49:32 +00:00
background: #FFFFFF;
2020-11-25 14:59:17 +00:00
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.manual-mode-goods-container li button.am-close {
position: absolute;
top: 0;
right: 0;
2024-01-19 06:49:32 +00:00
padding: 1.1rem 2.5rem 1.1rem 1.5rem;
color: #ddd;
}
.manual-mode-goods-container li:hover {
background: #F6F6F6;
}
.manual-mode-goods-container li:hover button.am-close {
color: var(--color-main);
}
.manual-mode-goods-container li a {
color: #333;
padding: 1rem 1.2rem;
transition: all 0.3s ease-in-out;
}
.manual-mode-goods-container li:hover a {
color: var(--color-main);
2020-11-25 14:59:17 +00:00
}
/**
* -
*/
.goods-add-container {
height: 100%;
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.forth-selection-container select.forth-selection-form-category {
display: -webkit-inline-box;
}
2024-01-19 06:49:32 +00:00
.forth-selection-container .forth-selection-form-category,
.forth-selection-container .chosen-container,
.forth-selection-container .forth-selection-form-keywords {
2023-08-27 08:10:21 +00:00
width: calc(50% - 4.8rem) !important;
2020-11-25 14:59:17 +00:00
}
2024-01-19 06:49:32 +00:00
.forth-selection-container .chosen-container,
.forth-selection-container .forth-selection-form-keywords {
2020-11-25 14:59:17 +00:00
display: -webkit-inline-box !important;
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.forth-selection-container .chosen-single {
width: 100%;
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.forth-selection-container .search-submit {
2023-08-27 08:10:21 +00:00
width: 8.7rem;
2020-11-25 14:59:17 +00:00
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.goods-list-container {
2023-08-27 08:10:21 +00:00
height: calc(100% - 9.2rem);
border: 0.1rem solid #eee;
2020-11-25 14:59:17 +00:00
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.goods-list-container .am-gallery-bordered .am-gallery-title {
2023-08-27 08:10:21 +00:00
margin-top: 0.5rem;
2020-11-25 14:59:17 +00:00
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.goods-list-container ul li {
position: relative;
cursor: pointer;
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.goods-list-container ul li:hover .am-gallery-item {
2024-01-19 06:49:32 +00:00
-webkit-box-shadow: 0 0 0.6rem var(--color-blue);
box-shadow: 0 0 0.6rem var(--color-blue);
2020-11-25 14:59:17 +00:00
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.goods-list-container .icon-submit-container {
position: absolute;
2024-01-19 06:49:32 +00:00
right: -0.3rem;
top: -1rem;
2020-11-25 14:59:17 +00:00
}
2024-01-19 06:49:32 +00:00
2020-11-25 14:59:17 +00:00
.goods-page-container {
2023-08-27 08:10:21 +00:00
height: 4rem;
}
/**
*
*/
2024-01-19 06:49:32 +00:00
.domain-multilingual-list>ul {
max-width: 90rem;
}
.domain-multilingual-list>ul li input.item-domain-input,
.domain-multilingual-list>ul li .item-multilingual-choice {
2023-08-27 08:10:21 +00:00
width: calc(50% - 4rem) !important;
2020-11-25 14:59:17 +00:00
}
2024-01-19 06:49:32 +00:00
.domain-multilingual-list .delete-btn {
padding: 0.6rem 1.2rem;
2023-09-17 14:54:33 +00:00
}
/**
*
*/
2024-01-19 06:49:32 +00:00
.multilingual-content > .am-inline-block:not(:last-child) {
margin-right: 1.22rem;
2023-09-17 14:54:33 +00:00
}
2024-01-19 06:49:32 +00:00
.multilingual-content .am-checkbox-inline {
2023-09-17 14:54:33 +00:00
margin: 0;
}
2024-01-19 06:49:32 +00:00
.multilingual-content ul.plug-file-upload-view {
2023-09-17 14:54:33 +00:00
padding: 0 !important;
2024-01-19 06:49:32 +00:00
}
/* 拖拽模式 */
.drop-mode img {
width: 22rem;
}
/* 自动 + 手动 */
.am-form-group .am-tagsinput {
max-width: 41.5rem;
border-radius: var(--border-radius);
border: 0.1rem solid #D8D9DC;
}
.am-form-group .am-tagsinput .tag {
background: #F3F3F3;
color: #333;
border-radius: var(--border-radius);
padding: 0.1rem 0.6rem;
font-weight: normal !important;
}
/* 订单 */
.payment-list-width {
max-width: 90rem;
}
.payment-list-width .am-form-group {
width: calc(50% - 1.2rem);
}
/* 扩展-多语言 */
.multilingual-content {
padding: 3.6rem 1.6rem;
background: #F9F9F9;
border-radius: var(--border-radius);
}
.auto-hand-cart>li {
margin-bottom: 2rem;
}
.auto-hand-cart>li:last-child {
margin-bottom: 0;
}
/* 自提地址弹窗 */
.content-right>.content #popup-address-win form .form-multiple-where-input,
.content-right>.content #popup-address-win form input,
.content-right>.content #popup-address-win form .chosen-select {
max-width: 100%;
}
/**
*
*/
.level-type-content .item {
display: none;
}
.level-type-content .item.am-active {
display: block;
}
.level-type-content .item>div {
gap: 6rem;
}
.level-type-content .item>div p {
text-align: center;
font-size: 1.4rem;
font-family: PingFangSC,
PingFang SC;
font-weight: 500;
color: #666666;
}
.level-type-content .item img {
max-height: 44.7rem;
box-shadow: 0.1rem 0.2rem 1rem 0rem rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1200px) {
.level-type-content .item {
gap: 4rem;
}
}
@media only screen and (max-width: 900px) {
.level-type-content .item {
gap: 3rem;
}
}
@media only screen and (max-width: 640px) {
.level-type-content .item {
gap: 1.5rem;
}
.level-type-content .item img {
max-height: 20rem;
}
2023-08-27 08:10:21 +00:00
}