.header {
    height: 70px;
}

.header .nav-link.active {
    color: var(--primary);
}

.header .nav-link {
    color: #666666;
    padding: 0 20px;
    position: relative;
}

.header-icon {
    content: "";
    position: absolute;
    right: -5px;
    top: -10px;
}

.header-icon-box {
    position: relative;
    cursor: pointer;
}

.header-icon-box:hover .header-icon-box-phone {
    display: block;
}

.header-icon-box-phone {
    display: none;
    padding: 10px;
    position: absolute;
    left: -150px;
    top: -10px;
    background-color: #fff;

    z-index: 88;
    border-radius: 5px;
    box-shadow: 0 0 5px 5px #f5f5f5;
}

.box {
    display: flex;
    justify-content: space-between;
}

.banner {
    position: relative;
}

.banner-box-bg {
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -660px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 10px;
    opacity: 0.6;
    z-index: 1;
}

.banner-box {
    z-index: 2;
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -660px;
    width: 1320px;
    height: 100px;
    border-radius: 10px;
    display: flex;
}

.banner-box-item {
    text-align: center;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
}

.banner-box-item h4 {
    font-size: 18px !important;
    font-weight: 600;
}

.banner-box-item span {
    font-size: 14px;
}

.banner-box-item:hover {
    background: center / contain no-repeat url(../images/web/banner-bg.png);
    background-size: cover;
}

/* 技术即服务，让创新触手可及 */
.technology {
    background-color: #f7f7f7;
}

.nav-tabs .nav-link.active {
    color: #000;
    font-size: 18px;
    position: relative;
    background-color: transparent;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 2px;
    margin-left: -20px;
    background: #C7000B;
}

.tech-box {
    display: flex;
    flex-wrap: wrap;
}

.tech-box a {
    width: 25%;
}


.tech-item {
    height: 270px;
    margin: 0 10px 20px 10PX;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background-color: #fff;
}

.tech-item img {
    width: 60px;
    height: 60px;
}

.tech-item span {
    font-size: 14px;
    padding: 0 40px;
    text-align: center;
}

.tech-item:nth-of-type(4n) {
    margin-right: 0;
}

.productivity {
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    color: #C9C9C9;
    border: 1px solid #C9C9C9;
    border-radius: 50%;
    padding: 0 20px;
}

.swiper-button-prev {
    left: -50px;
}

.swiper-button-next {
    right: -50px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 28px;
}

.pro-item {
    width: 385px;
    height: 321px;
    border-radius: 10px;
    position: relative;
}

.pro-item img {
    width: 100%;
    height: 182px;
    border-radius: 10px;
}

.pro-item span {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    width: 68px;
    height: 32px;
    text-align: center;
    font-size: 18px;
    color: #FEFEFE;
    line-height: 32px;
    background: #C7000B;
    border-radius: 0px 10px 0px 10px;
}

.pro-item p {
    position: relative;
    padding: 30px 20px;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 140px;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.09);
    border-radius: 10px 10px 0px 0px;
}

.choose {
    background-color: #f7f7f7;
    padding-bottom: 50px;
    margin-bottom: 100px;
    max-width: 1980px;
    width: 100%;
    overflow: hidden;
    background: #F7F9FF;
}

/* 最外面的容器 */
.yysc-box {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
    background: #F7F9FF;
}

/* 每一行的样式 */
.choose-item {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: nowrap;
    cursor: pointer;
    animation: scrolling 40s linear infinite;
}

.choose-item:nth-child(odd) {
    animation: scrolling 50s linear infinite;
}

.choose-item:hover {
    animation-play-state: paused;
}

