/* 适用于移动端 */
@media (max-width:768px) {
    .banner-pc {
        display: none;
    }

    .content {
        padding: 20px 15px;
    }

    .module {
        max-width: 540px;
    }

    .module-title {
        margin-bottom: 15px;
        padding: 0 20px;
        width: 100%;
        font-weight: bold;
        font-size: 22px;
        line-height: 30px;
        color: #2C2D3F;
        text-align: center;
    }

    .module-intro {
        padding: 0 15px;
        width: 100%;
        font-size: 14px;
        color: #393D45;
        text-align: center;
    }

    .content2 {
        background: #F0F2F9;
    }

    .module2-main {
        margin-top: 20px;
    }

    .module2-card {
        margin-bottom: 15px;
        padding: 34px 27px 53px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(180deg, #FDFEFF 0%, #F5F8FF 100%);
        border-radius: 8px;
    }

    .module2-card-icon {
        width: 80px;
        height: 80px;
    }

    .module2-card-title {
        margin-top: 16px;
        font-weight: bold;
        font-size: 20px;
        color: #10203D;
    }

    .module2-card-text {
        margin-top: 20px;
        font-size: 17px;
        color: #686D7C;
        text-align: center;
        line-height: 25px;
    }
}

/* 除移动端的屏幕 */
@media (min-width:768px) {
    .banner-moblie {
        display: none;
    }

    /* 卡片悬停效果 */
    .shadow {
        transform: translateY(0);
        /* box-shadow: none; */
        transition: all 0.3s ease;
    }

    .shadow:hover {
        transform: translateY(-10px);
        box-shadow: 0px 8px 22px 0px rgba(92, 99, 125, 0.25);
    }

    .carousel-item img {
        width: 100%;
        object-fit: cover;
    }

    .module-title {
        padding: 0 20px;
        width: 100%;
        font-weight: bold;
        color: #2C2D3F;
        text-align: center;
    }

    .module-intro {
        padding: 0 15px;
        width: 100%;
        color: #393D45;
        text-align: center;
    }

    .content2 {
        background: #F0F2F9;
    }

    .module2-main {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .module2-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(180deg, #FDFEFF 0%, #F5F8FF 100%);
        border-radius: 8px;
    }

    .module2-card-title {
        font-weight: bold;
        color: #10203D;
    }

    .module2-card-text {
        color: #686D7C;
    }
}

@media (min-width:768px) and (max-width:992px) {
    .module-title {
        font-size: 26px;
        line-height: 26px;
    }

    .module-intro {
        font-size: 17px;
    }

    .module {
        max-width: 768px;
    }

    .module2 {
        padding: 40px 0 44px;
    }

    .module2-main {
        margin-top: 51px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 15px;
        /* 垂直方向上的间距 */
        column-gap: 39px;
        /* 水平方向上的间距 */
    }

    .module2-card {
        padding: 22px 17px 34px;
    }

    .module2-card-icon {
        width: 51px;
        height: 51px;
    }

    .module2-card-title {
        margin-top: 13px;
        font-weight: bold;
        font-size: 17px;
        color: #10203D;
    }

    .module2-card-text {
        margin-top: 17px;
        font-size: 14px;
        color: #686D7C;
        text-align: center;
        line-height: 25px;
    }
}

@media (min-width:992px) and (max-width:1200px) {
    .module-title {
        font-size: 33px;
        line-height: 33px;
    }

    .module-intro {
        font-size: 17px;
    }

    .module {
        max-width: 992px;
    }

    .module2 {
        padding: 51px 0 69px;
    }

    .module2-main {
        margin-top: 66px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px;
        /* 垂直方向上的间距 */
        column-gap: 50px;
        /* 水平方向上的间距 */
    }

    .module2-card {
        padding: 28px 22px 44px;
    }

    .module2-card-icon {
        width: 66px;
        height: 66px;
    }

    .module2-card-title {
        margin-top: 13px;
        font-weight: bold;
        font-size: 17px;
        color: #10203D;
    }

    .module2-card-text {
        margin-top: 17px;
        font-size: 14px;
        color: #686D7C;
        text-align: center;
        line-height: 25px;
    }
}

@media (min-width:1200px) {
    .module-title {
        font-size: 40px;
        line-height: 40px;
    }

    .module-intro {
        font-size: 20px;
    }

    .module {
        max-width: 1200px;
    }

    .module2 {
        padding: 62px 0 83px;
    }

    .module2-main {
        margin-top: 80px;
        row-gap: 24px;
        /* 垂直方向上的间距 */
        column-gap: 60px;
        /* 水平方向上的间距 */
    }

    .module2-card {
        padding: 34px 27px 53px;
    }

    .module2-card-icon {
        width: 80px;
        height: 80px;
    }

    .module2-card-title {
        margin-top: 16px;
        font-size: 20px;
    }

    .module2-card-text {
        margin-top: 20px;
        font-size: 17px;
        text-align: center;
        line-height: 25px;
    }
}

body {
    background: #F6F7FB;
}

.content {
    width: 100%;
}

.module {
    margin-right: auto;
    margin-left: auto;
}