/*==========================
 <-- 产品服务头图样式 -->
===========================*/
.product-head {
    background: url('../image/productBack.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: .80rem;
}

.product-head .area-content {
    padding: 2.04rem 0 1.84rem 0;
}

.product-head h1 {
    text-align: center;
    font-size: .48rem;
    line-height: .67rem;
    margin-bottom: .15rem;
    color: var(--primary-color);
    color: #fff;
}

.product-head h3 {
    color: rgba(61, 61, 61, 0.5);
    color: rgba(255, 255, 255, .5);
    font-size: .36rem;
    line-height: .50rem;
    text-align: center;
}

/*==========================
 <-- 主要产品样式 -->
===========================*/
.main-product {
    background: url('../image/mainProduct.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.main-product-h1 {
    color: var(--primary-font-color1);
    font-size: .36rem;
    line-height: .5rem;
    text-align: center;
    position: relative;
    margin-bottom: .12rem;
}

.main-product-h4 {
    color: var(--primary-font-color2);
    font-size: .24rem;
    line-height: .34rem;
    text-align: center;
    margin-bottom: .60rem;
    font-weight: 400;
}

.main-list-area {
    position: relative;
    border-radius: .12rem;
    border: .02rem solid #fff;
    box-shadow: 0 .08rem .2rem 0 rgba(217, 230, 246, 0.5);
}

.main-glass {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0.12rem;
    backdrop-filter: blur(30px);
}

.main-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: rgba(255, 255, 255, .1);
}

.main-list-item {
    padding: .32rem .4rem;
    border-right: .01rem solid rgba(228, 237, 243, 0.5);
    border-bottom: .01rem solid rgba(228, 237, 243, 0.5);
}

.main-list-item:nth-child(5n) {
    border-right: none;
}

.main-list-item:nth-child(6),
.main-list-item:nth-child(7),
.main-list-item:nth-child(8),
.main-list-item:nth-child(9),
.main-list-item:nth-child(10) {
    border-bottom: none;
}

.main-list-item .main-head {
    display: flex;
    align-items: center;
    margin-bottom: .15rem;
}

.main-list-item .main-head h6 {
    font-size: .18rem;
    line-height: .25rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    text-transform: capitalize;
}

.main-list-item .main-head img {
    width: .18rem;
    height: .18rem;
    margin-right: .12rem;
}

.main-list-item .main-info {
    font-size: .14rem;
    line-height: .22rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    text-align: justify;
    font-weight: 400;
    color: var(--primary-font-color2);
    text-transform: capitalize;
}

.main-list-item:hover .main-head {
    color: var(--primary-color);
}

/*==========================
 <-- 产品服务详情样式 -->
===========================*/
.product-detail {
    background: linear-gradient(180deg, #FFFFFF, #F5F8FF);
}

.product-detail-h1 {
    color: var(--primary-font-color1);
    font-size: .36rem;
    line-height: .5rem;
    text-align: center;
    position: relative;
    margin-bottom: .12rem;
}

.product-detail-h4 {
    color: var(--primary-font-color2);
    font-size: .24rem;
    line-height: .34rem;
    text-align: center;
    margin-bottom: .60rem;
    font-weight: 400;
}

.product-detail-content {
    position: relative;
}

.moblie-detail {
    display: none;
}

.detail-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: .30rem;
}

.detail-list-item {
    position: relative;
    transition: .2s linear;
}

.detail-list-item-back {
    width: 100%;
    height: 100%;
}

.detail-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(54, 121, 255, 0.7), rgba(52, 120, 255, 1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .2s linear;
}

.core-list-title {
    color: #fff;
    font-size: .20rem;
    line-height: .28rem;
    margin-bottom: .24rem;
    text-align: center;
}

.core-list li {
    font-size: .16rem;
    line-height: .22rem;
    margin-bottom: .15rem;
    text-align: center;
    color: #fff;
}

.core-list li:last-child {
    margin-bottom: 0;
}

.detail-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 95, 241, 0), rgba(22, 95, 241, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.detail-icon img {
    width: .80rem;
    height: .80rem;
    margin-bottom: .20rem;
}

.detail-icon h4 {
    color: #fff;
    font-size: .20rem;
    line-height: .28rem;
}

.detail-list:last-child {
    margin-bottom: 0;
}

.detail-list-item:hover .detail-icon {
    opacity: 0;
}

.detail-list-item:hover .detail-hover {
    opacity: 1;
}

/*==========================
 <-- 产品详情头图样式 -->
===========================*/
.product-info-head {
    margin-top: .8rem;
    height: 5.5rem;
    background: url('../image/productInfoHead.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.product-info-head .area-content {
    padding: 1.00rem 0 1.20rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-info-head .info-title {
    font-size: .44rem;
    line-height: .62rem;
    text-align: center;
    margin-bottom: .36rem;
    color: var(--primary-color);
}

.product-info-head .info-type {
    width: 27em;
    color: var(--primary-font-color2);
    font-size: .24rem;
    line-height: .32rem;
    font-weight: 400;
    text-align: justify;
    margin-bottom: .48rem;
}

.product-info-head .info-button {
    background-color: var(--primary-color);
    color: #fff;
    width: 1.54rem;
    height: .48rem;
    line-height: .48rem;
    border-radius: .04rem;
    font-size: .16rem;
    text-align: center;
    display: none;
}

/*==========================
 <-- 产品详情样式 -->
===========================*/
.product-info {
    position: relative;
    background-color: #fff;
}

.product-info.color {
    background-color: #F8FBFF;
}

.product-info .area-content {
    padding: .8rem 0 .6rem 0;
}

.product-info .product-info-h1 {
    font-size: .36rem;
    line-height: .5rem;
    margin-bottom: .2rem;
    text-align: center;
}

.product-info .product-info-h4 {
    font-size: .24rem;
    line-height: .34rem;
    margin-bottom: .65rem;
    text-align: center;
    font-weight: 400;
    color: var(--primary-font-color2);
}

.product-line .product-line-title {
    font-size: .36rem;
    line-height: .5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: .48rem;
}

.product-line .product-line-title span {
    color: var(--primary-color);
}

.product-line img {
    width: 100%;
}

.product-info-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info-left {
    flex-shrink: 0;
    width: 6.76rem;
    height: 3.73rem;
    margin-right: .86rem;
    position: relative;
}

/* .product-info-left::after {
    content: '';
    background: url('../image/productInfoBack.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -0.3rem;
    top: 0;
    width: calc(100% + .6rem);
    height: 100%;
} */

.product-info-left img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.product-info-right {
    width: 5.77rem;
}

.product-info-right .info-ul-li {
    padding: .2rem .24rem;
    border-radius: .08rem;
}

.product-info-right .info-ul-li:last-child {
    margin-bottom: 0;
}

.product-info-right .info-ul-li h4 {
    font-size: .2rem;
    line-height: .28rem;
    font-weight: 600;
    transition: 0s;
}

.product-info-right .info-ul-li ul {
    margin-top: 0;
    height: 0;
    opacity: 0;
    display: none;
}

.product-info-right .info-ul-li ul li {
    font-size: .16rem;
    line-height: .26rem;
}

.product-info.back .product-info-content {
    flex-direction: row-reverse;
}

.product-info.back .product-info-left {
    margin-right: 0;
}

.product-info.back .product-info-right {
    margin-right: .86rem;
}

.product-info-right .info-ul-li.active {
    background: linear-gradient(30deg, #F9FBFF, #fff, #Fff);
    box-shadow: 0 .02rem .12rem 0 #E7EDF3;
    border: .02rem solid #fff;
}

.product-info-right .info-ul-li.active h4 {
    color: var(--primary-color);
}

.product-info-right .info-ul-li.active ul {
    height: 100%;
    opacity: 1;
    display: block;
    margin-top: .15rem;
}

.product-head-title {
    font-size: .32rem;
    line-height: .5rem;
    margin-bottom: .48rem;
    text-align: center;
    font-weight: 600;
}

.product-wlw {
    background-color: #F8FBFF;
}

.product-wlw-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: .4rem;
}

.product-wlw-list-item {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .48rem .4rem 0;
    border-radius: .2rem;
    height: 3.65rem;
}

.product-wlw-list-item .wlw-icon {
    width: .48rem;
    height: .48rem;
    margin-bottom: .24rem;
}

.product-wlw-list-item .wlw-icon img {
    width: 100%;
    height: 100%;
}

.product-wlw-list-item .wlw-title {
    font-size: .24rem;
    line-height: .34rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: .24rem;
}

.product-wlw-list-item .wlw-message {
    font-size: .16rem;
    line-height: .24rem;
    text-align: justify;
}

.product-wlw-list-item:hover {
    box-shadow: 0 .04rem .1rem 0 rgba(214, 233, 255, 0.3);
}

.product-point .point-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.point-list-item {
    display: flex;
    align-items: center;
    box-shadow: inset 0rem 0rem .01rem .01rem rgba(22, 95, 241, 0.3);
    padding: .2rem;
    border-radius: .08rem;
    margin-bottom: .3rem;
}

.point-list-item img {
    width: .24rem;
    height: .24rem;
    margin-right: .2rem;
}

.point-list-item h6 {
    font-size: .16rem;
    line-height: .24rem;
    font-weight: 400;
}

.point-list-item:last-child {
    margin-bottom: 0;
}

.point-image {
    min-width: 7.4rem;
    width: 7.4rem;
    margin-left: .06rem;
}

.point-image img {
    width: 100%;
}

.product-use {
    background-color: #F8FBFF;
}

.use-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.use-list-item {
    padding: .15rem;
    box-shadow: inset 0 0 .03rem .03rem #fff, 0 .04rem .12rem 0 rgba(214, 233, 255, 0.5);
    background-color: #F4F9FF;
    border-radius: .2rem;
    width: 4.4rem;
    margin-right: .6rem;
    margin-bottom: .48rem;
}

.use-content {
    padding: .2rem;
    border-radius: .2rem;
    height: 3.65rem;
    background-color: #fff;
}

.use-content-image {
    width: 100%;
    height: 1.84rem;
    margin-bottom: .15rem;
}

.use-content-image img {
    width: 100%;
    height: 100%;
}

.use-content-title {
    font-size: .2rem;
    line-height: .28rem;
    margin-bottom: .1rem;
    font-weight: 600;
}

.use-content-message {
    font-size: .16rem;
    color: var(--primary-font-color2);
    font-weight: 400;
}

.use-list-item:nth-child(3n) {
    margin-right: 0;
}

.use-list-item:nth-child(4n),
.use-list-item:nth-child(5n) {
    margin-bottom: 0;
}

.use-list-item:hover .use-content-title {
    color: var(--primary-color);
}

.product-yj {
    background-color: #F8FBFF;
}

.product-yj-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: .4rem 1.77rem;
}

.product-yj-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: .4s;
}

.yj-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background-color: #fff;
    padding: .3rem;
    margin-bottom: .2rem;
    transition: .4s;
    user-select: none;
}

