/**common**/

@font-face {
    font-family: "jiyun";
    src: url('../fonts/font.woff2') format('woff2'), url('../fonts/font.woff') format('woff'), url('../fonts/font.ttf') format('truetype');
}

@keyframes whirling {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media all {
    :root {
        --gray-level-1: #18191f;
        --gray-level-2: #474a57;
        --gray-level-3: #969bab;
        --gray-level-4: #d9dbe1;
        --gray-level-5: #eeeff4;
        --gray-level-6: #f4f5f7;
        --main-level-1: #ff6a00;
        --main-level-2: #ffd1b1;
        --main-level-3: #ffefe4;
    }

    body {
        color: #18191f;
        font-family: Arial, "Helvetica Neue", Helvetica, "PingFang SC", "Source Han Sans CN", "Microsoft Yahei";
    }

    [v-cloak] {
        display: none;
    }

    a {
        color: inherit;
        transition-duration: 100ms;
    }

    a:hover {
        color: #ff6a00;
        text-decoration: none;
    }

    ul, ol {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    select::-ms-expand {
        display: none;
    }

    input, button, select {
        appearance: none;
        -ms-appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        outline: none;
    }

    input[type=number] {
        -moz-appearance: textfield;
    }

    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

    input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

    input[type=range] {
        background: none;
    }

    input[type=range]::-webkit-slider-runnable-track {
        height: 8px;
        color: transparent;
        background-color: #eeeff4;
    }

    input[type=range]::-moz-range-track {
        height: 8px;
        background-color: #eeeff4;
    }

    input[type=range]::-ms-track {
        height: 40px;
        color: transparent;
        border: none;
        background-color: transparent;
        overflow: visible;
    }

    input[type=range]::-ms-fill-lower {
        height: 8px;
        background-color: #ffd1b1;
    }

    input[type=range]::-ms-fill-upper {
        height: 8px;
        background-color: #eeeff4;
    }

    input[type=range]::-webkit-slider-thumb {
        width: 20px;
        height: 40px;
        border: 1px solid #ff6a00;
        background: #ffd1b1 url(../fonts/range.svg) no-repeat center;
        cursor: pointer;
        transform: translateY(-1.143em);
        -webkit-appearance: none;
        -webkit-box-sizing: border-box;
    }

    input[type=range]::-moz-range-thumb {
        width: 20px;
        height: 40px;
        border: 1px solid #ff6a00;
        background: #ffd1b1 url(../fonts/range.svg) no-repeat center;
        cursor: pointer;
        border-radius: 0;
        -moz-appearance: none;
        -moz-box-sizing: border-box;
    }

    input[type=range]::-ms-thumb {
        width: 18px;
        height: 38px;
        border: 1px solid #ff6a00;
        background: #ffd1b1 url(../fonts/range.svg) no-repeat center;
        cursor: pointer;
    }

    label input[type=checkbox], label input[type=radio] {
        display: none;
    }

    label input[type=checkbox] + i, label input[type=radio] + i {
        content: '\e617';
        display: inline-block;
        width: 20px;
        height: 20px;
        text-align: center;
        color: transparent;
        border: 1px solid #eeeff4;
        border-radius: 4px;
        cursor: default;
        transition-duration: 100ms;
    }

    label input[type=radio] + i {
        border-radius: 10px;
    }

    label input[type=checkbox] + i::before, label input[type=radio] + i::before {
        content: '\e617';
        font-family: "jiyun" !important;
        font-style: normal;
        font-size: .857em;
        font-weight: normal;
        vertical-align: top;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    label input[type=checkbox]:checked + i, label input[type=radio]:checked + i {
        color: white;
        background-color: #ff6a00;
        border-color: #ff6a00;
    }

    /*BFC*/
    .bfc {
        overflow: auto;
    }

    /*閸ュ墽澧栭崶鍝勭暰濮ｆ柨鍨�*/
    .fixed-ratio {
        display: block;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    /*姒涙ǹ顓�3:2*/
    .fixed-ratio::before {
        content: '\0020';
        display: block;
        width: 100%;
        height: 0;
        padding: 33.33% 0;
    }

    /*濮ｆ柨鍨�1:1*/
    .fixed-ratio.square::before {
        padding: 50% 0;
    }

    .fixed-ratio img, .fixed-ratio > div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .fixed-ratio img {
        -o-object-fit: cover;
        object-fit: cover;
    }

    .line-clamp {
        display: block;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .line-clamp-3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .line-clamp-4 {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    
    .line-clamp-5 {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .line-clamp-6 {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .icon {
        font-family: "jiyun" !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .icon-logo:before {
        content: "\e620";
    }

    .icon-logo-text:before {
        content: "\e62c";
    }

    .icon-after-sale:before {
        content: "\e61e";
    }

    .icon-mobile:before {
        content: "\e61d";
    }

    .icon-qq:before {
        content: "\e61c";
    }

    .icon-wechat:before {
        content: "\e61b";
    }

    .icon-go:before {
        content: "\e61a";
    }

    .icon-check:before {
        content: "\e617";
    }

    .icon-close:before {
        content: "\e616";
    }

    .icon-arrow-down:before {
        content: "\4e0b";
    }

    .icon-cloud:before {
        content: "\e614";
    }

    .icon-huaweiyun:before {
        content: "\e613";
    }

    .icon-domain:before {
        content: "\e612";
    }

    .icon-service:before {
        content: "\e611";
    }

    .icon-idc:before {
        content: "\e610";
    }

    .icon-search:before {
        content: "\e622";
    }

    .icon-star:before {
        content: "\eeeb";
    }

    .icon-cart:before {
        content: "\e623";
    }

    .icon-settings:before {
        content: "\e625";
    }

    .icon-logout:before {
        content: "\e628";
    }

    .icon-user:before {
        content: "\e629";
    }

    label.imitate-select {
        position: relative;
        border: 1px solid #eeeff4;
        border-radius: 4px;
    }

    label.imitate-select::after {
        /*content: '\4e0b';*/
        /*display: block;*/
        /*position: absolute;*/
        /*top: .8em;*/
        /*right: .8em;*/
        /*font-family: "jiyun" !important;*/
        /*font-style: normal;*/
        /*font-size: .5rem;*/
        /*color: #969bab;*/
        /*pointer-events: none;*/
        /*-webkit-font-smoothing: antialiased;*/
        /*-moz-osx-font-smoothing: grayscale;*/
    }

    label.imitate-select select {
        width: 100%;
        padding: 0 2em 0 .5em;
        line-height: 2.4em;
        border: none;
        outline: none;
    }

    .pagination {
        margin: 2.5em 0;
    }

    .pagination .page-item.active .page-link {
        background-color: #ff6a00;
        border-color: #ff6a00;
    }

    .pagination .page-link {
        color: #ff6a00;
    }

    header {
        position: fixed;
        background: white;
        top: 0;
        right: 0;
        left: 0;
        height: 72px;
        z-index: 3;
        transition-duration: 200ms;
    }

    header.light:hover {
        background: #111738;
        color: white;
    }

    header.expand {
        height: auto;
        background-color: white;
    }

    header .top {
        padding: 16px 0 0;
        /* overflow-x: hidden; */
    }

    header .top .logo::before {
        content: '\e620';
        font-size: 2em;
        line-height: 1.4em;
        color: #ff6a00;
        vertical-align: middle;
    }

    header .top .logo::after {
        content: '\e62c';
        font-size: 1.25em;
        /*color: #18191f;*/
        color: #ed732e;
        vertical-align: middle;
        transition-duration: 200ms;
    }

    header .top nav {
        white-space: nowrap;
    }

    header .top nav > a, header .top nav .vlist {
        display: inline-block;
        margin: 0 1.25em;
        vertical-align: top;
        line-height: 40px;
        transition-duration: 200ms;
    }

    header .top nav .vlist {
        /*position: relative;*/
        height: 56px;
        padding-bottom: 16px;
    }

    header .top nav .vlist a.arrow::after {
        /*content: '\4e0b';*/
        display: inline;
        margin-left: .2em;
        font-family: "jiyun" !important;
        font-style: normal;
        font-size: .714em;
        vertical-align: middle;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    header .top nav .vlist .menu {
        width: 100%;
        visibility: hidden;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        background-color: white;
        opacity: 0;
        padding: 48px 0;
        line-height: initial;
        transition-duration: 200ms;
    }

    header.light .top nav .vlist .menu {
        background: #0f142d;
    }

    header .top nav .vlist:hover .menu {
        visibility: visible;
        opacity: 1;
        z-index: 2;
    }

    header .top nav .vlist:hover .menu a {
        width: 250px;
        margin-right: 1rem;
        background: white;
        padding: 16px 20px;
        border: 1px solid #eeeff4;
        border-radius: 4px;
        box-shadow: 0px 16px 48px rgba(12, 12, 12, 0.04);
        margin-bottom: 16px;
    }

    header.light .top nav .vlist .menu a {
        background: #1d223a;
        border: 1px solid #1d223a;
    }

    header .top nav .vlist .menu a:hover span {
        color: #ff6a00;
    }

    header .top nav .vlist:hover .menu span {
        display: block;
        line-height: unset;
        font-size: 14px;
        color: #969BAB;
    }

    header .top nav .vlist:hover .menu span.tit {
        font-size: 16px;
        /* font-family: "jiyun" !important; */
        font-weight: bold;
        color: #18191F;
        font-size: 16px;
    }

    header.light .top nav .vlist .menu a span.tit {
        color: white;
    }

    header .top nav .vlist:hover .menu span i {
        font-style: normal;
        display: inline-block;
        padding: 0 0.5rem;
        font-size: 10px;
        font-weight: normal;
        color: white;
        border-radius: 54px;
        margin-left: 4px;
    }

    header .top nav .vlist:hover .menu span i.red {
        background: #FF1325;
    }

    header .top nav .vlist:hover .menu span i.blue {
        background: #07B657;
    }

    header .top nav > a.hot::after {
        content: '';
        display: inline-block;
        width: 3em;
        height: 1.286em;
        margin-left: 0.25em;
        background: url(../images/hot@2x.png) no-repeat center / contain;
        vertical-align: -.25em;
    }
    
    header .top nav .vlist > a.gift::before {
        content: '';
        display: inline-block;
        width: 2em;
        height: 1.286em;
        margin-right: 0.15em;
        background: url(../images/gift@2x.png) no-repeat center / contain;
        vertical-align: -.15em;
    }

    header .top .member {
        white-space: nowrap;
    }

    header .top .member > a {
        display: inline-block;
        margin: 0 0.5em;
        line-height: 40px;
        vertical-align: top;
        background-color: transparent;
    }

    header .top .member a.beian {
        color: #ffffff;
    }

    header .top .member a.cart {
        padding: 0 1em;
        color: #ff6a00;
    }

    header .top .member a.cart .icon {
        display: inline-block;
        font-size: 1.286em;
        line-height: 1em;
        margin-right: .2em;
    }

    header .top .member-info {
        display: inline-block;
        position: relative;
        vertical-align: top;
    }

    header .top .member-base img {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }

    header .top .member-base span {
        margin-left: .5em;
        font-size: 1.143em;
        font-weight: bold;
        color: #ff6a00;
    }

    header .top .member-content {
        position: absolute;
        top: 40px;
        left: 50%;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-50%);
        transition-duration: 200ms;
    }

    header .top .member-info:hover .member-content {
        visibility: visible;
        opacity: 1;
    }

    header .top .member-panel {
        margin-top: 3em;
        padding: 8px;
        background-color: white;
        border-radius: 12px;
    }

    header .top .member-setting {
        padding: 8px 16px;
        background-color: #f4f5f7;
        border-radius: 8px;
    }

    header .top .member-setting a:last-child {
        display: block;
        margin-left: 3em;
        font-size: 1.5em;
        color: #969bab;
    }

    header .top .member-center, header .top .member-logout {
        display: block;
        padding: 8px 16px;
        margin-top: 1em;
        font-size: 1.143em;
        line-height: 1.25em;
        color: #64698f;
        border-radius: 8px;
    }

    header .top .member-center {
        color: #ff6a00;
        background-color: #f4f5f7;
    }

    header .top .member-center .icon, header .top .member-logout .icon {
        display: inline-block;
        margin-right: .35em;
        font-size: 1.25em;
        line-height: 1em;
        vertical-align: middle;
    }

    header .top .member a.login {
        padding: 0 1em;
        color: white;
        background-color: #ff6a00;
        border-radius: 3px;
    }

    header .top .member-info + a.login {
        display: none;
    }

    header .dropdown {
        position: relative;
        visibility: hidden;
        padding: 1em;
        border-top: 1px solid #eeeff4;
        background-color: white;
        opacity: 0;
        transition-duration: 200ms;
    }

    header.expand .dropdown {
        visibility: visible;
        opacity: 1;
    }

    header .dropdown .activity {
        margin-top: 0.8em;
    }

    header .dropdown .activity a {
        display: block;
        color: #18191f;
        margin-bottom: 2em;
        line-height: 1.6em;
        font-weight: bold;
    }

    header .dropdown .activity a.gifts {
        position: relative;
    }

    header .dropdown .activity a.gifts::before {
        content: '';
        display: inline-block;
        width: 1.4em;
        height: 1.4em;
        position: absolute;
        left: -1.8em;
        background: url(../images/gift.png) no-repeat center;
        vertical-align: -0.3em;
    }

    header .dropdown .dropdown-nav {
        max-width: 980px;
        margin: 0 auto;
        padding-bottom: 20%;
    }

    header .dropdown dl dt {
        margin-bottom: 1.25em;
        font-weight: bold;
        color: #18191f;
        line-height: 3em;
        border-bottom: 1px solid #eeeff4;
    }

    header .dropdown dl dt i {
        margin-right: .2em;
        font-size: 1.1em;
        vertical-align: -1px;
    }

    header .dropdown dl dd {
        margin-bottom: 1em;
        color: #474a57;
    }
    
    header .search-default{
        padding-top: 2.6em;
        width: 20px;
        height: 20px;
        background-image:url(../images/search.png);
        background-size: 16px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .banner {
        position: relative;
    }

    .banner .swiper-slide {
        /*height: 695px;*/
        height: 600px;
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .banner .swiper-pagination {
        bottom: 6em;
        left: 50%;
        text-align: center;
        transform: translateX(-50%);
        z-index: 2;
    }

    .banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 4px;
        border-radius: 0;
        background-color: white;
        outline: none;
        opacity: 1;
        transition-duration: 300ms;
    }

    .banner .swiper-pagination .swiper-pagination-bullet-active {
        width: 24px;
        background-color: #ff6a00;
    }

    .banner-inner {
        height: inherit;
    }

    .banner-inner b {
        display: block;
        margin-bottom: 1rem;
        font-size: 4em;
        font-weight: normal;
    }

    .banner-inner b em, .banner-inner p em {
        font-style: normal;
        color: #ff6a00;
    }

    .banner-inner p {
        font-size: 1.143em;
        margin-bottom: .5em;
    }

    .banner-inner p i {
        margin-right: .25em;
        font-size: 1.143em;
        color: #ff6a00;
    }

    .dark .banner-inner b, .dark .banner-inner p {
        color: white;
    }

    .banner-inner a.button {
        display: inline-block;
        padding: .75em 1.5em;
        margin-top: 1.5em;
        font-size: 1.143em;
        line-height: 1.5em;
        background-color: #ff6a00;
        color: white;
        border-radius: 3px;
    }

    .banner-inner .btns {
        margin-top: 1.714em;
    }

    .banner-inner .btns a {
        display: inline-block;
        padding: .8rem 1.5em;
        margin-right: .5em;
        font-size: 1.143em;
        line-height: 1.5em;
        color: #ff6a00;
        border: 1px solid #ff6a00;
        transition-duration: 200ms;
        border-radius: 3px;
    }

    .banner-inner .btns a.fill, .banner-inner .btns a:hover {
        background-color: #ff6a00;
        color: white;
    }

    .intro {
        position: relative;
        margin-bottom: -60px;
        transform: translateY(-50%);
        z-index: 2;
    }

    .intro .row > div a {
        display: block;
        height: 127px;
        padding: 16px 16px 16px 95px;
        background-color: white;
        background: url(../images/intro_icon_1@2x.png) white no-repeat 10px center / auto 95px;
        box-shadow: 0px 20px 30px 0px rgba(212, 217, 232, 0.20);
    }

    .intro .row > div:nth-child(2) a {
        background-image: url(../images/intro_icon_2@2x.png);
    }

    .intro .row > div:nth-child(3) a {
        background-image: url(../images/intro_icon_3@2x.png);
    }

    .intro .row > div:nth-child(4) a {
        background-image: url(../images/intro_icon_4@2x.png);
    }

    .intro a b {
        display: block;
        font-size: 1.7em;
        line-height: 2em;
        white-space: nowrap;
    }

    .intro a p {
        color: #474a57;
        white-space: nowrap;
    }

    .common {
        padding-bottom: 5.5em;
    }

    .common .label {
        padding: 5.5em 0 2em;
        text-align: center;
    }

    .common .label b {
        display: block;
        font-size: 2.85em;
        line-height: 1.35em;
    }

    .common .label b em {
        font-style: normal;
        color: #ff6a00;
    }

    .common .label p {
        margin: 1em 1em 0;
        font-size: 1.15em;
        line-height: 1.62em;
        color: #969bab;
    }
    
    .hot-product .row > div {
        position: relative;
        margin-bottom: 1em;
    }

    .hot-product .row > div::before {
        content: '';
        display: block;
        padding: 65.78% 0;
    }

    .hot-product .row > div a {
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
        left: 15px;
        display: block;
        padding: 1.7em;
        color: #000;
        /*background: linear-gradient(180deg, #ff9500, #ff6a00 100%);*/
        transition-duration: 300ms;
        border: 1px solid #e6eaed;
    }

    .hot-product .row > div a:hover {
       top:-20px;
    }

   .hot-product .row > div a b {
        /*font-size: 1.7em;*/
        font-size: 1.5rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .hot-product .row > div a p {
        margin-top: .25em;
        font-size: 1.15em;
        line-height: 1.62em;
        color: rgba(0, 0, 0, .82);
        white-space: nowrap;
    }
    
    .hot-product .row > div a .tags {
        margin-top: 0.85em;
    }
    
    .hot-product .row > div a .tags span {
        display: inline-block;
        padding: 0 .5em;
        font-size: 0.85em;
        line-height: 1.35em;
        background: #fdf6ec;
        color: #ff9900;
        border: 1px solid #ff9900;
        border-radius: 2px;
    }
    
    .hot-product .row > div a .price {
        display: block;
        margin-top: 0.9em;
        font-size: 1.52rem;
        line-height: 1.87em;
        color: #ff6a00;
    }
    
    .hot-product .row > div a .price i {
        margin-right: .2em;
        font-style: normal;
        font-size: 1.52rem;
        color: #ff6a00;
        vertical-align: -2px;
    }
    
    .hot-product .row > div img.imgback {
        width: 50.31%;
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
    
    .hot-product .row > div img.imgmore {
        width: 8%;
        position: absolute;
        left: 30px;
        bottom: 45px;
    }

.domain-search {
    background: #f4f5f7 url(../images/banner_min_domain.png) no-repeat right center / auto 100%;
}

.domain-search .label p {
    margin-left: 0;
}

.domain-search .tab a {
    display: block;
    line-height: 1.714em;
    padding: .857em 1.714em;
    background-color: #eeeff4;
}

.domain-search .tab a.active {
    background-color: #ff6a00;
    color: white;
}

.domain-search form {
    position: relative;
}

.domain-search form input {
    flex: 1;
    padding: 1em;
    border: 1px solid #eeeff4;
    outline: none;
}

.domain-search form input:focus {
    border-color: #ff6a00;
}

.domain-search form .suffix-box {
    flex: 0.12;
    padding: 0 1rem;
    border: 1px solid #eeeff4;
    border-right: none;
    border-left: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #fff;
}

.domain-search form button {
    width: 11.42em;
    height: 4.28rem;
    font-size: 1.28em;
    background-color: #ff6a00;
    color: white;
    border: none;
    outline: none;
}

.domain-search form button .icon {
    font-size: 1.25em;
    vertical-align: -.1em;
    margin-right: .2em;
}

.domain-search form .suffix-list {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    width: 81.8%;
    top: 100%;
    left: 0;
    padding: 1.1rem 1.2rem 1.1rem 1.2rem;
    box-shadow: 0 0.15rem 0.3rem 0.15rem rgba(0, 0, 0, 0.1);
    border-radius: 0.15rem;
    background: #feffff;
    
}

.domain-search form .suffix-list .suffix-item{
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
    width: 4.8rem;
    height: 2.2rem;
    line-height: 2.2rem;
    text-align: center;
    border: 0.1rem solid #e6eaed;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.domain-search form .suffix-list .suffix-item.suffix-active {
    background: #fdf6ec;
    color: #ff9900;
    border: 0.1rem solid #ff9900;
}

.domain-search .label {
    text-align: left;
}

.domain-search nav a {
    display: inline-block;
    margin-top: 1em;
    line-height: 1.143em;
    text-decoration: underline;
    color: #ff6a00;
}

.domain-search nav a:not(:last-child) {
    padding-right: 1em;
    margin-right: 1em;
    border-right: 1px solid #969bab;
}

.domain-search .banner-inner-domain b {
    margin-top: 3%;
}

@media(min-width: 769px) {
    .domain-search .domain-hot {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #e7e7e7;
        border-right: 1px solid #e7e7e7;
        border-left: 1px solid #e7e7e7;
        background: #fff;
    }
    
    .domain-search .domain-hot .left {
        width: 34%;
        height: 98px;
        display: block;
        background: url(../images/activity-domain.png) no-repeat center;
    }
    
    .domain-search .domain-hot .hot-p-item,
    .domain-search .domain-hot .hot-item {
        position: relative;
        width: 22%;
        height: 98px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background: #fff;
    }
    
    .domain-search .domain-hot .line {
        display: block;
        height: 60px;
        width: 1px;
        background-color: #e7e7e7;
    }

}

@media(max-width: 768px) {
    .domain-search .domain-hot {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 1px solid #e7e7e7;
        border-right: 1px solid #e7e7e7;
        border-left: 1px solid #e7e7e7;
        background: #fff;
    }
    
    .domain-search .domain-hot .left {
        width: 90%;
        height: 98px;
        display: block;
        background: url(../images/activity-domain.png) no-repeat center;
    }
    
    .domain-search .domain-hot .hot-p-item,
    .domain-search .domain-hot .hot-item {
        position: relative;
        width: 90%;
        height: 98px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background: #fff;
    }

    .domain-search .domain-hot .line {
        display: none;
        height: 60px;
        width: 1px;
        background-color: #e7e7e7;
    }
    
    .domain-search {
        height: 540px !important;
    }
}

.domain-search .domain-hot a {
    display: block;
}

.domain-search .domain-hot .hot-item i {
    position: absolute;
    left: 7px;
    top: 6px;
    width: 78px;
    height: 78px;
    background: url(../images/activity-com.png) no-repeat 0 0;
}

.domain-search .domain-hot .hot-item h3 {
    margin-left: 100px;
    font-size: 1.5em;
}

.domain-search .domain-hot .hot-item p {
    margin-left: 100px;
}

.domain-search .domain-hot .hot-p-item i.more {
    position: absolute;
    right: 16px;
    top: 20px;
    height: 22px;
    width: 22px;
    background: url(../images/arrow-right-circle.png) no-repeat 0 0;
    background-size: 100% 100%;
}

.domain-search .domain-hot .hot-p-item h3 {
    margin-left: 20px;
    font-size: 1.5em;
}

.domain-search .domain-hot .hot-p-item h3 span.tit{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.domain-search .domain-hot .hot-p-item h3 span i {
    font-style: normal;
    display: inline-block;
    padding: 0.08rem 0.5rem;
    font-size: 10px;
    font-weight: normal;
    color: white;
    border-radius: 54px;
    margin-left: 4px;
}

.domain-search .domain-hot .hot-p-item h3 span i.red {
    background: #FF1325;
}

.domain-search .domain-hot .hot-p-item h3 span i.blue {
    background: #07b657;
} 

.domain-search .domain-hot .hot-p-item p {
    margin-left: 20px;
}

.domain-search .domain-hot .hot-item p .price,
.domain-search .domain-hot .hot-p-item p .price{
    color: #ff7200;
}

.domain-suffix dl {
    margin-bottom: 0;
}

.domain-suffix dl dt {
    padding: 2.286em 0;
    margin-bottom: 0;
}

.domain-suffix dl dt.select-suffix {
    margin-bottom: 2.286em;
    border-bottom: 1px solid #eeeff4;
}

.domain-suffix dl dt label {
    margin-bottom: 0;
    margin-right: 1em;
}

.domain-suffix dl dt label i {
    margin-right: .5em;
}

.domain-suffix dl dd label {
    display: inline-block;
    width: 7.5em;
    margin-bottom: 1.5em;
}

.domain-suffix dl dd label i {
    margin-right: .5em;
}

.domain-result .search-title{
    font-size: 1.2em;
    color: rgba(0, 0, 0, 0.9);
    font-weight: bold;
}

.domain-result .domain-list {
    background: #fff;
    padding: 2em 1em;
}
.domain-result .domain-list .domain-item {
    width: 100%;
    height: 70px;
    padding: 0 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
    border-bottom: 1px solid #f2f3f6;
}

.domain-result .domain-list .item-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.domain-result .domain-list .item-left .name {
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
}

.domain-result .domain-list .item-left .domain-status {
    margin-left: 1.4em;
    font-size: 0.8em;
    color: rgba(0, 0, 0, 0.6);
}

.domain-result .domain-list .item-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.domain-result .domain-list .item-right .domain-premium {
    padding: 3px 8px;
    background: #fdf6ec;
    border: 1px solid #ff9900;
    color: #ff9900;
    border-radius: 5px;
    margin-right: 1.4em;
}

.domain-result .domain-list .item-right .domain-price {
    font-size: 1.1vw;
    color: #ff6a00;
    margin-right: 1.4em;
}

.domain-result .domain-list .item-right .domain-buy {
    padding: 3px 8px;
    background: #ff6a00;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
}

.domain-result .domain-list .item-right .domain-whois {
    cursor: pointer;
}

.domain-result .domain-list .item-right .domain-whois:hover {
    color: #ff6a00;
}

.domain-stepinfo {
    margin: 1.6em 0;
}

.domain-stepinfo .stepinfo-item {
    position: relative;
    height: 200px;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
    border: 1px solid #e6eaed;
}

.domain-stepinfo .background-num{
    position: absolute;
    bottom: 0;
    right: 8px;
    color: #fdf6ec;
    font-size: 6em;
    cursor: not-allowed;
}

.domain-stepinfo .stepinfo-item .title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.domain-stepinfo .stepinfo-item .title img {
    width: 2.2em;
    height: 2.2em;
}

.domain-stepinfo .stepinfo-item .title h3 {
    margin-left: 0.6em;
    display: inline-block;
    margin-bottom: 0 !important;
    font-size: 1.3em;
}

.domain-stepinfo .stepinfo-item .info {
    padding: 8px 0;
}

.domain-stepinfo .stepinfo-item .info p {
    margin: 6px 0 !important;
    font-size: 1.05em;
}

.domain-stepinfo .stepinfo-item .step-btn {
    margin-top: 10px;
}

.domain-stepinfo .stepinfo-item .step-btn a {
    padding: 6px 15px;
    background: #fff;
    color: #ff6a00;
    border: 1px solid #ff6a00;
    border-radius: 3px;
}


/*.domain-result .success-tips {*/
/*    display: block;*/
/*    padding: 1em 0;*/
/*    font-size: 1.714em;*/
/*    font-style: normal;*/
/*    color: #07b657;*/
/*}*/

/*.domain-result .success-tips i {*/
/*    display: inline-block;*/
/*    width: 1.2em;*/
/*    height: 1.2em;*/
/*    margin-right: .35em;*/
/*    line-height: 1.2em;*/
/*    background-color: #07b657;*/
/*    color: white;*/
/*    text-align: center;*/
/*    border-radius: 50%;*/
/*}*/

/*.domain-result .success-tips.error {*/
/*    color: #ff6a00;*/
/*}*/

/*.domain-result .success-tips.error i {*/
/*    background-color: #ff6a00;*/
/*}*/

/*.domain-result ul {*/
/*    padding: 2em;*/
/*    background-color: white;*/
/*}*/

/*.domain-result ul li {*/
/*    padding: 1em 0;*/
/*    border-bottom: 1px dashed #d9dbe1;*/
/*}*/

/*.domain-result ul li label {*/
/*    margin-bottom: 0;*/
/*}*/

/*.domain-result ul li label span {*/
/*    font-size: 1.143em;*/
/*    margin-left: .5em;*/
/*}*/

/*.domain-result ul li .info p {*/
/*    color: #969bab;*/
/*    margin-right: 1em;*/
/*    margin-bottom: 0;*/
/*}*/

/*.domain-result ul li .info .price {*/
/*    color: #969bab;*/
/*    margin-right: 1em;*/
/*}*/

/*.domain-result ul li .info .price i {*/
/*    margin-left: .5em;*/
/*    font-style: normal;*/
/*}*/

/*.domain-result ul li .info .price b {*/
/*    font-size: 1.286em;*/
/*    font-weight: bold;*/
/*    color: #ff6a00;*/
/*}*/

/*.domain-result ul li .info a.more {*/
/*    margin-right: 1em;*/
/*    color: #0080ff;*/
/*}*/

/*.domain-result ul li .info a.btn-reg {*/
/*    padding: 0 1em;*/
/*    line-height: 2.143em;*/
/*    border: 1px solid #ff6a00;*/
/*    color: #ff6a00;*/
/*    transition-duration: 200ms;*/
/*}*/

/*.domain-result ul li .info a.btn-reg:hover {*/
/*    background-color: #ff6a00;*/
/*    color: white;*/
/*}*/

/*.domain-result dl {*/
/*    margin-top: 2em;*/
/*    padding: 2em;*/
/*    background-color: white;*/
/*}*/

/*.domain-result ul + dl {*/
/*    margin-top: 0;*/
/*    padding-top: 0;*/
/*}*/

/*.domain-result dl dt {*/
/*    padding: 0 0 1em;*/
/*    font-size: 1.714em;*/
/*    line-height: 1.333em;*/
/*    color: #ff6a00;*/
/*}*/

/*.domain-result dl dd {*/
/*    padding: 1em 0;*/
/*    line-height: 2.286em;*/
/*    border-bottom: 1px dashed #d9dbe1;*/
/*}*/

/*.domain-result dl dd .name {*/
/*    font-size: 1.143em;*/
/*}*/

/*.domain-result dl dd .link a:last-child {*/
/*    margin-left: .5em;*/
/*}*/

/*.domain-result dl dd .link a i {*/
/*    margin-right: .2em;*/
/*    font-size: 1.2em;*/
/*    vertical-align: -.1em;*/
/*}*/

/*.domain-result .batch-reg-button {*/
/*    display: inline-block;*/
/*    padding: .75em 1.5em;*/
/*    margin-top: 1em;*/
/*    font-size: 1.143em;*/
/*    line-height: 1.5em;*/
/*    background-color: #ff6a00;*/
/*    color: white;*/
/*}*/

.site-construction-process .step {
    position: relative;
    margin-top: 2em;
}

.site-construction-process .step > div {
    margin-bottom: 1em;
}

.site-construction-process .step > div img {
    display: block;
    width: 3.429em;
    height: 3.429em;
    margin: auto;
}

.site-construction-process .step > div span {
    display: block;
    margin-top: .571em;
    line-height: 1.714em;
    text-align: center;
}

.site-construction-process .step > div em {
    width: 2.4em;
    position: absolute;
    top: 50%;
    right: -1.2em;
    border-bottom: 2px dotted #ff6a00;
}

.site-construction-process .domain-reg {
    margin-top: 3em;
    padding: 2em;
    background-color: white;
}

.site-construction-process .domain-reg .info b {
    font-size: 1.286em;
    font-weight: bold;
}

.site-construction-process .domain-reg .info p {
    margin: .714em 0 0;
    color: #969bab;
}

.site-construction-process .domain-reg .link span {
    font-size: 1.143em;
    color: #ff6a00;
}

.site-construction-process .domain-reg .link a {
    margin-left: 1.5em;
    padding: .857em 2em;
    background-color: #ff6a00;
    color: white;
    border-radius: 3px;
}

.domain-price-overview {
    padding: 3.5em 0;
}

.domain-price-overview .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.6em;
}

.domain-price-overview .title b {
    font-size: 28px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
}

.domain-price-overview table {
    width: 100%;
    text-align: center;
    cursor: default;
}

.domain-price-overview table thead th {
    height: 62px;
    background: #ff6a00;
    line-height: 62px;
    color: #fff;
    font-size: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.16);
}

.domain-price-overview table tr {
    background: #eeeff4;
    height: 52px;
    line-height: 52px;
    color: #474A57;
    border: 1px solid #d9dbe1;
    font-size: 14px;
}

.domain-price-overview table tr:nth-child(2n) {
    background: #f4f5f7;
}

.domain-price-overview table tr .price {
    margin: 0 5px;
    font-size: 16px;
    color: #ff7200;
}

.domain-price-overview table tr del {
    color: #999;
}

.domain-price-overview table td.more-price {
    position: relative;
}

.domain-price-overview table td.more-price .show-price {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80%;
    left: 40%;
    padding: 10px 10px;
    background: #fff;
    border-radius: 4px;
}

.domain-price-overview table td.more-price:hover .show-price:after {
    position: absolute;
    content: "";
    top: -20px;
    left: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.domain-price-overview table td.more-price:hover .show-price {
    display: flex !important;
    z-index: 1;
}

.domain-price-overview table td.more-price .show-price .s-table {
    display: flex;
    justify-content: flex-start;
}

.domain-price-overview table td.more-price .show-price h7 {
    height: 40px;
    line-height: 40px;
    width: 100%;
    padding-left: 6px;
    text-align: left;
}

.domain-price-overview table td.more-price .show-price .s-table .year > span {
    display: block;
    width: 100px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #fdf3e3;
    border-bottom: 0.5px solid #fff;
    border-right: 0.5px solid #fff;
    font-size: 15px;
}

.domain-price-overview table td.more-price .show-price .s-table .year > span:last-child {
    font-size: 17px;
    color: #ff7200;
}

.domain-price-overview table td a.to-domain-reg {
    color: blue;
    font-size: 12px;
}

@media (max-width: 768px) {
    .domain-price-overview table tr {
        position: relative;
    }
    
    .domain-price-overview table td.more-price {
        position: static;
    }
    
    .domain-price-overview table td.more-price .show-price {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 10px;
        background: #fff;
        border-radius: 4px;
        z-index: 1;
    }
    
    .domain-price-overview table td.more-price:hover .show-price {
        display: flex !important;
    }
    
    .domain-price-overview table td.more-price:hover .show-price:after {
        display: none;
    }
    
    .domain-price-overview table td.more-price .show-price .s-table {
        display: flex;
        justify-content: flex-start;
    }
    
    .domain-price-overview table td.more-price .show-price h7 {
        height: 40px;
        line-height: 40px;
        width: 100%;
        padding-left: 6px;
        text-align: left;
    }
    
    .domain-price-overview table td.more-price .show-price .s-table .year {
        width: 25%;
    }
    
    .domain-price-overview table td.more-price .show-price .s-table .year > span {
        display: block;
        width: 100%;
        height: 46px;
        line-height: 46px;
        text-align: center;
        background: #fdf3e3;
        border-bottom: 0.5px solid #fff;
        border-right: 0.5px solid #fff;
        font-size: 15px;
    }
    
    .domain-price-overview table td.more-price .show-price .s-table .year > span:last-child {
        font-size: 17px;
        color: #ff7200;
    }
    
    .domain-price-overview table td a.to-domain-reg {
        color: blue;
        font-size: 12px;
    }

}

/* 云主机begin */
.hot-index-cloud {
    overflow: hidden;
}

.hot-index-cloud .jr-tabs{
    display: flex;
    border-bottom: 1px solid #E6EAED;
    justify-content: center;
}

.hot-index-cloud .jr-tabs .title{
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    width: auto !important;
    padding: 10px 40px;
    cursor: pointer;
    margin-right: 0 !important;
}

.hot-index-cloud .jr-tabs .title.swiper-slide-thumb-active{
    color: rgba(255, 103, 57, 1);
    border-bottom: 2px solid #ed732e;
}

.hot-index-cloud .hot-cont{
    margin: -10px;
    margin-top: 30px;
    overflow: hidden;
}

.hot-index-cloud .hot-list {
    display: flex;
    flex-wrap: wrap;
}

.hot-index-cloud .hot-list .hot-item{
    cursor: pointer;
    font-size: 14px;
    padding: 30px 30px 0 30px;
    border: 1px solid #e6eaed;
    position: relative;
}

.hot-index-cloud .hot-item .tit {
    position: absolute;
    top: 0;
    right: 0;
    background: #f3f3f3;
    color: #cb1717;
    padding: 5px 15px;
    border-bottom-left-radius: 4px
}

.hot-index-cloud .hot-item .mt-15 {
    margin-top: 15px;
}

.hot-index-cloud .hot-item .title-desc {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.hot-index-cloud .hot-item .standard {
    margin-top: 30px;
}

.hot-index-cloud .hot-item .standard p {
    height: 32px;
    line-height: 32px;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
}

.hot-index-cloud .hot-item .standard p .attr {
    width: 140px;
    text-align: left;
}

.hot-index-cloud .hot-item .standard p .attr.web{
    width: 120px !important;
}

.hot-index-cloud .hot-price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.hot-index-cloud .hot-price .price-top {
    width: 100%;
    margin-bottom: 10px;
    height: 28px;
    display: flex;
    justify-content: flex-start;
}

.hot-index-cloud .hot-price .price {
     line-height: 28px;
    text-align: bottom;
    font-weight: 400;
    color: rgba(255, 103, 57, 1);
}

.hot-index-cloud .hot-price .price span {
    color: #969bab;
}

.hot-index-cloud .hot-price .price span.num1 {
    font-size: 22px;
    color: #ed732e;
}


.hot-index-cloud .hot-price .price.web{
    width: 100%;
    text-align: right;
}

.hot-index-cloud .hot-price .price.web span {
    color: #969bab;
}

.hot-index-cloud .hot-price .price.web span.num2 {
    font-size: 22px;
    color: #ed732e;
}


.hot-index-cloud .hot-price .price-desc {
    margin-left: 30px;
    line-height: 28px;
    text-align: bottom;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 400px){
    .hot-index-cloud .hot-price .price-middle {
        padding: 0 4px;
        width: calc(100% + 60px);
        margin-bottom: 10px;
        height: 35px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .hot-index-cloud .hot-price .price-middle .code{
        font-size: 14px;
        color: #ff6a00;
    }
    
    .hot-index-cloud .hot-price .price-middle .code .codeCopy{
        font-size: 12px;
        color: #ff6a00;
        background: #f3f3f3;
        border-radius: 2px;
        padding: 4px 8px;
        margin-left: 6px;
    }
    
    .hot-index-cloud .hot-price .price-middle .copyBtn{
        margin-left: 20px;
        padding: 2px 8px;
        background: #fff;
        border: 1px solid #ced4da;
        border-radius: 4px;
        color: #495057;
        font-size: 12px;
    }
}

@media (min-width: 400px){
    .hot-index-cloud .hot-price .price-middle {
        width: 100%;
        margin-bottom: 10px;
        height: 35px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .hot-index-cloud .hot-price .price-middle .code{
        font-size: 14px;
        color: #ff6a00;
    }
    
    .hot-index-cloud .hot-price .price-middle .code .codeCopy{
        font-size: 12px;
        color: #ff6a00;
        background: #f3f3f3;
        border-radius: 2px;
        padding: 4px 8px;
        margin-left: 6px;
    }
    
    .hot-index-cloud .hot-price .price-middle .copyBtn{
        margin-left: 34px;
        padding: 2px 8px;
        background: #fff;
        border: 1px solid #ced4da;
        border-radius: 4px;
        color: #495057;
        font-size: 12px;
    }
}

@media (min-width: 992px){
    .hot-index-cloud .hot-price .price-middle {
        width: calc(100% + 40px);
        margin-bottom: 10px;
        height: 35px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hot-index-cloud .hot-price .price-middle .code{
        font-size: 12px;
        color: #ff6a00;
    }
    
    .hot-index-cloud .hot-price .price-middle .code .codeCopy{
        font-size: 12px;
        color: #ff6a00;
        background: #f3f3f3;
        border-radius: 2px;
        padding: 4px 8px;
        margin-left: 6px;
    }
    
    .hot-index-cloud .hot-price .price-middle .copyBtn{
        margin-left: 0;
        padding: 2px 8px;
        background: #fff;
        border: 1px solid #ced4da;
        border-radius: 4px;
        color: #495057;
        font-size: 12px;
    }
}

@media (min-width: 1200px){
    .hot-index-cloud .hot-price .price-middle {
        width: 100%;
        margin-bottom: 10px;
        height: 35px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .hot-index-cloud .hot-price .price-middle .code{
        font-size: 14px;
        color: #ff6a00;
    }
    
    .hot-index-cloud .hot-price .price-middle .code .codeCopy{
        font-size: 12px;
        color: #ff6a00;
        background: #f3f3f3;
        border-radius: 2px;
        padding: 4px 8px;
        margin-left: 6px;
    }
    
    .hot-index-cloud .hot-price .price-middle .copyBtn{
        margin-left: 0;
        margin-right: 8px;
        padding: 2px 8px;
        background: #fff;
        border: 1px solid #ced4da;
        border-radius: 4px;
        color: #495057;
        font-size: 12px;
    }
}

.hot-index-cloud .hot-price .price-bottom {
    width: calc(100% + 60px);
}

.hot-index-cloud .hot-price .p-btn {
    width: 100%;
    height: 48px;
    font-size: 1.2em;
    line-height: 48px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    background: #ed732e;
}

.hot-index-cloud .hot-price .p-btn-2{
    width: 45%;
    height: 44px;
    font-size: 1.1em;
    line-height: 44px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    background: #ed732e;
}

.hot-index-cloud .hot-price .p-btn-2.hollow{
    background-color: #fff;
    color: #ed732e;
    border: 1px solid #ed732e;
}

/* 云主机end */

.data-center {
    background-color: #f7f9fb;
    overflow: hidden;
}

.data-center .container {
    position: relative;
    --swiper-navigation-color: #969bab;
    --swiper-navigation-size: 1.15em;
    --swiper-pagination-color: #ff6a00;
}

.data-center .swiper-slide {
    width: calc(33.3333% - 20px);
    margin-right: 30px;
    padding: .85em;
    background-color: white;
}

.data-center .swiper-slide .thumb::before {
    padding: 20.85% 0;
}

.data-center .swiper-slide b {
    display: block;
    margin-top: 1rem;
    font-size: 1.28em;
    font-weight: bold;
    line-height: 1.55em;
}

.data-center .swiper-slide b::before {
    content: '';
    display: inline-block;
    height: 1.14rem;
    margin-right: .5em;
    border-right: 3px solid #ff6a00;
    vertical-align: -2px;
}

.data-center .swiper-slide p {
    margin: 1em 0 0 0;
}

.data-center .swiper-slide p span {
    display: inline-block;
    width: 6em;
    color: #969bab;
}

.data-center .swiper-slide p span::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: .5em;
    border-radius: 2px;
    background-color: #ff6a00;
    vertical-align: middle;
}

.data-center .swiper-slide .tag {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #c8c9cc;
}

.data-center .swiper-slide .tag span {
    display: inline-block;
    padding: 3px 5px;
    background: #fdf6ec;
    margin-right: 10px;
    border: 1px solid #ff9900;
    border-radius: 3px;
    color: #ff9900;
    font-size: 12px;
}

.data-center .swiper-slide .price {
    margin-top: 10px;
}

.data-center .swiper-slide .price .original-price {
    margin-left: 5em;
    line-height: 28px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

.data-center .swiper-slide .price span {
    color: #969bab;
}

.data-center .swiper-slide .price span.num {
    font-size: 22px;
    color: #ed732e;
}

.data-center .swiper-slide a.detail {
    display: block;
    margin-top: 2.5em;
    font-size: 1.14em;
    line-height: 3em;
    border: 1px solid #ff6a00;
    color: #ff6a00;
    text-align: center;
    border-radius: 2px;
    transition-duration: 200ms;
}

.data-center .swiper-slide a.detail i {
    margin-left: 1rem;
    font-size: 1.4em;
    vertical-align: -3px;
}

.data-center .swiper-slide:hover a.detail {
    background-color: #ff6a00;
    color: white;
}

.data-center .swiper-slide .bottom-btn {
    padding: 1em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-center .swiper-slide .bottom-btn a {
    position: relative;
    height: 44px;
    width: 45%;
    font-size: 1.1em;
    display: block;
    line-height: 44px;
    text-align: center;
    border-radius: 3px;
    
}

.data-center .swiper-slide .bottom-btn a:nth-child(1) {
    /*background: linear-gradient(to right,rgba(237, 115, 46, .8), rgba(237, 115, 46, 1));*/
    background: #ed732e;
    color: #fff;
}

.data-center .swiper-slide .bottom-btn a:nth-child(2) {
    background: #fff;
    color: #ed732e;
    border: 1px solid #ed732e;
} 

.data-center .swiper-slide .bottom-btn a:nth-child(2):before {
    position: absolute;
    /*width: 20px;*/
    padding: 4px 12px;
    line-height: 1;
    top: -8px;
    right: -10px;
    content: '\0031\0076\0031';
    font-size: 10px;
    color: #fff;
    background: #ed732e;
    border-radius: 10px;
}

.data-center .swiper-button-next, .data-center .swiper-button-prev {
    width: 2.8em;
    height: 2.8em;
    border-radius: 1.4em;
    border: 1px solid var(--swiper-navigation-color);
}

.data-center .swiper-button-next {
    right: -3em;
}

.data-center .swiper-button-prev {
    left: -3em;
}

.data-center .swiper-pagination {
    padding: 2em 0;
    width: 100%;
    text-align: center;
    position: relative;
}

.data-center .swiper-pagination span {
    margin: 0 0.25em;
}

/* 增值业务 第二版 begin */
@media (min-width: 769px){
    .value-add .left {
        height: 100%;
        width: 100%;
        padding: 20px 20px;
        background: url('../images/value-back.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        border-radius: 6px;
    }
}

@media (max-width: 768px){
    .value-add .left {
        height: auto;
        width: calc(100%-30px);
        margin: 0 15px;
        padding: 20px 20px;
        background: url('../images/value-back.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        border-radius: 6px;
    }
}

.value-add .left h5 {
    color: #fff;
    margin-bottom: 20px;
}

.value-add .left p {
    color: #fff;
    font-size: 13.5px;
    line-height: 22px;
    text-align: left;
    margin-bottom: 26px;
}

.value-add .left ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.value-add .left ul li {
    width: 50%;
    padding: 5px 0px;
    font-size: 12.5px;
    color: #fff;
    font-weight: 400;
}

.value-add .left ul li:before {
    content: '\4e00';
    margin-right: 4px;
    line-height: 1;
}

.value-add .bottom-btn {
    height: 40px;
    width: 100px;
    margin-top: 22px;
}

.value-add .bottom-btn a {
    display: inline-block;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #ed732e;
    background-color: #fff;
    opacity: .9;
    border-radius: 4px;
    transition: opacity .3s;
}

.value-add .bottom-btn a:hover {
    opacity: 1;
}

@media (min-width: 769px){
    .value-add .right {
        /*height: 340px;*/
        width: 100%;
    }
}

@media (max-width: 768px) {
    .value-add .right {
        height: auto;
        width: 100%;
    }
}

.value-add .right .item {
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
}

.value-add .right .item .item-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.value-add .right .item .item-top img {
    height: 40px;
    width: 40px;
    margin-right: 15px;
    object-fit: contain;
}

.value-add .right .item p {
    padding: 8px 0;
    font-size: 12px;
    margin-bottom: 0;
}

.value-add .right .item-bottom a {
    display: inline-block;
    height: 26px;
    width: 80px;
    line-height: 26px;
    border: 1px solid #ed732e;
    text-align: center;
    font-size: 12.5px;
    color: #ed732e;
    border-radius: 4px;
}
/* 增值业务 第二版 end */

.product-adv {
    padding-bottom: 5.5em;
}

.product-adv .row > div {
    padding: 1.92em;
    text-align: center;
    transition-duration: 200ms;
}

.product-adv .row > div:hover {
    box-shadow: 10px 20px 40px 0px rgba(212, 217, 232, 0.15), -10px 20px 40px 0px rgba(212, 217, 232, 0.15);
}

.product-adv .row > div img {
    display: block;
    width: 5.7em;
    height: 5.7em;
    margin: 0 auto;
}

.product-adv .row > div b {
    display: block;
    margin: .85em 0 .57em;
    font-size: 1.28em;
    font-weight: bold;
    line-height: 1.55em;
}

.product-adv .row > div p {
    max-width: 230px;
    margin: 0 auto;
    color: #969bab;
}

.approve {
    overflow: hidden;
}

.approve .slider {
    max-width: 686px;
    position: relative;
    margin: 3.5em auto 4.85em;
    --swiper-navigation-color: #969bab;
    --swiper-navigation-size: 1.15em;
}

.approve .slider .swiper-slide {
    width: 27%;
    margin-right: 9.5%;
    padding: .85em;
    background-color: white;
}

.approve .slider .swiper-slide:hover {
    box-shadow: 0px 30px 40px 0px rgba(212, 217, 232, 0.20);
}

.approve .slider .fixed-ratio::before {
    padding: 71% 0;
}

.approve .slider .swiper-button-next, .approve .slider .swiper-button-prev {
    width: 2.8em;
    height: 2.8em;
    border-radius: 1.4em;
    border: 1px solid var(--swiper-navigation-color);
}

.approve .slider .swiper-button-next {
    right: -6em;
}

.approve .slider .swiper-button-prev {
    left: -6em;
}

.approve ul {
    margin: 0;
    padding: 0;
}

.approve ul li {
    width: 20%;
    padding: 1em;
    list-style: none;
}

.approve ul li img {
    display: block;
    width: 4em;
    height: 4em;
    margin: 0 auto;
}

.approve ul li span {
    display: block;
    margin-top: 1em;
    line-height: 1.71em;
    text-align: center;
    color: #969bab;
}

.success-cases ul li {
    margin-top: 2em;
}

.success-cases ul li {
    width: 20%;
}

.success-cases ul li::before {
    padding: 25% 0;
}

.free-coupon {
    padding: 3.42em 0 2.71em;
    background: url(../images/free_coupon_bg.jpg) repeat-x center / auto 100%;
    text-align: center;
    color: white;
}

.free-coupon b {
    display: block;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.42em;
}

.free-coupon a {
    display: inline-block;
    padding: 0 1em;
    margin-top: 1.42em;
    font-size: 1.14em;
    line-height: 2.62em;
    border: 1px solid;
    border-radius: 4px;
}

.fill-header {
    margin-top: 72px;
}

.banner-min {
    height: 370px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-min.banner-vps {
    background: #f7f7f7 url(../images/banner_min_idc.gif) no-repeat right center / auto 100%;
}

.banner-min .container {
    height: inherit;
}

.banner-min .banner-inner b {
    font-size: 3.428em;
}

.banner-min .banner-inner p {
    max-width: 460px;
    font-size: 1em;
    line-height: 1.8em;
    color: #474A57;
}

.common.bg-gary {
    background-color: #f4f5f7;
}

.servers .row > div {
    padding-bottom: 2.5em;
}

.servers .item {
    box-shadow: 0px 30px 30px 0px rgba(212, 217, 232, .2);
}

.servers .item .head i {
    display: block;
    border-bottom: 5px solid #18191f;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    position: relative;
}

.servers .item .head dl {
    display: block;
    padding: 1.358rem 1rem;
    margin-bottom: 0;
    background: #303030 url(../images/servers_item_head_bg@2x.png) no-repeat right center / auto 100%;
    color: #f4f5f7;
}

.servers .item .head dl dt {
    font-size: 1.3em;
    line-height: 1.428em;
}

.servers .item .info {
    padding: 1.143em 1.143em 0;
    background-color: white;
    border-radius: 0px 0px .643em .643em;

}

.servers .item .head.hot i:after {
    content: '\70ed\9500\4ea7\54c1';
    position: absolute;
    right: 0.4rem;
    top: -2.5px;
    width: 43px;
    line-height: 15px;
    height: 79px;
    padding: 10px 8px 0px 14px;
    font-size: 12px;
    font-weight: bold;
    color: #533D03;
    text-align: center;
    font-style: normal;
    background: url("../images/hot_bg.png") no-repeat center top;
}

.servers .item .info b {
    display: block;
    margin-bottom: 1.25em;
    color: #969bab;
}

.servers .item .info b::before {
    content: '';
    display: inline-block;
    height: 1em;
    margin-right: .5em;
    border-right: 4px solid #07b657;
    vertical-align: -.15em;
}

.servers .item .info p {
    font-size: 0.857em;
}

.servers .item .info .idc-select{
    width: 75%;
    height: 90%;
    border-top: none;
    border-right: none;
    border-left: none;
    text-align: center;
}

.servers .item .info p span {
    display: inline-block;
    width: 5em;
    font-size: 1rem;
    color: #969bab;
}

.servers .item .info .prop{
    text-align: center;
    color: #18191f;
}

.servers .item .info .current{
    position: relative;
    display: inline-block;
    text-align: center;
    color: #18191f;
}

.servers .item .info .tips{
    display: inline-block;
}

.servers .item .info .current_icon{
    margin-left: 4px;
    vertical-align: middle;
}

.servers .item .info .current_desc{
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    padding: 4px;
    width: 160px;
    border: #969bab solid 1px;
    border-radius: 4px;
    z-index: 9;
    font-size: 12px;
    color: #969bab ;
    background-color: #fff;
}

.servers .item .info .price{
    position: relative;
}

.servers .item .info .price_tips{
    display: inline-block;
}

.servers .item .info .price_icon{
    margin-left: 4px;
    vertical-align: middle;
}

.servers .item .info .price_desc{
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    padding: 4px;
    width: 160px;
    border: #969bab solid 1px;
    border-radius: 4px;
    text-align: center;
    z-index: 9;
    font-size: 12px;
    color: #969bab ;
    background-color: #fff;
}

.servers .item .info p select {
    -webkit-appearance: menulist;
}

.servers .item .info em {
    display: block;
    padding: 1em 0;
    margin-top: 1.5em;
    font-size: 1.28em;
    font-style: normal;
    font-weight: bold;
    text-align: center;
    color: #ff6a00;
    border-top: 1px solid #eeeff4;
}

.servers .item .info a.online {
    display: block;
    width: 4em;
    margin: 0 auto;
    color: #0080ff;
    text-decoration: underline;
}

.servers .item .info a.button {
    display: inline-block;
    padding: .6em 1.15em;
    margin-bottom: 1.143em;
    font-size: 1.143em;
    line-height: 1.5em;
    text-align: center;
    background-color: #ff6a00;
    border: 1px solid #ff6a00;
    color: white;
    border-radius: .1em;
}

.servers .item .info a.button + .button {
    background-color: transparent;
    color: #ff6a00;
}

.servers .item .info a.button.sink {
    margin: -1rem auto 0;
    box-shadow: 0px 10px 24px -7px rgba(255, 106, 0, 0.3);
    transform: translateY(50%);
}

.servers .box {
    position: relative;
    color: #969BAB;
    overflow: hidden;
}

.servers .box.hot:after {
    content: '\70ed\5356';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 2em;
    font-size: .857em;
    line-height: 1.6em;
    background-color: #ff4c25;
    color: white;
    transform: rotate(-45deg) translate(-1.6em, -0.8em);
}

.servers .box.bule:after {
    content: '\9650\65f6';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 2em;
    font-size: .857em;
    line-height: 1.6em;
    background-color: #07b657;
    color: white;
    transform: rotate(-45deg) translate(-1.6em, -0.8em);
}

.servers .box .info b {
    color: #18191f;
    font-size: 20px;
}

.servers .box p {
    font-size: 14px;
    margin-right: 32px;
    color: #18191f;
    margin-top: 0.5rem;
    font-weight: bold;
}

.servers .box p:last-child {
    margin-right: 0;
}

.servers .box p span {
    display: inline-block;
    font-size: 1rem;
    color: #969BAB;
    font-weight: normal;
}

.servers .box p span.value {
    display: inline-block;
    font-size: 14px;
    color: #18191f;
    font-weight: bold;
}

.servers .box p a {
    padding: 1px 0;
    border-bottom: 1px solid #000;
}

.servers .box p a:hover {
    border-color: #ff6a00;
}

.servers .box .org {
    font-size: 18px;
    color: #ff6a00;
    font-weight: bold;
}

.servers .box select {
    -webkit-appearance: menulist;
    width: auto;
    margin-left: 10px;
}

.servers .box a.button {
    display: inline-block;
    padding: .6em 1.15em;
    font-size: 1.143em;
    line-height: 1.25em;
    margin-left: 24px;
    text-align: center;
    background-color: #FF6A00;
    border: 1px solid #FF6A00;
    color: white;
    border-radius: .1em;
}

.servers .box .thumb {
    width: 40%;
    object-fit: cover;
    margin-right: 1rem;
}

.servers .box .thumb img {
    width: 100%;
    height: 100%;
}

.servers .box.zulin .info {
    flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    padding: 10px 1rem 10px 10px;
}

.servers .box.zulin b {
    position: relative;
    padding-left: 1rem;
}

.servers .box.zulin b:before {
    content: '';
    width: 4px;
    height: 20px;
    background: #ff6a00;
    position: absolute;
    left: 0;
    top: 0;
}

.servers .box.zulin p {
    width: 100%;
    margin: 0;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.servers .box.zulin p:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #ff6a00;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
}

.servers .box.zulin p:last-child {
    margin-bottom: 2rem;
}

.servers .box.zulin p span {
    margin-right: 1rem;
    min-width: 4rem;
}

@media (max-width: 1000px) {
    .servers .w-50 {
        width: 100% !important;
    }
}

@media (max-width: 767.98px) {
    .servers .box {
        text-align: center;
        margin-bottom: 2rem !important;
    }

    .servers .box p {
        width: 33%;
        margin: 0.5rem auto;
    }

    .servers .box a.button {
        margin: 1rem auto
    }

    .servers .box.zulin {
        flex-wrap: wrap;
        text-align: left;
        margin: 1rem 0 0 !important;
    }

    .servers .w-50:last-child {
        margin-bottom: 1rem;
    }

    .servers .box.zulin .thumb {
        width: 100%;
    }

    .servers .box .justify-content-end {
        justify-content: center !important;
    }

}
.servers .servers_more {
    display: block;
    width: 290px;
    height: 48px;
    font-size: 16px;
    margin: 0 auto;
    line-height: 48px;
    text-align: center;
    border: 1px solid #FF6A00;
    border-radius: 2px;
    color: #ff6a00;
    font-weight: bold;
}

.servers .servers_more img {
    position: relative;
    top: -2px;
}

.service table {
    width: 100%;
    text-align: center;
}

.service table th, .service table tr.org td {
    height: 48px;
    background: #ff6a00;
    line-height: 48px;
    color: white;
    font-size: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.16);
}

.service table .org td {
    border: 0.5px solid rgba(255, 255, 255, 0.16);
}

.service table tr {
    background: #eeeff4;
    height: 40px;
    line-height: 40px;
    color: #474A57;
    border: 1px solid #d9dbe1;
    font-size: 12px;
}

.service table tr:nth-child(2n) {
    background: #f4f5f7;
}

.service table tr td.tit {
    background: #f9fafe;
    font-size: 14px;
}

.service table tr td.bule {
    color: #06CA83;
}

.service .tips {
    margin-top: 1rem;
    color: #969BAB;
    font-size: 12px;
}

@media (max-width: 767.98px) {
    .service table th, .service table tr.org td {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .service table tr {
        height: unset;
    }

    .service table tr td {
        font-size: 0.625rem;
        line-height: 1.25rem;
        padding: 10px;
    }
}
.vps .step {
    max-width: 915px;
    margin: 0 auto 2.5em;
}

.vps .step span {
    color: #969bab;
}

.vps .step span::before {
    content: attr(data-index);
    display: inline-block;
    width: 2em;
    margin-right: 1em;
    line-height: 2em;
    border-radius: 1em;
    background-color: #969bab;
    color: white;
    text-align: center;
}

.vps .step span.on::before {
    background-color: #ff6a00;
}

.vps .step i {
    margin: 0 2em;
    border-bottom: 1px solid #d9dbe1;
}

.vps .filter {
    padding: 2.5em 0;
    margin-bottom: 2.5em;
    background-color: white;
}

.vps .filter b {
    display: block;
    margin-bottom: 1.5em;
    font-size: 1.143em;
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
}

.vps .filter .province {
    margin-bottom: 2.5em;
}

.vps .filter ul li {
    width: 7.5em;
    margin: 0 .571em;
    padding: .429em 0;
    margin-bottom: 1em;
    line-height: 1.714em;
    text-align: center;
    border: 1px solid #d9dbe1;
    color: #969bab;
    cursor: pointer;
}

.vps .filter ul li.active {
    background-color: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

.vps .item {
    margin-top: 0;
}

.vps .item .head dl {
    padding: 1.786rem 1em;
}

.vps .item .head dl dt {
    font-size: 1.286em;
    line-height: 1.555em;
}

.vps .item .info label.imitate-select {
    display: block;
    font-size: .857em;
}

.vps .item .info ul.configure {
    margin: 0 -1.143em 1.714em;
    box-shadow: 0px -8px 24px 0px rgba(10, 36, 99, 0.03), 0px 8px 24px 0px rgba(10, 36, 99, 0.03);
}

.vps .item .info ul.configure li {
    width: 33.3333%;
    padding: 0.643em 0;
    text-align: center;
}

.vps .item .info ul.configure li i {
    display: block;
    font-size: 1.286em;
    font-weight: bold;
    font-style: normal;
    line-height: 1.555em;
}

.vps .item .info ul.configure li span {
    display: block;
    line-height: 1.714em;
    color: #969bab;
}

.vps .item .info em {
    margin-top: 0;
    border-top: unset;
}

.server-optional .group {
    background-color: white;
}

.server-optional .group:not(:first-child) {
    margin-top: 2.286em;
}

.server-optional .group .title {
    display: block;
    width: 4rem;
    background-color: #474a57;
}

.server-optional .group .title span {
    display: table;
    height: 100%;
    padding: 0 1.5rem;
    font-size: 1.143em;
    color: white;
    text-align: center;
    vertical-align: middle;
}

.server-optional .group .title span::before {
    content: attr(data-content);
    display: table-cell;
    vertical-align: middle;
}

.server-optional .group .panel {
    padding: 4.5% 4.5% calc(4.5% - 1em);
}

.server-optional .group .panel b {
    display: block;
    width: 7rem;
    padding: .5em 0;
    font-size: 1.143em;
    font-weight: bold;
}

.server-optional .group .panel .object:not(:last-child) {
    margin-bottom: 1.5em;
}

.server-optional .group .panel .fn {
    max-width: calc(100% - 7em);
}

.server-optional .group .panel .radios label {
    margin-bottom: 1.143em;
}

.server-optional .group .panel .radios label.imitate-select {
    margin-right: 1em;
    border-radius: 0;
    color: white;
    border: 1px solid #969bab;
}

.server-optional .group .panel .radios label.imitate-select select {
    height: 2.714em;
    padding-right: 2.5em;
    background-color: transparent;
}

.server-optional .group .panel .radios label.imitate-select select option {
    height: 1.8em;
    line-height: 1.8em;
    color: #18191f;
}

.server-optional .group .panel .radios label.imitate-select::after {
    top: 1.5em;
    right: 1.5em;
}

.server-optional .group .panel .radios label input[type=radio] {
    display: none;
}

.server-optional .group .panel .radios label input[type=radio] + i {
    display: block;
    width: auto;
    min-width: 8.5em;
    height: auto;
    padding: .571em .8em;
    font-style: normal;
    color: inherit;
    line-height: 1.714em;
    background-color: #f4f5f7;
    text-align: center;
    border-radius: 0;
    cursor: pointer;
    transition-duration: 200ms;
}

.server-optional .group .panel .radios label input[type=radio] + i::before {
    content: unset;
    display: none;
}

.server-optional .group .panel .radios label input[type=radio] + i.gift::after {
    content: '';
    display: inline-block;
    width: 1.143em;
    height: 1.143em;
    margin-left: 2px;
    background: url(../images/gift@2x.png) no-repeat center / contain;
    vertical-align: -2px;
}

.server-optional .group .panel .radios label input[type=radio]:checked + i {
    background-color: #ff6a00;
    color: white;
}

.server-optional .group .panel .range input {
    width: 100%;
}

.server-optional .group .panel .range ul {
    height: 2em;
    margin-top: 1em;
}

.server-optional .group .panel .range ul li {
    position: relative;
}

.server-optional .group .panel .range ul li::after {
    content: attr(data-value);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}

.server-optional .group .panel .range ul li:not(:first-child)::after {
    transform: translateX(-50%);
}

.server-optional .group .panel .range + .counter {
    margin: 0 0 3em 10%;
}

.server-optional .group .panel .counter input {
    width: 72px;
    height: 40px;
    border: none;
    outline: none;
    font-size: 1.143em;
    font-weight: bold;
    text-align: center;
    background-color: #eeeff4;
}

.server-optional .group .panel .counter i {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #f4f5f7;
    cursor: pointer;
}

.server-optional .group .panel .counter i::before {
    content: '';
    display: block;
    width: 14px;
    position: absolute;
    top: 19px;
    left: 13px;
    border-bottom: 2px solid #474a57;
}

.server-optional .group .panel .counter i.increase::after {
    content: '';
    display: block;
    height: 14px;
    position: absolute;
    top: 13px;
    left: 19px;
    border-right: 2px solid #474a57;
}

.server-optional .group .panel .counter em {
    display: inline-block;
    width: 1em;
    margin-left: 1em;
    line-height: 40px;
    font-style: normal;
    font-weight: bold;
    text-align: center;
}

.server-optional .group .panel p {
    color: #969bab;
}

.server-optional .group .panel .choosebox {
    height: 100%;
    padding-top: 0.5rem;
}

.server-optional .group .panel .choosebox .label {
    position: relative;
}

.server-optional .group .panel .choosebox i {
    border-color: #c4c4c4;
    margin-right: 4px;
}

.server-optional .group .panel .choosebox .org {
    color: #FF6A00;
    font-weight: bold;
}

.server-optional .group .panel .choosebox .tips {
    top: -2px;
    position: relative;
    margin: 0;
    display: inline-block;
}

.server-optional .group .panel .choosebox .server {
    position: absolute;
    left: -18px;
    top: 100%;
    z-index: 9;
    display: none;
}

@media (max-width: 767.98px) {
    .server-optional .group .panel .choosebox .server {
        position: fixed;
        left: 5%;
        width: 90%;
        top: 10%;
    }

    .server-optional .group .panel .choosebox .server img {
        max-width: 100%;
        max-height: 80%;
    }
}
.server-features .item {
    padding: 3.286em;
    margin-bottom: 2em;
    border: 1px solid #eeeff4;
}

.server-optional .result {
    margin-top: 2.286em;
    padding: 2em 4em;
    background-color: white;
}

.server-optional .result dl dt {
    padding-bottom: .8em;
    font-size: 1.143em;
    font-weight: bold;
}

.server-optional .result dl dd {
    margin-bottom: 0;
}

.server-optional .result dl dd p {
    width: 33.3333%;
    padding-right: 2em;
    margin-bottom: .8em;
    font-size: 1.143em;
    color: #474a57;
}

.server-optional .result dl dd p span {
    display: inline-block;
    /* width: 5em; */
}

.server-optional .result dl dd p i {
    font-style: normal;
}

.server-optional .result dl dd:last-child {
    padding-top: 1.714em;
    margin-bottom: 0;
    border-top: 1px solid #eeeff4;
}

.server-optional .result dl dd:last-child b {
    font-size: 1.143em;
    font-weight: bold;
}

.server-optional .result dl dd:last-child b em {
    font-size: 1.5em;
    font-style: normal;
    color: #ff6a00;
}

.server-optional .result dl dd:last-child b em::before {
    content: '\ffe5';
    display: inline;
    font-size: .65em;
}

.server-optional .result dl .agreement {
    margin-right: 1em;
}

.server-optional .result dl .agreement label {
    margin-bottom: 0;
}

.server-optional .result dl .agreement label input[type=checkbox] + i {
    border-radius: 10px;
    border-color: #ccc;
}

.server-optional .result dl .agreement label input[type=checkbox]:checked + i {
    border-color: #ff6a00;
}

.server-optional .result dl .agreement label a {
    color: #0080ff;
}

.server-optional .result dl .btns a {
    display: inline-block;
    padding: .75em 2em;
    font-size: 1.143em;
    line-height: 1.5em;
    background-color: #ff6a00;
    color: white;
}

.server-optional .result dl .btns a.add2cart {
    margin-right: .8em;
    background-color: #fff0e4;
    color: #ff6a00;
}

.server-optional .result dl .btns a.disabled {
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
}

.server-optional .tips {
    margin-top: 2.286em;
    color: #474a57;
}

.server-features .item img {
    width: 9.143em;
    height: 9.143em;
    margin-right: 3.286em;
    object-fit: cover;
}

.server-features .item .info b {
    font-size: 1.429em;
    font-weight: bold;
    line-height: 1.5em;
}

.server-features .item .info p {
    margin: .5em 0 0;
    color: #969bab;
}

.common .tab-list {
    border-bottom: 2px solid #ff6a00;
    background-color: white;
}

.common .tab-list a {
    line-height: 3.42em;
    text-align: center;
}

.common .tab-list a img {
    width: 2.286em;
    height: 2.286em;
    margin-right: .2em;
}

.common .tab-list a.active {
    background-color: #ff6a00;
    color: white;
}

.service .tab-list {
    margin-bottom: 2em;
    color: #ff6a00;
}

.service-support .item {
    padding: 3.429em 0 1.857em;
    margin-bottom: 2em;
    text-align: center;
    background-color: white;
}

.service-support .item img {
    display: block;
    width: 4em;
    height: 4em;
    margin: 0 auto;
}

.service-support .item b {
    display: block;
    margin: .857em 0 .643em;
    font-size: 1.286em;
    font-weight: bold;
}

.service-support .item p {
    color: #969bab;
    line-height: 1.714em;
}

.serivce-data-center.fade:not(.show) {
    display: none !important;
}

.serivce-data-center .thumb {
    height: 100%;
    width: 418px;
    background-color: white;
    position: relative;
}

.serivce-data-center .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serivce-data-center .thumb .swiper-button-prev {
    width: 36px;
    height: 36px;
    position: absolute;
    background: url("../images/prev_icon.png") no-repeat center top;
    left: 24px;
    bottom: 30px;
    top: unset;
}

.serivce-data-center .thumb .swiper-button-next {
    width: 36px;
    height: 36px;
    position: absolute;
    background: url("../images/next_icon.png") no-repeat center top;
    right: unset;
    left: 64px;
    bottom: 30px;
    top: unset;
}

.serivce-data-center .thumb .swiper-button-prev:after, .serivce-data-center .thumb .swiper-button-next:after {
    display: none;
}

.serivce-data-center .thumb a:last-child {
    width: 180px;
    height: 38px;
    line-height: 38px;
    z-index: 1;
    background: #FF6A00;
    color: white;
    display: block;
    position: absolute;
    right: 24px;
    bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: CENTER;
}

.serivce-data-center .thumb .more{
    width: 180px;
    height: 38px;
    line-height: 38px;
    z-index: 1;
    background: #FF6A00;
    color: white;
    display: block;
    position: absolute;
    right: 24px;
    bottom: 60px;
    font-size: 14px;
    font-weight: 500;
    text-align: CENTER;
}

.serivce-data-center .objectr {
    flex: 1;
    padding: 1rem 24px;
}

.serivce-data-center .item {
    max-width: 150px;
    width: 24%;
    height: 172px;
    border: 1px solid #eeeff4;
    border-radius: 8px;
    text-align: center;
    padding: 24px 0px;
    margin: 1rem 0;
}

.serivce-data-center .item b {
    display: block;
    font-size: 14px;
    font-weight: bold;
}

.serivce-data-center .item p {
    font-size: 12px;
    color: #969BAB;
    max-width: 96%;
    margin: 0 auto;
}

.service .Property .item {
    width: 48%;
    height: 220px;
    border: 1px solid #d9dbe1;
    margin-top: 30px;
    padding: 46px;
    max-width: 540px;
}

.service .Property .item div {
    margin-left: 2rem;
}

.service .Property .item b {
    font-size: 20px;
    line-height: 3rem;
}

.service .Property .item p {
    font-size: 14px;
    line-height: 2rem;
    color: #969BAB;
}

.service .Property .item ul{
    list-style: square;
    font-size: 14px;
    color: #969BAB;
    padding-left: 16px;
}

.service .Property .item ul li{
    
}

@media (max-width: 1000px) {
    .service .Property .item {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .serivce-data-center .item, .serivce-data-center .thumb {
        width: 100%;
    }

    .serivce-data-center .item {
        max-width: 48%;
    }

    .service .Property .item {
        padding: 1rem;
        height: auto;
        flex-wrap: wrap;
    }

    .service .Property .item img {
        width: 50%;
        margin: 0 auto;
    }

    .service .Property .item div {
        width: 100%;
        margin: 1rem 0;
        text-align: center;
    }

    .service .Property .item b {
        font-size: 1rem;
        line-height: unset;
    }

    .service .Property .item p {
        font-size: 0.875rem;
        line-height: unset;
    }
}
.serivce-advance {
    background-color: white;
}

.serivce-advance .item {
    padding: 35% 1em;
    text-align: center;
}

.serivce-advance .item img {
    display: block;
    width: 4.214em;
    margin: 0 auto;
}

.serivce-advance .item b {
    display: block;
    margin-top: .5em;
    font-size: 1.143em;
    text-align: center;
}

.serivce-process {
    /*background-color: white;*/
}

.serivce-process .item {
    position: relative;
    padding: 8.5% 0;
    width: 20%;
}

.serivce-process .item img {
    display: block;
    width: 2.286em;
    margin: 0 auto;
}

.serivce-process .item b {
    padding: 0 2.8rem 0 3.2rem;
    display: block;
    margin-top: 1.5em;
    font-size: 0.843em;
    text-align: justify;
    text-indent: -20px;
}

.serivce-process .item:not(:last-child)::after {
    content: '';
    display: block;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    right: -0.5em;
    /*border-bottom: 2px dotted #ff6a00;*/
    background-image: url('../images/arrow-right.png');
    background-size: 100% 100%;
}

@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
            transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
            transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

.serivce-process .item:hover .item-step-detail {
    display: flex;
}

.serivce-process .item .item-step-detail {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    -webkit-animation: slide-in-fwd-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-fwd-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.serivce-process .item .item-step-detail .item-video {
    width: 174px;
    height: 100px;
    display: flex;
    /*background-image: url('../images/idc-step-1.png');*/
    background-size: 100% 100%;
    border-radius: 8px;
    overflow: hidden;
}

.serivce-process .item .item-step-detail .item-video .player {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.serivce-process .item .item-step-detail .player .play-btn {
    margin: auto;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.serivce-process .item .item-step-detail .item-video .play-btn img {
    height: 20px;
    width: 20px;
}

.huawei-products ul {
    margin-top: 2.286em;
}

.huawei-products ul li {
    position: relative;
    padding: 2em;
    margin-bottom: 1.143em;
    background-color: white;
    overflow: hidden;
}

.huawei-products ul li .info {
    width: 65%;
}

.huawei-products ul li .info b {
    font-size: 1.286em;
    font-weight: bold;
    line-height: 1.5em;
}

.huawei-products ul li .info p {
    margin-top: .714em;
    margin-bottom: 0;
    color: #969bab;
    line-height: 1.714em;
}

.huawei-products ul li .tips {
    margin: 1em 0;
    color: #ff6a00;
}

.huawei-products ul li .button {
    display: inline-block;
    padding: .75em 2em;
    font-size: 1.143em;
    line-height: 1.5em;
    background-color: #ff6a00;
    color: white;
}

.huawei-products ul li.free-mark::before {
    content: '\514d\8d39';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 2em;
    font-size: .857em;
    line-height: 1.6em;
    background-color: #07b657;
    color: white;
    transform: rotate(-45deg) translate(-1.6em, -0.8em);
}

.huawei-fn .container {
    margin-top: 2em;
}

.huawei-fn .row > div img {
    display: block;
    width: 4.571em;
    height: 4.571em;
    margin: 0 auto;
}

.huawei-fn .row > div b {
    display: block;
    margin: 1.143em 0;
    font-size: 1.286em;
    text-align: center;
}

.huawei-fn .row > div p {
    color: #969bab;
    line-height: 1.5em;
    text-align: center;
}

.huawei-adv .container {
    margin-top: 2em;
}

.huawei-adv .item {
    border: unset;
    background-color: white;
}

.huawei-adv .item img {
    width: 5em;
    height: 5em;
    margin-right: 2em;
}

.huawei-cert .label p {
    font-size: 1rem;
}

.huawei-cert .bdr {
    position: relative;
}

.huawei-cert .bdr::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    border-left: 4px solid #ff6a00;
}

.huawei-cert .bg {
    margin-top: 3.714em;
    padding: 3.5% 5%;
    background: linear-gradient(88deg, rgba(255, 106, 0, 0.15) 0%, rgba(255, 106, 0, 0.00) 100%);
}

.huawei-cert .row > div img {
    display: block;
    max-width: 70%;
    margin: 0 auto;
}

.huawei-cert .row > div p {
    display: block;
    margin: 1.5em 0 2em;
    line-height: 1.5em;
    text-align: center;
}

.huawei-scene .tab-content {
    margin-top: 2.286em;
}

.huawei-scene .panel {
    padding: 2.286em;
    background-color: white;
}

.huawei-scene .panel b {
    display: block;
    font-size: 1.143em;
    line-height: 1.5em;
}

.huawei-scene .panel p {
    margin: .857em 0;
    color: #969bab;
    line-height: 1.714em;
}

.huawei-scene .panel dl {
    margin: 1.714em 0;
    padding-top: 1.714em;
    border-top: 1px solid #eeeff4;
}

.huawei-scene .panel dl dd {
    margin: .857em 0 0;
    line-height: 1.714em;
}

.huawei-scene .panel dl dd i {
    margin-right: .25em;
    font-size: 1.143em;
    color: #ff6a00;
}

.huawei-scene .panel a {
    display: inline-block;
    padding: .857em 1.714em;
    line-height: 1.714em;
    color: #ff6a00;
    border: 1px solid #ff6a00;
    transition-duration: 200ms;
}

.huawei-scene .panel a:hover {
    background-color: #ff6a00;
    color: white;
}

.huawei-scene .row > div {
    padding-bottom: 0;
}

.huawei-scene .servers .item {
    height: 100%;
    margin: 0;
    background-color: white;
}

.recommon-servers .item .info b {
    position: relative;
    padding-left: .6em;
}

.recommon-servers .item .info b::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: .2em;
}

.recommon-servers .item .head {
    position: relative;
}

.recommon-servers .item .head dl dt {
    font-size: 1.286em;
    line-height: 1.5;
}

.recommon-servers .item .head dl dd {
    display: block;
    margin-bottom: 0;
    font-size: .857rem;
    line-height: 1.333em;
    color: #969bab;
}

.recommon-servers .item .head dl dd.tag {
    display: inline-block;
    padding: 0 .25em;
    border: 1px solid;
    border-radius: .2em;
}

.recommon-servers .item .head > em {
    position: absolute;
    top: -7px;
    right: 1.333em;
    width: 3.333em;
    padding: .8em;
    font-size: .857rem;
    font-style: normal;
    line-height: 1.333em;
    text-align: center;
    background-color: #f2c75b;
    color: #533d03;
    border-radius: 0 0 1.666em 1.666em;
}

.recommon-servers .item .head > em::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -5px;
    border-style: solid;
    border-width: 7px 5px 0 0;
    border-color: transparent #b08100 transparent transparent;
}

.recommon-servers .item .info p {
    margin-bottom: .5em;
}

.recommon-servers .item .info p .imitate-select {
    width: calc(100% - 6.5em);
}

.recommon-servers .item .info .discount {
    display: block;
    margin-bottom: 1em;
    color: #969bab;
    text-align: center;
}

.recommon-servers .domain {
    position: relative;
    height: 100%;
}

.recommon-servers .domain .info form .search-bar {
    width: 100%;
    margin-bottom: 1.143em;
    border: 1px solid #eeeff4;
}

.recommon-servers .domain .info form .search-bar input {
    height: 2em;
    border: none;
    outline: none;
}

.recommon-servers .domain .info form .search-bar button {
    background-color: transparent;
    border: none;
    outline: none;
    color: #d9dbe1;
    font-size: 1.25em;
}

.recommon-servers .domain .info form label {
    display: block;
    width: 50%;
    margin-bottom: 1.143em;
    color: #969bab;
}

.recommon-servers .domain .info form label i {
    margin-right: .5em;
}

.recommon-servers .domain .info form a.online {
    margin: 0;
}

.recommon-servers .domain .info a.button {
    position: absolute;
    bottom: 1.45em;
    left: 50%;
    transform: translate(-50%, 50%);
}

.common .tab {
    width: 36em;
    max-width: 100%;
    margin: 3.429em auto 0;
    box-shadow: 0px 30px 40px 0px rgba(212, 217, 232, 0.20), 0px 30px 40px 0px rgba(212, 217, 232, 0.20);
}

.common .tab span {
    width: 50%;
    font-size: 1.429em;
    line-height: 2.8em;
    text-align: center;
}

.common .tab span.active {
    background-color: #ff6a00;
    color: white;
}

.coupons .item {
    position: relative;
    padding: 1.714em;
    margin-bottom: 1.714em;
    background: url(../images/coupon_bg@2x.png) no-repeat 95% bottom / 20% auto, linear-gradient(#ffdcbc, #fff0d9);
    overflow: hidden;
}

.coupons .item::before, .coupons .item::after {
    content: '';
    display: block;
    width: 1.8em;
    height: 1.8em;
    position: absolute;
    top: 2em;
    left: -0.9em;
    background-color: #f4f5f7;
    border-radius: .9em;
}

.coupons .item::after {
    left: auto;
    right: -0.9em;
}

.coupons .item b {
    font-size: 2em;
    line-height: 1.5em;
    color: #ff6a00;
}

.coupons .item p {
    margin-bottom: 1.5em;
    color: #18191f;
    color: rgba(24, 25, 31, 0.30);
}

.coupons .item a {
    display: inline-block;
    background-color: #ff6a00;
    font-size: .857em;
    line-height: 1.143rem;
    padding: .5em 1em;
    color: white;
}

.referral-reward {
    height: auto;
    padding: 5em 0;
    background: #7d7d7d url(../images/banner_min_referral.jpg) no-repeat right center / auto 100%;
}

.referral-reward p {
    color: white;
}

.referral-reward .step {
    margin-top: 3em;
    padding: 1em 0;
    background-color: white;
}

.referral-reward .step .item::before {
    content: attr(data-index);
    display: block;
    font-size: 5.143em;
    font-style: italic;
    font-weight: bold;
    color: #f4f5f7;
}

.referral-reward .step .item .info {
    margin-left: 1em;
    text-align: center;
}

.referral-reward .step .item .info i {
    display: block;
    font-style: normal;
}

.referral-reward .step .item .info em {
    display: block;
    margin: .6em auto;
    font-style: normal;
    color: #ff6a00;
}

.referral-reward .step .item .info a {
    display: inline-block;
    padding: 0 1em;
    font-size: .857em;
    line-height: 2rem;
    background-color: #ff6a00;
    color: white;
}

.banner-activity .banner-inner p {
    font-size: 1.428em;
}

.huawei-join-condition table tr {
    background-color: #eeeff4;
}

.huawei-join-condition table tr:nth-of-type(odd) {
    background-color: #f4f5f7;
}

.huawei-join-condition table tr td, .huawei-join-condition table tr th {
    width: 33.3333%;
    padding: 1.143em .5em;
    border: none;
    text-align: center;
}

.huawei-join-condition table tr th {
    background-color: #474a57;
    color: white;
}

.huawei-join-condition table tr th .icon {
    display: inline-block;
    margin-right: .2em;
    font-size: 1.2em;
    color: #ffa114;;
}

.huawei-join-condition table tr td a {
    display: inline-block;
    padding: .5em 1em;
    font-size: .857em;
    background-color: #ff6a00;
    color: white;
}

/* 华为云经销商注册流程 第一版 begin */
/*.huawei-reg-process .label p {*/
/*    font-size: 1rem;*/
/*}*/

/*.huawei-reg-process .tab-list {*/
/*    margin-bottom: 2.286em;*/
/*    background-color: white;*/
/*}*/

/*.huawei-reg-process .tab-content dl {*/
/*    padding: 2.286em;*/
/*    background-color: white;*/
/*}*/

/*.huawei-reg-process .tab-content dl dt {*/
/*    margin-bottom: 1rem;*/
/*    font-size: 1.143em;*/
/*    line-height: 1.5em;*/
/*}*/

/*.huawei-reg-process .tab-content dl dd {*/
/*    margin-bottom: .857em;*/
/*    color: #969bab;*/
/*}*/

/*.huawei-reg-process .tab-content dl dd.link {*/
/*    color: #0080ff;*/
/*}*/

/*.huawei-reg-process .tab-content dl dd i.icon {*/
/*    margin-right: .5em;*/
/*    line-height: 1.35em;*/
/*    font-size: 1.143em;*/
/*    color: #ff6a00;*/
/*}*/

/*.huawei-reg-process .tab-content dl dd.link i.icon {*/
/*    margin-right: .25em;*/
/*    font-size: 1.2em;*/
/*    color: inherit;*/
/*    line-height: 1.25em;*/
/*}*/

/*.huawei-reg-process .tab-content dl dd.link a {*/
/*    text-decoration: underline;*/
/*}*/

/*.huawei-reg-process .tab-content dl dd.thumb img {*/
/*    max-width: 100%;*/
/*}*/

/*.huawei-reg-process .tab-content dl dd p {*/
/*    margin-bottom: 0;*/
/*    line-height: 1.714em;*/
/*}*/
/*华为云经销商注册流程 第一版 end*/

/* 华为云经销商注册流程 第二版 begin */
.huawei-reg-process .label p {
    font-size: 1rem;
}

.huawei-reg-process .process .flow {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: space-around;
}

.huawei-reg-process .process .flow .flow-item {
    position: relative;
    width: 168px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.huawei-reg-process .flow .flow-item .flow-item-img {
    padding: 8px;
    background: #e7e7e7;
    border-radius: 10px;
}

.huawei-reg-process .flow .flow-item .flow-item-img:before {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 20px;
    right: -20%;
    content: '';
    background-image: url('../images/arrow-right.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.huawei-reg-process .flow .flow-item:last-child .flow-item-img:before {
    display: none;
}

.huawei-reg-process .flow .flow-item .flow-item-img img {
    height: 2.6rem;
    width: 2.6rem;
}

.huawei-reg-process .flow .flow-item .flow-item-title {
    margin-top: 17px;
    margin-bottom: 8px;
    color: #333;
    text-align: center;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-weight: bold;
}

.huawei-reg-process .flow .flow-item .flow-item-desc a {
    font-size: 14px;
    color: #ed732e;
}

.huawei-reg-process .flow .flow-item .flow-item-desc p {
    text-align: center;
    font-size: 14px;
}

.huawei-reg-process .step .step-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #d8d8d8;
    padding-top: 10px;
}

.huawei-reg-process .step .step-item .title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.huawei-reg-process .step .step-item label {
    font-size: 24px;
    color: #333;
}

.huawei-reg-process .step .step-item .title p {
    display: inline-block;
    font-size: 12px;
    color: #333;
    padding: 10px 0;
    text-align: center;
} 

.huawei-reg-process .step .step-item .content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: top;
}

.huawei-reg-process .step .step-item .content .huawei-join-code {
    width: 100px;
    height: 100px;
    margin-left: 20px;
}

.huawei-reg-process .step .step-item .content img {
    height: auto;
    width: 100%;
    box-shadow: 1px 1px 1px #f1f1f1;
}

.huawei-reg-process .step .step-item .content label {
    padding-bottom: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.huawei-reg-process .step .step-item .content label img {
    height: 32px;
    width: 32px;
}

.huawei-reg-process .step .step-item .content a {
    color: #ed732e;
}

.huawei-reg-process .step .step-item .content ul {
    list-style: square;
}

.huawei-reg-process .step .step-item .content ul li {
    margin: 6px 0;
}

.huawei-reg-process .step .step-item table {
    width: 80%;
    text-align: center;
    border: 1px solid #d9dbe1;
}

.huawei-reg-process .step .step-item table th,
.huawei-reg-process .step .step-item table tr.org td {
    height: 48px;
    background: #ff6a00;
    line-height: 48px;
    color: white;
    font-size: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.16);
}

.huawei-reg-process .step .step-item table tr {
    background: #eeeff4;
    height: 45px;
    line-height: 40px;
    color: #474a57;
    border: 1px solid #d9dbe1;
    font-size: 12px;
}

.huawei-reg-process .step .step-item table tr:nth-child(2n) {
    background: #f4f5f7;
}

.huawei-reg-process .step .step-item table tr td.tit {
    background: #f9fafe;
    font-size: 14px;
}

.huawei-reg-process .step .step-item table tr td.blue {
    color: #06CA83;
}

.huawei-reg-process .step .step-item table tr a {
    color: #398ade;
    text-decoration: underline;
}
/* 华为云注册流程 第二版 end */

.huawei-stack-challenge .row > div img {
    display: block;
    width: 4.571em;
    height: 4.571em;
    margin: 8% auto;
}

.huawei-stack-challenge .row > div b {
    display: block;
    font-size: 1.286em;
    font-weight: bold;
    text-align: center;
}

.huawei-stack-challenge .row > div p {
    margin: .571em 0 0;
    color: #969bab;
    text-align: center;
}

.huawei-stack-scene .tab-pane {
    margin-top: 2em;
}

.huawei-stack-scene .tab-pane .info {
    padding: 5% 5% 2%;
    background-color: #fdfdfd;
    border: 1px solid #f4f5f7;
}

.huawei-stack-scene .tab-pane .info b {
    display: block;
    font-size: 1.143em;
    font-weight: bold;
}

.huawei-stack-scene .tab-pane .info b::before {
    content: '';
    display: inline-block;
    height: 1em;
    margin-right: .5em;
    border-left: 4px solid #ff6a00;
    vertical-align: -.1em;
}

.huawei-stack-scene .tab-pane .info p {
    margin-top: 1em;
    color: #969bab;
    line-height: 1.714em;
}

.huawei-stack-scene .tab-pane .info a {
    display: inline-block;
    padding: 1rem 2em;
    font-size: 1.143em;
    background-color: #ff6a00;
    color: #fff;
}

.huawei-stack-scene .tab-pane .info-2 {
    margin-left: 2em;
    padding: 2.5%;
    background-color: white;
}

.huawei-stack-scene .tab-pane .info-2 b {
    display: block;
    font-size: 1.143em;
    line-height: 1.5em;
}

.huawei-stack-scene .tab-pane .info-2 p {
    margin: .857em 0;
    color: #969bab;
    line-height: 1.714em;
}

.huawei-stack-scene .tab-pane .info-2 dl {
    margin: 1.714em 0;
    padding-top: 1.714em;
    border-top: 1px solid #eeeff4;
}

.huawei-stack-scene .tab-pane .info-2 dl dd {
    margin: .857em 0 0;
    line-height: 1.714em;
}

.huawei-stack-scene .tab-pane .info-2 dl dd i {
    margin-right: .25em;
    font-size: 1.143em;
    color: #ff6a00;
}

.huawei-stack-scene .tab-pane .info-2 dl dd em {
    display: block;
    font-style: normal;
}

.huawei-stack-scene .tab-pane .info-2 dl dd span {
    display: block;
    margin-top: .5em;
    padding-left: 1.35em;
    color: #969bab;
}

.huawei-stack-cases .tab-pane .info {
    background-color: white;
    border: none;
}

.huawei-stack-scene .tab-pane img {
    max-width: 58%;
    object-fit: contain;
    background-color: white;
}

.huawei-stack-scene.large-bandwidth-scene .tab-pane img {
    max-width: 50%;
}

.huawei-stack-cases .row > div img {
    display: block;
    width: 100%;
}

.scene .row {
    margin-top: 2em;
}

.terms .breadcrumb {
    margin: .75em 0;
    padding-left: 0;
    background-color: transparent;
}

.terms article {
    background-color: white;
}

.terms article > h2 {
    font-size: 1.714em;
}

.terms article > span {
    font-size: .857em;
    color: #969bab;
}

.terms article .content {
    color: #474a57;
    border-top: 1px dashed #eee;
}

.terms article .content p {
    margin-bottom: .5em;
}

.terms article .content .signature {
    font-size: 1.25em;
    font-weight: bold;
    color: #18191f;
}

.terms article .content .signature p {
    margin-bottom: 0;
}

.large-bandwidth .row {
    margin-left: -8px;
    margin-right: -8px
}

.large-bandwidth .row > div {
    padding-right: 8px;
    padding-left: 8px;
    margin-bottom: 16px;
}

.large-bandwidth .row > div .item {
    padding: 0.857em;
    background-color: white;
}

.large-bandwidth .row > div .item .thumb img {
    display: block;
    width: 100%;
    height: 6.071em;
    object-fit: cover;
}

.large-bandwidth .row > div .item .info .title {
    margin-top: 0.75em;
    margin-bottom: 1.5em;
}

.large-bandwidth .row > div .item .info .title b {
    font-size: 1.286em;
    font-weight: bold;
}

.large-bandwidth .row > div .item .info .title b::before {
    content: '';
    display: inline-block;
    height: 1em;
    margin-right: .5em;
    border-right: 4px solid #ff6a00;
    vertical-align: -.15em;
}

.large-bandwidth .row > div .item .info .title p {
    padding-top: .5em;
    padding-left: 1em;
    color: #474a57;
}

.large-bandwidth .row > div .item .info > p span {
    display: inline-block;
    width: 6em;
    color: #969bab;
}

.large-bandwidth .row > div .item .info > p span::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: .5em;
    background-color: #ff6a00;
    border-radius: 2px;
    vertical-align: .25em;
}

.large-bandwidth .row > div .item .button {
    display: block;
    height: 3em;
    margin-top: 1.5em;
    font-size: 1.143em;
    line-height: 3em;
    text-align: center;
    color: white;
    background-color: #ff6a00;
    border-radius: 2px;
}

.large-bandwidth .row > div .item .button::after {
    content: "";
    display: inline-block;
    width: 1.714rem;
    height: 1.714rem;
    margin-left: .5em;
    background: url(../images/arrow_right.svg) no-repeat center / contain;
    vertical-align: -.35em;
}

.trial_bot {
    background: #0B0D17;
    width: 100%;
}

.trial_bot ul {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #474a57;
    padding: 2rem 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.trial_bot ul li {
    overflow: hidden;
}

.trial_bot ul li .pic {
    display: block;
    width: 2.429rem;
    height: 2.429rem;
    float: left;
}

.trial_bot ul li .pic img {
    max-width: 100%;
}

.trial_bot ul li .txt {
    display: block;
    padding-left: 1rem;
    float: left;
    color: white;
    font-size: 0.857rem;
}

.trial_bot ul li .txt p {
    margin-bottom: 0;
    opacity: 0.4;
}

footer {
    background-color: #0b0d17;
    color: #969bab;
}

footer .foot-slogan {
    padding: 3em 0;
    margin-bottom: 3em;
    border-bottom: 1px solid #20222a;
}

footer .foot-slogan p {
    color: #969bab;
}

footer .foot-slogan p b {
    display: block;
    font-size: 2em;
    color: white;
}

footer .foot-slogan form {
    padding: 3px;
    background-color: #2f313a;
    border-radius: 3px;
}

footer .foot-slogan form input {
    width: 250px;
    max-width: 75%;
    border: none;
    outline: none;
    background: transparent;
    color: inherit;
    text-indent: 0.5em;
}

footer .foot-slogan form button {
    height: 3.4em;
    padding: 0 1.25em;
    border: none;
    background-color: #ff6a00;
    border-radius: 2px;
    color: #f4f5f7;
}

footer .foot-brand {
    width: 24.5%;
}

footer .foot-brand .logo::before {
    content: '\e620';
    font-size: 2.8em;
    line-height: 1.4em;
    color: #ff6a00;
    vertical-align: middle;
}

footer .foot-brand .logo::after {
    content: '\e62c';
    font-size: 1.75em;
    color: #f4f5f7;
    vertical-align: middle;
}

footer .foot-brand p {
    max-width: 220px;
    margin: 1em 0 1.5em;
    font-size: .9em;
    line-height: 2em;
}

footer .foot-brand .qr {
    display: inline-block;
    text-align: center;
    position: relative;
}

footer .foot-brand .qr .show-a{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .foot-brand .qr .ewm{
    position: absolute;
    width: 120px;
    left: 0;
    top: 105%;
    display: none;
    z-index: 9;
    background: white;
    padding: 6px;
    border: 1px solid #d9dbe1;
    border-radius: 4px;
    text-align: center;
}

footer .foot-brand .qr:nth-of-type(2){
    margin-left: 12px;
}

footer .foot-brand .qr:last-child {
    margin-left: 12px;
}

footer .foot-brand .qr .show-a img {
    display: block;
    width: 24px;
    height: 24px;
}

footer .foot-brand .qr .ewm img{
    width: 100%;
}

footer .foot-brand .qr .ewm p{
    margin: 4px 0 0 0;
    font-size: 0.8em;
    line-height: 1;
}

footer .foot-brand .qr span {
    display: block;
    font-size: .85em;
    line-height: 2em;
    text-align: center;
}

footer .foot-contact {
    width: 24.5%;
}

footer .foot-contact dt {
    margin-bottom: 2em;
    font-size: 1.15em;
    color: #f4f5f7;
}

footer .foot-contact dd {
    margin-bottom: 1em;
}

footer .foot-contact dd span {
    display: block;
    margin-bottom: 0.5em;
    font-size: .9em;
}

footer .foot-contact dd a {
    font-size: 1.25em;
    color: #f4f5f7;
}

footer .foot-contact dd a.email {
    font-size: 1em;
}

footer .foot-contact dd i {
    display: inline-block;
    padding: 0 .35em;
    margin-left: .35em;
    font-style: normal;
    font-size: .85em;
    line-height: 1.7em;
    color: #ff6a00;
    border: 1px solid #ff6a00;
    border-radius: 2px;
    vertical-align: 2px;
}

footer .foot-contact dd small {
    font-size: .85em;
}

footer .foot-contact dd > .toushu {
    display: flex;
    position: relative;
}

footer .foot-contact dd > .toushu > .toushu_wrapper > a {
    font-size: .94em;
    cursor: pointer;
}

footer .foot-contact dd > .toushu > .toushu_wrapper > a:hover {
    color: #ff6a00;
    text-decoration: underline;
}

footer .foot-contact dd > .toushu > .toushu_wrapper:not(:first-child) > a{
    margin-left: 2em;
}

footer .foot-contact dd > .toushu .weichat_complain {
    display: none;
    position: absolute;
    left: 3.6em;
    bottom: 90%;
    width: 120px;
    background: #fff;
    padding: 6px;
    border: 1px solid  #d9dbe1;
    border-radius: 4px;
    text-align: center;
}

footer .foot-contact dd > .toushu .weichat_complain img {
    width: 100%;
}

footer .foot-contact dd > .toushu .weichat_complain span {
    margin-top: 4px;
    font-size: 0.8em;
    line-height: 1;
}

footer .foot-nav dt {
    margin-bottom: 2em;
    font-size: 1.15em;
    color: #f4f5f7;
}

footer .foot-nav dd {
    margin-bottom: 1em;
}

footer .foot-links {
    background-color: #181920;
}

footer .foot-links .container p {
    margin-bottom: 0;
    padding: 1.429em 0;
    font-size: .857em;
    line-height: 1.5em;
    color: #969bab;
    border-bottom: 1px solid #20222a;
}

footer .foot-links span {
    margin-right: .5em;
}

footer .foot-links a:not(:last-child)::after {
    content: '';
    display: inline-block;
    height: .9em;
    margin: 0 .85em 0 1em;
    border-right: 1px solid;
    vertical-align: -.1em;
    color: #969bab;
}

footer .foot-bar {
    padding: 1.429em 0;
    font-size: .857em;
    line-height: 1.5em;
    background-color: #181920;
}

footer .foot-bar p {
    margin-bottom: 0;
    line-height: 1.5em;
}

footer .foot-bar .icp p:not(:first-child) {
    margin-left: 1em;
}

footer .foot-bar p .icon-ga {
    width: 1.35em;
    margin-right: .25em;
    vertical-align: -.25em;
}

.online-service {
    position: fixed;
    right: 2em;
    bottom: 2em;
    padding: .857em 2.5em 1.428em .857em;
    background-color: white;
    border-radius: 8px;
    box-shadow: -15px 30px 40px 0px rgba(212, 217, 232, 0.20), 15px -30px 40px 0px rgba(212, 217, 232, 0.20);
    z-index: 10;
}

.online-service .head {
    position: relative;
    width: 5.714em;
    height: 5.714em;
}

.online-service .head > div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.online-service .head .bg-1 {
    background: url(../images/triangle@2x.png) no-repeat center / contain;
    animation: whirling 3s linear infinite;
}

.online-service .head .bg-2 {
    background: url(../images/circular@2x.png) no-repeat center / contain;
    animation: whirling 3s linear infinite;
    z-index: 11;
}

.online-service .head .avatar {
    background: url(../images/head@2x.png) no-repeat center / contain;
    z-index: 12;
}

.online-service i.close-line {
    position: absolute;
    top: .5em;
    right: 1em;
    padding: .5em 0;
    cursor: pointer;
}

.online-service i.close-line::after {
    content: '';
    display: block;
    width: 1em;
    height: 2px;
    border-radius: 1px;
    background-color: #d9dbe1;
}

.online-service p {
    padding: .25em 0;
    font-size: 1.286em;
    color: #969bab;
}

.online-service p em {
    color: #ff6a00;
    font-weight: bold;
    font-style: normal;
}

.online-service .btn {
    display: block;
    padding: .429em 1.5em;
    font-size: 1.143em;
    line-height: 1.5em;
    border: 2px solid #ff6a00;
    border-radius: 4px;
    color: #ff6a00;
    text-align: center;
}

.online-service .btn.btn-fill {
    margin-right: 1em;
    background-color: #ff6a00;
    color: white;
}

.fn-bar {
    position: fixed;
    right: 2em;
    bottom: 2em;
    transition-duration: 300ms;
    z-index: 5;
}

.online-service.d-flex + .fn-bar {
    bottom: 15em;
}

.fn-bar ul li {
    width: 3.429em;
    height: 3.429em;
    margin-top: .857em;
    border-radius: 4px;
    background-color: #ff6a00;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.fn-bar ul li.gotop::before {
    content: '\4e0b';
    display: block;
    width: 1em;
    height: 1.3em;
    margin: .7em auto -.35em;
    font-family: "jiyun" !important;
    font-style: normal;
    color: white;
    border-bottom: 2px solid;
    transform: rotate(180deg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fn-bar ul li.gotop::after {
    content: '\0054\004f\0050';
    display: inline-block;
    font-weight: bold;
    color: white;
}

.fn-bar ul li.unfold {
    position: relative;
}

.online-service.d-flex + .fn-bar ul li.unfold {
    display: none;
}

.fn-bar ul li.unfold::before {
    content: '\e616';
    display: block;
    margin-top: .7em;
    font-size: 1.15em;
    font-family: "jiyun" !important;
    font-style: normal;
    color: white;
    transform: rotate(45deg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
}

/**pc**/

@media (min-width: 768px) {
    html {
        font-size: 14px;
    }

    .scene .item {
        margin-top: 0;
    }

    header:hover {
        height: auto;
        background-color: black;
        box-shadow: 0px 1px 0px 0px #e5e9f2;
    }

    header.light:not(.expand):not(:hover) .top .logo::after {
        color: white;
    }

    header.light:not(.expand):not(:hover) .top nav {
        color: white;
    }
    
    header.light:not(.expand):not(:hover) .top .right a {
        color: white;
    }
}

/**mobile**/

@media (max-width: 767.98px) {
    html {
        font-size: 13px;
    }

    header {
        height: 44px;
    }

    header.light:not(.expand) .top .logo::after {
        color: white;
    }

    header.light:not(.expand) .top nav {
        color: white;
    }

    header .top {
        padding: 4px 0;
    }

    header .login {
        display: inline-block;
        width: 22px;
        height: 22px;
        margin: 7px 15px 0 0;
        border-radius: 11px;
        vertical-align: top;
    }

    header .login img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

    header .login img + .icon {
        display: none;
    }

    header .login .icon {
        font-size: 22px;
        line-height: 1em;
        color: #ff6a00;
    }

    header .menu-btn {
        padding-top: 12px;
        display: inline-block;
        vertical-align: top;
    }

    header .menu-btn span {
        display: block;
        width: 18px;
        height: 2px;
        margin-bottom: 3px;
        background-color: #474a57;
        border-radius: 3px;
        -webkit-transform-origin: 20px;
        transform-origin: 16px;
        -webkit-transition: background-color .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, width .5s, -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
        transition: background-color .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, width .5s, -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
        transition: background-color .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, transform .5s cubic-bezier(.77, .2, .05, 1), width .5s;
        transition: background-color .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, transform .5s cubic-bezier(.77, .2, .05, 1), width .5s, -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
    }

    header.expand .menu-btn span {
        opacity: 1;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    header.expand .menu-btn span:nth-last-child(2) {
        width: 0;
        opacity: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition: width .5s;
        transition: width .5s;
    }

    header.expand .menu-btn span:nth-last-child(3) {
        opacity: 1;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    header.light:not(.expand) .menu-btn span {
        background-color: white;
    }

    header .dropdown .activity {
        width: 100%;
        padding-left: 0;
    }

    header .dropdown .activity a.gifts::before {
        position: unset;
        margin-right: .2em;
        background-image: url(../images/gift@2x.png);
        background-size: contain;
        vertical-align: -0.25em;
    }

    header .dropdown .dropdown-nav {
        width: 100%;
    }

    .fill-header {
        margin-top: 44px !important;
    }

    .banner .swiper-slide {
        height: 400px;
        background-position: 60% 50%;
    }

    .banner .swiper-pagination {
        bottom: 1em;
    }

    .banner-inner b {
        font-size: 2.5em;
    }

    .banner-min .banner-inner b {
        font-size: 2em;
    }

    .intro {
        transform: unset;
    }

    .intro .row > div {
        margin-top: 1em;
    }

    .common {
        padding-bottom: 2em;
    }

    .common .label {
        padding-top: 2em;
    }

    .common .label b {
        font-size: 2em;
    }

    .domain-search {
        margin-top: 0;
        background-position-x: 50%;
    }

    .domain-search form button {
        width: 28%;
        height: 3.6rem;
    }

    .data-center .swiper-slide {
        width: 100%;
        margin-right: 0;
    }

    .data-center .swiper-button-next, .data-center .swiper-button-prev {
        display: none;
    }

    .approve .slider {
        margin: 0 0 1em;
    }

    .approve .slider .swiper-slide {
        width: 47%;
        margin-right: 6%;
    }

    .approve .slider .swiper-button-next, .approve .slider .swiper-button-prev {
        display: none;
    }

    .approve ul li {
        width: 50%;
    }

    .success-cases ul li {
        width: 50%;
    }

    .serivce-advance .item {
        padding: 20% 0;
    }

    .serivce-process .item {
        width: 50%;
    }

    .serivce-process .item:nth-child(2n)::after {
        content: unset;
    }

    .banner-min {
        background-position-x: 60% !important;
    }

    .banner-min .banner-data-center b {
        font-size: 2em;
    }

    .vps .step i {
        margin: 0 1em;
    }

    .server-features .item {
        padding: 2em;
        margin-bottom: 1em;
    }

    .server-features .item img {
        margin-right: 1.5em;
    }

    .huawei-products ul li .info {
        width: 100%;
    }

    .huawei-scene .servers .item {
        margin-top: 1em;
    }

    .huawei-stack-scene .tab-pane .info-2 {
        padding: 1em;
        margin-left: 0;
    }

    .huawei-stack-scene .tab-pane img {
        width: 100%;
        max-width: unset !important;
    }

    .referral-reward {
        height: auto;
    }

    .referral-reward .step .item .info {
        margin-left: 3em;
    }

    .server-optional .group .title {
        width: 100%;
        height: 2.5em;
    }

    .server-optional .group .panel .fn {
        max-width: 100%;
    }

    .server-optional .group .panel .radios label input[type=radio] + i {
        min-width: 8em;
    }

    .server-optional .result dl dd p {
        width: 100%;
    }

    .server-optional .result dl dd p span {
        width: 5.5em;
        padding-right: .5em;
        text-align: right;
    }

    footer .foot-slogan {
        padding: 2em 0;
        margin-bottom: 2em;
    }

    footer .foot-slogan p b {
        font-size: 1.6em;
    }

    footer .foot-slogan form {
        width: 100%;
    }

    footer .foot-brand {
        width: 100%;
    }

    footer .foot-contact {
        width: 100%;
        margin-top: 1em;
    }

    footer .foot-contact dt {
        margin-bottom: 1em;
    }

    footer .foot-nav {
        width: 50%;
    }

    footer .foot-nav dt {
        margin-bottom: 1em;
    }

    footer .foot-nav dd {
        margin-bottom: .5em;
    }

    .online-service {
        right: 1em;
        bottom: 1em;
        left: 1em;
    }

    .online-service p {
        font-size: 1.25em;
    }

    .fn-bar {
        right: 15px;
        bottom: 15px;
    }

    .trial_bot ul li .pic {
        float: none;
        margin: 0 auto;
    }

    .trial_bot ul li .txt {
        float: none;
        text-align: center;
        padding: 0;
    }
}

.notice_list .box {
    padding: 1rem 80px;
    position: relative;
    background-color: #f5f5f5;
    border-radius: 8px
}

.notice_list .icon {
    position: absolute;
    left: 40px;
    top: 1rem
}

.notice_list .more {
    position: absolute;
    right: 40px;
    top: 1rem
}

.notice_list .item {
    float: left;
    width: calc(33.3% - 20px);
    margin-right: 20px;
}

.notice_list .item:last-child {
    margin-right: 0
}

@media (max-width: 750px) {
    .notice_list {
        padding-top: 80px
    }

    .notice_list .icon {
        left: 20px;
    }

    .notice_list .more {
        right: 20px;
    }

    .notice_list .box {
        padding: 1rem 60px;
    }

    .notice_list .item {
        float: left;
        width: 100%;
        margin-right: 0
    }
}

.new_menu {
    padding-bottom: 1rem
}

.keywords_list {
    background: #fff;
    margin-bottom: 2rem;
    padding-bottom: 1rem
}

.keywords_list a {
    padding: 4px 10px;
    border: 1px solid #ddd;
    margin: 10px;
    border-radius: 4px;
}

.search-box {
    flex: 1;
    text-align: right;
    min-width: 50%;
    margin-top: -0.5rem;
    margin-right: -15px
}

.search-box input {
    border: none;
    background: #fff;
    width: 70%;
    padding: 0.5rem 2rem;
    border-radius: 4px;
    min-width: 200px;
}

.search-box button {
    border: none;
    background: #ff6a00;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 4px;
}

@media (max-width: 750px) {
    .search-box {
        display: flex;
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        text-align: center;
        justify-content: center
    }

    .search-box input, .search-box button {
        margin-top: 20px;
    }
}

/*server-liucheng*/
.server-liucheng {
    text-align: center;
    padding: 60px 0;
}

.server-liucheng div {
    width: 20%;
    position: relative;
}

.server-liucheng div:after {
    content: '........';
    position: absolute;
    left: 100%;
    top: 20%;
    font-size: 1.5rem;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    color: #ff6a00;
    font-weight: bold;
}

.server-liucheng div:last-child:after {
    display: none;
}

.server-liucheng span {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-weight: bold;
}

.server-liucheng img {
    margin: 0 auto;
}

/*server-liucheng end*/
/*浮窗*/
.rightWindow {
    position: fixed;
    top: 20%;
    right: 10px;
    width: 60px;
    height: 400px;
    z-index: 99;
}

.rightWindow .activity {
    width: 40px;
    display: block;
    border-radius: 4px;
    text-align: center;
    margin: 0 auto 10px;
}

.rightWindow .activity img {
    margin: 0 auto;
}

.rightWindow .chat {
    width: 60px;
    margin: 0 auto;
    position: relative;
    display: block;
    text-align: center;
}
.rightWindow img{
    max-width: 40px;
    margin: 0 auto;
}
.rightWindow .chat span {
    width: 40px;
    height: 22px;
    background: linear-gradient(110deg, #706eff, #c275ff 100%);
    border-radius: 4px;
    position: absolute;
    left: 50%;
    margin-left: -28px;
    bottom: 0;
    font-size: 12px;
    line-height: 22px;
    color: white;
    text-align: center;
}

.rightWindow .server {
    padding: 10px;
    background: #353535;
    border-radius: 4px;
    color: white;
    text-align: center;
    width:40px;
    display: block;
    margin: 10px auto;
    font-size: 16px;
    position: relative;

}

.rightWindow .server img {
    margin-left: -2px;
}

.rightWindow .server:hover {
    color: white;
}

.rightWindow .top {
    width: 40px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #d9dbe1;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #969BAB;
    font-size: 12px;
}

.rightWindow .cart{
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #d9dbe1;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
    text-align: center;
    color: #969BAB;
    font-size: 12px;
}

.rightWindow .cart img{
    height: 20px;
    width: 20px;
    display: block;
    /*margin: 4px auto 0;*/
}

.rightWindow .top img {
    display: block;
    margin: 4px auto 0;
}

.rightWindow #serverbox {
    display: none;
    top: -50px;
    position: absolute;
    right: 100%;
    padding-right: 10px;
}

.rightWindow #serverbox .info {
    width: 300px;
    background: #f4f6f6;
    box-shadow: 0px 13.51px 27.03px 0px rgba(41, 41, 42, 0.07);
}

.rightWindow #serverbox .info .hd {
    width: 100%;
    height:3em;
    background: #353535;
    padding: 0px 10px;
    line-height:3em;
    color: #F4F5F7;
    font-size: 20px;
    box-shadow: 0px 13.51px 27.03px 0px rgba(41, 41, 42, 0.07);
}

.rightWindow #serverbox .info .hd span {
    font-size: 16px;
}

.rightWindow #serverbox .info .box {
    padding: 0 10px;
    color: #18191F;
    margin-top: 10px;
}

.rightWindow #serverbox .info .box p {
    text-align: left;
    font-size: 12px;
    font-weight: bold;
}

.rightWindow #serverbox .info .box .item {
    margin-right: 25px;
    position: relative;
    font-size: 14px;
    font-weight: bold;
}

.rightWindow #serverbox .info .box .item:last-child {
    margin-right: 0;
}

.rightWindow #serverbox .info .box .item .ewm {
    position: absolute;
    width: 120px;
    left: 0;
    top: 105%;
    display: none;
    z-index: 9;
    background: white;
    padding: 10px;
    border: 1px solid #d9dbe1;
    border-radius: 4px;
    text-align: center;

}

.rightWindow #serverbox .info .box .item .ewm img {
    max-width: 100%;
}

.rightWindow #serverbox .info .box .item .ewm p {
    margin: 0;
    color: #474A57;
    text-align: center;
}

.rightWindow #serverbox .info .box .item .org {
    color: #ff6a00;
    text-decoration: underline;
}

.rightWindow #serverbox .info .btm {
    background: white;
    padding: 16px 24px;
    margin-top: 24px;
}

.rightWindow #serverbox .info .btm a {
    width: 164px;
    height: 40px;
    background: #ff6a00;
    color: white;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
}

.rightWindow #serverbox .info .btm a:last-child {
    background: #fff0e4;
    color: #ff6a00;
}

@media (max-width: 767.98px) {
    .rightWindow {
        right: 0;
    }

    .rightWindow #serverbox {
        padding-right: 4px;
        top: -100%;
    }

    .rightWindow #serverbox .info {
        width: 270px;

    }

    .rightWindow #serverbox .info .hd {
        line-height: unset;
        padding: 10px;
        height: unset;
    }

    .rightWindow #serverbox .info .hd span, .rightWindow #serverbox .info .hd strong {
        font-size: 1rem;
    }

    .rightWindow #serverbox .info .box {
        padding: 10px;
        margin: 0;
    }

    .rightWindow #serverbox .info .box .item {
        margin-right: 1rem;
    }

    .rightWindow #serverbox .info .btm {
        margin: 0;
        padding: 10px;
    }

    .rightWindow #serverbox .info .btm a {
        width: 48%;
        height: 2rem;
        line-height: 2rem;
    }
}

/*浮窗*/

/*protab*/
.protab {
    max-width: 915px;
    margin: 0 auto 2.5em;
    background: #e7e9ee;
    border-radius: 2px;
    padding: 6px;
}

.protab a {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 4rem;
    font-size: 16px;
    color: #474A57;

}

.protab a.active {
    background: #f4f5f7;
    border-radius: 2px;
    color: #ff6a00;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 767.98px) {
    .protab a, .protab a.active {
        line-height: 3rem;
        font-size: 14px;
        width: 50%;
    }
}

/*protab end*/

/*guarantee*/
.guarantee .modal-content {
    padding: 1rem;
}

.guarantee .modal-header {
    border: none;
    padding: 1rem 2rem;
}

.guarantee .modal-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.guarantee .modal-title em {
    font-style: normal;
    color: #ff6a00;
}

.guarantee .modal-header .close {
    border: 1px dashed #ccc;
    padding: 4px 0.5rem;
    margin: 0;
}

.guarantee .guarantee_form {
    width: 50%;
    padding: 1rem;
}

.guarantee .guarantee_form b {
    width: 50%;
    color: #969BAB;
    font-weight: normal;

}

.guarantee .guarantee_form .fn {
    width: 50%;
}

.guarantee .guarantee_form .object {
    margin-bottom: 1rem;
}

.guarantee .guarantee_form label {
    margin-right: 2rem;
    color: #474A57;
    font-size: 12px;
    position: relative;
}

.guarantee .guarantee_form label:last-child {
    margin-right: 0;
}

.guarantee .guarantee_form label input[type=checkbox] + i, .guarantee .guarantee_form label input[type=radio] + i {
    border-color: #C4C4C4;
    margin-right: 4px;
}

.guarantee .guarantee_form label.imitate-select {
    width: 100%;
}

.guarantee .guarantee_form label input {
    border: 1px solid #eeeff4;
    padding: 0.5rem;
    color: #474A57;
    width: 100%;
    border-radius: 2px;
}

.guarantee .guarantee_form .full label {
    width: 100%;
}

.guarantee .guarantee_form label .captcha {
    position: absolute;
    right: 1rem;
    color: #359CFB;
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.guarantee .guarantee_form input[type=range] {
    width: 100%;
}

.guarantee .guarantee_form #qwes {
    background-color: red;
    height: 8px;
    position: absolute;
    z-index: 0;
    width: 0;
    top: 7px;
    left: 0;
    border-radius: 8px;
}

.guarantee .guarantee_form input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    position: relative;
    height: 18px;
    width: 18px;
    background: #fff;
    border-radius: 100%;
    margin-top: 10px;
}

.guarantee .guarantee_form input[type=range]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    background: red;
    border-radius: 100%;
    position: relative;
    margin-top: 10px;
}

.guarantee .guarantee_form input[type=range]::-moz-range-progress {
    background: red;
    height: 13px;
    border-radius: 10px;
}

.guarantee .guarantee_form .counter {
    margin-left: 4px;
}

.guarantee .guarantee_form .counter em {
    font-style: normal;
    color: #969BAB;
}

.guarantee .guarantee_form .counter input {
    padding: 4px;
    margin-right: 2px;
    width: 40px;
    height: 32px;
    border: 1px solid #eeeff4;
    border-radius: 2px;
    text-align: center;
}

.guarantee .guarantee_form button {
    width: 100%;
    border: none;
    height: 44px;
    background: #ff6a00;
    border-radius: 4px;
    color: white
}

.guarantee .info {
    width: 50%;
    padding: 1rem;
}

.guarantee .info h3 {
    font-weight: bold;
    font-size: 24px;
}

.guarantee .info .objects div {
    margin-top: 1rem;
    font-size: 14px;
    color: #474A57;
    width: 50%;
}

.guarantee .info .objects div em {
    font-style: normal;
    color: #ff6a00;
}

.guarantee .info .price {
    color: #ff6a00;
    font-weight: bold;
    font-size: 16px;
}

.guarantee .info .price span {
    color: #000;
    margin-top: 1rem;
}

.guarantee .info .price em {
    font-style: normal;
    font-size: 24px;
}

.guarantee .info .desc {
    margin-top: 1rem;
    padding: 1rem;
    background: #f4f5f7;
    border-radius: 4px;
    color: #474A57;
    font-size: 12px;
    line-height: 24px;
}

.guarantee .info .cards {
    margin-top: 1rem;
    /*width: 50%;*/
}

.guarantee .info .cards strong {
    display: block;
    font-size: 12px;
}

.guarantee .info .cards span {
    position: relative;
    /*display: block;*/
    /*font-size: 14px;*/
    font-size: 16px;
    font-weight: bold;
    color: #ff6a00;
    padding-left: 1rem;
    margin-top: 0.5rem;
    text-decoration: underline;
}

.guarantee .info .cards span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    background: '电话图片';
}

.guarantee .info .cards .ewm {
    width: 120px;
    border: 1px solid #ccc;
    text-align: center;
    padding: 10px;
    margin-top: 0.5rem;
}

.guarantee .info .cards img {
    max-width: 100%;
}

.guarantee .info .cards .ewm p {
    text-align: center;
    color: #474A57;
    margin: 0;
}

@media (max-width: 767.98px) {
    .guarantee .guarantee_form, .guarantee .info {
        width: 100%;
    }
}

/*guarantee end*/

/*safe_tab*/
.safe_tab1 .item {
    border: 1px solid #eeeff4;
    padding: 24px;
    text-align: center;
    height: 300px;
    margin-top: 1rem;
    background: white;
}

.safe_tab1 .item img {
    margin: 0 auto;
    display: block;
}

.safe_tab1 .item b {
    font-size: 18px;
    font-weight: bold;
    margin: 10px auto;
    display: block;
}

.safe_tab1 .item p {
    font-size: 14px;
    color: #969BAB;
    text-align: left;
}

.service.safe_tab2 table tr {
    line-height: 24px;
}

.service.safe_tab2 table td {
    padding: 2rem 1rem;
    text-align: left;
}
.service.safe_tab2 table tr td.tit{
    text-align: center
}
.service.safe_tab2 table tr td img{
    margin: 0 auto;
    display: block;
}
.service table tr td a {
    width: 90%;
    max-width: 124px;
    height: 32px;
    background: #ff6a00;

    display: block;
    margin: 1rem auto;
    text-align: center;
    color: white;
    line-height: 32px;
}

.service table tr td a img {
    margin-right: 4px;
}

.safe_tab_bg {
    background: url("../images/safe_tab4-bg.png") center top;
}

.safe_tab5 .item {
    width: 50%;
    background: white;
}

.safe_tab5 .item.txt {
    padding: 3rem;
}

.safe_tab5 .item.txt h4 {
    color: #18191F;
    font-size: 28px;
    position: relative;
    margin-bottom: 2em;
}

.safe_tab5 .item.txt h4:before {
    content: '';
    width: 30px;
    height: 2px;
    background: #ff6a00;
    left: 0;
    bottom: -1em;
    position: absolute;
}

.safe_tab5 .item.txt span {
    color: #969bab;

    font-size: 14px;
    line-height: 2rem;
}

.safe_tab6 .item {
    width: 50%;
}

.safe_tab6 .item.txt {
    max-width: 418px;
    border: 1px solid #eeeff4;
    padding: 2rem;
}

.safe_tab6 .item.txt strong {
    position: relative;
    padding-left: 1rem;
    font-size: 16px;
}

.safe_tab6 .item.txt strong:before {
    content: '';
    width: 4px;
    height: 16px;
    background: #ff6a00;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}

.safe_tab6 .item.txt p {
    color: #969bab;
    line-height: 2em;
    padding: 1rem;
    font-size: 14px;
}

.safe_tab6 .item.txt a {
    display: block;
    width: 8rem;
    height: 3rem;
    line-height: 3rem;
    color: white;
    text-align: center;
    margin-left: 1rem;
    margin-top: 1rem;
    background: #ff6a00;
}

.safe_tab7 .item {
    width: 50%;
    background: white;
}

.safe_tab7 .thumb {
    position: relative;
}

.safe_tab7 .item.txt {
    padding: 56px 56px 30px 56px;
    max-width: 100%;
}

.safe_tab7 .item.txt span {
    font-size: 16px;
    font-family: HYShangWeiShouShuW, HYShangWeiShouShuW-Regular;
    display: block;
    padding: 1rem;
}

.safe_tab7 .thumb .swiper-button-prev {
    width: 36px;
    height: 36px;
    position: absolute;
    background: url("../images/prev_icon.png") no-repeat center top;
    left: 40%;
    bottom: 30px;
    top: unset;
}

.safe_tab7 .thumb .swiper-button-next {
    width: 36px;
    height: 36px;
    position: absolute;
    background: url("../images/prev_icon.png") no-repeat center top;
    transform: rotate(180deg);
    right: unset;
    left: 45%;
    bottom: 30px;
    top: unset;
}

.safe_tab7 .thumb .swiper-button-prev:after, .safe_tab7 .thumb .swiper-button-next:after {
    display: none;
}

.safe_tab7 .thumb .c-bottom-wrap{
    display: flex;
    align-items: flex-end;
}

.safe_tab7 .thumb .c-bottom-wrap .swiper-pagination{
    position: relative;
    bottom: 0;
    width: 100px;
    text-align: left;
    color: #999;
    line-height: 1;
}

.safe_tab7 .thumb .c-bottom-wrap .swiper-pagination-current{
    font-size: 30px;
    color: #333;
}

.safe_tab7 .thumb .c-bottom-wrap .swiper-pagination-total{
    font-size: 14px;
}

.safe_tab7 .thumb .c-bottom-wrap .c-line-box{
    position: relative;
    margin-bottom: 5px;
    width: calc(100% - 200px);
    height: 1px;
    background: #dadada;
    overflow: hidden;
}

.safe_tab7 .thumb .c-bottom-wrap .c-line-box .c-line{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #de7a40;
}

.safe_tab7 .thumb .c-bottom-wrap .c-btn-box{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100px;
}

.safe_tab7 .thumb .c-bottom-wrap .c-btn-box .c-prev{
    width: 22px;
    height: 22px;
    background: url(../images/prev_icon.png) no-repeat left top / 100% auto;
}

.safe_tab7 .thumb .c-bottom-wrap .c-btn-box .c-next{
    width: 22px;
    height: 22px;
    background: url(../images/prev_icon.png) no-repeat left top / 100% auto;
    transform: rotate(180deg);
}

.safe_tab8 .item.txt {
    padding: 56px 56px 30px 56px;
    max-width: 100%;
    border: none;
    background: white;
}

.own_pro .left {
    width: 80px;
}

.own_pro img {
    width: 100%;
}
.own_obj .box{
    width: 48%;
    background: white;
    margin-top: 2rem;
}
.own_obj .tit {
    height: 56px;
    background: linear-gradient(90deg, #ed930c 0%, #ffab2e 100%);
    line-height: 56px;
    color: white;
    font-weight: bold;
    padding: 0 24px;
    width: 100%;
    font-size: 18px;
    position: relative;
}

.own_obj .tit.red {
    background: linear-gradient(90deg, #F4494E 0%, #FE783D 100%);
}
.own_obj .tit.sure:after{
    content:'';
    position: absolute;
    right: 16px;
    top: 18px;
    width: 24px;
    height: 24px;
    background: url("../images/sure.png") no-repeat center top;
}
.own_obj .tit img {
    margin-right: 0.5rem;
}
.own_obj .row >div{
    overflow: hidden;
}
.own_obj .info {
    background: white;
    width: 100%;
    padding: 24px;

    /*height: 350px;*/
}
.own_obj .info img{
    max-width: 100%;
}
.own_obj .info .item{
    width: 48%;
    line-height: 20px;
}
.own_obj .info .item strong{
    display: block;
    color: #18191f;
    font-size: 14px;
    margin-bottom: 12px;
}
.own_obj .info .item p{
    display: block;
    color: #969bab;
    font-size: 12px;
}
.own_obj a {
    background: linear-gradient(90deg, #ed930c 0%, #ffab2e 100%);
    line-height: 48px;
    display: block;
    height: 48px;
    text-align: center;
    width: 100%;
    color: white;
    font-weight: bold;
}
.own_obj a.red{
    background: linear-gradient(90deg, #F4494E 0%, #FE783D 100%);
}
.own_server_img{
    width: 100%;
}
.own_server div{
    width: 18%;
    max-width: 184px;
    text-align: center;
    background: linear-gradient(90deg,rgba(9,84,255,0.1) 0%, rgba(21,161,255,0.1) 100%);
    opacity: 0.8;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(9,84,255,0.2);
}
.own_server div:nth-child(2){
    background: linear-gradient(90deg,rgba(24,195,255,0.1) 0%, rgba(21,161,255,0.1) 100%);
    border-color: rgba(24,195,255,0.2);
}
.own_server div:nth-child(3){
    background: linear-gradient(90deg,rgba(24,176,72,0.1) 0%, rgba(27,208,91,0.1) 100%);
    border-color: rgba(24,176,72,0.2);
}
.own_server div:nth-child(4){
    background: linear-gradient(90deg,rgba(255,133,21,0.1) 0%, rgba(255,190,24,0.1) 100%);
    border-color: rgba(255,133,21,0.2);
}
.own_server div:nth-child(5){
    background: linear-gradient(90deg,rgba(255,38,24,0.1) 0%, rgba(255,21,77,0.1) 100%);
    border-color: rgba(255,38,24,0.2);
}

.own_tq .item{
    background: linear-gradient(90deg,rgba(255,106,0,0.1), rgba(255,106,0,0.00) 100%);
    max-width: 960px;
    margin: 1rem auto;
    padding: 1rem 1.5rem;
}
.own_tq .item em{
    font-size: 56px;
    font-weight: bold;
    color: #ff6a00;
    margin-right: 1.5rem;
}
.own_tq .item strong{
    font-size: 18px;
    color: #18191f;
}
.own_tq .item span{
    opacity: 0.44;
    margin-top: 0.5rem;
    color: #18191f;
    font-size: 14px;
}
@media (max-width: 767.98px) {
    .safe_tab1 .item {
        padding: 1rem;
    }

    .service.safe_tab2 table tr {
        line-height: unset;
    }

    .service.safe_tab2 table td {
        padding: 0.5rem;
    }

    .safe_tab5 .item {
        width: 100%;
    }

    .safe_tab5 .item.txt {
        padding: 1rem;
    }

    .safe_tab5 .item.txt h4 {
        font-size: 1.25rem;
    }

    .safe_tab6 .item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .safe_tab6 .item.txt {
        max-width: 100%;
        padding: 1rem;
    }

    .safe_tab6 .item.txt a {
        margin-top: 0;
    }

    .safe_tab7 .thumb .swiper-button-prev {
        left: 0rem;
        top: 50%;
    }

    .safe_tab7 .thumb .swiper-button-next {
        right: 0rem;
        top: 50%;
        left: unset;
    }
    .own_obj .box{
        width: 100%;
    }
    .own_server div{
        width: 48%;
        margin-bottom: 1rem;
        max-width: unset;
        padding: 10px;
    }
    .own_tq .item em{
        font-size: 3rem;
        margin-right: 1rem;
    }
    .own_tq .item{
        padding: 1rem;
    }
    .own_tq .item strong{
        font-size: 1rem;
    }
}

/*safe_tab end*/
/*advice start*/
#advice{
    margin: 40px auto;
}
#advice .control-label{
    color: #ff6600;
    /*font-weight: bold;*/
    display: block;
    margin-right: 10px;
    font-size: 1.15rem;
    min-width: 6rem;
    margin-bottom: 0;
}
#advice .form-group{
    margin-bottom: 4rem;
    line-height: 1;
}
#advice .lab{
 margin-right: 2rem;
 color: #474A57;
 line-height: unset;
 margin-bottom: 0;
 font-size: 1.15rem;
 line-height: 1.15rem;
 position: relative;
}
#advice .lab input{
   line-height: unset; 
}
#advice .lab input[type=radio] + i{
    border-color: #C4C4C4;
    margin-right: 4px;
}
#advice #dr_row_xingming,#advice #dr_row_lxfs{
    /*width: 48%;*/
    /*line-height: 2em;*/
}
#advice input{
    width: auto;
    font-size: 1.15rem;
    /* border-color: #ff6600; */
}
#advice textarea{
    /* border-color: #ff6600; */
    min-height: 200px;
    padding: 1rem;
       font-size: 1.15rem;
}
#advice button{
    background: #ff6600;
    color: white;
    /*margin-top: 4rem;*/
    width: 60%;
    max-width: 120px;
    font-weight: bold;
}
#advice #dr_row_tshjy{
    height: auto;
}
@media (max-width: 767.98px) {
    #advice label{
        width: 6rem;
    }
    #advice #dr_row_xingming,#advice #dr_row_lxfs{
        width: 100%;
    } 
}

