@charset "UTF-8";
/* 定义全局变量 */
:root {
    --woody-blue: #1976d2;
    --woody-cyan: #00e5ff;
    --woody-purple: #7b1fa2;
    --woody-dark: #121212;
    --woody-card-bg: #1e1e1e;
    --neon-glow: 0 0 10px rgba(0, 229, 255, 0.7),
    0 0 20px rgba(0, 229, 255, 0.5),
    0 0 30px rgba(0, 229, 255, 0.3);
}
body {
    /*font-family: 'Montserrat', sans-serif;*/
    background-color: var(--woody-dark);
    color: #fff;
    overflow-x: hidden;
}
/*导航栏制作*/
.st-nav {
    background-color: rgba(18, 18, 18, 0.6) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.st-nav .icons a {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 10px;
}

.st-nav .icons a:hover {
    color: var(--woody-cyan);
    text-shadow: var(--woody-glow);
}
.st-nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 12px;
}

.st-nav .nav-link:hover {
    /* 文字阴影 */
    text-shadow: var(--neon-glow);
}

.st-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--woody-cyan), var(--woody-blue));
    transition: all .3s;
}

.st-nav .nav-link:hover::after {
    width: 100%;
}

.st-nav .navbar-brand,
.st-nav .navbar-brand:hover {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--woody-cyan), var(--woody-blue));
    /* 文字裁剪 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-glow);
}

/* 轮播图模块 */
.banner {
    width: 100%;
    height: 50vw;
    mask-image: linear-gradient(rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}

.banner .carousel-item img {
    width: 100%;
    height: 50vw;
}

.carousel-caption {
    bottom: 15rem;
}

.carousel-indicators {
    margin-bottom: 6rem;
    /*margin-bottom: 14rem;*/
}

/* 服务模块 */
.future-tech {
    position: relative;
    background: url(../images/sw-bg-01.png) no-repeat;
    background-position: center;
    background-size: cover;
    /* 背景图片固定定位 */
    background-attachment: fixed;
}

.future-tech::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.9);
}

.future-icon {
    font-size: 5rem;
    color: var(--woody-cyan);
    text-shadow: var(--neon-glow);
    margin-bottom: 30px;
}

.future-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.future-desc {
    color: rgba(255, 255, 255, 0.7);
}

/*推荐商品*/
.hot-product .info {
    color: rgba(255, 255, 255, 0.7);
}

/* 卡片模块 */
.hot-product .card, .product-list .card, .SearchContainer .card, #SearchResultsProduct .card, #AccountRecentItems .card{
    overflow: hidden;
    background-color: var(--woody-card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.hot-product .card:hover, .product-list .card:hover, .SearchContainer .card:hover, #SearchResultsProduct .card:hover, #AccountRecentItems .card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.3);
}

.hot-product .card .card-img, .product-list .card .card-img, .SearchContainer .card .card-img, #SearchResultsProduct .card .card-img, #AccountRecentItems .card .card-img {
    padding: 30px;
    background-color: #292929;
}

.hot-product .card .card-img img {
    animation: move 5s ease-in-out infinite;
}

@keyframes move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

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

.hot-product .card-title, .product-list .card-title, #SearchResultsProduct .card-title, .SearchContainer .card-title, #AccountRecentItems .card-title {
    font-size: .8rem;
    color: #fff;
    line-height: 1.6rem;
}

.hot-product .card-text, .product-list .card-text, #SearchResultsProduct .card-text, .SearchContainer .card-text, #AccountRecentItems .card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hot-product .price, .product-list .price, #SearchResultsProduct .price, .SearchContainer .price, #AccountRecentItems .price {
    font-size: 1.4rem;
    color: var(--woody-cyan);
    font-weight: 600;
}

.hot-product .card-body .btn, .product-list .card-body .btn, #SearchResultsProduct .card-body .btn, .SearchContainer .card-body .btn, #AccountRecentItems .card-body .btn{
    width: 100%;
    border: 2px solid var(--woody-cyan);
    border-radius: 30px;
    background: none;
    padding: 10px 0;
    color: var(--woody-cyan);
    font-weight: 600;
}

.hot-product .card-body .btn:hover, .product-list .card-body .btn:hover, #SearchResultsProduct .card-body .btn:hover, .SearchContainer .card-body .btn:hover, #AccountRecentItems .card-body .btn:hover {
    box-shadow: var(--neon-glow);
}

.home-product {
    position: relative;
    background: url(../images/sw-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    /* 背景图片固定定位 */
    background-attachment: fixed;
}

.home-product::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.9);
}
.home-product .left-img {
    max-width: 100%;
}
.home-product .left-img img {
    width: 100%;
    border-radius: 10px;
}
.content-box {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.home-product .product-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}
.home-product .product-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8rem;
}
.home-product .product-link {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--woody-cyan);
    text-shadow: var(--neon-glow);
    transition: all .3s;
    margin-top: 30px;
}
.home-product .product-link:hover {
    color: var(--woody-cyan);
    transform: translateX(5px);
}

