.nav {
    transform: translateY(0);
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
}
.nav-content>ul>li {
    background-color: #fff;
}
.nav li, .nav li a {
    transition: all .3s;
    color: #666;
}
.nav-content>ul>li:nth-child(1)>a, .nav-content>ul>li:hover>a {
    color: #666;
}
.nav-content>ul>li:hover, .nav .active {
    background-color: #19c186
}
.nav .active>a, .nav-content>ul>li:hover>a {
    color: #fff;
}
.banner {
    margin-top: 30px;
}
.banner-texts h3 {
    font-size: 30px;
    font-weight: 100;
}
.banner-texts h1 {
    font-size: 40px;
    font-weight: 400;
}
.subtopic {
    background-color: #fff;
}
.subtopic li:hover a {
    color: #19c186 !important;
}
.content a {
	color: #535353;
}

/* 子栏目切换 */
.switchList {
    margin-top: 70px;
}
.switchList ul {
    justify-content: space-evenly;
}
.switchList a {
    display: block;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #535353;
    padding: 15px 40px;
    border-radius: 50px;
    margin: 10px 0;
}
.switchList .active a {
    color: #fff;
    background-color: #19c186;
    border-color: #19c186;
}


/* 荣尚分页 */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	margin: auto;
}
.pagination li {
    width: auto !important;
    margin: 0 15px;
	margin-top: 20px;
	padding: initial;
}
.pagination li>* {
    color: #19c186 !important;
}
.pagination li a {
    border-bottom: 1px solid transparent;
    transition: all.3s;
}
.pagination li a:hover {
    border-color: #19c186;
}
.pagination .active span {
	border-bottom: 1px solid #19c186;
}

@media screen and (max-width: 768px) {
    .banner {
        display: flex;
        justify-content: center;
        align-items: center;
		margin-top: 85px;
    }
    .current {
        margin-top: 40px;
    }
	.banner img {
		min-height: 150px;
		object-fit: cover;
	}
}
@media screen and (max-width: 428px) {
    .banner-texts h3 {
        font-size: 20px;
    }
    .banner-texts h1 {
        font-size: 26px;
    }
	.pagination {
        font-size: 14px;
    }
}