/* 动画名字 */
@keyframes scrolling {
    0% {
        transform: translateX(-1990px);
    }

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

.activity {
    position: relative;
    height: 200px;
    margin-bottom: 100px;
}

.activity-img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.activity-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-content a {
    display: inline-block;
    width: 48%;
    text-align: center;
    line-height: 52px;
    height: 52px;
    background: #C7000B;
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
}

.activity-content a:first-child {
    margin-right: 50px;
}

.footer {
    padding: 50px 0;
    background: #F7F7F7;
}

.footer-link {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.footer-link-item {
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

.footer-link-item a {
    line-height: 2;
}

/* 活动 */
.sub-title {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    text-align: center;
}


.seckill-box {
    margin: 50px 0 10px;
    display: flex;
    flex-wrap: wrap;
    height: 1044px;
    overflow: hidden;
}

#mszq .seckill-box {
    height: 837px;
    overflow: hidden;
}

#zhzk .seckill-box {
    height: 730px;
    overflow: hidden;
}

.seckill-item {
    background: #F7F8F9;
    width: 23%;
    border-radius: 10px;
    margin: 0 2% 20px 0;
    position: relative;
    padding: 20px 20px;
}

.seckill-item:nth-of-type(4n) {
    margin-right: 0;
}

.seckill-item .tag {
    right: 0;
    top: 0;
    font-size: 12px;
    color: #FFFFFF;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    position: absolute;
    width: 80px;
    height: 22px;
    background: #C7000B;
    border-radius: 1px 12px 1px 26px;
}

.seckill-more {
    text-align: center;
    color: #333;
    font-size: 18px;
    cursor: pointer;
}

select {
    border: none;
    outline: none;
    background: #F7F8F9;
}

.seckill-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.seckill-sub-title {
    font-size: 12px;
    color: #000000;
    margin: 11px 0 14px;
}

.seckill-tag {
    margin-bottom: 30px;
}

.seckill-tag span {
    background: #EEEEEE;
    border-radius: 2px;
    font-size: 12px;
    color: #333;
    margin-right: 5px;
    padding: 2px 4px;
}

.seckill-tag span:nth-of-type(1) {
    background-color: #F2DFE1;
    color: var(--primary);
}

.seckill-type {
    margin-bottom: 30px;
    height: 216px;
}

#mszq .seckill-type {
    height: auto;
}

.seckill-type-item {
    height: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EFEFEF;
    font-size: 18px;
}


.form-check-input:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.form-check {
    height: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
}


.form-check-label {
    margin-left: 6px;
    margin-top: 5px;
}

.form-check-input {
    width: 14px;
    height: 14px;
    border-color: #999999;
}

.form-check-input:checked {
    background-color: #EB000D;
    border-color: transparent;

}

.seckill-check-box {
    margin-top: 26px;
    margin-bottom: 40px;
}

.seckill-price {
    width: 128px;
    height: 28px;
    border: 1px solid #C7000B;
    border-radius: 6px;
    padding: 6px;
    color: #C7000B;
    margin-left: 10px;
    font-size: 14px;
}

.buy-btn {
    text-align: center;
    height: 39px;
    color: #FFFFFF;
    line-height: 39px;
    font-size: 18px;
    background: #C7000B;
    border-radius: 20px;
    margin: 20px auto 0;
    cursor: pointer;
}

.huodong.nav-tabs {
    margin-top: 25px;
    background-color: #f7f7f7;
}

.discount-item {
    width: 400px;
    height: 690px;
    background: #F7F8F9;
    border-radius: 10px;
    margin-right: 48px;
    margin-bottom: 40px;
    padding: 30px 30px;
}

.discount-item:nth-of-type(3n) {
    margin-right: 0;
}

.discount-item img {
    width: 50px;
    height: 50px;
}

.discount-content {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    height: 365px;
    margin-bottom: 30px;
}

.discount-right-item {
    width: 170px;
    height: 50px;
    line-height: 64px;
    border-bottom: 1px solid #D1D1D1;
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    line-height: 1;
}

.discount-right-item span {
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
}

.discount-right-item span:hover {
    overflow: visible;
    /* 鼠标悬停时显示完整内容 */
    white-space: normal;
    /* 允许文本换行 */
    text-overflow: none;
    /* 移除省略号 */
}

.custom-select {
    width: 150px;
}

.sidebar {
    position: fixed;
    left: 30px;
    top: 200px;
    color: #666;
    padding: 20px 10px;
    border-radius: 10px;
}

.sidebar li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sidebar li span {
    width: 10px;
    height: 10px;
    border: 1px solid #666;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.sidebar li a {
    padding: 2px 10px;
    border-radius: 20px;
}

.sidebar li a:not([href]):not([class]):hover {
    color: #fff;
}

.sidebar li a:hover {
    color: #fff;
    background-color: var(--primary);
}

#huodongModal.modal {
    --bs-modal-width: 1200px;
}

.youhuiquan-box {
    display: flex;
    justify-content: space-between;
}

.youhuiquan-item {
    width: 210px;
    height: 120px;
    color: #563500;
    padding-top: 20px;
    text-align: center;
    background: url(../images/web/活动/bg-礼券.png);
}

.youhuiquan-price span:nth-of-type(2) {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}

.lingquan {
    position: relative;
    z-index: 2;
    height: 780px;
    padding-top: 50px;
}

.bg-lingquan {
    position: absolute;
    left: -226px;
    top: 120px;
}

.bg-lingquan-content {
    position: absolute;
    left: 0;
    top: 250px;
}

