body {
    background: #F3F8FC;
}
.ui-vector {
    width: 100%;
    height: 7.2rem;
    background: #F3F8FC;
    padding-top: 2rem;
}

.ui-vectarImg {
    width: 2rem;
    height: 2.2rem;
    margin-right: 2rem;
}

.ui-vector-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 33.5rem;
    height: 3.8rem;
    background-color: #F1F1F3;
    border-radius: 1rem;
    margin: 0 auto;

}

.ui-vector-con input {
    width: 80%;
    height: 100%;
    outline: none;
    border: 0;
    background-color: transparent;
}

.ui-int {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 1.5rem;
    color: #8C8C8C;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-left: 1rem;
}

.ui-swiper {
    width: 100%;
    height: 21.4rem;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    /* text-align: center; */
    font-size: 1.8rem;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 1rem !important;
    height: 1rem !important;
    background-color: #D2D2D2 !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
    opacity: 1 !important;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: 36% !important;
}

.ui-swiper {
    position: relative;
}

.ui-logo {
    position: absolute;
    top: 0;
    left: 0%;
    z-index: 999999;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.ui-logo-img {
    width: 28.9rem;
    height: 3.1rem;
    margin-left: 1rem;
    margin-top: 1rem;
}

.ui-logo-cand {
    width: 2.6rem;
    height: 2.6rem;
    margin-right: 1rem;
    margin-top: 1rem;
}

/* 侧边栏容器 */
.sidebar-nav {
    width: 20.2rem;
    /* height: 100vh; */
    background-color: #2b3442; /* 深色背景 */
    color: #ffffff;
    position: fixed;
    right: 0;
    top: 7.3rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    z-index: 99999999;
}

/* 头部区域 */
.nav-header {
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    background-color: #2b3442;
    border-bottom: 1px solid #3e4a5c;
}

.nav-title {
    font-size: 1.6rem;
    font-weight: normal;
}

.close-btn {
    cursor: pointer;
    font-size: 2rem;
    color: #aaa;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #fff;
}

/* 菜单列表 */
.menu-list {
    list-style: none;
    padding-bottom: 2rem;
}

.menu-item {
    border-bottom: 1px solid #3e4a5c; /* 分割线 */
}

/* 一级菜单链接 */
.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    color: #dcdcdc;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: Source Han Sans CN, Source Han Sans CN;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-link:hover {
    background-color: #354052;
    color: #fff;
}

/* 图标通用样式 */
.icon-arrow {
    font-size: 1.2rem;
    color: #888;
    transition: transform 0.3s ease;
}

.icon-grid {
    font-size: 1.4rem;
    color: #888;
    margin-left: 0.5rem;
}

/* 激活/展开状态下的箭头旋转 */
.menu-item.active > .menu-link .icon-arrow {
    transform: rotate(90deg);
    color: #fff;
}

/* 二级/三级子菜单容器 (默认隐藏) */
.submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #252d3a; /* 比主背景稍深 */
    transition: max-height 0.3s ease-out;
}

.menu-item.active .submenu {
    max-height: 500px; /* 足够大以显示内容 */
    transition: max-height 0.5s ease-in;
}

/* 子菜单项 */
.submenu-item {
    display: block;
    padding: 1.2rem 2rem 1.2rem 4rem; /* 左侧缩进 */
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: Source Han Sans CN, Source Han Sans CN;
    border-bottom: 1px solid #323d4d;
    display: flex;
    align-items: center;
}

.submenu-item:hover {
    color: #fff;
    background-color: #2f3a4b;
}

/* 菱形装饰点 */
.diamond-icon {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #777;
    transform: rotate(45deg); /* 旋转成正方形即菱形 */
    margin-right: 10px;
}

/* 滚动条美化 (Webkit内核) */
.sidebar-nav::-webkit-scrollbar {
    width: 6px;
}
.sidebar-nav::-webkit-scrollbar-thumb {
    background-color: #4a5568;
    border-radius: 3px;
}

/* 三级菜单容器 默认隐藏 */
.sub-submenu {
    display: none;
    background-color: #1e2530; /* 更深的背景色以区分层级 */
    overflow: hidden;
}

/* 三级菜单项 */
.sub-submenu .submenu-item {
    padding-left: 6rem; /* 比二级菜单更深的缩进 */
    font-size: 1.4rem;
    color: #fff;
}

.sub-submenu .submenu-item:hover {
    background-color: #2a3342;
    color: #fff;
}

/* 父级菜单项的样式（带箭头） */
.submenu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 1rem 4rem;
    cursor: pointer;
    border-bottom: 1px solid #323d4d;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
}

.submenu-link:hover {
    background-color: #2f3a4b;
}