.yj-icon img {
    width: 100%;
    height: 100%;
}

.yj-title {
    font-size: .24rem;
    line-height: .34rem;
    margin-bottom: .15rem;
    font-weight: 600;
}

.yj-message {
    text-align: center;
    color: var(--primary-font-color2);
    font-size: .16rem;
    line-height: .24rem;
    font-weight: 400;
    text-align: justify;
}

.product-yj-list-item:hover {
    transform: translateY(-0.3rem);
}

.product-yj-list-item:hover .yj-icon {
    transform: rotateY(180deg);
}

.product-yj-list-item:hover .yj-title {
    color: var(--primary-color);
}

.product-yj-use {
    background-color: #F8FBFF;
}

.yj-use {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: .4rem;
}

.yj-use-item {
    background-color: #fff;
    box-shadow: 0 .04rem .12rem 0 rgba(214, 233, 255, 0.5);
    border-radius: .12rem;
}

.yj-use-item img {
    width: 100%;
    height: 1.8rem;
    border-radius: .12rem .12rem 0 0;
}

.yj-use-item .yj-use-title {
    font-size: .2rem;
    line-height: .28rem;
    font-weight: 600;
    padding: .2rem 0;
    text-align: center;
    border-radius: 0 0 .12rem .12rem;
    transition: 0s;
}