#advice #dr_row_code input{
    width: 9em;
}
/*advice end*/

/*freetrial start*/
#freetrial{
    margin: 40px auto;
}
#freetrial .control-label{
    color: #ff6600;
    /*font-weight: bold;*/
    display: block;
    margin-right: 10px;
    font-size: 1.15rem;
    min-width: 6rem;
    margin-bottom: 0;
}
#freetrial .form-group{
    margin-bottom: 4rem;
    line-height: 1;
}
#freetrial .lab{
 margin-right: 2rem;
 color: #474A57;
 line-height: unset;
 margin-bottom: 0;
 font-size: 1.15rem;
 line-height: 1rem;
 position: relative;
}
#freetrial .lab input{
   line-height: unset; 
}
#freetrial .lab input[type=radio] + i{
    border-color: #C4C4C4;
    margin-right: 4px;
}
#freetrial #dr_row_name,#advice #dr_row_phone{
    /*width: 48%;*/
    /*line-height: 2em;*/
}
#freetrial input{
    width: auto;
    font-size: 1.15rem;
    /* border-color: #ff6600; */
}
#freetrial textarea{
    /* border-color: #ff6600; */
    min-height: 200px;
    padding: 1rem;
       font-size: 1.15rem;
}
#freetrial button{
    background: #ff6600;
    color: white;
    /*margin-top: 4rem;*/
    width: 60%;
    max-width: 120px;
    font-weight: bold;
}
#freetrial #dr_row_ywcj{
    height: auto;
}
@media (max-width: 767.98px) {
    #freetrial label{
        width: 6rem;
    }
    #freetrial #dr_row_name,#freetrial #dr_row_phone{
        width: 100%;
    } 
}
#freetrial #dr_row_code input{
    width: 9em;
}
/*freetrial end*/

