body {
    min-width: 360px;
}

.container {
    width: 100%;
    background: url("../images/ops-banner-bg.png") no-repeat;
    background-size: 100% 631px;
    padding-top: 76px;
}

.banner {
    text-align: center;
}

.banner-title {
    font-size: 50px;
    font-weight: bold;
    color: #252525;
    margin: 111px auto 30px;
}

.font-colorful {
    background: linear-gradient(to right, #6D62ED 0%, #BD64C8 39%, #F5769E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.banner-subtitle {
    font-size: 18px;
    color: #565656;
}

.packages-wrap {
    padding: 90px 12px;
}

.responsive {
    max-width: 1240px;
    margin: 0 auto;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 16px;
}

.grid .grid-item {
    width: calc((100% - 48px) / 4);
}

@media screen and (max-width: 1250px) {
    .grid .grid-item {
        width: calc((100% - 16px) / 2);
    }
}

@media screen and (max-width: 678px) {
    .grid .grid-item {
        width: 100%;
    }
}

.package {
    border-radius: 20px;
    height: 560px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform .4s ease;
    padding: 0 22px;
    background: url("../images/ops-package-bg.png") no-repeat 50% / cover;
}

.package:hover {
    transform: translateY(-30px);
    background-image: url("../images/ops-package-active-bg.png");
}

@media screen and (max-width: 1250px) {
    .package:hover {
        transform: none;
    }
}

.package .package-top {
    height: 154px;
    padding-top: 40px;
}

.package-top .title {
    font-weight: 500;
    font-size: 20px;
    color: #252525;
    margin: 18px 0 20px;
}

.package-center {
    padding: 30px 0 12px;
    border: 1px dashed #E9E7EA;
    border-width: 1px 0 1px;
}

.package:hover .package-center {
    border-color: #FFFFFF;
}

.package-center .center-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
    color: #4E5E83;
}

.package-center .center-item img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.package .package-bottom {
    position: absolute;
    bottom: 30px;
}

.price-wrap {
    font-size: 18px;
    color: #FE7102;
}

.price-wrap .price {
    font-size: 36px;
    font-weight: 500;
}

.package-bottom .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 254px;
    height: 54px;
    border-radius: 27px;
    border: 1px solid #7873E5;
    font-size: 18px;
    color: #7873E5;
    margin-top: 20px;
    cursor: pointer;
}

.package-bottom .btn:hover {
    background: linear-gradient(180deg, #5995FE 0%, #7B73FF 100%);
    color: #FFFFFF;
    border: none;
}

.feature-wrap {
    background: url("../images/ops-feature-bg.png") no-repeat 50% / cover;
    padding: 78px 12px 121px;
}

.feature-title {
    font-weight: 500;
    font-size: 36px;
    color: #252525;
    text-align: center;
}

.feature-subtitle {
    font-size: 20px;
    color: #4E5E83;
    margin: 16px auto 75px;
    text-align: center;
}

.feature-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 16px;
}

.feature-ul .feature-li {
    width: calc((100% - 16px) / 2);
}

@media screen and (max-width: 768px) {
    .feature-ul .feature-li {
        width: 100%;
    }
}

.feature {
    height: 238px;
    padding: 30px;
    background: url("../images/ops-feature.png") no-repeat 50% / cover;
    border-radius: 20px;
    border: 2px solid #FFFFFF;
    transition: background-image .3s ease, border-color .3s ease;
}

.feature:hover {
    border-color: #D2D0FF;
    background-image: url("../images/ops-feature-active.png");
}

.feature:hover .title {
    border-bottom: 1px dashed #FFFFFF;
}

@media screen and (max-width: 980px) {
    .feature {
        padding: 24px;
    }
}

.feature .title {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    color: #343434;
    height: 68px;
    border-bottom: 1px dashed #E9E7EA;
}

@media screen and (max-width: 980px) {
    .feature .title {
        font-size: 18px;
    }
}

.feature .title .title-img {
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

.feature .content {
    font-size: 16px;
    color: #565656;
    line-height: 30px;
    padding-top: 20px;
}

@media screen and (max-width: 980px) {
    .feature .title .title-img {
        width: 40px;
        height: 40px;
    }

    .feature .content {
        font-size: 14px;
    }
}