.yj-use-item:hover .yj-use-title {
    color: var(--primary-color);
}

.yj-point {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: .4rem .52rem;
}

.yj-point-item {
    display: flex;
    flex-direction: column;
    padding: .4rem;
    background: linear-gradient(90deg, #F5F9FF, #F7FAFF, #fff);
    border-radius: .08rem;
    border: .01rem solid #E5EFFF;
}

.yj-point-title {
    font-size: .24rem;
    line-height: .34rem;
    font-weight: 600;
    margin-bottom: .24rem;
    transition: 0s;
}

.yj-point-message {
    font-size: .16rem;
    line-height: .24rem;
}

.yj-point-item:hover {
    border-color: var(--primary-color);
}

.yj-point-item:hover .yj-point-title {
    color: var(--primary-color);
}

.testimonials-box img {
    width: 6.99rem;
    height: 3.43rem;
}

.product-other {
    background-color: #F8FBFF;
}

.other-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: .4rem;
}

.other-list-item {
    background-color: #fff;
    padding: .28rem .24rem;
    border-radius: .16rem;
}

.other-list-item .other-title {
    font-size: .24rem;
    line-height: .34rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.other-list-item .other-message {
    font-size: .18rem;
    line-height: .24rem;
    margin-bottom: .28rem;
}

.other-list-item .other-image {
    background: linear-gradient(180deg, #DBEBFF, rgba(219, 235, 255, 0));
    padding: .15rem;
    border-radius: .12rem;
    height: 2rem;
}

.other-list-item .other-image img {
    width: 100%;
    height: 100%;
}

.edu-info {
    background-color: #fff;
}

.edu-info .area-content {
    padding: .5rem 0;
    height: 6.21rem;
}

.edu-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.edu-info-left {
    height: 100%;
}

.edu-info-left img {
    height: 100%;
    object-fit: cover;
}

.edu-info-right {
    display: flex;
    flex-direction: column;
}

.edu-info-right h2 {
    font-size: .36rem;
    line-height: .5rem;
    margin-bottom: .2rem;
    padding-left: .23rem;
}

.edu-info-right h2 span {
    color: var(--primary-color);
}

.edu-info-right h6 {
    font-size: .2rem;
    line-height: .3rem;
    color: var(--primary-font-color2);
    margin-bottom: 1rem;
    margin-left: .23rem;
    font-weight: 400;
    width: 4.8rem;
    text-align: justify;
}

.edu-info-right .edu-line {
    width: 100%;
    height: .2rem;
    width: 5.71rem;
    background: linear-gradient(270deg, var(--primary-color), rgba(255,255,255,0));
}

.edu-info.back .edu-info-content {
    flex-direction: row-reverse;
}

.edu-info.back .edu-info-right h2 {
    padding-left: 1rem;
}

.edu-info.back .edu-info-right h6 {
    margin-left: 1rem;
}

.edu-info.back .edu-info-right .edu-line {
    background: linear-gradient(90deg, var(--primary-color), rgba(255,255,255,0));
}

/* .owl-dots {
    position: relative;
    text-align: center;
}

.owl-dot {
    display: inline-block;
    border: 2px solid #f8f9fd;
    width: .13rem;
    height: .13rem;
    border-radius: 50%;
    margin-top: .48rem;
    margin-right: .06rem;
    background-color: #f8f9fd;
    padding: 0;
}

.owl-dot.active {
    display: inline-block;
    background: #E5EFFF;
    border-radius: 50%;
    margin-top: .11rem;
    margin-right: .06rem;
    border-color: #E5EFFF;
} */

/*==========================
 <-- 核心业务样式 -->
===========================*/
.core-business {
    background: url('../image/coreBusiness.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.core-business .area-content {
    padding-bottom: .32rem;
}

.core-business .core-business-h1 {
    font-size: .36rem;
    line-height: .5rem;
    margin-bottom: .2rem;
    text-align: center;
}

.core-business .core-business-h4 {
    font-size: .24rem;
    line-height: .34rem;
    margin-bottom: .65rem;
    text-align: center;
    font-weight: 400;
    color: var(--primary-font-color2);
}

.core-detail-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.core-list-item {
    background-color: #FCFDFE;
    border-radius: .12rem;
    padding: .48rem .32rem .24rem .32rem;
    width: calc((100% - 0.92rem) / 5);
    position: relative;
    margin-bottom: .48rem;
    margin-right: .23rem;
}

.core-list-item:nth-child(5n) {
    margin-right: 0;
}

.core-head {
    font-size: .24rem;
    line-height: .34rem;
    font-weight: 600;
    padding-bottom: .24rem;
    border-bottom: .005rem solid var(--primary-color);
}

.core-ul {
    padding-top: .24rem;
}

.core-ul-item {
    display: flex;
    align-items: center;
    margin-bottom: .2rem;
}

.core-ul-item:last-child {
    margin-bottom: 0;
}

.core-ul-item img {
    width: .12rem;
    height: .12rem;
    margin-right: .08rem;
}

.core-ul-item h6 {
    font-size: .16rem;
    line-height: .22rem;
    font-weight: 400;
    white-space: nowrap;
}

.core-icon {
    position: absolute;
    width: .48rem;
    height: .48rem;
    border-radius: 50%;
    box-shadow: 0 .04rem .08rem 0 rgba(106, 143, 254, 0.3);
    left: .32rem;
    top: -0.24rem;
}

/*==========================
 <-- 我们的服务样式 -->
===========================*/
/* .service-detail {
    background: #fff;
}

.service-detail .area-content {
    padding: .80rem 0;
}

.service-detail-h1 {
    color: var(--primary-font-color1);
    font-size: .40rem;
    line-height: .56rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    margin-bottom: .12rem;
}

.service-detail-h4 {
    color: var(--primary-font-color2);
    font-size: .20rem;
    line-height: .28rem;
    text-align: center;
    margin-bottom: .60rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: .72rem;
}

.service-list-item {
    position: relative;
    padding: 1.60rem .32rem 0 .32rem;
}

.service-list-item img {
    width: 100%;
    height: 3.20rem;
    position: absolute;
    left: 0;
    top: 0;
}

.service-info {
    position: relative;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0rem .02rem .12rem 0 #E7EDF3;
    height: 2.67rem;
    padding: .24rem .24rem 0 .24rem;
}

.service-info h2 {
    font-size: .20rem;
    line-height: .28rem;
    margin-bottom: .15rem;
}

.service-info h4 {
    font-size: .14rem;
    line-height: .22rem;
    color: var(--primary-font-color2);
} */

/*==========================
 <-- 经典案例样式 -->
===========================*/
/* .classic-case {
    background: #F5F8FF;
}

.classic-case .area-content {
    padding: .80rem 0;
}

.classic-case-h1 {
    color: var(--primary-font-color1);
    font-size: .40rem;
    line-height: .56rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    margin-bottom: .12rem;
}

.classic-case-h4 {
    color: var(--primary-font-color2);
    font-size: .20rem;
    line-height: .28rem;
    text-align: center;
    margin-bottom: .60rem;
}

.classic-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: .76rem;
}

.classic-list-item {
    position: relative;
}

.classic-list-item .classic-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.classic-list-item .classic-info {
    position: relative;
    z-index: 1;
    padding: .77rem 2.50rem .42rem .42rem;
    background: linear-gradient(90deg, rgba(3, 22, 61, 0.702), rgba(3, 22, 61, 0));
}

.classic-list-item .classic-info h2 {
    font-size: .18rem;
    line-height: .25rem;
    color: #fff;
    margin-bottom: .15rem;
}

.classic-list-item .classic-info h4 {
    font-size: .14rem;
    line-height: .22rem;
    color: #fff;
    margin-bottom: .20rem;
    font-weight: 400;
}

.classic-list-item .classic-info img {
    width: .24rem;
    height: .24rem;
}

.classic-case .check-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .40rem;
    font-size: .20rem;
    line-height: .28rem;
    color: var(--primary-font-color2);
    cursor: pointer;
}

.classic-case .check-more img {
    width: .24rem;
    height: .24rem;
    margin-left: .08rem;
} */

/* .product-info-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-info-content .info-text {
    background-color: #fff;
    box-shadow: 0 .03rem .08rem 0 #E7EDF3;
    width: 100%;
    padding: 0 .48rem;
}

.info-text .info-text-head {
    display: flex;
    align-items: center;
    padding: .47rem 0 .55rem 0;
    border-bottom: .01rem solid #eee;
}

.info-text .info-text-head a {
    color: var(--primary-font-color3);
    font-size: .20rem;
    line-height: .28rem;
    margin-right: .12rem;
}

.info-text .info-text-head img {
    width: .16rem;
    height: .16rem;
    margin-right: .12rem;
}

.info-text .info-text-head .info-text-head-title {
    font-size: .20rem;
    line-height: .28rem;
}

.info-text .info-message {
    padding: .48rem 0 .60rem 0;
}

.info-text .info-message p {
    font-size: .20rem;
    line-height: .28rem;
    margin-bottom: .48rem;
}

.info-text .info-message .info-message-item {
    margin-bottom: .48rem;
}

.info-text .info-message h1 {
    font-size: .24rem;
    line-height: .32rem;
    margin-bottom: .36rem;
    font-weight: 600;
}

.info-text .info-message h2 {
    font-size: .20rem;
    line-height: .28rem;
    margin-bottom: .24rem;
    font-weight: 600;
}

.info-text .info-message h6 {
    font-size: .16rem;
    line-height: .24rem;
    font-weight: 500;
    margin-bottom: .20rem;
    color: var(--primary-font-color2);
}

.info-text .info-message h6:last-child {
    margin-bottom: 0;
}

.info-text .info-message img {
    width: 100%;
    margin-bottom: .48rem;
} */