/*首页新闻*/
.home-news .card {
    overflow: hidden;
    background-color: var(--woody-card-bg);
    border-radius: 15px;
    border: none;
    transition: all 0.3s;
}
.home-news .card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.3);
}
.home-news .card .card-img {
    background-color: #292929;
    position: relative;
    padding-top: 177.78%;
    overflow: hidden;
    border-radius: 0;
}
.home-news .card .card-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-news .card .card-title a {
    display: block;
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8rem;
    transition: all .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
}
.home-news .card .card-title a:hover {
    color: var(--woody-cyan);
    transform: translateX(5px);
}
.home-news .card .card-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/*底部样式*/
.footer {
    background-color: #0a0a0a;
    padding-top: 80px;
}

.footer dt {
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.footer dt::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--woody-cyan), var(--woody-blue));
}
.footer dd>a {
    /* 块级盒子才能做变化效果 */
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.footer dd>a:hover {
    color: var(--woody-cyan);
    transform: translateX(5px);
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer .btn-outline-secondary {
    background: linear-gradient(45deg, var(--woody-blue), var(--woody-cyan));
    border: 0;
    color: #fff;
    border-radius: 30px;
    padding: 12px 20px;
    transition: all 0.3s;
}

.footer .btn-outline-secondary:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}
.footer .copyright .icons-svg svg {
    margin-right: 10px;
}
#searchModal .modal-footer .btn-outline-secondary {
    background: linear-gradient(45deg, var(--woody-blue), var(--woody-cyan));
    border: 0;
    color: #fff;
    border-radius: 30px;
    padding: 12px 20px;
    transition: all 0.3s;
}

#searchModal .modal-footer .btn-outline-secondary:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}
/*隔行*/
.st-gehang {
    padding-top: 83px;
}
.page-box, .page-column-box {
    padding: 30px;
    background-color: var(--woody-card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.breadcrumb a {
    color: #fff;
}
.breadcrumb li.active, .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}
.page-column-box {
    padding: 20px;
}
.page-column-box dt {
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.page-column-box dt::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--woody-cyan), var(--woody-blue));
}
.page-column-box dd>a {
    /* 块级盒子才能做变化效果 */
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.page-column-box dd>a:hover {
    color: var(--woody-cyan);
    transform: translateX(5px);
}
.NewsDate {
    color: rgba(255, 255, 255, 0.5);
}
.page-content p {
    line-height: 1.8rem;
}
.page-content img {
    max-width: 100%;
    height: auto;
}
.pagination .page-link{
    background-color: var(--woody-card-bg)!important;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}
.pagination .active .page-link{
    background-color: var(--woody-cyan)!important;
}
/* product details  */
ul, ol, li{
    list-style: none;
}
.product-tiny-img {
    width: 115px;
    margin-right: 20px;
    flex-shrink: 0;
}
.product-tiny-img ul {
    margin: 0;
    padding: 0;
}
.product-tiny-img li {
    margin-bottom: 15px;
    width: 100%;
    height: 115px;
}

.product-tiny-img li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-main-img {
    flex: 1;
}
.product-main-img img {
    width: 100%;
    display: block;
}
.product-main h2 {
    font-size: 1.3rem;
    line-height: 1.8rem;
}

#ProductDescription .table, #ProductDescription .table>:not(caption)>*>*, #cartForm .table>:not(caption)>*>*{
    background-color: var(--woody-card-bg)!important;
    color: #fff;

}
#ProductDescription .table>:not(caption)>*>*, #cartForm table>:not(caption)>*>*{
    border-color: rgba(255, 255, 255, 0.1);
}
.check-out-btn {
    background: linear-gradient(45deg, var(--woody-blue), var(--woody-cyan));
}
#cartForm table th, #cartForm table td {
    padding: 15px;
}
#cartForm .table a {
    text-decoration: none;
    color: var(--woody-cyan);
}
#cartForm .table img {
    max-width: 105px;
}
#CartContent a {
    text-decoration: none;
    color: var(--woody-cyan);
}
#SearchTabsList {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
#SearchTabsList .nav-link {
    color: var(--woody-cyan);
    border: none;
}
#SearchTabsList .nav-link.active  {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}
.page-box li a {
    color: var(--woody-cyan);
    text-decoration: none;
}
#checkoutFormBox h3 {
  font-size: 20px !important;
}
#checkoutFormBox h3 a {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  text-decoration: none;
  font-size: 18px!important;
}
#checkoutFormBox .CheckoutRedeemCoupon, .CheckoutRedeemCoupon {
  display: none;
}
#Payonlinecc_name, #payonlinecc_cvv {
  width: 100%!important;
  margin-left: 0!important;
}
#payonlinecc_expm, #payonlinecc_expy {
  width: 100%!important;
  height: auto!important;
  margin-left: 0!important;
}