/*机房规格信息表格 begin*/
.sku_info{
    background-color: #fff;
    padding: 2.3em;
}
.sku_info table {
    width: 100%;
    text-align: center;
}

.sku_info table th, .service table tr.org td {
    height: 48px;
    background: #ff6a00;
    line-height: 48px;
    color: white;
    font-size: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.16);
}

.sku_info table .org td {
    border: 0.5px solid rgba(255, 255, 255, 0.16);
}

.sku_info table tr {
    background: #eeeff4;
    height: 45px;
    line-height: 40px;
    color: #474A57;
    border: 1px solid #d9dbe1;
    font-size: 12px;
}

.sku_info table tr:nth-child(2n) {
    background: #f4f5f7;
}

.sku_info table tr td.tit {
    background: #f9fafe;
    font-size: 14px;
}

.sku_info table tr td.bule {
    color: #06CA83;
}

.sku_info .tips {
    margin-top: 1rem;
    color: #969BAB;
    font-size: 12px;
}

.sku_info .bot_online{
    border-top: 1px solid #e5e9f2;
    padding-top: 2em;
    margin-top: 2em;
}

.sku_info .bot_online a {
    display: block;
    margin: 0 auto;
    width: 14em;
    height: 3.4em;
    color: #ff6a00;
    background: #fff;
    border: 1px solid #ff6a00;
    border-radius: 4px;
    text-align: center;
    line-height: 3.4em;
}

