.logo {
    display: flex;
    max-width: 80rem;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo img {
    vertical-align: middle;
}

.logo button {
    display: none;
}

@media screen and (max-width: 75rem) {
    .logo {
        justify-content: space-between;
        padding: 0;
    }

    .logo img {
        max-width: 75%;
    }

    .logo a:first-child :last-child {
        display: none;
    }

    .logo a:last-of-type {
        display: none;
    }

    .logo button {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border: none;
        height: min-content;
        align-self: center;
        cursor: pointer;
    }

    .logo button span {
        border: 1px solid #ccc;
        width: 2rem;
        margin: .3rem;
    }
}

.nav {
    background-image: linear-gradient(to right, rgb(19, 81, 143), rgba(39, 134, 230, 1));
}

.nav ul {
    display: flex;
    max-width: 80rem;
}

.nav ul li {
    flex: 1 0 auto;
    text-align: center;
}

.nav ul li a {
    color: white;
    padding: 0.7rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media screen and (max-width:75rem) {
    .nav {
        background-image: none;
        position: relative;
    }

    .nav ul {
        background-image: linear-gradient(100deg, rgba(0, 104, 222, 0.9), rgba(0, 147, 222, .6));
        flex-direction: column;
        position: absolute;
        width: 70%;
        left: -100%;
        height: 100vh;
        transition: left 600ms linear;
    }

    .nav ul li {
        flex: 0 0 auto;
    }
}

.banner {
    background-image: url(../images/img44.jpg);
    text-align: center;
    margin-bottom: 5rem;
    background-position: center;
}

.banner .layout {
    height: 30rem;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.2);
}

.banner h1 {
    font-size: 2.5rem;
    color: white;
}

.banner h2 {
    color: white;
    font-size: 1.3rem;
}

@media screen and (max-width: 75rem) {
    .banner {
        margin-bottom: 2rem;
        background-position: 85% 10%;
    }
    .banner h2 {
        font-size: 1.2rem;
    }

}

.content {
    width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.content .contL {
    flex-basis: 74%;
}

.content .contL ul {
    display: flex;
    flex-wrap: wrap;
}

.content .contL li.pro {
    width: 33.33%;
    padding: 0 0.6em 0.6em;
}

.content .contL .pro img {
    width: 18.5rem;
    display: block;
    border-radius: 1rem;
}

.content .contL .pro span {
    display: block;
    font-size: 1.2rem;
    text-align: center;
    padding: 0.5em 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content .contL .pro a {
    color: #333;
}

.content .contL .pro a:hover {
    color: #0093de;
}

.content .contR {
    flex-basis: 24%;
    border-radius: 2rem;
    box-shadow: 3px 3px 10px 1px #e1e1e1;
    overflow: hidden;
    align-self: flex-start;
}

.content .contR .lisT,
.content .contR .lisB {
    padding: 2rem 0;
    text-align: center;
    background-image: linear-gradient(129.57deg, rgba(24, 102, 180, 1) 0%, rgba(39, 134, 230, 1) 100%);
    ;
}

.content .contR .lisB {
    width: 100%;
    color: white;
    font-weight: 600;
}

.content .contR .lisB span {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content .contR .lisT h2 {
    font-weight: 600;
    font-size: 2rem;
    color: white;
}

.content .contR ul {
    padding: 0 0.2rem;
    min-height: max-content
}

.content .contR ul a {
    display: block;
    text-decoration: none;
    font-size: 1.3rem;
    color: #333;
    text-align: center;
    padding: 1em 0;
    border-bottom: 1px dashed #e1e1e1;
    transition: color 0.2s linear;
}

.content .contR ul a:hover {
    color: #0093de
}

@media screen and (max-width: 75rem) {
    .content {
        width: 100%;
        flex-wrap: wrap;
        padding: 0 0.5rem;
    }

    .content .contL {
        flex-basis: 100%;
        width: 100%;
    }

    .content .contL li.pro{
        width: 100%;
    }

    .content .contL li.pro img {
        width: 100%;
    }

    .content .contR {
        flex-basis: 100%;
        width: 100%;
        margin-bottom: 2rem;
    }

}

.pagination {
    width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pagination a {
    display: block;
    border: 1px solid #ccc;
    font-size: 1rem;
    text-align: center;
    margin: 0.2rem;
    color: #333;
    padding: 0.2rem 0.6rem;
}

@media screen and (max-width: 75rem) {
    .pagination {
        width: 100%;
    }
}

#footer {
    background-image: linear-gradient(45deg, rgb(19, 81, 143) 0%, rgba(39, 134, 230, 1) 100%);
}

@media screen and (max-width: 75rem) {
    #news .layout {
        width: 100%;
        padding: 0 .5rem;
        flex-wrap: wrap;

    }

    #news .newsL {
        width: 100%;
    }
}

#footer .layout {
    width: 80rem;
    padding: 2rem 0;
}

#footer ul.nav {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
}

#footer ul.nav li {
    flex: 1 0 auto;
    text-align: center;
}

#footer ul.nav li a {
    color: white;
    display: block;
    padding: 0.5rem 1rem;
}

#footer .info {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    justify-content: space-between;
}

#footer .info img {
    height: fit-content;
}

#footer .info>div:last-child {
    color: #fff;
    flex-basis: 40%;
}

#footer .info span {
    display: block;
    line-height: 2;
}

#footer .info span:first-child {
    font-size: 2rem;
    font-family: "al_M";
}

#footer .hmsicp {
    text-align: center;
}

#footer .hmsicp a {
    color: #fff;
}

@media screen and (max-width: 75rem) {
    #footer .layout {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    #footer ul.nav {
        display: none;
    }

    #footer .info {
        flex-direction: column;
        text-align: center;
    }

    #footer .info img:first-child {
        display: none;
    }

    #footer .info span:first-child {
        visibility: hidden;
    }
}