@import url("../bootstrap.css");
@import url("../fastadmin.css");
@import url("../skins/skin-black-blue.css");
@import url("../iconfont.css");
@import url("../../libs/font-awesome/css/font-awesome.min.css");
@import url("../../libs/toastr/build/toastr.min.css");
@import url("../../libs/fastadmin-layer/dist/theme/default/layer.css");
@import url("../../libs/bootstrap-table/dist/bootstrap-table.min.css");
@import url("../../libs/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css");
@import url("../../libs/bootstrap-daterangepicker/daterangepicker.css");
@import url("../../libs/nice-validator/dist/jquery.validator.css");
@import url("../../libs/bootstrap-select/dist/css/bootstrap-select.min.css");
@import url("../../libs/fastadmin-selectpage/selectpage.css");
@import url("../../libs/bootstrap-slider/dist/css/bootstrap-slider.css");
@import url("../../libs/swiper-11.0.3/swiper-bundle.min.css");

/* 定义颜色变量 */
:root {
    --main-color: #9987bd;
    /* 主要颜色 */
    --hover-color: #f4d39a;
    /* 辅助颜色 */
    --bg-color: #b2a1d1;
    /* 底块颜色 */
}

* {
    border: 0;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    -webkit-user-drag: none;
}

*,
:after,
:before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

ul {
    padding: 0;
    margin: 0
}

ul li {
    list-style: none
}

a:hover,
a:focus {
    text-decoration: none;
}

a {
    color: #000;
}

a:hover {
    color: var(--hover-color) !important;
}

body {
    background: #f2f2f2
}

input:focus{
    outline:none !important;
    /* 移除默认轮廓 */
    border: 2px solid #4CAF50 !important;
    /* 设置自定义边框 */
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3) !important;
    /* 添加发光效果 */
}

/*header*/
.top {
    background: #000;
    height: 40px;
    line-height: 40px;
}

.top .nav_bar,
.top .nav_bar .dropdown-toggle {
    color: #fff;
}

.navTop {
    background: #fff;
    margin-bottom: 5px;
    border-bottom: 2px solid #d1d1d1;
}

.nav_head {
    height: 75px;
    line-height: 75px;
}

.container-fluid {
    padding: 0;
}

.footer {
    color: #fff;
    height: 100%;
    background: #000;
    position: relative;
}

.footer-con {
    padding: 5rem 1rem 8rem;
    text-align: center;
}

.copyright {
    position: absolute;
    margin: 0 auto;
    text-align: center;
    bottom: 10px;
    left: 0;
    right: 0;
}

.footer-con b {
    font-size: 2rem;
}

.footer-con ul li {
    font-size: 1.5rem;
    margin: 10px 0;
}

.footer-con ul li a {
    color: #fff;
}


.nav .nav_head .menu li {
    display: inline-block;
}

.nav .nav_head .menu li.has-dropdown {
    position: relative;
    padding: 0 17px 0 20px;

}

.nav .nav_head .menu li>a {
    line-height: 26px;
    padding: 40.5px 0;
}

.nav .nav_head .menu li>a {
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    display: flex;


}

.nav .nav_head .menu li.has-dropdown::after {
    content: "\f107";
    right: 0;
    top: 50%;
    font-size: 16px;
    font-weight: 400;
    position: absolute;
    transform: translateY(-50%);
    color: #000;
    transition: all 0.3s ease-in-out;

}

