.websiteConstruction {
    position: relative;
    z-index: 13;
}

.websiteConstruction .websiteServices {
    position: relative;
    padding: 207px 0 0;
    /* background-color: RGBA(12, 25, 57, 1); */
    overflow: hidden;
}

.websiteConstruction .websiteServices::before {
    /* position: absolute;
    content: "";
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    background: linear-gradient(90deg,
            rgba(27, 15, 125, 1),
            rgba(78, 80, 189, 1));
    border-radius: 50%;
    width: 40vw;
    height: 40vw;
    transition: 0.4s;
    filter: blur(100px);
    animation: effect infinite 4.9s linear;
    opacity: 1; */
}

@keyframes effect {
    0% {
        transform: translateX(-50%)rotate(0deg)scale(1.5);
    }

    100% {
        transform: translateX(-50%)rotate(360deg)scale(1.5);
    }
}

.websiteConstruction .websiteServices .box-c {
    position: relative;
    z-index: 3;
    text-align: center;
}

.websiteConstruction .websiteServices .title {
    font-family: Rany-Bold;
    color: #FFFFFF;
    line-height: 1;
}

.websiteConstruction .websiteServices .des {
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.33;
    margin: .9em 0;
}

.websiteConstruction .websiteServices .arrowIcon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px dashed rgba(222, 222, 222, .2);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    transition: all 0.6s;
    color: rgba(78, 80, 189, 1);
    animation: pulseScale 1.4s infinite ease-in-out;
}

.websiteConstruction .websiteServices .arrowIcon:hover {
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.websiteConstruction .websiteServices .arrowIcon::after,
.websiteConstruction .websiteServices .arrowIcon::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-30deg, #C6C6C6, #FFFFFF);
    transition: all 0.6s;
    transform: scale(.8181);
    border-radius: 50%;
}

.websiteConstruction .websiteServices .arrowIcon::after {
    opacity: 0;
    background: linear-gradient(30deg, #1B0F7D, #4E50BD);
}

.websiteConstruction .websiteServices .arrowIcon:hover:before {
    opacity: 0;
}

.websiteConstruction .websiteServices .arrowIcon:hover:after {
    opacity: 1;
}

.websiteConstruction .websiteServices .arrowIcon .iconfont {
    position: relative;
    z-index: 3;
    font-size: 20px;
    font-weight: bold;
}

.websiteConstruction .websiteServices .list {
    margin-top: 66px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
    overflow: hidden;
}

.websiteConstruction .websiteServices .list li {
    position: relative;
    border-radius: 5px;
    border: 1px solid rgba(222, 222, 222, 0.1);
    padding: 30px;
    text-align: left;
}

.websiteConstruction .websiteServices .list li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-30deg, #302A9C, #5355CF);
    border-radius: 5px;
    opacity: 0;
    transition: all .6s;
}

.websiteConstruction .websiteServices .list li:hover:before {
    opacity: 1;
}

.websiteConstruction .websiteServices .list li .li-box {
    position: relative;
    z-index: 3;
}

.websiteConstruction .websiteServices .list li .icon {
    width: 80px;
    height: 80px;
}

.websiteConstruction .websiteServices .list li .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    animation: rotate1 9.4s infinite linear;
}

.websiteConstruction .websiteServices .list li .text-box {
    margin-top: 26px;
    transform: translateY(72px);
    transition: all .6s;
}

.websiteConstruction .websiteServices .list li:hover .text-box {
    transform: translateY(0);
}

.websiteConstruction .websiteServices .list li .text-zh {
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 32px;
}

.websiteConstruction .websiteServices .list li .text-en {
    font-family: Rany-Bold;
    color: rgba(34, 34, 34, 0);
    line-height: 1;
    text-stroke: 1px #DDDDDD;
    opacity: 0.2;
    -webkit-text-stroke: 1px #DDDDDD;
    text-transform: uppercase;
    margin-top: 16px;
    transition: all .6s;
}

.websiteConstruction .websiteServices .list li:hover .text-en {
    opacity: 1;
}

.websiteConstruction .websiteServices .list li .text-des {
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 30px;
}