.lingquan-content {
    position: relative;
    width: 1137px;
    margin-left: 105px;
    margin-top: 80px;
}

.step-item {
    position: relative;
    margin-bottom: 28px;
    padding: 20px 50px;
    height: 213px;
    width: 400px;
}

.step-item-img {
    position: absolute;
    left: 0;
    top: 0;
}

.step-item-content {
    position: relative;
    color: #333;
}

.step-item-content p {
    line-height: 1;
    font-size: 24px;
    color: #000;
    margin: 20px 0 12px;
}

.reson-item {
    width: 385px;
    height: 120px;
    margin-bottom: 20px;
    position: relative;
}

.reson-item-img {
    position: absolute;
    left: 0;
    top: 0;
}

.reson-item-content {
    position: relative;
    padding: 30px;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
}

.zhekou {
    position: relative;
    height: 180px;
}

.zhekou img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.zhekou-form form {
    padding: 0 30px;
    width: 100%;
    height: 180px;
    display: flex;
    position: absolute;
    top: 0px;
    left: 0;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}

.zhekou-form form h3 {
    font-size: 40px;
    color: #000;
    font-weight: bold;
}

.zhekou-form form input {
    width: 250px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 25px;
    text-indent: 30px;
    color: #666;
    font-size: 18px;
    border: none;
}

.zhekou-form form input:focus {
    border: none;
    outline: none;
}

.zhekou-form form button {
    width: 160px;
    height: 50px;
    border: none;
    color: #FFFFFE;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    background: #C7000B;
    border-radius: 25px;
}

.contact-desc {
    width: 682px;
    font-size: 20px;
    color: #333333;
    line-height: 30px;
}

.contact-title h4 {
    font-size: 40px;
    font-weight: 500;
    color: #000;
}

.contact-title span {
    font-weight: 500;
    font-size: 28px;
    color: #D9D9D9;
}

.about-shili {
    height: 360px;
    background-image: url(../images/web/关于我们/bg-shili.png);
    margin-bottom: 100px;
}

.about-shili-item {
    text-align: center;
}

.about-shili-item span:nth-of-type(1) {
    font-size: 60px;
    font-weight: bold;
    color: var(--primary);
    line-height: 1.2;
}

.about-shili-item span:nth-of-type(2) {
    font-size: 30px;
    color: var(--primary);
}

.about-lianxi {
    background: #F7F7F7;
    border-radius: 10px;
    display: flex;
    height: 200px;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 20px;
}

.lianxi-desc {
    flex: 1;
    margin-left: 50px;
}

.lianxi-desc h4 {
    font-weight: 500;
    font-size: 40px;
    color: #000000;
}

.lianxi-desc p {
    font-size: 18px;
    color: var(--primary);
}

.about-lianxi a {
    display: inline-block;
    width: 190px;
    height: 58px;
    background: var(--primary);
    color: #fff;
    border-radius: 29px;
    text-align: center;
    line-height: 58px;
}

.zizhi {
    position: relative;
}

.bg-zizhi {
    width: 100%;
    height: 230px;
    background: #F7F7F7;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.bg-zizhi-bg {
    width: 100%;
    height: 100px;
    background-color: #fff;
    position: absolute;
    bottom: 180px;
    border-radius: 50%;
    left: 0;
    z-index: 2;
}

.youhui-item {
    width: 46%;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 30px;
    color: #000;
}

.zhangdan-item {
    display: flex;
    align-items: center;
    padding: 30px 0;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    line-height: 1;
}

/* 新增国际化专题页样式 */
.gpu {
    width: 100%;
    height: 250px;
    background-image: url(../images/web/国际专场/bg-gpu.png);
}

