@charset "UTF-8";
:root {
  --c-green: #00712f;
  --c-gry: #333;
  --c-red: #dc2630;
}

.township-column{
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.township-column > .item {
    min-width: 0;
}

.township-column > .item img{
    border-radius: 20px;
}

.township-column > .item p{
    font-size: 16px;
    line-height: 2em;

}

.township-column > .item .township-title{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 32px;
    line-height: 1.4;
    font-weight: bold;
    color: var(--c-green);
    border-bottom: 1px dashed #fff;
    padding-bottom: 20px;
    margin-top: 0;
    margin-bottom: 25px;
}

.township-column > .item .township-title > span:not(.title-text){
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--c-green);
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
    padding: 0;
}

.township-column > .item .township-title > span:not(.title-text) {
    transform: translateY(-2px);
}

.township-column > .item .township-title .title-text {
    display: block;
    flex: 1;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    transform: none;
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    margin-top: -6px;
}

.township-column > .item .township-read{
    font-size:22px ;
    font-weight: 500;
}

/*slider*/
.slide-township {
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.slide-township img {
    display: block;
    width: 100%;
    height: auto;
}

.slide-township .swiper-pagination {
    position: static;
    margin: 1rem auto;
}

.slide-township .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #fff;
    border: solid 1px var(--c-gry);
    opacity: 1;
}

.slide-township .swiper-pagination-bullet-active {
    background: var(--c-green);
}


@media (max-width: 768px) {
.township-column{
    display: grid;
    grid-template-columns:1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.township-column > .item p{
    font-size: 14px;
}

.township-column > .item .township-title{
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.township-column > .item .township-title > span:not(.title-text){
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: var(--c-green);
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
    padding: 0;
}

.township-column > .item .township-read{
    font-size:18px ;
}
}
