body {
    --maincolor: #00904a;
    background-color: #f4f7fd;
}

body,
html {
    margin: 0;
    padding: 0;
}


.container {
    margin: 0 auto;
    max-width: 1200px;
    min-width: 1200px;
}

.container.banner {
    width: 100%;
    max-width: 100%;
}

.banner a {
    background-size: cover;
    background-position: center;
}

.banner .search {
    position: relative;

}

.banner .search .input-group {
    width: 300px;
    display: flex;
    align-items: center;
    height: 40px;
    top: 100px;
    right: 0;
}

.banner .search .input-group input {
    border-radius: none;
    box-sizing: border-box;
    flex: 1;
    height: 100%;
    padding: 0 0 0 14px;
    border: 1px solid #999;
    outline: none;
}

.banner .search .input-group .btn {
    width: 75px;
    height: 100%;
    background-color: var(--maincolor);
}

.nav {
    display: flex;
    justify-content: space-between;
    /* transform: translateY(-50%); */
    background-color: var(--maincolor);
}

.nav .nav-item a {
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    background-color: var(--maincolor);
}

.nav-item {
    position: relative;
}

.nav-item:hover>a {
    color: white;
    background-color: #0cab2d;
}

.nav-item:hover .nav-child {
    display: block;
}

.nav-item .nav-child:hover:has(.nav-item) a {
    background-color: #0cab2d;
}

.nav-item .nav-child {
    display: none;
    z-index: 3;
    left: 0;
    text-align: center;
    width: 100%;
    position: absolute;
    background-color: white;
    border: 1px solid #e8e8e8;
}

.nav-item .nav-child .nav-child-item a {
    color: #333;
    font-size: 16px;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #99999950;
    background-color: white;
}

.nav-item .nav-child .nav-child-item:hover a {
    color: var(--maincolor);
}


.footer {
    padding: 30px 0;
    width: 100%;
    background-color: #434343;
    text-align: center;
    display: inline-table;
}

.footer .foot-nav {
    color: #d9d9d9;
    font-size: 14px;
    margin: 0 auto;
    width: 540px;
    display: flex;
    justify-content: space-between;
}

.footer p {
    font-size: 12px;
    color: #9a9a9a;
}

a {
    color: white;
}

a:link {
    color: white;
    text-decoration: none;
}

a:active {
    color: white;
}

a:visited {
    color: white;
    text-decoration: none;
}

a:hover {
    color: var(--maincolor);
    text-decoration: none;
}


.content {
    width: 100%;
    /* margin-top: -50px; */
    margin-bottom: 50px;
    padding-top: 20px;
    display: flex;
}

.list-group {
    width: 230px;
    background-color: #edf1f2;
}

.list-item {
    padding: 0 50px;
    height: 60px;

}



.list-item:has(.selected),
.list-item.selected {
    box-sizing: border-box;
    background-color: white;
    color: var(--maincolor);
    border-left: 2px solid var(--maincolor);
}

.list-item.selected a {
    color: var(--maincolor);
}

.list-item a {
    color: #666;
    font-size: 16px;
    line-height: 60px;
    text-align: center;
    display: block;
    border-bottom: 1px solid #d5d5d5;
    box-sizing: border-box;
}

.list-item:last-child a {
    border: none;
}

button {
    border: none;
    background: none;
}

.list-wrapper {
    flex: 1;
    padding: 0 25px;
}

.list-wrapper .item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px dashed #d5d5d5;
    box-sizing: border-box;
}

.list-wrapper .item .left {
    width: 85px;
    height: 85px;
    display: flex;
    min-width: 85px;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
}

.list-wrapper .item .left a {
    color: #666;
    text-align: center;
}

.list-wrapper .item .left a .day {
    font-size: 20px;
}

.list-wrapper .item .right {
    padding-left: 25px;
}

.list-wrapper .item .title {
    color: #666;
    margin-bottom: 5px;
    font-size: 16px;
}

.list-wrapper .item .title a {
    color: #666;
}

.list-wrapper .item .subtitle {
    color: #999;
    font-size: 14px;
}

.list-wrapper .item:last-child {
    border: none;
}

.pagination {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
}

.pagination .btn {
    border: 1px solid #999;
    margin: 0 5px;
    color: #666;
    padding: 5px 8px;
}

.pagination .btn a {
    color: #666;
}


.newsdetails {
    padding: 0 20px;
    flex: 1;
    background-color: #f4f7fd;
}

.newsdetails a {
    color: #6a6a6a;
}

.newsdetails .head .title {
    text-align: center;
    margin-top: 30px;
    color: #333;
    font-size: 25px;
}

.newsdetails .head .newsdata {
    display: flex;
    margin: 30px 0;
    color: #adadad;
    font-size: 13px;
    align-items: center;
    justify-content: center;
}

.newsdetails .head .newsdata span {
    margin-right: 10px;
}

.newsdetails .commore {
    display: flex;
    justify-content: end;
    margin: 40px 0;
}

.newsdetails .commore a {
    width: 120px;
    display: block;
    border-radius: 4px;
    height: 40px;
    text-align: center;
    background-color: var(--maincolor);
    color: white;
    line-height: 40px;
    font-size: 14px;
}

.flex-align {
    display: flex;
    align-items: center;
}

.bgw {
    background-color: white;
}