a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

/* content 1 */
.content-1 {
    width: 100%;
    min-height: 480rem;
    background: #ededed;
}

.content-1-inner {
    max-width: 1440rem;
    height: 480rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.cont-1-text {
    width: 100%;
    height: 200rem;
    display: flex;
    align-items: center;
    background: #17448f;
}

.cont-1-text p {
    width: 740rem;
    font-size: 64rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #ffffff;
    line-height: 72rem;
    padding-left: 24rem;
}

.content-1-inner span {
    display: block;
    font-size: 24rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #0e2a58;
    padding-left: 32rem;
}

.content-1-inner .imgBox {
    width: 612rem;
    height: 460rem;
    position: absolute;
    top: 10rem;
    right: 80rem;
}

/* content-2 */
.content-2 {
    max-width: 1440rem;
    min-height: 272rem;
    margin: 0 auto;
    margin-top: 100rem;
}

.content-2 .left p:first-of-type {
    max-width: 799rem;
    font-size: 44rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #123570;
    line-height: 56rem;
    margin-top: 4rem;
}

.content-2 .left p:nth-of-type(2) {
    max-width: 701rem;
    font-size: 16rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: left;
    color: #666666;
    line-height: 24rem;
    margin-top: 16rem;
}

@media screen and (max-width: 992px) {
    .content-2 .left {
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        align-items: center;
    }

    .content-2 .right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-10 {
        justify-content: center;
    }
}

/* content-3 */
.content-3 {
    max-width: 1440rem;
    min-height: 340rem;
    margin: 0 auto;
    margin-top: 68rem;
    background: #ffffff;
    box-shadow: 0 12rem 36rem 0 rgba(0, 0, 0, 0.04);
}

.content-3 div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-3 div p {
    font-size: 48rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #0a1d3d;
}

.content-3 div span {
    font-size: 16rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    color: #0a1d3d;
    line-height: 24rem;
}

/* content-4 */
.content-4 div:first-of-type {
    width: 100%;
    height: 220rem;
    background: #0e2a58;
    text-align: center;
    margin-top: 110rem;
}

.content-4 div p {
    font-size: 56rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-top: 46rem;
    margin-bottom: 16rem;
}

.content-4 div span {
    font-size: 20rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
}

.content-4 .linkBox {
    width: 100%;
    margin: 0 auto;
    height: 44rem;
    background: #ff9f00;
    position: relative;
    overflow: hidden;
}

.linkBox {
    position: relative;
    overflow: hidden;
}

/* 半透明“帘子” */
.linkBox::before,
.linkBox::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
    z-index: 1;
    pointer-events: none;
}

.linkBox::before {
    background: #FEB439;
    opacity: 0.5;
    transition-delay: 0s;
}

.linkBox::after {
    background: #FEB439;
    opacity: 1;
    transition-delay: 0.2s;
}

/* 悬浮时两个帘子都降下 */
.linkBox:hover::before,
.linkBox:hover::after {
    transform: scaleY(1);
}

/* 保证内容在上层 */
.linkBox>* {
    position: relative;
    z-index: 2;
}

.content-4 .linkBox .link {
    max-width: 1440rem;
    height: 100%;
    margin: 0 auto;
}

.content-4 .linkBox .link a {
    display: block;
    width: 440rem;
    height: 100%;
    font-size: 14rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: left;
    color: #0a1d3d;
    line-height: 44rem;
}

.content-5 {
    max-width: 1440rem;
    margin: 0 auto;
}

.content-5 .title {
    padding-left: 12rem;
    margin-top: 24rem;
    width: 100%;
    height: 36rem;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    margin-bottom: 20rem;
}

.content-5 .title a:first-of-type {
    font-size: 14rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: left;
    color: #0e2a58;
}

.content-5 .title a:last-of-type {
    font-size: 14rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: left;
    color: #0e2a58;
}

.content-5 .title a:hover {
    color: #0068d7 !important;
    text-decoration: underline !important;
    text-decoration-color: #0068d7 !important;
}

.content-5 .box {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 17rem;
}

.content-5 .box .product-box {
    display: inline-block;
    width: 128rem;
    height: 150rem;
    box-sizing: border-box;
    margin-bottom: 33rem;
}

.content-5 .box .product-box:hover .imgBox {
    border: 1rem solid #0068D7;
}