.sku_info .bot_online a:hover {
    color: #fff;
    background: #ff6a00;
}

/*机房规格信息表格 end*/

.tab_menu {
	display: -webkit-box;
	border-bottom: 2px solid #ff6a00;
}

.tab_menu a {
	display: block;
	flex: 1;
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	color: #ff6a00;
	height: 3.571rem;
	line-height: 3.571rem;
	text-align: center;
}

.tab_menu a:hover, .tab_menu .active {
	background: #ff6a00;
	color: white;
}

/*加入我们 begin*/
.join .common b {
    font-size: 1.7em !important;
}

.join .reason .reason-item {
    height: 240px;
    margin: 0.2em;
    padding-top: 30px;
    background: #fff;
    cursor: pointer;
}

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

.join .reason .reason-item p {
    text-align: center;
}

.join .reason .reason-item.has_hover img {
    opacity: 0;
    -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    -webkit-transition: opacity .5s ease-in-out 0s, -webkit-animation .5s ease-in-out 0s;
    transition: opacity .5s ease-in-out 0s, animation .5s ease-in-out 0s;
}

.join .reason .reason-item.has_hover h5,
.join .reason .reason-item.has_hover p {
    -webkit-animation: text-slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: text-slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    -webkit-transition: -webkit-animation .5s ease-in-out 0s;
    transition: animation .5s ease-in-out 0s;
}