.websiteConstruction .websiteServices .list li .consultBtn {
    display: inline-flex;
    align-items: center;
    line-height: 50px;
    background: linear-gradient(-30deg, #1B0F7D, #4E50BD, #1B0F7D);
    border-radius: 25px;
    padding: 0 22px;
    font-weight: 300;
    font-size: 16px;
    color: #F4F4F4;
    margin-top: 30px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, background 0.3s ease;
    background-size: 300%;
    background-position: left center;
}

.websiteConstruction .websiteServices .list li:hover .consultBtn {
    opacity: 1;
    pointer-events: inherit;
    visibility: visible;
    transition: opacity .3s .3s, background 0.3s ease;
}

.websiteConstruction .websiteServices .list li .consultBtn .iconfont {
    margin-left: 15px;
    font-size: 22px;
}

.websiteConstruction .websiteType {
    min-height: 100vh;
    padding: 148px 0 143px;
}

.websiteConstruction .websiteType ul {
    position: relative;
}

.websiteConstruction .websiteType li {
    position: sticky;
    top: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 20px;
    min-height: 500px;
    padding: 100px;
    transition: all .2s;
    /* z-index: 20; */
}

.websiteConstruction .websiteType li:not(:last-child) {
    margin-bottom: 20px;
}

.websiteConstruction .websiteType li .l {
    flex: 1;
    margin-right: 100px;
}

.websiteConstruction .websiteType li .en {
    font-family: Rany-Bold;
    color: rgba(34, 34, 34, 0);
    line-height: 1;
    text-transform: uppercase;
    text-stroke: 1px #CBCBCB;
    -webkit-text-stroke: 1px #CBCBCB;
}

.websiteConstruction .websiteType li .more {
    position: relative;
    display: inline-flex;
    padding: 0 30px;
    line-height: 48px;
    border-radius: 25px;
    border: 1px solid #DEDEDE;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-top: 15px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;

}

.websiteConstruction .websiteType li .more:hover {
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0px 20px rgba(78, 80, 189, .4);
}

.websiteConstruction .websiteType li .more::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    background: linear-gradient(-90deg, #1B0F7D, #4E50BD);
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.websiteConstruction .websiteType li .more:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.websiteConstruction .websiteType li .more .iconfont {
    font-size: 22px;
    margin-left: 28px;
}

.websiteConstruction .websiteType li .r {
    width: 52.23%;
}

.websiteConstruction .websiteType li .r .title {
    font-weight: 300;
    color: #222222;
    line-height: 1.33;
}

.websiteConstruction .websiteType li .r .text-title {
    font-weight: bold;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    margin-top: 50px;
}

.websiteConstruction .websiteType li .r .text-des {
    font-weight: 300;
    font-size: 16px;
    color: #222222;
    line-height: 30px;
    margin-top: 17px;
}

.service-standards {
    padding: 143px 0 0;
    text-align: center;
}

.service-guarantees .title,
.service-process .title,
.service-standards .title {
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}

.service-guarantees .des,
.service-process .des,
.service-standards .des {
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 30px;
    margin-top: 35px;
}

.service-standards .list {
    margin-top: 71px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-standards .list li .number {
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1;
}

.service-standards .list li .number .counter {
    font-family: Rany-Light;
    color: #FFFFFF;
    line-height: 1;
}

.service-standards .list li .text {
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
}

.service-standards .contactBtn {
    display: inline-block;
    width: 240px;
    line-height: 70px;
    background: linear-gradient(-30deg, #1B0F7D, #4E50BD, #1B0F7D);
    border-radius: 35px;
    font-weight: 300;
    font-size: 16px;
    color: #F2F2F2;
    background-size: 300%;
    background-position: left center;
    transition: background 0.6s ease;
    margin-top: 74px;
}

.websiteConstruction .websiteServices .list li .consultBtn:hover,
.service-standards .contactBtn:hover {
    background-size: 305%;
    background-position: right center;
}

.service-standards .en {
    font-family: Rany-Bold;
    font-size: 130px;
    color: rgba(34, 34, 34, 0);
    line-height: 1;
    text-stroke: 2px #DDDDDD;
    opacity: 0.2;
    -webkit-text-stroke: 2px #DDDDDD;
    margin-top: 50px;
    transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;

}

.service-standards .en:hover {
    background: linear-gradient(to right, #4E50BD 0%, #4E50BD 0%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 100% 100%;
    background-position: 100% 0%;
    opacity: 0.8;
    background-position: 0% 0%;
    animation: fillText 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    text-stroke: 1px #4E50BD;
    -webkit-text-stroke: 1px #4E50BD;
}

@keyframes fillText {
    from {
        background-position: 100% 0%;
    }

    to {
        background-position: 0% 0%;
    }
}

.service-process {
    padding: 140px 0;
    text-align: center;
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.service-process .box-c {
    margin-top: 73px;
    white-space: nowrap;
    display: flex;
    overflow: visible;
    will-change: transform;
}

.service-process .list {
    display: flex;

    gap: 50px;
    padding: 70px 134px;
    background: linear-gradient(-30deg, #302A9C, #5355CF);
    border-radius: 200px;
    transform: translateX(0);
    /* transition: all .3s; */
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.service-process .list li {
    min-width: 268px;
    text-align: left;
}

.service-process .list li .number {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Rany-Bold;
    font-size: 24px;
    color: #F8F8F8;
}

.service-process .list li .number img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.service-process .list li .text-box {
    margin-top: 60px;
}

.service-process .list li .text-zh {
    font-weight: 300;
    color: #FCFCFC;
}

.service-process .list li .text-en {
    font-family: Rany-Bold;
    font-size: 24px;
    color: rgba(34, 34, 34, 0);
    line-height: 1;
    text-stroke: 1px #DDDDDD;
    opacity: 0.2;
    -webkit-text-stroke: 1px #DDDDDD;
    text-transform: uppercase;
    margin-top: 40px;
}

.service-guarantees {
    text-align: center;
    padding-bottom: 171px;
    position: relative;
    z-index: 4;
}

.service-guarantees .des strong {
    display: block;
    margin-top: 16px;
}

.service-guarantees .list {
    margin-top: 63px;
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.service-guarantees .list li {
    position: relative;
    min-height: 320px;
    background: linear-gradient(-30deg, #4E50BD, #1B0F7D);
    border-radius: 10px;
    padding: 35px 28px 28px;
    text-align: left;
}

.service-guarantees .list li:hover .li-box {
    color: rgba(34, 34, 34, 1);
}

.service-guarantees .list li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    transition: all .6s;
    opacity: 0;
}

.service-guarantees .list li:hover::before {
    opacity: 1;
}

.service-guarantees .list li .li-box {
    position: relative;
    z-index: 3;
    color: rgba(255, 255, 255, 1);
    transition: all .6s;
}

.service-guarantees .list li:nth-child(2n) {
    margin-top: 93px;
}

.service-guarantees .list li .number {
    font-family: Rany-Bold;
    font-size: 18px;
    line-height: 1;
}

.service-guarantees .list li .icon {
    margin-top: 56px;
    transition: all .6s;
}

.service-guarantees .list li .icon .iconfont {
    font-size: 40px;
}

.service-guarantees .list li:hover .icon {
    color: rgba(78, 80, 189, 1);
}

.service-guarantees .list li .text-box {
    margin-top: 64px;
}

.service-guarantees .list li .text-zh {
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
}

.service-guarantees .list li .text-en {
    font-family: Rany-Bold;
    font-size: 16px;
    line-height: 30px;
    transition: all .6s;
}

.service-guarantees .list li:hover .text-en {
    opacity: .3;
}

.website-type {
    padding: 182px 0 126px;
}

.website-type .list {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.website-type .item {
    position: relative;
    display: block;
    height: 124px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: all .3s;
    overflow: hidden;
}
.website-type .item:hover{
    height: 218px;
}
.website-type .item::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-30deg, #302A9C, #5355CF);
    opacity: 0;
    transition: all .3s;
}
.website-type .item:hover::before{
    opacity: 1;
}
.website-type .item-content {
    position: relative;
    padding: 42px 0;
    display: flex;
    gap: 0 130px;
    z-index: 3;
    align-items: flex-start;
}

.website-type .item-content .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-type .item-content .icon img {
    max-width: 100%;
    max-height: 100%;
}

.website-type .item-l {
    width: 230px;
}

.website-type .item-l .title {
    font-weight: 300;
    color: #FFFFFF;
    line-height: 40px;
}

.website-type .item-l .number {
    font-family: Rany-Bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1;
    margin-top: 30px;
    opacity: 0;
    transition: all .1s;
}

.website-type .item-l .number span {
    padding-right: .14em;
}

.website-type .item-c {
    flex: 1;
}

.website-type .item-c .text-box {
    width: 700px;
    max-width: 100%;
    opacity: 0;
    transition: all .1s;
}
.website-type .item:hover .item-l .number,
.website-type .item:hover .item-c .text-box{
    /* transition: all .2s .1s; */
    opacity: 1;
}
.website-type .item-c .text-title {
    font-weight: bold;
    font-size: 18px;
    color: #F2F2F2;
    line-height: 28px;
}

.website-type .item-c .text-des {
    font-weight: 300;
    font-size: 16px;
    color: #F2F2F2;
    line-height: 30px;
    margin-top: 1em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.website-type .item-r {
    display: flex;
    align-items: center;
    line-height: 40px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    width: 130px;
}

.website-type .item-r .count {
    font-family: Rany-Bold;
}
.website-type .item-r .text{
    display: none;
}
.website-type .item:hover .item-r .count{
    display: none;
}
.website-type .item:hover .item-r .text{
    display: block;
}
.website-type .item-r .iconfont{
    font-size: 24px;
    margin-left: 35px;
    transition: all .6s;
}
.website-type .item:hover .item-r .iconfont{
    transform: rotate(-45deg);
}
@media (max-width:1700px){
    .website-type .item-content{
        gap: 0 70px;
    }
    .website-type .item-c .text-box{
        width: 100%;
    }
    .website-type .item-r .iconfont{
        margin-left: 15px;
    }
}
@media (max-width:1440px) {
    .service-standards .en {
        font-size: 100px;
    }
}

@media (max-width:1280px) {
    .websiteConstruction .websiteServices .list li {
        padding: 25px;
    }

    .websiteConstruction .websiteServices .list li .text-zh {
        font-size: 20px;
    }

    .websiteConstruction .websiteServices .list li .text-en {
        font-size: 24px;
    }

    .websiteConstruction .websiteServices .list li .icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width:1199px) {
    .website-type .item-content{
        padding: 30px 0;
    }
    .website-type{
        padding: 80px 0;
    }
    .website-type .item,
    .website-type .item:hover{
        height: auto;
    }
    .website-type .item-content{
        justify-content: space-between;
    }
    .website-type .item-l .number{
        display: none;
    }
    .website-type .item-l{
        flex: 1;
    }
    .website-type .item-r .count,
    .website-type .item-c{
        display: none;
    }
    .website-type .item-r .text{
        display: block;
    }
    .service-standards .en {
        font-size: 80px;
    }

    .service-process,
    .websiteConstruction .websiteType {
        padding: 80px 0;
    }

    .service-guarantees {
        padding-bottom: 80px;
    }

    .service-standards {
        padding: 0;
    }

    .websiteConstruction .websiteServices {
        padding-top: 140px;
    }

    .websiteConstruction .websiteServices .arrowIcon {
        width: 90px;
        height: 90px;
    }

    .websiteConstruction .websiteServices .list li {
        padding: 30px;
    }

    .websiteConstruction .websiteServices .list {
        grid-template-columns: repeat(2, 1fr);
    }

    .websiteConstruction .websiteServices .list li .text-box {
        transform: translateY(0);
    }

    .websiteConstruction .websiteServices .list li .consultBtn {
        opacity: 1;
        visibility: visible;
        pointer-events: inherit;
    }

    .websiteConstruction .websiteType li {
        position: relative;
        top: 0;
        padding: 50px;
        min-height: 400px;
    }

    .websiteConstruction .websiteType li .l {
        margin-right: 50px;
    }

    .websiteConstruction .websiteType li .r {
        width: 63%;
    }

    .service-process .box-c {
        display: block;
        white-space: normal;
    }

    .service-process .list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 40px;
        border-radius: 30px;
    }

    .service-process .list li {
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .service-process .list li .text-box {
        margin-top: 25px;
    }

    .service-process .list li .text-zh {
        font-size: 24px;
    }

    .service-process .list li .text-en {
        margin-top: 15px;
    }

    .service-process .list li .number {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .service-process .list li .text-en {
        font-size: 22px;
    }

    .service-process .list {
        gap: 40px 30px;
    }

    .service-guarantees .list {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-guarantees .list li:nth-child(2n) {
        margin-top: 0;
    }
}

@media (max-width:1024px) {
    .website-type{
        padding: 70px 0;
    }
    .service-standards .en {
        font-size: 60px;
    }

    .websiteConstruction .websiteType li {
        padding: 40px 50px;
    }

    .websiteConstruction .websiteType li .r .text-title {
        margin-top: 30px;
    }

    .websiteConstruction .websiteType li .r .text-des {
        margin-top: 7px;
    }

    .websiteConstruction .websiteServices {
        padding-top: 130px;
    }

    .service-process,
    .websiteConstruction .websiteType {
        padding: 70px 0;
    }

    .service-guarantees {
        padding-bottom: 70px;
    }

    .service-guarantees .list,
    .service-process .box-c,
    .service-process .box-c,
    .service-standards .en,
    .service-standards .contactBtn,
    .service-standards .list,
    .websiteConstruction .websiteServices .list {
        margin-top: 45px;
    }

    .service-process .list li .text-en,
    .service-process .list li .text-zh {
        font-size: 20px;
    }

    .service-process .list li .text-en {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .website-type{
        padding: 60px 0;
    }
    .service-guarantees .list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-process .list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-standards .en {
        font-size: 50px;
    }

    .service-standards .contactBtn {
        line-height: 60px;
    }

    .service-guarantees .list,
    .service-process .box-c,
    .service-process .box-c,
    .service-standards .en,
    .service-standards .contactBtn,
    .service-standards .list {
        margin-top: 40px;
    }

    .websiteConstruction .websiteType li .r {
        width: 100%;
        margin-top: 25px;
    }

    .websiteConstruction .websiteType li .r .text-title {
        margin-top: 10px;
    }

    .websiteConstruction .websiteType li .l {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-items: flex-start;
    }

    .websiteConstruction .websiteType li .more {
        margin-top: 0;
    }

    .websiteConstruction .websiteType li {
        flex-direction: column;
        min-height: 0;
        padding: 40px;
    }

    .websiteConstruction .websiteServices .arrowIcon {
        width: 70px;
        height: 70px;
    }

    .websiteConstruction .websiteServices .des {
        margin: .5em 0 .7em;
    }

    .websiteConstruction .websiteServices {
        padding-top: 110px;
    }

    .service-process,
    .websiteConstruction .websiteType {
        padding: 60px 0;
    }

    .service-guarantees {
        padding-bottom: 60px;
    }

    .websiteConstruction .websiteServices .list {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
    }

    .websiteConstruction .websiteServices .list li .text-en {
        margin-top: 5px;
    }

    .websiteConstruction .websiteServices .list li .text-des {
        margin-top: 20px;
    }

    .websiteConstruction .websiteServices .list li .consultBtn {
        margin-top: 25px;
    }

    .service-guarantees .des,
    .service-process .des,
    .service-standards .des {
        margin-top: 30px;
        font-size: 16px;
    }

    .service-standards .list li .text {
        font-size: 14px;
        line-height: 24px;
    }

    .service-standards .list li .number {
        font-size: 14px;
    }
    .website-type .item-content{
        gap: 0 30px;
        padding: 20px 0;
        align-items: center;
    }
    .website-type .item-content .icon{
        width: 24px;
        height: 24px;
    }
    .website-type .item-l .title{
        font-size: 20px;
        line-height: 30px;
    }
    .website-type .item-r{
        line-height: 30px;
        font-size: 16px;
    }
    .website-type .item-r .iconfont{
        margin-left: 5px;
    }
    .website-type .item-r{
        width: auto;
    }
}

@media (max-width: 500px) {
    .website-type .item-r .iconfont{
        font-size: 20px;
    }
    .website-type .item-l .title{
        font-size: 18px;
    }
    .website-type .item-content{
        padding: 15px 0;
        gap: 0 20px;
    }
    .website-type{
        padding: 50px 0;
    }
    .websiteConstruction .websiteType li .more {
        line-height: 42px;
        padding: 0 19px;
        font-size: 14px;
    }

    .websiteConstruction .websiteType li .more .iconfont {
        margin-left: 15px;
    }

    .service-guarantees .list li .icon .iconfont {
        font-size: 30px;
    }

    .service-guarantees .list li .text-zh {
        font-size: 16px;
    }

    .service-guarantees .list li .text-en {
        font-size: 14px;
        line-height: 24px;
    }

    .service-guarantees .list li {
        min-height: 240px;
        padding: 22px;
    }

    .service-guarantees .list li .icon {
        margin-top: 26px;
    }

    .service-guarantees .list li .text-box {
        margin-top: 36px;
    }

    .service-process .list li .text-box {
        margin-top: 20px;
    }

    .service-process .list li .text-en,
    .service-process .list li .text-zh {
        font-size: 18px;
    }

    .service-process .list {
        padding: 30px 25px;
    }

    .service-standards .en {
        font-size: 36px;
    }

    .service-standards .contactBtn {
        line-height: 50px;
    }

    .service-guarantees .list,
    .service-process .box-c,
    .service-process .box-c,
    .service-standards .en,
    .service-standards .contactBtn,
    .service-standards .list {
        margin-top: 30px;
    }

    .service-guarantees .des,
    .service-process .des,
    .service-standards .des {
        margin-top: 30px;
    }

    .websiteConstruction .websiteType li {
        padding: 25px;
    }

    .websiteConstruction .websiteServices .list li {
        padding: 25px;
    }

    .websiteConstruction .websiteServices .des {
        font-size: 20px;
    }

    .websiteConstruction .websiteServices {
        padding-top: 90px;
    }

    .websiteConstruction .websiteServices .list {
        margin-top: 30px;
    }

    .service-process,
    .websiteConstruction .websiteType {
        padding: 50px 0;
    }

    .service-guarantees {
        padding-bottom: 50px;
    }
}