.content-5 .box .product-box .imgBox {
    width: 128rem;
    height: 128rem;
    background: #ffffff;
    border: 1rem solid #bcc3cd;
    margin-bottom: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-5 .box .product-box .imgBox img {
    width: 92rem;
    height: 92rem;
}

.product-box p {
    font-size: 11rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
    color: #333333;
}

/* 内容8 */
.content-6 {
    background-image: url('/static/frontend/pc/images/home_4.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    min-height: 970rem;
    margin-top: 69rem;
}

.cont6-box {
    max-width: 1440rem;
    margin: 0 auto;
}

.cont6-box h2 {
    font-size: 56rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    padding-top: 76rem;
    padding-bottom: 16rem;
}

.cont6-box p {
    font-size: 16rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 52rem;
    color: #ffffff;
}

.itemContainer {
    gap: 18rem;
}

@media screen and (max-width: 1155px) {

    .itemContainer,
    .content-8 div,
    .content-9,
    .content-5 .box {
        justify-content: center;
    }
}

.cont6-box .item {
    display: inline-block;
    width: 144rem;
    height: 132rem;
    background: #ffffff;
    border: 1rem solid #0a1d3d;
    border-radius: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .25s linear;
}

.brand-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    background: linear-gradient(180deg, rgba(255, 159, 0, 0), rgba(255, 159, 0, 0.85) 90%);
    backdrop-filter: blur(0);
    border-radius: 4rem;
    -webkit-backdrop-filter: blur(0);
}

.cont6-box .item:hover .brand-overlay {
    opacity: 1;
}

.cont6-box .item:hover img {
    transform: scale(1.14);
}

.cont6-box .item img {
    width: 128rem;
    height: 76rem;
    margin-bottom: 12rem;
    transition: all .25s linear;
}

.cont6-box .item span {
    font-size: 16rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #0e2a58;
}

.cont6-box .btnBox {
    max-width: 1440rem;
    display: flex;
    flex-direction: row-reverse;
}

.btnBox a {
    display: block;
    line-height: 48rem;
    width: 144rem;
    height: 48rem;
    background: #ff9f00;
    border-radius: 4rem;
    font-size: 16rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    margin-top: 44rem;
}

.btnBox a:hover {
    background: #feb439;
}

/* content-8 */
.content-8 {
    max-width: 1440rem;
    margin: 0 auto;
    margin-top: 120rem;
}

.content-8 h2 {
    font-size: 44rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #123570;
    line-height: 56rem;
}

.content-8 h5 {
    font-size: 20rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #333333;
    margin-top: 28rem;
    margin-bottom: 12rem;
}

.content-8 p {
    font-size: 16rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    color: #666666;
    line-height: 24rem;
    margin-bottom: 44rem;
}

.content-8 div {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
}

.content-8 div a {
    display: inline-block;
    width: 476rem;
    height: 120rem;
    background: #0a1d3d;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    text-transform: capitalize;
    transition: all 0.2s linear 0s;
    overflow: hidden;

    &:hover {
        box-shadow: 0 16rem 32rem 0 rgba(255, 159, 0, 0.24);

        &:before {
            right: 0;
            text-indent: 0;
        }
    }
}

.content-8 div a img {
    margin-left: 34rem;
    margin-right: 24rem;
}

.content-8 div a p {
    font-size: 20rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #ffffff;
    line-height: 28rem;
    text-align: left;
    margin-bottom: 0;
}

.content-8 div a:first-of-type {
    background-color: #ff9f00;
    box-shadow: 0 16rem 32rem 0 rgba(255, 159, 0, 0.24);
}

.content-8 div a:first-of-type::before {
    content: url('/static/frontend/pc/images/home_65.webp');
    font-size: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0rem;
    width: 72rem;
    height: 100%;
    background-color: #FEB439;
    transition: all 0.2s linear 0s;
    text-align: center;
}

.content-8 div a:hover {
    background: #FF9F00;
}

.content-8 div a::before {
    content: url('/static/frontend/pc/images/home_65.webp');
    font-size: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: -72rem;
    width: 72rem;
    height: 100%;
    background-color: #FEB439;
    transition: all 0.2s linear 0s;
    text-align: center;
}

/* content-9 */
.content-9 {
    max-width: 1440rem;
    margin: 0 auto;
    margin-top: 28rem;
    gap: 8rem;
}

.content-9 div {
    padding-left: 24rem;
    padding-top: 28rem;
    width: 354rem;
    height: 168rem;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1rem solid #dedede;
    border-radius: 4rem;
}

.content-9 div:hover {
    border: 1rem solid #0068D7;
}

.content-9 div p {
    font-size: 20rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #0a1d3d;
    height: 24rem;
}

.content-9 div span {
    display: inline-block;
    width: 306rem;
    height: 45rem;
    font-size: 12rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: 12rem;
    margin-bottom: 20rem;
    color: #666666;
    letter-spacing: -0.2rem;
}

.content-9 div a {
    font-size: 12rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #0068d7;
}

.content-10 {
    width: 100%;
    min-height: 500rem;
    display: flex;
    margin-top: 120rem;
    flex-wrap: wrap;
}

.content-10 .left {
    height: 500rem;
}

.content-10 .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-10 .right {
    flex: 1;
    min-height: 500rem;
    background: #0e2a58;
    padding-top: 72rem;
    padding-left: 76rem;
}

.content-10 .right h2 {
    max-width: 644rem;
    min-height: 156rem;
    font-size: 40rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #ffffff;
    line-height: 52rem;
}

.content-10 .right p {
    max-width: 644rem;
    min-height: 48rem;
    font-size: 20rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.80);
    margin-top: 20rem;
    margin-bottom: 80rem;
}

.content-10 .right a {
    display: block;
    width: 176rem;
    height: 48rem;
    background: #ff9f00;
    border-radius: 4rem;
    font-size: 16rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    line-height: 48rem;
    color: #ffffff;
}

.content-10 .right a:hover {
    background-color: #feb439;
}

.bottom_box {
    margin-top: 0;
}