h1:hover {
    color: var(--cur-theme-color);
}
.tips {
    display: none;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: white;
    overflow: hidden;
}
.error {
    background-color: rgb(221, 95, 95);
}
.success {
    background-color: rgb(0, 179, 0);
}

.commodity-invalid svg{
    display: block;
    width: 4em;
    height: 4em;
    margin: auto;
}
.commodity-invalid p{
    text-align: center;
}

.product-detail {
    display: flex;
}
.images-preview {
    position: relative;
    width: 42%;
    margin-right: 4%;
}
.large-image img{
    width: 100%;
}
.thumbnail {
    position: relative;
    width: 100%;
    user-select: none;
    /* padding: 0 20px; */
    box-sizing: border-box;
    border: 1px solid #d5d5d5;
}
.thumbnail-imgs-wrap {
    display: flex;
    overflow: auto;
}
.scroll-btn {
    position: absolute;
    display: flex;
    align-items: center;
    background-color: white;
    height: 135px;
    z-index: 100;
    cursor: pointer;
    bottom: 0;
}
.scroll-left {
    left: 0;
}
.scroll-right {
    right: 0;
}

.thumbnail-imgs-wrap::-webkit-scrollbar {
    display: none;
}
.thumbnail img {
    display: block;
    height: 135px;
    cursor: pointer;
    margin-right: 6px;
    filter: grayscale(250%);
    opacity: .4;
}
.thumbnail img.current {
    filter: grayscale(1%);
    opacity: 1;
}
.productInfo-wrap {
    display: flex;
    flex-direction: column;
    max-width: 58%;
    flex: 1;
}
.productInfo-wrap .price {
    color: var(--cur-theme-color);
    font-weight: bold;
    font-size: 23px;
    
}
.productInfo-wrap .description {
    margin-top: 10px;
    flex: 1;
    white-space: pre;
    max-height: 225px;
    overflow-y: auto;
}
.skus {
    background-color: #F8F8F8;
    padding: 10px;
    font-size: 14px;
    margin-top: 15px;
    border: 1px solid #bbb;
}
.sku {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}
.sku-name {
    width: 80px;
    font-size: 16px;
}
.sku-item {
    background-color: white;
    border-radius: 5px;
    border: 2px solid #888;
    padding: 3.5px;
    margin-left: 10px;
    cursor: pointer;
}
.sku-item.cur {
    background-color: #3A4357;
    color: white;
}
.sku input {
    border: 2px solid var(--cur-theme-color);
    font-size: 15px;
    padding: 4px;
    flex: 1;
}
.sku input:focus {
    border: 2px solid rgb(129, 129, 236);
}
#example_url, #format {
    font-size: 15px;
}
select {
    padding: 4px;
    padding-right: 10px;
    outline: none;
}
.number-btn {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 0;
    border: 1px solid #eee;
    background-color: white;
}
.number-input {
    width: 70px;
    margin: 0 3px;
}
.submit-btns {
    display: flex;
    justify-content: flex-end;
}
.submit-btn {
    margin-top: 10px;
    width: 50%;
    background-color: var(--cur-theme-color);
    color: white;
    padding: 8px 20px;
    font-size: 18px;
    box-sizing: border-box;
    border: 0;
}
.submit-btns .submit-btn:not(:first-of-type) {
    margin-left: 5px;
}


.recommend {
    display: flex;
    margin-top: 40px;
    border-top: 5px solid #eee;
    padding: 15px 0;
}
.recommend-qa {
    margin-top: 0;
    border-bottom: 5px solid #eee;
}
.recommend .prod-overview {
    width: 16.66%;
    margin-right: 8px;
}
.recommend .prod-overview:hover .title {
    color: var(--cur-theme-color);
}
.recommend .main-image {
    width: 100%;
}
.recommend .title {
    font-size: 12px;
    margin: 14px 0;
    height: 48px;
    overflow: hidden;
    /* width: 130%;
    transform-origin: 0 0;
    transform: scale(0.8) */
}
.recommend .price, .recommend .sales_volume {
    font-size: 14px;
    font-weight: bold;
}
.recommend .price {
    color: var(--cur-theme-color);
}
.recommend .sales_volume {
    color: black;
}



.query-history {
    margin-top: 50px;
}
.input-wrap {
    display: flex;
    align-items: center;
    padding: 0 5%;
}
.area-name {
    font-size: 35px;
    font-weight: bold;
    margin: 0 3%;
    margin-right: 5%;
}
.input-area {
    flex: 1;
}
.input-area form{
    display: flex;
    height: 30px;
    margin: 0 10px;
    border-radius: 30px;
    padding: 3px 10px;
    border: 3px solid var(--cur-theme-color);
}
.input-area input {
    flex: 1;
    font-size: 17px;
}
.input-area button{
    outline: none;
    border: 0; background-color: white;
    border-radius: 50%;
}
.input-area button svg{
    width: 2em;
    height: 2em;
}
.query-history-result {
    min-height: 30vh;
    border: 2px solid var(--cur-theme-color);
    margin-top: 20px;
    padding: 15px;
    margin-bottom: 50px;
}
.check-btn {
    background-color: #000;
    color: white;
    outline: none;
    border: 0;
    height: 38px;
    width: 150px;
    font-size: 15px;
    cursor: pointer;
}
.btn {
    background-color: #000;
    color: white;
    outline: none;
    border: 0;
    height: 38px;
    width: 150px;
    font-size: 15px;
    cursor: pointer;
    /* margin-bottom: 5px; */
}
.btn[disabled] {
    background-color: #999;
    color: #333;
    cursor: not-allowed;
}
.newly_added_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    color: #333;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
    outline: none;
    border: 1px solid #aaa;
    height: 38px;
    font-size: 19px;
    cursor: pointer;
    border-radius: 10px;
}
.save_newly_added {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(5, 185, 5);
    color: #f5f5f5;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
    outline: none;
    border: 1px solid #aaa;
    height: 38px;
    font-size: 19px;
    cursor: pointer;
    border-radius: 10px;
}