@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@-webkit-keyframes text-slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
@keyframes text-slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

/*移除*/
@-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes text-slide-bottom {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes text-slide-bottom {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.join .reason .reason-item h5 {
    margin: 20px 0 10px 0;
}

.join .reason .reason-item.slide img {
    opacity: 1;
    -webkit-animation: slide-bottom 0.3s both;
	animation: slide-bottom 0.3s both;
    -webkit-transition: opacity .3s ease-in-out 0s, -webkit-animation .3s ease-in-out 0s;
    transition: opacity .3s ease-in-out 0s, animation .3s ease-in-out 0s;
}

.join .reason .reason-item.slide h5,
.join .reason .reason-item.slide p{
    animation: text-slide-bottom 0.3s both;
    -webkit-animation: text-slide-bottom 0.3s both;
    transition: animation .3s ease-in-out 0s;
    -webkit-transition: -webkit-animation .3s ease-in-out 0s;
}

.join .joinus .list ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}

.join .joinus .list ul:after{
    position: absolute;
    left: 90px;
    right: 90px;
    content: "";
    height: 1px;
    top: 30px;
    z-index: -1;
    background-image: url('../images/dotted.png');
    background-repeat: repeat-x;
    background-size: auto 1px;
}

.join .joinus .list ul h5 {
    display: inline;
}

.join .joinus .joinus-item {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.join .joinus .joinus-item span {
    height: 3em;
    width: 3em;
    margin-bottom: 15px;
    line-height: 3em;
    font-size: 1.2em;
    color: #4b5b76;
    text-align: center;
    border-radius: 50px;
    background: linear-gradient(0deg,#fff,#ffd591);
    border: 1px solid #fff;
    box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1)
}

.join .way .way-item img{
    width: 80%;
    height: auto;
}

.join .way .way-item p{
    text-align: justify;
}

.join .rule .rule-content {
    position: relative;
}

.join .rule .rule-content .left {
    width: 4.5rem;
    height: 4.5rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
}

.join .rule .rule-content .right {
    width: 4.5rem;
    height: 4.5rem;
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
}

.join .rule .rule-content p {
    font-size: 18px;
    text-align: justify;
}

.join .bottom-btn a {
    color: #fff;
    background: #e07827;
    font-size: 1.1rem;
    padding: 18px 60px;
    border-radius: 5px;
}
/*加入我们 end*/
/*华为云扶持计划 begin*/
@media (min-width: 769px){
    .plan-vision .video .video-img {
        position: relative;
        height: 330px;
        width: 600px;
        border-radius: 16px;
        background-image: url('../images/supportplan-video-img.png');
        background-size: 100% 100%;
        background-position: 50%;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        overflow: hidden;
    }
}

@media (max-width: 768px){
    .plan-vision .video .video-img {
        position: relative;
        height: 170px;
        width: 100%;
        border-radius: 16px;
        background-image: url('../images/supportplan-video-img.png');
        background-size: 100% 100%;
        background-position: 50%;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        overflow: hidden;
    }
}

@media (min-width: 769px)

.plan-vision .video .video-img:hover {
    background-size: 110% 110%;
}

.plan-vision .video .video-img .player {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.plan-vision .video .video-img:hover .player {
    background: rgba(0, 0, 0, 0.4);
}

.plan-vision .video .video-img .player .player-btn {
    margin: auto;
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.plan-vision .video .video-img:hover .player .player-btn {
    background-color: rgba(255, 255, 255, 0.5);
}

.plan-vision .video .video-img .player .player-btn img {
    height: 24px;
    width: 24px;
}

.plan-equity li {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.plan-equity li img {
    height: 52px;
    width: 52px;
}

.plan-equity li h5 {
    text-align: center;
    padding: 5px 0;
}

.plan-equity li p {
    text-align: center;
}

.plan-flow .list {
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.plan-flow .list ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}

.plan-flow .list ul:after{
    position: absolute;
    left: 90px;
    right: 90px;
    content: "";
    height: 1px;
    top: 30px;
    z-index: -1;
    background-image: url('../images/dotted.png');
    background-repeat: repeat-x;
    background-size: auto 1px;
}

.plan-flow .list ul h5 {
    display: inline;
}

.plan-flow .flow-item {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.plan-flow .flow-item span {
    height: 3em;
    width: 3em;
    margin-bottom: 15px;
    line-height: 3em;
    font-size: 1.2em;
    color: #4b5b76;
    text-align: center;
    border-radius: 50px;
    background: linear-gradient(0deg,#fff,#ffd591);
    border: 1px solid #fff;
    box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1)
}

.plan-flow .bottom {
    width: 100%;
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-flow .bottom .bottom-btn {
    width: 160px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ed732e;
    border-radius: 50px;
    background: #ed732e;
    color: #fff;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

.plan-flow .bottom .bottom-btn:hover {
    color: #ed732e;
    background: #fff;
}

.video-model {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 10050;
}

.video-model .por-player {
    position: relative;
    width: 700px;
    height: 500px;
    display: inline-block;
    background-color: #000;
    z-index: 10050;
}

.video-model .por-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

.video-model .por-player .por-player-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.por-player-close:before {
    margin-top: 11px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.por-player-close:after {
    margin-top: -2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.por-player-close:before,
.por-player-close:after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    margin-left: auto;
    margin-right: auto;
}

.video-model .model-backdrop {
    position: fixed;
    z-index: 140;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    -webkit-transition: .35s;
    transition: .35s;
}

.video-model .model-backdrop.show {
    opacity: .5;
}
/*华为云扶持计划 end*/

/* ip */
@media (min-width: 769px) {
    .proxyip .banner-min {
        position: relative;
        margin-bottom: 70px;
    }
    
    .proxyip .banner-min .ip-tabinfo {
        position: absolute;
        bottom: -70px;
        height: 140px;
        width: 100%;
    }
    
    .proxyip .banner-min .ip-tabinfo .row {
        height: 100%;
        background: #fff;
        border: 1px solid rgb(187, 187, 187);
        box-shadow: 0 0 10px 3px rgb(187, 187, 187);
    }
    
    .proxyip .banner-min .ip-tabinfo .row > div {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .proxyip .banner-min .ip-tabinfo img {
        height: 45px;
        width: 45px;
    }
    
    .proxyip .banner-min .ip-tabinfo .item-info {
        margin-left: 0.8em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
    }
    
    .proxyip .banner-min .ip-tabinfo .item-info h3 {
        color: rgb(16, 16, 16);
        font-size: 1.35em;
    }
    
    .proxyip .banner-min .ip-tabinfo .item-info p {
        margin-bottom: 0;
        font-size: 0.65em;
    }
    
    .proxyip .banner-min .ip-tabinfo .free-wrapper {
        border-left: 1px solid rgb(187, 187, 187);
        width: 100%;
        height: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .proxyip .banner-min .ip-tabinfo .free-wrapper .free-btn {
        padding: 16px 20px;
        background: #ff6a00;
        color: #fff;
        border-radius: 3px;
    }
}

@media (max-width: 768px) {
    .proxyip .banner-min {
        position: relative;
        margin-bottom: 380px;
    }
    
    .proxyip .banner-min .ip-tabinfo {
        position: absolute;
        bottom: -380px;
        height: 480px;
        width: 100%;
    }
    
    .proxyip .banner-min .ip-tabinfo .row {
        height: 100%;
        background: #fff;
    }
    
    .proxyip .banner-min .ip-tabinfo .row > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .proxyip .banner-min .ip-tabinfo img {
        height: 45px;
        width: 45px;
    }
    
    .proxyip .banner-min .ip-tabinfo .item-info {
        margin-left: 0.8em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .proxyip .banner-min .ip-tabinfo .item-info h3 {
        color: rgb(16, 16, 16);
        font-size: 1.35em;
    }
    
    .proxyip .banner-min .ip-tabinfo .item-info p {
        margin-bottom: 0;
        font-size: 0.65em;
    }
    
    .proxyip .banner-min .ip-tabinfo .free-wrapper {
        width: 100%;
        height: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .proxyip .banner-min .ip-tabinfo .free-wrapper .free-btn {
        padding: 16px 20px;
        background: #ff6a00;
        color: #fff;
        border-radius: 3px;
    }
}

.ip-data .item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
}

.ip-data .item .num {
    color: #ff6a00;
    font-weight: bold;
    font-size: 2.6em;
}

.ip-data .sence {
    margin-top: 1.4em;
}

.ip-data .sence .sence-title {
    height: 130px;
    background: #ff6a00;
    color: #fff;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ip-data .sence .sence-item {
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #bbb;
}

.ip-data .sence .sence-item img {
    height: 44px;
    width: 44px;
}

.ip-data .sence .sence-item h4 {
    margin-top: 0.5em;
    font-size: 1.2em;
}

@media (min-width: 769px){
    .ip-combo .list {
        display: flex;
        justify-content: space-between;
    }
    
    .ip-combo .list .item {
        width: 19%;
        padding: 24px 14px;
        margin: 0 auto;
        border: 1px solid rgb(187, 187, 187);
    }
}

@media (max-width: 768px) {
    .ip-combo .list {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .ip-combo .list .item {
        width: 90%;
        padding: 24px 14px;
        margin: 10px auto;
        border: 1px solid rgb(187, 187, 187);
    }
}

.ip-combo .list .item .item-top {
    padding-bottom: 20px;
}

.ip-combo .list .item .item-top h6 {
    font-size: 1.3em;
    margin-bottom: 0.9em;
}

.ip-combo .list .item .item-top .select-item {
    position: relative;
    width: 100%;
    padding-left: 26px;
    margin-bottom: 10px;
}

.ip-combo .list .item .item-top .select-item::before {
    position: absolute;
    left: 0;
    top: 10px;
    height: 20px;
    width: 20px;
    content: '';
    background-image: url('../images/combo-select-icon.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.ip-combo .list .item .item-top .select-item p{
    margin-bottom: 0.1em;
}

.ip-combo .list .item .item-top .select-item p:first-child {
    font-weight: bold;
}

.ip-combo .list .item .item-top .price {
    padding: 10px 5px;
}

.ip-combo .list .item .item-top .price span:first-child {
    font-size: 1.2em;
    color: #ff6a00;
    font-weight: bold;
}

.ip-combo .list .item .item-top .price span {
    font-size: 0.9em;
}

.ip-combo .list .item .item-top .buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.6em;
}

.ip-combo .list .item .item-top .buy-btn a {
    padding: 4px 18px;
    background: #fff;
    color: #ff6a00;
    font-size: 0.8em;
    border-radius: 3px;
    border: 1px solid #ff6a00;
}

.ip-combo .list .item .item-bottom{
    padding-top: 10px;
    border-top: 1px solid #bbb;
    /*height: 160px;*/
    overflow: hidden;
}

.ip-combo .list .item .item-bottom ul{
    list-style: disc;
    padding: 10px 20px;
}

.ip-combo .list .item .item-bottom ul li {
    font-size: 0.7em;
    margin-bottom: 0.3em;
}

.ip-combo .list .free .freetitle {
    padding-left: 40px;
    position: relative;
    height: 70px;
    font-size: 1.8em;
}

.ip-combo .list .free .freetitle::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    content: '';
    background-image: url('../images/free-hot.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.ip-combo .list .free .freeinfo p {
    margin-bottom: 0.25em;
    font-size: 13px;
}

.ip-combo .list .free .freebtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.ip-combo .list .free .freebtn a {
    padding: 8px 16px;
    background: #ff6a00;
    color: #fff;
    border-radius: 3px;
}

.ip-custom .custom-item{
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ip-custom .custom-item img {
    height: 90px;
    width: 80px;
    object-fit: contain;
}

.ip-custom .custom-item p {
    margin-top: 0.8em;
    padding: 0 1.4em;
    text-align: center;
}

@media (min-width: 769px){
    .ip-bottom {
        margin: 30px 0;
    }
    
    .ip-bottom .bottom-wrapper {
        width: 100%;
        height: 180px;
        padding: 30px 40px;
        background: #ff6a00;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
    }
    
    .ip-bottom .bottom-wrapper .top {
        color: #fff;
        font-size: 2.5em;
        font-weight: bold;
    }

    .ip-bottom .bottom-wrapper .bottom {
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .ip-bottom .bottom-wrapper .bottom .left p {
        margin-bottom: 0.2em;
        color: #fff;
        font-size: 0.9em;
    }
    
    .ip-bottom .bottom-wrapper .bottom .right {
        margin-right: 3em;
    } 
    
    .ip-bottom .bottom-wrapper .bottom .right a {
        padding: 8px 22px;
        background: #fff;
        color: #ff6a00;
        border-radius: 3px;
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .ip-bottom {
        margin: 10px 0;
    }
    
    .ip-bottom .bottom-wrapper {
        width: 100%;
        height: 240px;
        padding: 10px 10px;
        background: #ff6a00;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
    }
    
    .ip-bottom .bottom-wrapper .top {
        color: #fff;
        font-size: 22px;
        font-weight: bold;
    }

    .ip-bottom .bottom-wrapper .bottom {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
    }
    
    .ip-bottom .bottom-wrapper .bottom .left p {
        margin-bottom: 0.2em;
        color: #fff;
        font-size: 0.9em;
    }
    
    .ip-bottom .bottom-wrapper .bottom .right {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    } 
    
    .ip-bottom .bottom-wrapper .bottom .right a {
        padding: 8px 22px;
        background: #fff;
        color: #ff6a00;
        border-radius: 3px;
        font-size: 1.6em;
    }
}
/* ip end*/

/*技术支持第二版 begin*/
.techsupport {
    /* header高度72px */
    background: #f2f4f4;
}

/*pc*/
@media (min-width: 769px) {
    .techsupport .tech-content {
        width: 100%;
        overflow: hidden;
    }
    
    .techsupport .tech-content .left{
        float: left;
        background: #fff;
        box-shadow: 1px 1px 1px #eef1ff;
        width: 260px;
    }
    
    .techsupport .tech-content .left.left-fixed {
        position: fixed;
        top: 72px;
        overflow: scroll;
        height: calc(100% - 100px);
    }
    
    .techsupport .tech-content .right {
        width: calc(100% - 260px);
        float: right;
    }
}

/*moblie*/
@media (max-width: 768px) {
    .techsupport .tech-content {
        display: flex;
    }
    
    .techsupport .tech-content .left{
        display: none !important;
    }
    
    .techsupport .tech-content .right {
        width: 100%;
    }
}

.techsupport .menu .menu-title{
    width: 100%;
    height: 70px;
    padding-left: 14px;
    line-height: 70px;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    font-size: 24px;
    font-weight: 400;
    color: #ff6a00;
    background-size: 100% 100%;
    cursor: default;
}

.techsupport .menu .menu-list {
    padding: 15px 8px 50px 8px;
    background: #fff;
}

.techsupport .menu .menu-list li > span,
.techsupport .menu .menu-list li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 54px;
    line-height: 54px;
    font-size: 14px;
    padding: 3px 10px;
    /*margin-bottom: 5px;*/
    border-bottom: 1px solid #e5e5e5;
}

.techsupport .menu .menu-list li:last-child > span,
.techsupport .menu .menu-list li:last-child > a {
    border-bottom: none;
}

.techsupport .menu .menu-list li > span:hover,
.techsupport .menu .menu-list li > a:hover {
    background: #ff6a00;
    color: #fff;
    /*border: 1px solid #ed732e;*/
    border-radius: 2px;
    font-weight: 500;
}

.techsupport .menu .menu-list li > span.active,
.techsupport .menu .menu-list li > a.active{
    background: #ff6a00;
    color: #fff;
    /*border: 1px solid #ed732e;*/
    border-radius: 2px;
    font-weight: 500;
}

.techsupport .menu .menu-list li a img {
    height: 18px;
    width: 18px;
}

.techsupport .menu .menu-list li .child-list.show{
    max-height: 2000px;
    transition: 1s ease-in;
}

.techsupport .menu .menu-list li .child-list {
    max-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: .4s ease-out;
    padding-top: 6px;
    overflow: hidden;
}

.techsupport .menu .menu-list li .child-list a {
    display: block;
    padding: 8px 26px;
}

.techsupport .menu .menu-list li .child-list a.active {
    color: #ff6a00;
}

.techsupport .tech-menu .menu-title {
    width: 100%;
    height: 70px;
    padding-left: 14px;
    line-height: 70px;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    font-size: 24px;
    font-weight: 400;
    color: #ff6a00;
    background-size: 100% 100%;
    cursor: default;
}

.techsupport .tech-menu .menu-list {
    padding: 15px 8px 50px 8px;
    background: #fff;
}

.techsupport .tech-menu .menu-list li > span,
.techsupport .tech-menu .menu-list li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 54px;
    line-height: 54px;
    font-size: 14px;
    padding: 3px 10px;
    /*margin-bottom: 5px;*/
    border-bottom: 1px solid #e5e5e5;
}

.techsupport .tech-menu .menu-list li:last-child > span,
.techsupport .tech-menu .menu-list li:last-child > a {
    border-bottom: none;
}

.techsupport .tech-menu .menu-list li > span:hover,
.techsupport .tech-menu .menu-list li > a:hover {
    background: #ff6a00;
    color: #fff;
    /*border: 1px solid #ed732e;*/
    border-radius: 2px;
    font-weight: 500;
}

.techsupport .tech-menu .menu-list li > span.active,
.techsupport .tech-menu .menu-list li > a.active{
    background: #ff6a00;
    color: #fff;
    /*border: 1px solid #ed732e;*/
    border-radius: 2px;
    font-weight: 500;
}

.techsupport .tech-menu .menu-list li a img {
    height: 18px;
    width: 18px;
}

.techsupport .tech-category .category-item {
    padding: 1.5em 2.5em;
    margin: 0 20px 10px 20px;
    background: #fff;
}

.techsupport .tech-category .category-item .item-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed #dddddd;
    cursor: default;
}

.techsupport .tech-category .category-item .item-title img {
    height: 32px;
    width: 32px;
}

.techsupport .tech-category .category-item .item-title h5 {
    text-align: center;
    margin-bottom: 0;
    margin-left: 15px;
}

.techsupport .tech-category .category-item ul li {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 1.08em;
    text-align: left;
    overflow: hidden;
    padding-left: 4.5em;
    cursor: pointer;
}

.techsupport .tech-item {
    padding: 15px 20px 0 20px;
}

.techsupport .tech-item .item-title {
    position: relative;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 2px dotted #e5e5e5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.techsupport .tech-item .item-title img {
    height: 26px;
    width: 26px;
    margin-right: 10px;
}

.techsupport .tech-item .item-title span {
    font-size: 16px;
}

.techsupport .tech-item .item-title a {
    font-size: 12px;
    position: absolute;
    top: 6px;
    right: 0;
    cursor: pointer;
}

.techsupport .tech-item ul {
    padding: 20px 45px;
}

.techsupport .tech-item ul li {
    padding: 0 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.techcommon .tech-common-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
    border-bottom: 1px dotted #909399;
}

.techcommon .tech-common-list li p {
    height: 45px;
    line-height: 45px;
    margin-bottom: 0;
    padding-right: 8px;
    color: #666;
    cursor: default;
}

.techcommon .tech-common-list li a {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    padding-left: 10px;
    color: #666;
    cursor: pointer;
}

.techcommon .tech-common-list li:nth-child(odd) {
    background: #fff;
}

.techcommon .tech-common-list li:nth-child(even) {
    background: #f8f8f8;
}

.techsupport .show-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
}

.techsupport .show-page .page-item {
    margin-bottom: 10px;
}

.techsupport .show-page .page-item p {
    display: inline-block;
    cursor: default;
    margin-bottom: 0;
}

.techsupport .show-page .page-item a {
    color: #ed732e;
}

.techsupport .bottom-tips {
    margin-top: 2rem;
    padding: 10px 20px;
    background: #fff;
    text-align: center;
    box-shadow: 3px 1px 3px #b4b3b1;
    vertical-align: bottom;
}

.techsupport .bottom-tips span:first-child{
    margin-right: 16px;
    color: #ed732e;
    font-size: 22px;
    font-weight: bold;
}

.techsupport .bottom-tips a {
    color: #ed732e;
    padding: 0 4px;
}
/*技术支持第二版 end*/

.help-news .top-search,
.techsupport .top-search {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.help-news .top-search .left-title,
.techsupport .top-search .left-title {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.2;
    color: #ff6a00;
    margin-right: 26px;
}

.help-news .top-search .search-input,
.techsupport .top-search .search-input {
    position: relative;
    height: 50px;
    width: 75%;
    border: 2px solid #ed732e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-news .top-search .search-input input,
.techsupport .top-search .search-input input {
    width: calc(100% - 120px);
    height: 46px;
    border: none;
    background: #fff;
    padding-left: 10px;
}

.help-news .top-search .search-input button,
.techsupport .top-search .search-input button {
    width: 120px;
    height: 46px;
    font-size: 18px;
    border: none;
    color: #fff;
    background: #ed732e;
}

.help-news .top-search .search-input button:focus,
.techsupport .top-search .search-input button:focus {
    outline: 0;
}

.help-news .top-search .search-input .tag,
.techsupport .top-search .search-input .tag {
    position: absolute;
    left: 9px;
    bottom: -50px;
    height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.help-news .top-search .search-input .tag .tag-title,
.techsupport .top-search .search-input .tag .tag-title {
    margin-right: 10px;
    font-size: 14px;
}

.help-news .top-search .search-input .tag ul,
.techsupport .top-search .search-input .tag ul {
    display: inline;
}

.help-news .top-search .search-input .tag ul li,
.techsupport .top-search .search-input .tag ul li {
    display: inline;
    margin-right: 5px;
    color: #ff6a00;
    font-size: 14px;
    cursor: pointer;
}

.help-news .top-search .search-input .tag ul li:hover,
.techsupport .top-search .search-input .tag ul li:hover {
    border-bottom: 1px solid #ff6a00;
}

.help-news .top-menu, 
.techsupport .top-menu {
    width: 70%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-news .top-menu a,
.techsupport .top-menu a {
    height: 70px;
    line-height: 70px;
    width: 33.3%;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    overflow: hidden;
    font-weight: bold;
    font-size: 1.2em;
}

.help-news .top-menu a.show,
.techsupport .top-menu a.show {
    background-color: #f57212;
    color: #fff;
    border: none;
}

/* 备案 begin */
.beian .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.beian .title b {
    font-size: 28px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
}

.beian-service {
    background-color: #fff;
    padding: 4em 0;
}

.beian-service .service-item {
    position: relative;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.beian-service .service-item .service-icon {
    position: absolute;
    top: 17px;
    left: 5px;
    display: block;
    height: 45px;
    width: 45px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.beian-service .service-item h3 {
    font-size: 20px;
    margin-left: 60px;
}

.beian-service .service-item p {
    margin-left: 60px;
    margin-bottom: 0;
    padding-right: 10px;
}

.beian-step {
    background-color: #f4f5f7;
    padding: 3.5em 0;
}

.beian-step .step-wrapper {
    margin-top: 2.5em;
}

.beian-step .step {
    width: 80%;
    display: flex;
}

.beian-step .step .step-item {
    position: relative;
    width: 20%;
    height: 120px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.beian-step .step .step-item .beian-btn {
    padding: 0 2px 1px 2px;
    color: #ff6a00;
    border-bottom: 1px solid #ff6a00;
}

.beian-step .step .step-item span {
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.beian-step .step .step-item h4 {
    margin-top: 10px;
    font-size: 16px;
} 

.beian-step .step .step-item .dotted-line {
    position: absolute;
    top: 10px;
    left: 80%;
    width: 40%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-bottom: 1px dashed #ff6a00;
    color: #adb0b8;
    font-size: 10px;
}

.beian-step .beian-code {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.beian-step .beian-code img {
    width: 50%;
}

.beian-step .beian-code p {
    font-size: 14px;
    margin-top: 14px;
}

.beian-step .btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.beian-step .btn-wrapper a {
    display: inline-block;
    padding: 10px 32px;
    font-size: 14px;
    color: #fff;
    background: #ff6a00;
    border-radius: 4px;
}

.beian-guide {
    padding: 4em 0;
}

.beian-guide .tab-list {
    margin-top: 50px;
    border-bottom: 1px solid #dfe1e6;
}

.beian-guide .tab-list ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.beian-guide .tab-list ul li {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beian-guide .tab-list ul li a:hover {
    color: #ff6a00;
}

.beian-guide .tab-list ul li a {
    position: relative;
    cursor: pointer;
    height: 60px;
    padding: 8px;
    line-height: 44px;
    transition: color .2s;
    font-weight: 400;
}

.beian-guide .tab-list ul li.active a {
    font-weight: 700;
}

.beian-guide .tab-list ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 3px;
    margin: auto;
    background-color: #ff6a00;
    opacity: 0;
    -webkit-transition: width .2s,opacity 0s .2s;
    transition: width .2s,opacity 0s .2s;
}

.beian-guide .tab-list ul li.active a:after {
    width: calc(100% - 16px);
    opacity: 1;
    -webkit-transition: width .2s;
    transition: width .2s;
}

.beian-guide .tab-list ul li a > div {
    display: inline-block;
    vertical-align: middle;
    min-width: 48px;
    max-height: 100%;
    font-size: 18px;
    line-height: 22px;
}

.beian-guide .tab-content {
    margin-top: 20px;
    height: 500px;
}

.beian-guide .tab-content .content-sub {
    height: 100%;
    width: 100%;
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
}

.beian-guide .tab-content .content-sub.show {
    display: flex !important;
}

.beian-guide .tab-content .content-sub .sub-head {
    width: 240px;
    height: 100%;
    padding: 16px 0;
    border-right: 1px solid #adb0b8;
}

.beian-guide .tab-content .content-sub .sub-head li {
    position: relative;
    padding: 14px 24px;
    font-size: 16px;
    line-height: 20px;
    vertical-align: top;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    overflow: hidden;
}

.beian-guide .tab-content .content-sub .sub-head li.active {
    background-color: #f5f5f6;
    font-weight: 700;
}

.beian-guide .tab-content .content-sub .sub-head li.active:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ff6a00;
}

.beian-guide .tab-content .content-sub .sub {
    width: calc(100% - 240px);
    height: 100%;
    padding: 21px 8px 31px 24px;
    overflow: scroll;
}

.beian-guide .tab-content .content-sub .sub-item {
    display: none;
    min-height: 100%;
}
.beian-guide .tab-content .content-sub .sub-item.show {
    display: block;
}

.beian-guide .tab-content .content-sub .sub-item .sub-item-module {
    padding: 22px 0;
}

.beian-guide .tab-content .content-sub .sub-item strong {
    font-weight: bolder;
    font-size: 14px;
}

.beian-guide .tab-content .content-sub .sub-item p {
    margin-bottom: 0;
    font-size: 14px;
}

.beian-guide .tab-content .content-sub .sub-item a {
    color: #ff6a00;
}

.beian-guide .tab-content .content-sub .sub-item a:hover {
    border-bottom: 1px solid #ff6a00;
}
/* 备案 end */

.business-recommand {
    background-color: #f4f5f7;
    padding: 3.5em 0;
}

.business-recommand .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.business-recommand .title b {
    font-size: 28px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
}

.business-recommand .re-list {
    margin-top: 40px;
    margin-bottom: 30px;
}

.business-recommand .re-list .re-item {
    position: relative;
    height: 200px;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    overflow: hidden;
}

.business-recommand .re-list .re-item strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.business-recommand .re-list .re-item p {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 0 15px;
}

.business-recommand .re-list .re-item a {
    position: absolute;
    bottom: 20px;
    margin: auto;
    padding: 6px 22px;
    text-align: center;
    border: 1px solid #ff6a00;
    font-size: 14px;
    color: #ff6a00;
}

.business-recommand .re-list .re-item a:hover {
    color: #fff;
    background: #ff6a00;
}

/* 文章底部按钮 begin */
.cont-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.cont-btn > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 18px;
    border: 1px solid #ff6a00;
    margin-bottom: 10px;
    margin-right: 18px;
    border-radius: 2px;
    font-size: 15px;
}

.cont-btn > a img {
    height: 20px;
    width: 20px;
    margin-right: 6px;
}

.cont-btn .wechat-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 18px;
    border: 1px solid #ff6a00;
    margin-bottom: 10px;
    margin-right: 18px;
    border-radius: 2px;
    font-size: 15px;
    cursor: pointer;
}

.cont-btn .wechat-wrap .wechat {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
    background: #fff;
    padding: 6px;
    border: 1px solid #d9dbe1;
    border-radius: 4px;
    width: 120px;
    text-align: center;
    color: #ff6a00;
}

.cont-btn .wechat-wrap .wechat img {
    width: 100%;
}

.cont-btn > a.full {
    background: #ff6a00;
    color: #fff;
}

.cont-btn > a.default {
    color: #ff6a00;
}
/* 文章底部按钮 end */