.gpu-item {
    width: 100%;
    background: #F7F8F9;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}

.gpu-item2 {
    display: flex;
    flex-direction: column;
    margin-right: 50px;
    color: #000;
    font-weight: 500;
    padding: 20px 0;
    position: relative;
}

.gpu-item2.active::before {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    top: -0;
}


.step-item2-info {
    width: 31%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    font-size: 14px;
    color: #000;
}

.step-item2-num {
    line-height: 1;
    font-size: 60px;
    background: linear-gradient(to bottom, #C7000B, #d8585e, #f1f1f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.step-item2-text {
    position: relative;
    left: -80px;
    bottom: -5px;
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

.step-item2-num2 {
    font-family: Impact;
    font-weight: 700;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 38px;
    width: 38px;
    height: 38px;
    background: #C7000B;
    border-radius: 19px;
    text-align: center;
}

.link-border {
    border-left: 1px dashed #C7000B;
    align-self: flex-start;
    width: 100%;
    margin-left: 10px;
    padding: 10px 0 24px 24px;
    color: #666;
}

.link-border a {
    color: #006CFF;
    width: 100%;
}

.seckill-item2 {
    width: 46%;
}

.seckill-item2-box {
    display: flex;
    justify-content: space-between;
}

.seckill-item2-box .seckill-type {
    width: 46%;
    height: auto;
    margin-bottom: 10px;
}

.seckill-item3 {
    width: 30%;
}

.seckill-item3:nth-of-type(4n) {
    margin-right: 30px;
}

.seckill-item3:nth-of-type(3n) {
    margin-right: 0;
}

.outsea {
    background-image: url(../images/web/国际专场/背景.png);
    height: 280px;
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-left: 30px;
    position: relative;
}

.outsea>button {
    position: absolute;
    top: 47%;
    right: 6%;
}

.zyty{padding-bottom:30px;}
.zyty>div{margin-top:24px;}
.zyty .item{background-color:#f7f8f9;border-radius:10px;padding:40px 30px;height:100%;}
.zyty .item .titles{font-size:24px;margin-top:10px;color:#000000;font-weight:bold;}
.zyty .item .desc{font-size:16px;margin-top:10px;color:#666666;}

.szwl-menu{}
.szwl-menu .swiper-slide{padding: 12px 0;font-size: 20px;width: auto;color: #000000;transition: 0.3s;font-weight: bold;cursor:pointer;}
.szwl-menu .swiper-slide.swiper-slide-thumb-active::after{width: 100%;left: 0;right: unset;}
.szwl-menu .swiper-slide:hover,.szwl-menu .swiper-slide.swiper-slide-thumb-active{color: #C7000B;}
.szwl-menu .swiper-slide::before{position: absolute;content:' ';left: 0;bottom: 0;right: 0;height: 2px;background-color: #f7f7f7;}
.szwl-menu .swiper-slide::after{position: absolute;content:' ';bottom: 0;right: 0;left: unset;height: 2px;width: 0;background: linear-gradient(to right, #C7000B, #C7000B);transition: 0.3s;}
.ycp-menu .tables .item.active::after{width: 100%;left: 0;right: unset;}

.szwl-pack{margin-top: 24px;background-color:#ffffff;}
.szwl-pack .item{padding: 30px 30px;display: flex;}
.szwl-pack .item .image{width: 700px;text-align: right;position:relative;}
.szwl-pack .item .image .img{max-width: 100%;}
.szwl-pack .item .image i{color:#ffffff;position:absolute;left:50%;top:50%;font-size:40px;transform: translate(0, -50%);opacity:0.8;cursor:pointer;}
.szwl-pack .item .image i:hover{opacity:1;}
.szwl-pack .item .detail{flex: 1;position: relative;}
.szwl-pack .item .detail .titles{font-size:28px;color: #000000;font-weight: bold;}
.szwl-pack .item .detail .desc p{font-size: 16px;margin-top: 20px;margin-bottom: 0;color: #666666;}
.szwl-pack .item .detail .btns{font-size: 16px;padding: 8px 40px;position: absolute;left: 0;bottom: 10px;background-color:#C7000B;color:#ffffff;border-radius:30px;cursor:pointer;}

.text-truncate1{display: -webkit-box;overflow: hidden;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
.items-title{font-size: 18px;color: #000000;text-align: center;font-weight: bold;}
.items-desc{color: #666666;text-align: center;font-size: 12px;margin-top: 4px;}
.items-conts{padding: 12px 0 0 0;}
.items-conts.lists{padding: 0;}
.items-conts.lists>div>div{margin-top: 12px;}
.items-conts>.img{max-width: 100%;}
@media (min-width:992px){
    .items-title{font-size: 40px;}
    .items-desc{font-size: 16px;margin-top: 10px;}
    .items-conts{padding: 30px 0 0 0;}
    .items-conts.lists{padding: 6px 0 0 0;}
    .items-conts.lists>div>div{margin-top: 24px;}
}

.gdyh-ad{margin:50px 0;padding:50px 0;background-image:url('../images/web/b2bqyj/gdyh-bg.jpg');background-repeat:no-repeat;background-position:center;background-size:cover;}
.gdyh-ad .titles{font-size:36px;font-weight:bold;color:#000000;}
.gdyh-ad .titles span{color:#c7000b;}
.gdyh-ad .desc{font-size:16px;margin-top:15px;color:#000000;}
.gdyh-ad .btns{font-size:16px;margin-top:40px;padding:6px 50px;border-radius:30px;background-color:#c7000b;color:#ffffff;display:inline-block;cursor:pointer;}

.hdtj{padding:40px 12px;border-radius:16px;height:100%;background-color:#f7f8f9;}
.hdtj .image{text-align:center;}
.hdtj .image .img{transition: all .3s;}
.hdtj:hover .image .img{transform: scale(1.1);}
.hdtj .detail{margin-top:20px;text-align:center;}
.hdtj .detail .titles{font-size:18px;color:#000000;font-weight:bold;}
.hdtj .detail .desc{font-size:14px;margin-top:5px;color:#666666;}
.hdtj .detail .desc span{color:#c7000b;}

.nav-tabs.nbg{background-color:unset;}
.nav-tabs .nav-link .titles{font-size:18px;color:#000000;text-align:center;}
.nav-tabs .nav-link .desc{font-size:14px;margin-top:5px;color:#999999;text-align:center;}
.nav-tabs .nav-link .desc span{color:#000000;}
.nav-tabs .nav-link.active .desc span{color:#c7000b;}

.row-more-btn{text-align:center;padding:10px 0 30px 0;}
.row-more-btn span{cursor:pointer;font-size:18px;}
.row-more-btn span::after{content:'>';transform: rotate(90deg);display:inline-block;margin-left:5px;}
.row-more-btn span.active::after{transform: rotate(270deg);}

.seckill-box2{height:auto;}
.seckill-item.w100{width:100%;margin-right:0;}

.tuij{padding: 30px 20px;border-radius:15px;position:relative;margin-bottom:20px;display:flex;background-repeat:no-repeat;background-size:cover;background-position:bottom center;background-color:#f7f8f9;align-items:center;}
.tuij .hot{right: 0;top: 0;font-size: 12px;color: #FFFFFF;display: inline-block;text-align: center;line-height: 22px;position: absolute;padding: 0 10px 0 15px;height: 22px;background: #C7000B;border-radius: 1px 12px 1px 26px;}
.tuij .detail{flex:1;}
.tuij .detail .titles{font-size:18px;}
.tuij .detail .desc{font-size:12px;margin-top:5px;}
.tuij .detail .tags{margin-top: 5px;height:24px;}
.tuij .detail .tags span{background: #EEEEEE;border-radius: 2px;font-size: 12px;color: #333;margin-right: 5px;padding: 2px 4px;}
.tuij .detail .tags span:nth-of-type(1){background-color: #F2DFE1;color: #c7000b;}
.tuij .detail .type{margin-top: 5px;}
.tuij .detail .type-item{height: 54px;display: flex;justify-content: space-between;align-items: center;border-bottom: 1px solid #EFEFEF;font-size: 18px;}
.tuij .prs{width:200px;padding-left:20px;}
.tuij .pbox{text-align:center;}
.tuij .prs .old{font-size:20px;}
.tuij .prs .price{margin-top:10px;border: 1px solid #C7000B;border-radius: 6px;padding:5px 6px;color: #C7000B;font-size: 14px;display:inline-block;}
.tuij .prs .buy-btn2{margin-top:20px;color: #FFFFFF;font-size: 18px;background: #C7000B;border-radius: 20px;cursor: pointer;padding:6px 0;text-align:center;}

.xmf-ad{padding: 25px 50px 25px 180px;border-radius:10px;background-image:url('../images/web/b2bqyj/ad-bg.jpg');background-repeat:no-repeat;background-position:center;background-size:cover;display:flex;justify-content: space-between;align-items:center;}
.xmf-ad .detail .titles{font-size:20px;}
.xmf-ad .detail .desc{font-size:36px;color:#c7000b;}
.xmf-ad .btns{color: #FFFFFF;font-size: 18px;background: #C7000B;border-radius: 20px;cursor: pointer;padding:6px 60px;}

.dp{background-color:#f7f8f9;border-radius:10px;padding:30px 20px 140px 20px;position:relative;height:100%;}
.dp .titles{font-size:18px;margin-top:10px;}
.dp .desc{font-size:12px;margin-top:10px;}
.dp .tags{margin-top: 5px;}
.dp .tags span{background: #EEEEEE;border-radius: 2px;font-size: 12px;color: #333;margin-right: 5px;padding: 2px 4px;}
.dp .type{padding-top: 10px;}
.dp .type-item{font-size: 12px;margin-top:10px;}
.dp .btn-box{position:absolute;left:30px;bottom:30px;right:30px;}
.dp .btn-box .price{font-size:20px;}
.dp .btns{color: #FFFFFF;font-size: 18px;margin-top:10px;background: #C7000B;border-radius: 20px;cursor: pointer;padding:6px 0px;text-align:center;}
