/* 滚动条整体宽度 */
::-webkit-scrollbar {
    width: 12px; /* 对于垂直滚动条 */
    height: 12px; /* 对于水平滚动条 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5); /* 滑块颜色 */
    border-radius: 10px; /* 滑块圆角 */
    /* 可以添加阴影等效果 */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* 轨道颜色 */
    border-radius: 10px; /* 轨道圆角 */
}

/* 当鼠标悬停在滚动条滑块上时 */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.6); /* 更深的颜色 */
}

.main-card .com-tit {
    position: relative;
    padding-left: 1rem;
    color: #212529;
    margin-bottom: 1.3rem;
    font-size: 16px;
}
.main-card .com-tit::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 1rem;
    background: var(--base-color-primary);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
tr.table-hearder th{
    background-color: #F7F8FA!important;
}
.price-item{
    height: 5rem;
    width: 6rem;
    padding: 0 0.1rem;
    min-width: 1.2rem;
    border-radius: 0.03rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #E9EBEC;
    color: #495057;
    font-size: 1rem;
    line-height: 1.5em;
    position: relative;
    cursor: pointer;
    margin-right: 1rem;
}
.price-item.active{
    border-color: var(--base-color-primary);
}
.price-item.active .txt{
    color: var(--base-color-primary);
}
.footer{
    border-top: 1px solid #DCDFE6;
    padding: 16px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    box-shadow: 0px -.5rem 1.5rem rgba(0, 0, 0, 0.08);
}
.wrap{
    display: flex;
    flex-direction: column;
    height: calc(100% - 114px);
    width: 100%;
}
.wrap-inner{
    flex: 1;
    overflow: auto;
}
.footer-section{
    display: none;
}
.footer-inner{
    display: flex;
    height: 100%;
    flex-wrap: wrap;
}
.footer-title{
    width: 100%;
    font-size: .9rem;
    font-weight: bold;
    color: #1e2736;
    border-bottom: 1px solid #dcdcdc;
    line-height: 1.5em;
    padding-bottom: .5rem;
    margin-bottom: .6rem;
}
.info-list{
    align-items: center;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    font-size: 1rem;
}
.info-item{
    height: 32px;
    line-height: 32px;
    width: 50%;
    display: flex;
}
.info-item span{
    display: flex;
}
.info-item span.title {
    flex-shrink: 0;
    font-size: 13px;
    width: auto;
}
.info-item span.text {
    font-size: 13px;
    margin-right: 10px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.info-item span.price {
    font-size: 13px;
    margin-right: 10px;
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.footer-inner .main-card{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-inner .main-card .left {
    display: flex;
    align-items: center;
}
.footer-inner .main-card .time {
    margin-right: 2rem;
}
.footer-inner .main-card .right {
    display: flex;
    align-items: center;
}
.footer-inner .mid .txt{
    border-bottom: 1px solid var(--dark);
}
.footer-inner .main-card .right .cart-btn{
    padding: 7px;
}
.footer-inner .main-card .right .el-icon-shopping-cart-1{
    font-size: 24px;
}
.footer-inner .mid .total-price{
    font-weight: bold;
    color:#f0142f;
    font-size: 28px;
    font-family: PingFang SC;
}
.add-btn{
    cursor: pointer;
}

.image-box {
    max-width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.image-ul {
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - .5rem);
    position: relative;
    height: auto;
    overflow: visible;
}
.image-item,.empty-image {
    width: 11.3rem;
    height: 4rem;
    background: #f7f8fa;
    border: 1px solid #e6eaed;
    border-radius: 0.03rem;
    position: relative;
    padding: .8rem;
    box-sizing: border-box;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
    cursor: pointer;
}
.empty-image{
    background: #fff;
    justify-content: center;
}
.image-item:hover {
    border-color: #0058ff;
}
.image-item.active,
.image-item.hover {
    border: 1px solid #0058ff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.image-item.active .icon,
.image-item.hover .icon {
    -webkit-filter: grayscale(0);
    opacity: 1;
}
.image-item .el-select {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.image-item .el-input {
    position: absolute;
    width: 100%;
    height: 3.5rem;
    top: 4.2rem;
    right: 0;
    margin-top: 0 !important;
}
.image-item .el-input .el-input__inner {
    border: none;
    background: transparent;
    padding: 0 .2rem 0 .6rem;
}
.image-item .r-info {
    margin-left: .5rem;
    width: 100px;
}
.image-item p {
    line-height: 1;
    margin-bottom: 0!important;
}
.image-item .name {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.9);
}
.image-item .version {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: .5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.image-item .version-select {
    position: absolute;
    z-index: 10;
    width: calc(100% + 2px);
    left: -1px;
    top: 100%;
    background: #fff;
    border: 1px solid #0058ff;
    max-height: 16rem;
    overflow-y: auto;
    border-top: 1px solid #e6eaed;
    border-bottom-left-radius: 0.03rem;
    border-bottom-right-radius: 0.03rem;
    box-sizing: border-box;
    display: none;
}
.version-select.hover{
    display: inline;
}
.image-item .version-select .v-item {
    padding: 0.5rem;
    line-height: 1.5em;
    font-size: 14px;
}
.image-item .version-select .v-item:hover,
.image-item .version-select .v-item.active {
    background: rgba(0, 88, 255, 0.08);
    color: #0058ff;
}
.image-item .version-select .v-item span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}
.image-item.active .icon, .mf-dcim .image-item.hover .icon {
    -webkit-filter: grayscale(0);
    opacity: 1;
}
.image .icon {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-filter: grayscale(1);
    opacity: 0.4;
}
.empty-image i {
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
    border-radius: 50%;
    padding: 0.01rem;
    color: rgba(0, 0, 0, 0.4);
}
.psw-form,.safe-form{
    width: 80%;
    padding: 30px;
    border: 1px solid #DCDFE6;
}
.safe-form{
    width: 100%;
}
.psw-form .el-form-item{
    margin-bottom: 15px;
}
.psw-form .el-form-item:last-child{
    margin-bottom: 0px;
}
.opt-box .opt-btn{
    margin-right: 10px;
}
.opt-box .opt-btn:last-child{
    margin-right: 0px;
}
.opt-box .opt-btn i{
    font-size: 20px;
}
.disk-list-table .el-input-number{
    width: 100%;
}
.buy-radio-group .el-radio__input{
    opacity: 0;
    outline: 0;
    position: absolute;
    z-index: -1;
}
.buy-radio-group .el-radio{
    margin-right: auto;
    min-width: 10rem;
    text-align: center;
}
.area-radio .el-radio{
    padding: 0px;
    line-height: 48px;
    height: 48px;
}
.area-radio .icon{
    width: 1.8rem;
    height: 1.5rem;
    margin-right: 0.5rem;
    margin-top: -.1rem;
}
.area-radio .el-radio.is-checked::before{
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*content:  "\e608"*/;
    width: 1rem;
    height: 1rem;
    line-height: 1;
    background: #409EFF;
    color: #fff;
    position: absolute;
    top: .5rem;
    right: .5rem;
    border-radius: 50%;
    z-index: 1;
}
.el-radio-group .el-radio.is-checked{
    background: rgba(0, 88, 255, 0.08);
}
.package-radio .el-radio{
    line-height: 1em!important;
    height: auto;
    min-height: 200px;
    display: inline-flex;
    padding: 0px;
    min-width: 15rem;
}
.package-radio .el-radio .el-radio__label{
    width: 100%;
    padding-left: 0px;
}
.package-radio .package-tit{
    font-weight: bold;
    font-size: 14px;
    background: #f7f8fa;
    line-height: 2.5rem;
    padding: 0 0.26rem;
}
.package-radio .package-info{
    color: rgba(0, 0, 0, 0.9);
    line-height: 2em;
    text-align: left;
    padding: .75rem;
}
.package-radio .package-info ul li{
    display: flex;
}
.package-radio .package-info .config-tit{
    margin-right: 5px;
    color: rgba(0, 0, 0, 0.6);
    width: 5rem;
}
.package-radio .is-checked .package-item{
    color:#0058ff!important;
}
.package-radio .is-checked .package-tit{
    background: rgba(0, 88, 255, 0.08);
}
.el-form-item__label{
    padding-right: 2rem;
    color: #606266;
    font-weight: normal;
}
.el-tabs .el-tabs__item.is-active {
    color: #0058ff;
}
.el-tabs__nav-wrap{
    margin-bottom: 40px;
}
.card-bar{
    padding: 25px 0;
}
.card-bar .el-tabs__nav-wrap{
    margin-bottom: 0px;
}
.el-radio.is-bordered{
    margin-left: 0!important;
    margin-right: 10px!important;
    margin-bottom: 10px;
}
.el-slider__marks-text {
    font-size: 12px;
    margin-top: 24px;
}
.el-slider__stop {
    top: 28px;
    height: 8px;
    width: 1px;
    background-color: #ddd;
    transform: translate(0px, -6px);
}
.el-slider__button {
    width: 19px;
    height: 35px;
    background-image: url(../img/buy.png);
    background-position: -274px 0px;
    border: none;
    border-radius: 0%;
}
.buy-radio-group .el-radio__label{
    padding-left: 0px;
}
.label-tit{
    padding: 0 20px;
}
.buy_mian{
    padding: 0 15px 1px;
}
.pageIn_title{
    padding: 24px 0;
}
.version_content p{
    margin-bottom: 0px;
}
.dns_domain_input{
    width: 500px;
}
.dns_domain_input input{
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0!important;
}