.nav .nav_head .menu li:hover.has-dropdown::after {
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.nav .nav_head .menu li .sub-menu {
    display: none;
    z-index: 99;
    left: 0;
    top: 90%;
    opacity: 0;
    width: 220px;
    line-height: 40px;
    padding: 15px 0;
    position: absolute;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    background: #000;
    box-shadow: 0 20px 30px rgba(1, 15, 28, 0.1);
}

.nav .nav_head .menu li {
    padding: 0 17px 0 20px;
    position: relative;
    display: inline-block;
}

.nav .nav_head .menu li .sub-menu li {
    margin: 0;
    display: block;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.nav .nav_head .menu li .sub-menu li a {
    display: block;
    padding: 5px 20px;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.nav .nav_head .menu li>a::before {
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: 33px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: all 0.3s ease-in-out;
    background-color: #000;
}

.nav .nav_head .menu li:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    display: block;

}

.nav .nav_head .menu li:hover a::before {
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.nav .nav_head .menu li:hover .sub-menu li:hover {
    margin-left: 10px;

}

.nav .nav_head .menu li:hover .sub-menu li:hover a {
    color: var(--hover-color);
}

.logocon {
    position: relative;
    top: 12px;
}

.logo {
    width: 100px;

}

.nav .search {
    line-height: 110px;
}

.nav .search span {
    border: 1px solid #d1d1d1;
    padding: 15px;
}

.nav .search:hover .search-click-btn {
    background: var(--main-color);
    border-radius: 9px;
    cursor: pointer;

}

/*search*/


.homeSearch form {

    width: 100%;
    padding: 5px;
    border-radius: 0;
    margin: 0;
    left: auto;
    right: 0;
    border-color: #75b519;
    top: 43px;
}

.homeSearch .homeSearchCon {
    position: relative;
}

.homeSearch .homeSearchCon .title {
    letter-spacing: 5px;
    padding-top: 50px;
}

.homeSearch .homeSearchCon .title span,
.homeSearch .homeSearchCon .title i {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.homeSearch .homeSearchCon .fontx {
    padding-top: 12px;
}

.homeSearch .homeSearchCon .fontx span {
    color: #fff;
    font-size: 15px;
    padding-right: 28px;
}

.searchRight {
    float: right;
    background: #fff;
    height: 330px;
    width: 300px;
    position: relative;
    z-index: 3;
}

.searchLeft {
    float: left;

}

.searchTop {
    margin: 40px auto 0 auto;

}

.search-form {
    display: flex;
    align-items: center;
    height: 50px;
}

.search-select {
    flex: 0 0 140px;
    border: none;

    border-right: 1px solid #dee2e6;
    border-radius: 50px 0 0 50px;
    padding: 0 20px;
    height: 100%;
    font-weight: 500;
    color: #495057;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    transition: all 0.2s;
}

.search-select:focus {
    outline: none;
    box-shadow: none;
}

.search-input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    height: 100%;
    font-size: 1.3rem;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    flex: 0 0 60px;
    height: 100%;
    border: none;
    background: linear-gradient(135deg, #000000, #000000);
    color: white;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--hover-color), var(--hover-color));
    transform: translateY(-2px);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn i {
    font-size: 1.2rem;
}

.search-tips {
    text-align: center;
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.9rem;
}



.search-select option {
    height: 42px;
    padding: 12px 15px;
    font-size: 15px;
    background-color: white;
    border-bottom: 1px dashed #dee2e6;
}

.searchCenter {
    margin: 10px 0;

}

#searchModal {
    display: none;
}

#searchModal .searchCenter,
#searchModal .searchCover {
    position: fixed;
    z-index: 99999999;
}

#searchModal .searchCenter {

    right: 0;
    left: 0;
    top: 200px;
    width: 60%;
    margin: 0 auto;

}

.searchCover {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.3;
}

/*search end*/
/*左右分散对齐*/
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