.provide-input-wrap {
    flex: 1;
    height: 100%;
    overflow: auto;
    padding: 10px;
}
.provide-input-wrap .content-item {
    margin-bottom: 10px;
}
.provide-input-wrap input, .order-contents input {
    border: 1px solid #bbb;
    font-size: 16px;
    width: 100%;
    padding: 4px;
}
.provide-input-wrap p, .order-contents p {
    font-size: 19px;
    margin: 0;
    margin-bottom: 5px;
    font-weight: bold;
}

.order-contents form {
    display: none;
}
.order-contents label {
    display: inline-block;
    cursor: pointer;
    padding: 0 10px;
    color: rgb(104, 104, 218);
}

.window button {
    width: 150px;
    background-color: white;
    color: #333;
    outline: none;
    font-size: 16px;
    border: 1px solid #bbb;
}
.window button.primary {
    color: white;
    background-color: #52BE70;
}

.order-summary {
    font-size: 23px;
    font-weight: bold;
    white-space: pre-wrap;
}

.order-contents {
    margin-top: 60px;
}
.order-contents .content-tip {
    font-size: 23px;
    font-weight: bold;
}
.content-item .item-detail {
    font-weight: bold;
    display: flex;
    font-size: 23px;
    border: 2px solid var(--cur-theme-color);
    justify-content: space-around;
}
.content-item .item-detail>div:not(:last-of-type) {
    border-right: 2px solid var(--cur-theme-color);
}
.content-item .item-detail>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3%;
    text-align: center;
    padding: 5px;
    flex-direction: column;
}
.content-item p {
    margin: 2px 0;
}
.feedback-btns {
    display: flex;
    border: 2px solid var(--cur-theme-color);
    border-top: 0;
}
.feedback-btns>div {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
    font-weight: bold;
    font-size: 23px;
}
.feedback-btns>div:last-of-type {
    font-size: 19px;
    width: 250px;
}
.feedback-btns>div:not(:last-of-type) {
    cursor: pointer;
    flex: 1;
    border-right: 2px solid var(--cur-theme-color);
}

.upload-area {
    display: none;
    margin-top: 10px;
}
.select-img-btn {
    color: rgb(104, 104, 218);
    margin-right: 10px;
    cursor: pointer;
}
.clean-img-btn {
    display: none;
    color: red;
    cursor: pointer;
}
.feedback-btn.primary {
    background-color: var(--cur-primary-color);
}
.feedback-btn {
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #999;
    background-color: red;
    color: white;
    transition: .3s;
}
/* .feedback-btn:hover {
    background-image: linear-gradient(0, #f5f5f5, #fff);
} */
.no-edit .item-detail a {
    text-decoration: underline;
    color: rgb(96, 96, 238);
}

.qa_question {
    position: relative;
    border-radius: 0 25px 0 25px;
    background-color: var(--cur-theme-color);
    padding: 15px;
    color: #fff;
    margin-left: 40px;
}
.qa_question::before {
    content: "Q";
    position: absolute;
    height: 30px;
    width: 30px;
    text-align: center;
    left: -40px;
    top: 0;
    border-radius: 2px;
    line-height: 30px;
    background-color: var(--cur-theme-color);
}
.qa_answer {
    position: relative;
    border-radius: 0 25px 0 25px;
    background-color: #F1F1F1;
    padding: 15px;
    color: #000;
    margin-left: 40px;
    margin-top: 30px;
    white-space: break-spaces;
}
.qa_answer::before {
    content: "A";
    position: absolute;
    height: 30px;
    width: 30px;
    text-align: center;
    left: -40px;
    top: 0;
    border-radius: 2px;
    line-height: 30px;
    background-color: #F1F1F1;
}
.t3-query-result {
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #F8F8F8;
    margin-top: 15px;
    min-height: 300px;
    border: 1px solid #bbb;
}
.t3-query-result img{
    max-width: 100%;
}
.t3-query-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #d5d5d5;
}
.t3-query-container .t3-input-area form {
    display: flex;
    align-items: center;
}
.t3-query-container .t-3input-area span {
    display: block;
    margin-right: 10px;
    font-size: 21px;
    font-weight: bold;
}
.t3-query-container .t3-input-area input {
    flex: 1;
    border: 2px solid var(--cur-theme-color);
    border-radius: 20px;
    padding: 0 12px;
    height: 32px;
    margin: 0 10px;
}
