
.mt-15 {
    margin-top: 15px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-50 {
    margin-top: 50px;
}

.pd-15 {
    padding: 15px;
}

.pdlr-15 {
    padding-left: 15px;
    padding-right: 15px;
}
.pdtb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.pdtb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.pdtb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.pdtb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pdtb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.font-color-white {
    color: #fff;
}


.flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-1 {
    flex: 1;
}

.bgf5 {
    background-color: #f5f5f5;
}
.bgf1 {
    background-color: #f1f1f1;
}


a{ color:#000000; text-decoration:none }
a:active, a:hover{ color:#214293; text-decoration:none }


.header {
    width: 100%;
    padding: 10px 0;
    position: fixed;
    z-index: 9999;
    background-color: unset;
    transition: all .3s;

    background-color: #0a0a0a;
    background: rgba(0, 0, 0, 0.8 );
    -webkit-box-shadow: 0px 1px 2px rgb(0 0 0 / 10%);
}
.header .logo {
    flex-grow: 1;
}
.header .logo img {
    height: 30px;
    margin-top: 5px;
    align-items: center;
    vertical-align: middle;
}
.header .menu-main {
    /* flex: 1; */
    flex-grow: 3;
    padding: 0 1.2rem;
}
.header .menu-main > ul {
    display: flex;
    margin-top: 10px;
}
.header .menu-main > ul > li {
    position: relative;
    width: 16.66%;
    line-height: 30px;
    transition: transform .3s .2s;
}
.header .menu-main li a {
    display: block;
    text-align: center;
    font-size: 1rem;
    color: #fff;
}
.header .menu-main li .menu-layer2 {
    display: none;
    position: absolute;
    z-index: 1000;
}
.header .menu-main li:hover .menu-layer2 {
    display: block;
}
.header .menu-main ul > li > .nav-sub {
    width: 220px;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 0;
    height: auto;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: -webkit-transform .3s .2s;
    transition: transform .3s .2s;
}
.header .menu-main ul > li:hover > .nav-sub, .header .menu-main ul > li > .nav-sub.active {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
}
.header .menu-main ul > li > .nav-sub a {
    height: 44px;
    line-height: 44px;
    display: block;
    padding: 0 20px;
    text-align: left;
    color: #333;
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    -webkit-transition: all 0.3s cubic-bezier(0.86, 0.5, 1, 1);
    transition: all 0.3s cubic-bezier(0.86, 0.5, 1, 1);
}

.header .menu-main ul > li > .nav-sub a:hover {
    background-color: #214293;
    color: #fff !important;
}

.header .menu-main ul > li:hover > a {
    text-decoration: underline;
}

.header.header-bg-white {
    background-color: #fff;
}
.header.header-bg-white .menu-main li a {
    color: #000;
}
.header.header-bg-white .nav-btn .line {
    background-color: #1a1a1a;
}



.header .alibaba {
    margin-top: 10px;
}
.header .alibaba img {
    width: 100px;
}

.header .language {
    margin-top: 10px;
    margin-left: 10px;
}
.header .language a {
    background: #f5c906;
    padding: 12px;
    line-height: 2rem;
    transition: all 0.3s;
}
.header .language a:hover {
    background: #f08519;
    color: #fff;
}

.header .nav-btn {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin-top: 15px;
    margin-left: 15px;
}
.header .nav-btn .line {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    /* left: 50%; */
    margin-left: 0px;
    transition: all 0.3s;
}
.header .nav-btn .line1 {
    top: 0px;
    -webkit-transform-origin: 4px 0;
    -ms-transform-origin: 4px 0;
    transform-origin: 4px 0;
}
.header .nav-btn .line2 {
    top: 8px;
}
.header .nav-btn .line3 {
    top: 16px;
    /* bottom: 0; */
    -webkit-transform-origin: 1px center;
    -ms-transform-origin: 1px center;
    transform-origin: 1px center;
}
.header .nav-btn.active {
    -webkit-animation: rotate 0.5s linear 0s;
    animation: rotate 0.5s linear 0s;
}
.header .nav-btn.active .line {
    background: #ef7e1b;
}
.header .nav-btn.active .line1 {
    transform: rotate(45deg);
}
.header .nav-btn.active .line2 {
    display: none;
}
.header .nav-btn.active .line3 {
    transform: rotate(-45deg);
}


.menu-mobile {
    width: 100%;
    padding: 0 3%;
    display: none;
    position: fixed;
    left: 0;
    top: 60px;
    z-index: 100;
    overflow-y: auto;
    background: #f5f5f5;
    height: 100vh;
}
.menu-mobile ul {
    width: 100%;
    /* overflow-y: auto;
    height: 1000px; */
}
.menu-mobile .js-m-3 {
    opacity: 0;
    -webkit-transform: translate(30px, 0);
    -ms-transform: translate(30px, 0);
    transform: translate(30px, 0);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}
.js-m-3.animate {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
.menu-mobile li {
    border-bottom: 1px solid #dcdcdc;
    font-size: 16px;
    padding: 0 20px;
}
.menu-mobile .tit {
    display: inline-block;
    text-decoration: none;
    width: 80%;
    line-height: 60px;
    color: #333;
    position: relative;
    box-sizing: border-box;
}
.menu-mobile .sub-tit.on {
    background-color: #e9e9e9;
}
.menu-mobile .sec-list {
    line-height: 40px;
    padding: 10px 0%;
    display: none;
}
.menu-mobile .jt {
    position: relative;
    display: inline-block;
    width: 10%;
    height: 60px;
    text-align: center;
    background: none;
    float: right;
}
.menu-mobile .jt:after {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    background: url(//dfs.yun300.cn/group1/M00/04/55/rBQBHVzEZzKEUBJMAAAAAMfREL8486.png?tenantId=268120&viewType=1&v=1683851732000) no-repeat center;
    background-size: 17px auto;
    position: absolute;
    right: 3%;
    top: 18px;
}
.menu-mobile .jt.jtRote:after {
    background: url(//dfs.yun300.cn/group1/M00/16/5A/rBQBG1zEZ1eEBkkYAAAAADz6RB0116.png?tenantId=268120&viewType=1&v=1683851732000) no-repeat center;
    background-size: 20px auto;
}
.menu-mobile .sec-list p {
    background: url(//dfs.yun300.cn/group1/M00/04/56/rBQBHVzEdJGEfkUaAAAAAGBOHjA006.png?tenantId=268120&viewType=1&v=1683851732000) no-repeat left center;
    background-size: 3px auto;
    font-size: 14px;
}
.menu-mobile .sec-list a {
    padding-left: 5%;
    color: #666;
    display: block;
}
.menu-mobile .sec-list a:active {
    color: #ef7e1b;
}
.menu-mobile li.language-mobile .tit {
    display: inline;
}








.footer {
    color: #cccccc;
    background-color: #222222;
}
.footer .footer-logo {
    /* flex-grow: 1; */
    margin-right: 20px;
    padding-right: 20px;
    padding-top: 30px;
    border-right: 1px solid #727272;
}
.footer .menu-footer {
    flex-grow: 1;
    /* float: left;
    flex: 1; */
    display: flex;
    border-right: 1px solid #727272;
}
.footer .menu-footer dl {
    width: 20%;
}
.footer .menu-footer dl:last-child {
    width: 35%;
}
.footer .menu-footer dl dt h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}
.footer .menu-footer dl dt h4 a {
    color: #fff;
}
.footer .menu-footer dl dd {
    line-height: 2;
}
.footer .menu-footer dl dd a {
    color: #cccccc;
}
.footer .footer-ewm {
    margin-left: 50px;
    text-align: center;
}
.footer .footer-ewm img {
    width: 150px;
}
.footer .footer-ewm p {
   line-height: 2;
}
.footer .menu-footer dl dt h4 a:hover {
    text-decoration: underline;
}
.footer .menu-footer dl dd a:hover {
    text-decoration: underline;
}

.footer .copyright {
    padding: 20px 0;
    background-color: #191919;
    line-height: 2;
    text-align: center;
}
.footer .copyright a {
    color: #cccccc;
}

.footer-inquiry {
    background: #3c4759 url('../images/contact-bg-2.jpg') no-repeat center bottom;
}
.footer-inquiry .bar-title h3 {
    color: #fff;
}
.footer-inquiry .control-label {
    color: #fff;
}




/* 浮动帮助窗口 */
.float-toolbar { position: fixed; width: 36px; height: 320px; top: 50%; right: 0; margin-top: -220px; z-index: 9999; }
.float-toolbar li { position: relative; width:36px; height:36px; margin-top: 1px; }
.float-toolbar li > a { position:absolute; top:0; z-index:9; display:block; width: 36px; height: 36px; background: #999999 url("../images/float-toolbar.png") no-repeat;		transition: all .3s ease-in; }
.float-toolbar li > a:hover { background-color:#199699; }
.float-toolbar .win { position:absolute; top: 0; left: 36px; padding: 8px; text-align: center; background: #fff;
    /*filter:alpha(Opacity=0); -moz-opacity:0; opacity: 0;*/
    border: 1px solid #ededed;
    transition: all .3s ease-in; }
.float-toolbar li:hover .win { left: auto; right: 36px; filter:alpha(Opacity=100); -moz-opacity:1; opacity:1; }

.float-toolbar .qq .win { width: 180px; }
.float-toolbar .ewm .win { width: 180px; }
.float-toolbar .ewm span { font-size:0.8rem; }
.float-toolbar .ewm .inner { padding:10px; position:relative; border: solid 1px #ddd; }
.float-toolbar .ewm .inner:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid #ddd;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    z-index:9;
    top: 15px;
    right:-10px;
}
.float-toolbar .ewm:hover .win { left:-188px; filter:alpha(Opacity=100); -moz-opacity:1; opacity:1; }

.float-toolbar .ewm span { display:block; font-size:0.8rem; }
.float-toolbar .tel .win { width: 180px; }
.float-toolbar li:hover.tel .win { /* left:-175px; */ filter:alpha(Opacity=100); -moz-opacity:1; opacity:1; }
.float-toolbar li:hover.qq .win { /* left:-175px; */ filter:alpha(Opacity=100); -moz-opacity:1; opacity:1; }
.float-toolbar .map .win { display:none; }
/*.float-toolbar li a.iconewm { background-position:0 0; }*/
.float-toolbar .ewm a { background-position:0 0; }
.float-toolbar .tel a { background-position:-72px 0; }
.float-toolbar .map a { background-position:-36px 0; }
.float-toolbar .email a { background-position:-216px 0; }
.float-toolbar li a.iconcn { background-position:-108px 0; }
.float-toolbar li a.iconen { background-position:-144px 0; }
.float-toolbar li a.icontop { background-position:-180px 0; }

.float-toolbar .ftb-icon { display: inline-block; width: 36px; height: 36px; background: url("../images/float-toolbar.png") no-repeat; vertical-align: middle; }
.float-toolbar .ftb-icon.qq { background-position: -396px 0; }


.float-toolbar .ewm a:hover { background-position:0 -36px; }
.float-toolbar .tel a:hover { background-position:-72px -36px; }
.float-toolbar .map a:hover { background-position:-36px -36px; }
.float-toolbar .email a:hover { background-position:-216px -36px; }
.float-toolbar li a.iconcn:hover { background-position:-108px -36px; }
.float-toolbar li a.iconen:hover { background-position:-144px -36px; }
.float-toolbar li a.icontop:hover { background-position:-180px -36px; }

.float-toolbar .whatsapp a { background-position: -252px 0; }
.float-toolbar .whatsapp a:hover { background-position: -252px -36px; }

.float-toolbar .linkedin a { background-position: -288px 0; }
.float-toolbar .linkedin a:hover { background-position: -288px -36px; }

.float-toolbar .facebook a { background-position: -324px 0; }
.float-toolbar .facebook a:hover { background-position: -324px -36px; }

.float-toolbar .inquiry a { background-position: -360px 0; }
.float-toolbar .inquiry a:hover { background-position: -360px -36px; }

.float-toolbar .qq a { background-position: -396px 0; }
.float-toolbar .qq a:hover { background-position: -396px -36px; }

.float-toolbar .wechat a { background-position: -432px 0; }
.float-toolbar .wechat a:hover { background-position: -432px -36px; }




a.my-btn.dark {
    padding: 10px 30px;
    background-color: #333;
    border-radius: 20px;
    color: #fff;
}
a.my-btn.dark:hover {
    background-color: #000;
    color: #fff;
}

.btn-red {
    background-color: #ce3333;
    color: #fff;
    transition: all 0.3s;
}
.btn-red:hover {
    color: #fff;
    background-color: #dd0000;
}
.btn-gold {
    background-color: #ddaf34;
    color: #fff;
    transition: all 0.3s;
}
.btn-gold:hover {
    background-color: #875f0d;
    color: #fff;
}



.bar-title {
    text-align: center;
    margin-bottom: 15px;
}
.bar-title h3 {
    color: #000000;
    font-size: 2.3rem;
    font-weight: bold;
}
.bar-title h3.font-color-white {
    color: #fff;
}
.bar-title p {
    font-size: 1.4rem;
    color: #222222;
}
.bar-title p.font-md {
    font-size: 0.9rem;
}


.tab-bar {
    border-bottom: 1px solid #999;
}
.tab-bar h3 {
    display: inline-block;
    padding: 0 15px;
    font-size: 1.3rem;
    line-height: 2;
    color: #fff;
    margin-bottom: -1px;
    border-radius: 8px 8px 0 0;
    background-color: #214293; /* #f0b03d; */
}



.swiper {
    position: relative;
}

.location {
    background-color: #f5f5f5;
    line-height: 3;
    font-size: 0.8rem;
}
.location a {
    font-size: 0.8rem;
}
.location .container {
    background-image: url('../images/icon-home.png');
    background-repeat: no-repeat;
    background-position: left center;
}
.location span {
    position: relative;
    display: inline-block;
}
.location span:first-child {
    padding-left: 10px;
}
.location .container span+span:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #ccc;
}



.page-banner {
    height: 500px;
    background-repeat: no-repeat;
    background-position: center top;
}
.page-banner .banner-wrap {
    padding-top: 10%;
    color: #fff;
}
.page-banner .banner-wrap h3 {
    font-size: 2.5rem;
    line-height: 2;
}
.page-banner .banner-wrap p {
    font-size: 1rem
}
.page-banner.banner-about {
    background-image: url('../images/banner/banner-about.jpg');
}
.page-banner.banner-product {
    background-image: url('../images/banner/banner-product.jpg?v=20240320');
}
.page-banner.banner-news {
    background-image: url('../images/banner/banner-news.jpg');
}
.page-banner.banner-case {
    background-image: url('../images/banner/banner-case.jpg');
}
.page-banner.banner-video {
    background-image: url('../images/banner/banner-video.jpg');
}
.page-banner.banner-download {
    background-image: url('../images/banner/banner-download.jpg');
}
.page-banner.banner-contact {
    background-image: url('../images/banner/banner-contactus.jpg?v=20240320');
}



.page-nav {
    display: flex;
    flex-wrap: wrap;
}
.page-nav li {
    margin-right: 15px;
    margin-bottom: 15px;
}
.page-nav li a {
    display: block;
    padding: 6px 20px;
    border: 1px solid #666;
    line-height: 2;
    transition: all 0.3s;
    border-radius: 8px;
}
.page-nav li a:hover, .page-nav li.active a {
    background: #dd0000;    /* #f08519; */
    color: #fff;
    border: 1px solid #dd0000;
}



.pro-list {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}
.pro-list li {
    width: 25%;
    margin-bottom: 15px;
    background-color: #fff;
}
.pro-list .item {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
    border: none;
    cursor: pointer;
    text-align: center;
}
/* css 实现宽高相等 */
.pro-list .item .photo {
    position:relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid #e3e3e3;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}
/* css 实现宽高相等 */
.pro-list .item .photo:before{
    content: '';
    padding-top: 100%;
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: 1px solid #e3e3e3;
}
.pro-list .item .photo img {
    /* css 实现宽高相等 */
    position:absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;

    width:100%;
    height:100%;
    transition: all 0.3s;
}
.pro-list .item h5 {
    overflow: hidden;
    margin-top: 8px;
    height: 2.5rem;
    font-size: 1rem;
    line-height: 1.2;
    transition: all 0.3s;
    /* white-space: nowrap; */
    /* 用省略号代替溢出的文字 */
    /* text-overflow: ellipsis; */
}
.pro-list .item p {
    overflow: hidden;
    max-height: 2.2rem;
    margin: 10px 0;
    color: #666;
    font-size: 0.8rem;
}
.pro-list .item em {
    display: block;
    color: #f5c906;
    font-size: 0.8rem;
    transition: all 0.3s;
}
.pro-list a.item:hover h5 {
    color: #214293;
}
.pro-list a.item:hover em {
    margin-left: 10px;
}
.pro-list a.item:hover .photo {
    border: 1px solid #214293;
}
.pro-list a.item:hover .photo img {
    transform: scale(1.1);
}



.article { padding:10px 0; line-height: 1}
.article h1.article-title { /*text-align:center;  color:#87c33a; */ line-height: 1.5; font-size: 1.6rem; word-break:break-all;
    text-align: left;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #333;
}
.article .article-author { text-align:center; line-height:1.5; font-size:0.8rem; }
.article .article-author span { padding-right: 10px; }
.article  hr { margin: 5px 0 10px 0; height:1px; border-top: none; border-bottom:1px dotted #666666; }
.article .article-intro { margin:0 8px; padding:8px; background:#f5f8fd;  }
.article .article-images {   }
.article .article-info {   }
.article .article-content { padding: 8px 0; line-height: 1.5; }
.article .article-content a { color:#214293; }
.article .article-content b, .article .article-content strong { color:#214293; }
.article .article-link,
.article .article-link a { font-size:0.8rem; }

.article .article-tags { margin-top:10px; font-size:12px; }
.article .article-tags a { color:#A10000 }
.article .article-otherinfo { margin-bottom:10px; font-size:12px; }
.article .article-prenext { font-size:12px; }

.article .dvbi_image { text-align:center; }
.article .dvbi_image img { padding:5px; border:1px solid #999999; }
.article .dvbi_image A:hover img { border:1px solid #ECECEC; background:#ECECEC; }
.dvbackbtn { margin-bottom:10px; text-align:center; }
/*附加的*/
.article .article-image { overflow: hidden; width: 100%; height: auto; padding: 10px; border:1px solid #cccccc; }
.article .article-image img { transition: all 0.3s; }
.article .article-image:hover img {
    transform: scale(1.1);
}
.article .article-intro2 { padding: 15px; background:#f4f4f6;  }
.article .article-intro2 p { line-height: 3  }
.article .article-intro2 .mobile {
    margin-top: 20px;
    padding: 20px 0 10px 30px;
    background: url('../images/mobile.png') no-repeat left center;
    border-top: 1px solid #999999;
    font-size: 1.2rem;
    color: #f0b03d;
}
.article h4.article-xg { margin:10px 0; line-height:30px; font-family:"microsoft yahei"; font-size:14px; color:#87c33a; border-bottom:1px dashed #333; }

/*article end */



/* 图片 鼠标放上去后自动放大 */
.img-zoom {
    overflow: hidden;
    display: inline-block;
}
.img-zoom img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.img-zoom:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive img {
    position: absolute;
    /* //lu 图片有问题，不能全部展示 object-fit: cover; */
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
    padding-bottom: 100%; /* 75%; */
}
.embed-responsive-square {
    padding-bottom: 100%;
}
/* 图片 鼠标放上去后自动放大 */


.article-prevnext {
    color: #666;
}
.entry-meta ul {
    overflow: hidden;
    margin: 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #eeeeee;
}
.entry-meta ul li {
    line-height: 26px;
}
.related-article,
.gallery-article {
    margin-top: 10px;
}
.related-article .row,
.gallery-article .row {
    margin: 0 -5px;
}
.related-article .col-sm-3,
.gallery-article .col-sm-3 {
    padding: 0 10px;
}
.related-article .col-sm-3 a,
.gallery-article .col-sm-3 a {
    display: block;
}
@media (max-width: 480px) {
    .related-article .row,
    .gallery-article .row {
        margin: 0 -5px !important;
    }
    .related-article .col-sm-3,
    .gallery-article .col-sm-3 {
        padding: 0 5px 10px 5px;
    }
}
@media (max-width: 767px) {
    .article-list .row,
    .gallery-article .row {
        margin: 0 -5px !important;
    }
    .article-list .col-sm-3,
    .gallery-article .col-sm-3 {
        padding: 0 5px 10px 5px;
    }
}
@media (max-width: 1200px) {
    .article-list .media-body .article-tag {
        position: relative;
        bottom: inherit;
        margin-top: 5px;
    }
}
.related-page ul li.active a {
    color: #007bff;
}

.index-gallary h5,
.related-article h5 {
    margin: 10px 0 !important;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    font-weight: normal;
    height: 15px;
}





@media only screen and (max-width:1388px) {
    .banner .swiper-content {
        width: 40%;
    }
}



@media only screen and (max-width:768px) {
    .header .menu-main { display: none }
    .header .alibaba { display: none }
    .header .language { display: none }
    .header .logo { flex: 1 }
    .header > .container { justify-content: space-between; }

    .footer > .container { display: none }

    .page-banner {
        height: 300px;
    }

    .page-nav {}

    .article h1.article-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .pro-list li {
        width: 50%;
    }

    .page-banner .banner-wrap {
        padding-top: 20%;
    }
    .page-banner .banner-wrap h3 {
        font-size: 2rem;
    }

    .bar-title h3 {
        font-size: 1.8rem;
    }
}