/*超出文字隐藏*/
.ellip {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*header end*/

/*open*/
.question_tip,
.modal-alert {
    position: relative;
}

.question_tip:hover .tip_box,
.goods-softtext .goods-remark:hover i,
.modal-alert:hover .tip_box {
    display: block;
}

.tip_box {
    position: absolute;
    top: 23px;
    left: 25%;
    transform: translateX(-50%);
    z-index: 100;
    white-space: nowrap;
    line-height: 1.5;
    background-color: #000;
    border: 1px solid var(--main-color);
    padding: 5px 8px;
    font-size: 12px;
    display: none;
    text-align: left;
    color: var(--hover-color);
}

.menu-right {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1032;
    width: 45px;
    height: 100%;
    padding-left: 45px;
    transition: all 0.3s;
}

.menu-right-goods {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
    padding-top: 38px;
    background: #f6f6f6;
    right: 46px;
    box-shadow: -2px 0px 6px 0px #ffebee;
}

.menu-right-header {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    background: #fff;
    font-size: 12px;
    border-bottom: 2px solid #e6e6e6;
}

.menu-right .check_boxs {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(179, 179, 179, 1);
    border-radius: 3px;
    /* display: inline-block; */
    float: left;
    margin: 15px 12px 0 0;
}

.menu-right .checked {
    width: 14px;
    height: 14px;
    background: url(/assets/img/icon/choose.png) no-repeat;
    background-size: 100%;
    border: none;
}

.menu-right .title {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    font-size: 14px;
}

.menu-right-con ul {
    padding: 0 12px;
    background-color: #fff;
}

.menu-right-con li {
    padding-bottom: 8px;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    clear: both;
}

.menu-right .web_title {
    position: relative;
}

.menu-right .checked {
    width: 14px;
    height: 14px;
    background: url(/assets/img/icon/choose.png) no-repeat;
    background-size: 100%;
    border: none;
}

.menu-right .con-title {
    margin-top: 12px;
    padding: 0;
    color: #333;
    font-size: 14px;
    width: 85%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.menu-right .deleteCar {
    position: absolute;
    top: 12px;
    right: 0;
    background: url(/assets/img/icon/close.png) no-repeat;
    width: 12px;
    height: 12px;
    background-size: 100%;
    display: inline-block;
    cursor: pointer;
}

.menu-right .link_type {
    padding-left: 27px;
    margin: 0 0 10px;
}

.menu-right .title .check_boxs {
    margin-top: 8px;
}

.menu-right .link_type span {
    padding: 2px 5px;
    background: rgba(241, 246, 250, 1);
    display: inline-block;
    font-size: 12px;
    color: #6F95CF;
}

.menu-right .con-price {
    float: left;
    margin: 0 0 8px 26px;
    padding: 0;
    font-size: 12px;
    line-height: 1;
    color: #555;
}

.menu-right .header-text {
    float: right;
    margin-right: 4px;
    color: #e57373;
    cursor: pointer;
}

.menu-right .header-text ss:last-child {
    margin-left: 5px;
}

.menu-right-con {
    overflow: auto;
    height: 100%;
    width: 280px;
    overflow-x: hidden;
    margin-top: 3px;
}

.menu-right-empty img {
    display: block;
    margin: 20px auto 30px;
}

.menu-right-empty p {
    margin: 0;
    color: var(--main-color);
    font-size: 16px;
    text-align: center;
}

.menu-right-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 5px 10px 5px;
    color: #555;
    font-size: 12px;
    line-height: 1;
    background: #fff;
    border-top: 2px solid rgba(230, 230, 230, 1);
}

.menu-right-footer a {
    margin-top: 3px;
    /* display: inline-block; */
    float: right;
}

.menu-right-footer .btn {
    float: right;
}

.btn-info {
    color: #fff;
    background: #000;

}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.menu_list {
    width: 46px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.menu_bg {
    position: absolute;
    z-index: 1;
    width: 46px;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    opacity: 0.6;
}

.menu-right .footer-right {
    float: right;
    margin-bottom: 8px;
}

.menu-right-btns {
    position: absolute;
    top: 166px;
    left: 0;
    width: 45px;
    z-index: 9;
}

.menu-right-btns li {
    position: relative;
    float: right;
    width: 45px;
    margin-bottom: 20px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s;
}

.menu-right-btns li:hover {
    background: #ef5350;
    opacity: 1;
}

.menu-right-btns li div {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 115px;
    z-index: 1;
}

.menu-right-btns .badge {
    position: absolute;
    min-width: 18px;
    text-align: center;
    top: 8px;
    right: 3px;
    padding: 1px 4px;
    background-color: #f00;
    font-weight: normal;
}

.menu-right-btns .title {
    float: left;
    overflow: hidden;
    width: 70px;
    height: 38px;
    padding-left: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 32px;
    position: absolute;
    left: -140px;
    display: none;
}

.menu_tel:hover .title {
    display: block;
    width: 140px;
    height: 64px;
    background: #ef5350;
    border-radius: 5px 0px 0px 5px;
}

.app_download .title {
    width: 84px;
    height: 84px;
    position: absolute;
    left: -84px;
    top: -8px
}

.app_download:hover .title {
    display: block;
    background: #ef5350;
    border-radius: 5px 0px 0px 5px;
}

.menu_tel .title p {
    margin: 0
}

.menu_tel .title p:before {
    content: '';
    background: url(../../img/icon/tel_icon.png) no-repeat;
    width: 16px;
    height: 16px;
   /*  display: inline-block; */
    float: left;
    margin: 7px 4px 0 0;
}

.menu-right-btns .icon {
    padding-left: 5px;
    width: 40px;
    height: 64px;
    text-align: center;
    color: #fff;
    padding-top: 30px;
    font-size: 12px;
    display: inline-block;
}

.menu-right-btns li:nth-child(1),
.menu-right-btns li:nth-child(6) {
    margin-bottom: 30px;
}

.menu-right-btns .icon:after {
    content: '\200B';
    position: absolute;
}

.menu-right-btns .icon-person:after {
    top: 8px;
    right: 7px;
    width: 25px;
    height: 22px;
    background: url(../../img/icon/people_icon.png) no-repeat;
}

.menu-right-btns .icon-service:after {
    top: 11px;
    right: 5px;
    width: 25px;
    height: 22px;
    background: url(../../img/icon/customer_icon.png) no-repeat;
}

.menu-right-btns .icon-qq:after {
    top: 11px;
    right: 5px;
    width: 25px;
    height: 22px;
    background: url(../../img/icon/qq_icon.png) no-repeat;
}

.menu-right-btns .icon-shop:after {
    top: 16px;
    right: 4px;
    width: 28px;
    height: 26px;
    background: url(../../img/icon/shop_icon.png) no-repeat;
}

.menu-right-btns .icon-hands:after {
    top: 11px;
    right: 7px;
    width: 25px;
    height: 22px;
    background: url(../../img/icon/icons_web_new.png) -234px -211px no-repeat;
}

.menu-right-btns .icon-pen:after {
    top: 13px;
    right: 7px;
    width: 22px;
    height: 20px;
    background: url(../../img/icon/tel_icon.png) no-repeat;
}

.menu-right-btns .icon-feek:after {
    top: 10px;
    right: 9px;
    width: 22px;
    height: 15px;
    background: url(../../img/icon/feekback_icon.png) no-repeat;
}

.menu-right-btns .icon-guisss:after {
    top: 4px;
    right: 10px;
    width: 25px;
    height: 23px;
    background: url(../../img/icon/small_logo.png) no-repeat;
    background-size: cover;
}

.menu-right-btns .icon-code:after {
    top: 4px;
    right: 5px;
    width: 25px;
    height: 23px;
    background: url(../../img/icon/phone_icon.png) no-repeat;
}

.menu-right-btns .icon.icon-up {
    background: none;
    margin-left: 0;
}

.menu-right-btns .icon.icon-up:after {
    top: 22px;
    right: 8px;
    width: 25px;
    height: 21px;
    background: url(../../img/icon/icons_web_new.png) -273px -188px no-repeat;
}

.fa-mg:before {
    margin-right: 5px;

}

/*open end*/

/*jquery.page.css*/
.tcdPageCode a {
    text-decoration: none;
}

.tcdPageCode a:hover {
    text-decoration: none;
}

.tcdPageCode {
    text-align: center;
    margin: 20px 0 38px 0
}

.tcdPageCode a {
    display: inline-block;
    color: #555;
    display: inline-block;
    ;
    padding: 0 10px;
    height: 24px;
    line-height: 22px;
    border: 1px solid rgba(230, 230, 230, 1);
    margin: 0 2px;
    vertical-align: middle;
}

.tcdPageCode a:hover {
    text-decoration: none;
    background: #000
}

.tcdPageCode span.current {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
    margin: 0 2px;
    color: var(--hover-color);
    background-color: #000;
    vertical-align: middle;
}

.tcdPageCode span.disabled {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
    margin: 0 2px;
    color: #bfbfbf;
    background: #f2f2f2;
    border: 1px solid #bfbfbf;
    vertical-align: middle;
}

.tcdPageCode span.text {
    color: #666;
    margin: 0 6px
}

.tcdPageCode a.go {
    cursor: pointer;
}

.tcdPageCode input {
    width: 32px;
    height: 24px;
    padding: 0 5px;
    color: #666;
    line-height: 24px;
    border: 1px solid #ddd;
}

.tcdPageCode input:hover {
    border-color: #000;
}

.tcdPageCode input:focus {
    border-color: #000;
}


/*jquery.page.css*/

.icon-checkbox {
    text-align: center;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-width: 1px;
    margin-bottom: -3px;
    border-style: solid;
    border-color: rgb(181, 179, 179);
    border-image: initial;
    cursor: pointer;
}
.icon-checkbox.checked{
     background: red;
    font-size: 14px !important;
}
.icon-checkbox.checked::before {
   
    content: "\f00c";
    color:#fff;
   
   /*  background: url(/assets/img/icon/icons_web_new.png) -79px -128px no-repeat; */
}

.tuwen {
    display: inline-block;
    padding-left: 20px;
    width: 35px;
    height: 17px;
    line-height: 14px;
    background: rgba(6, 181, 255, 0);
    border: 1px solid rgba(168, 201, 246, 1);
    border-radius: 3px;
    font-size: 12px;
}

.bai_du {
    background: url(/assets/img/icon/icon-baidu-new.png) 5px center no-repeat;
    color: #237DFA;
}

.bai_green {
    background: url(/assets/img/icon/baidu_green.png) 5px center no-repeat;
    border: 1px solid rgba(172, 219, 237, 1);
    color: #009EBE;
}

.icon360 {
    background: url(/assets/img/icon/360br.png) 5px center no-repeat;
    border: 1px solid rgba(168, 201, 246, 1);
    color: #009EBE;
}

.google {
    background: url(/assets/img/icon/icon-google-new.png) 5px center no-repeat;
    color: #34a853;
}

.label-box {
    display: inline-block;
    padding: 0 2px;
    border: 1px solid var(--main-color);
    border-radius: 3px;
    background: var(--bg-color);
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

/*footer*/
.sell-msg-item .text-overflow {
    width: 80px;
}

.text-overflow {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.float_left {
    float: left
}

.float_right {
    float: right
}

.container .linkstip {
    margin-left: 108px;
}

.container .adtip {
    width: 240px;
    padding: 10px 10px;
    border-radius: 4px;
    float: right;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ad_w {
    display: flex;
}

.ad_w img {
    width: 20px;
    padding: 8px 0;
}

.container .ad-text {
    margin: 0;
    height: 36px;
}

.icon-home {
    display: inline-block;
    width: 18px;
    height: 36px;
    margin-right: 2px;
    margin-bottom: -3px;
    background: url("../../img/icon/icon_home_gray.png") center no-repeat;
}

/*footer end*/

.bg_fa {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.bg_fa_clear_tr {
    transform: none !important;
}

.bg_fa.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade_visible {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade_in {
    animation: fade_visible 0.6s ease-out;
}

.item_load {
    animation: fade_visible 6s ease-out;
}

.open .dropdown-menu {
    min-width: 0 !important;
}

.dropdown-menu>li>a:hover {
    color: var(--hover-color);
    background: #000 !important;
}