.submenu-link .icon-arrow img {
    transition: transform 0.3s;
}

.ui-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.3);
}

.ui-new-con {
    width: 100%;
    height: 43.2rem;
    background: #F3F8FC;
}

.ui-new-conter {
    width: 33.5rem;
    margin: 1.5rem auto;
}

.ui-new-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ui-new-nm {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: 2.4rem;
    color: #136CC8;
    font-style: normal;
    text-transform: none;
}

.ui-new-more {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.8rem;
    color: #136CC8;
    font-style: normal;
    text-transform: none;
}

.ui-new-h {
    margin-top: 1rem;
}

.ui-new-tu {
    width: 100%;
    height: 24.8rem;
}

.ui-new-tu1 {
    width: 5rem !important;
    height: 4px !important;
}

.ui-new-txt {
    width: 100%;
    height: 11.3rem;
    background-color: #fff;
    padding-top: 1.3rem;
}

.ui-new-txtp {
    width: 29.7rem;
    height: 5.2rem;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    line-height: 2.6rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示3行 */
    overflow: hidden;
    margin: 0 auto;
}

.ui-new-tmflex {
    width: 29.7rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.ui-new-tm {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.4rem;
    color: #767676;
    font-style: normal;
    text-transform: none;
}

.ui-notice-con {
    width: 100%;
    height: 43.2rem;
    background: #F3F8FC;
}

.ui-notice-back {
    width: 100%;
    height: 21.2rem;
    background-color: #136CC8;
}

.ui-notice-back .ui-new-nm {
    color: #FFFFFF;
}

.ui-notice-back .ui-new-more {
    color: #FFFFFF;
}

.ui-notice-lr {
    width: 33.5rem;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.ui-notice-h {
    width: 100%;
    height: 35.1rem;
    background-color: #fff;
    margin-top: 1.5rem;
    padding: 1rem;
}

.ui-nc-month {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #000000;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ui-nc-day{ 
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 2rem;
    color: #136CC8;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ui-nc-txtp {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    line-height: 2.6rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示3行 */
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
    margin-top: 0.6rem;
}

.ui-notice-a {
    display: block;
    margin-bottom: 1.25rem;
}

.ui-discipline-con {
    width: 100%;
    height: 38rem;
    background: url(../images/dp.png) no-repeat center;
    background-size: 100% 100%;
}

.ui-disp-con {
    width: 33.5rem;
    height: 100%;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.ui-disp-con .ui-new-nm {
    color: #FFFFFF;
}

.ui-disp-con .ui-new-more {
    color: #FFFFFF;
}

.ui-disp-tm {
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.ui-disp-month {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.ui-disp-day {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 2rem;
    color: #FFFFFF;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ui-disp-p {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 2.6rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示3行 */
    overflow: hidden;
}

.ui-disp-img {
    width: 100%;
    height: 20.1rem;
    margin-top: 1rem;
}

.ui-student-con {
    width: 100%;
    height: 35.9rem;
    background: url(../images/s-back.png) no-repeat center;
    background-size: 100% 100%;
}

.ui-sd-con {
    display: flex;
    justify-content: space-between;
    width: 33.5rem;
    margin: 0 auto;
}

.ui-sd-nm {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: 2.4rem;
    color: #136CC8;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    writing-mode: vertical-rl;
    letter-spacing: 5px;
    padding-top: 2.9rem;
}

.ui-sd-more {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.8rem;
    color: #136CC8;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    writing-mode: vertical-rl;
    margin-top: 7rem;
}

.ui-sd-h {
    position: relative;
    width: 29.7rem;
    height: 27.9rem;
    margin-top: 5rem;
}

.ui-sd-img {
    width: 23rem;
    height: 17.2rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.ui-sd-txt {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 16.1rem;
    background-color: #fff;
    display: flex;
}

.ui-sd-tm {
    margin: 3rem 1.3rem 0 1.2rem;
}

.ui-sd-tm1 {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #CDCDCD;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ui-sd-tm2 {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 2.4rem;
    color: #136CC8;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ui-sd-tm3 {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.8rem;
    color: #CDCDCD;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ui-sd-p {
    width: 22.5rem;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    line-height: 2.6rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示3行 */
    overflow: hidden;
    margin-top: 6.5rem;
}

.ui-sd-rigjian {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
}

.ui-theory-con {
    width: 100%;
    height: 40.2rem;
    background-color: #F3F8FC;
}

.ui-ty-con {
    width: 32rem;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.ui-ty-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.ui-ty-day {
    width: 8.7rem;
    height: 3.9rem;
    background: #136CC8;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 3.2rem;
    color: #FFFFFF;
    line-height: 3.9rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.ui-ty-year {
    width: 8.7rem;
    height: 3.9rem;
    background: #EEEEEE;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #585858;
    line-height: 3.9rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.ui-ty-p {
    width: 67%;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    line-height: 2.6rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示3行 */
    overflow: hidden;
}

.ui-floor-con {
    width: 100%;
    height: 41.8rem;
    background: url(../images/d-back.png) no-repeat center;
    background-size: 100% 100%;
}

.ui-fr-con {
    width: 33.3rem;
    margin: 0 auto;
}

.ui-fr-img {
    width: 3.8rem;
    height: 3.8rem;
    margin: 0 auto;
    display: block;
}

.ui-fr-txt {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 3rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-top: 0.8rem;
}

.ui-fr-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ui-fr-line {
    width: 100%;
    height: 1px;
    background: rgba(212,216,219,0.5);
    border-radius: 0px 0px 0px 0px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ui-fr-info {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.3rem;
    color: #FFFFFF;
    line-height: 2.4rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.ui-top-img {
    display: block;
    margin: 1rem auto 0;
}

.ui-top-txt {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.4rem;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

/* 学院新闻 */

.ui-colnew-h {
    width: 100%;
    height: 7.5rem;
    border-bottom: 1px solid #F0F0F0;
}

.ui-colnew-nm {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 2.4rem;
    color: #333333;
    font-style: normal;
    text-transform: none;
    margin-top: 1.8rem;
    margin-left: 1.7rem;
}

.ui-colnew-flex {
    display: flex;
    align-items: center;
    margin-left: 1.7rem;
    margin-top: 0.8rem;
}

.ui-colnew-nav {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.5rem;
    color: #999999;
    line-height: 2.6rem;
    font-style: normal;
    text-transform: none;
    margin-left: 0.5rem;
}

.ui-colnew-nav span {
    color: #136CC8;
}

.ui-colnew-img {
    width: 1.2rem;
    height: 1.5rem;
}

.ui-colnew-con {
    width: 33.8rem;
    margin: 0 auto;
}

.ui-colnew-flex1 {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 1rem;
    margin-top: 1.8rem;
}

.ui-colnew-tu {
    width: 8.9rem;
    height: 6.6rem;
}

.ui-colnew-kuan {
    width: 23.5rem;
}

.ui-colnew-h1 {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 1.6rem;
    color: #333333;
    line-height: 2.6rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-colnew-h2 {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.4rem;
    color: #333333;
    line-height: 2rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-colnew-h3 {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.4rem;
    color: #767676;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

/* 通知公告 */

.ui-notice-tu {
    width: 8.9rem;
    height: 6.6rem;
    background-color: #E1EAF3;
}

.ui-notice-day {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 3.2rem;
    color: #136CC8;
    line-height: 4rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.ui-notice-year {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #585858;
    line-height: 3rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.ui-notice-h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示3行 */
    overflow: hidden;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.4rem;
    color: #333333;
    line-height: 2.3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ui-deta-h {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 2rem;
    color: #333333;
    line-height: 3rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
}

.ui-laiyuan {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.3rem;
    color: #999999;
    line-height: 2.6rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ui-deta-line {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.ui-deta-p {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.4rem;
    color: #333333;
    line-height: 2.4rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
    margin-top: 1rem;
}

.ui-deta-p img {
    width: 100%;
    height: 20rem;
    margin: 1rem 0;
}

/* 字号按钮基础样式 */
.font-size-btn {
    cursor: pointer;
    color: #333;
    margin: 0 2px;
    transition: color 0.2s;
}

/* 鼠标悬停效果 */
.font-size-btn:hover {
    color: #007bff;
}

/* 当前激活的字号按钮高亮 */
.font-size-btn.active {
    color: #007bff;
    font-weight: bold;
}

.ui-tea-h {
    width: 16.2rem;
    height: 30.6rem;
    background-color: #EBEBEB;
    margin-top: 1.5rem;
}

.ui-tea-img {
    width: 100%;
    height: 21.2rem;
    display: block;
}

.ui-tea-peo {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 1.8rem;
    color: #136CC8;
    line-height: 2.6rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 1rem 0;
}

.ui-tea-p {
    width: 13.2rem;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.2rem;
    color: #000000;
    line-height: 2rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示3行 */
    overflow: hidden;
}

.ui-tea-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ui-td-img {
    width: 16.2rem;
    height: 21.2rem;
    display: block;
    margin: 3rem auto;
}

.ui-td-nm {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 1.8rem;
    color: #136CC8;
    line-height: 2.6rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.ui-td-p {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 1.6rem;
    color: #000000;
    line-height: 3rem;
    text-align: justify;
    font-style: normal;
    text-transform: none;
}