* {
    font-family: 'Work Sans', sans-serif;
}

body{background-color: #e7e4e438}
label, a {
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    display: inline-block;
    color: inherit;
    transition: border 0.2s;
    padding: 3px 2px;
}
/*label:hover, a:hover {*/
/*    color: #21448b;*/
/*}*/

.layout {
    display: grid;
    height: 100%;
    width: 100%;
    overflow: hidden;
    grid-template-rows: 50px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

input[type="radio"] {
    display: none;
}

label.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #ecf0f1;
    user-select: none;
    transition: background 0.4s, padding-left 0.2s;
    width: 140px;
    height: 35px;
    position: relative;
    left: -50px;
    top:30px;

}
input[type="radio"]:checked + .page + label.nav {
    background: #d92f26;
    color: #ffffff;
    padding-left: 20px;
}
input[type="radio"]:checked + .page + label.nav span {
    /*padding-left: 20px;*/
}
input[type="radio"]:checked + .page + label.nav svg {
    opacity: 1;
}
label.nav span {
    padding-left: 0px;
    position: relative;
}

.page {
    grid-column-start: 1;
    grid-row-start: 2;
    grid-column-end: span 3;
    padding: 0px 20px;
    display: flex;
    align-items: center;
}

.page-contents > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s, transform 0.2s;
}
.page-contents > *:nth-child(1) {
    transition-delay: 0.4s;
}
.page-contents > *:nth-child(2) {
    transition-delay: 0.6s;
}
.page-contents > *:nth-child(3) {
    transition-delay: 0.8s;
}
.page-contents > *:nth-child(4) {
    transition-delay: 1s;
}
.page-contents > *:nth-child(5) {
    transition-delay: 1.2s;
}
.page-contents > *:nth-child(6) {
    transition-delay: 1.4s;
}
.page-contents > *:nth-child(7) {
    transition-delay: 1.6s;
}
.page-contents > *:nth-child(8) {
    transition-delay: 1.8s;
}
.page-contents > *:nth-child(9) {
    transition-delay: 2s;
}
.page-contents > *:nth-child(10) {
    transition-delay: 2.2s;
}
.page-contents > *:nth-child(11) {
    transition-delay: 2.4s;
}
.page-contents > *:nth-child(12) {
    transition-delay: 2.6s;
}
.page-contents > *:nth-child(13) {
    transition-delay: 2.8s;
}
.page-contents > *:nth-child(14) {
    transition-delay: 3s;
}
.page-contents > *:nth-child(15) {
    transition-delay: 3.2s;
}
.page-contents > *:nth-child(16) {
    transition-delay: 3.4s;
}
.page-contents > *:nth-child(17) {
    transition-delay: 3.6s;
}
.page-contents > *:nth-child(18) {
    transition-delay: 3.8s;
}
.page-contents > *:nth-child(19) {
    transition-delay: 4s;
}
.page-contents > *:nth-child(20) {
    transition-delay: 4.2s;
}

input[type="radio"] + .page {
    transition: transform 0.2s;
    transform: translateX(100%);
}

input[type="radio"]:checked + .page {
    transform: translateX(0%);
}
input[type="radio"]:checked + .page .page-contents > * {
    opacity: 1;
    transform: translateY(0px);
}

.page-contents {
    display: flex;
    position: relative;
    left: -5px;
    width: 1200px;
    height: 400px;
    margin: 0 auto;
}
.head_title {
    display: flex;
    flex-direction: column;
    z-index: 9999;
}
.fine_title{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-left: 2%;
}
.font{
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: white;*/
    line-height: 3;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;
    width: 140px;
    height: 40px;
    margin: 15px 10px;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    background-color: #ecf0f1;
    /*background-color: #d92f26;*/
}
.second_content{
    width: 94%;
    height: 80%;
    margin: 0 3%;
    /*background-color: #00a4f9;*/
    display: flex;
    align-items: center;
    display: flex;
    flex-direction: row;
}
.content_left{
    display: flex;
    width: 50%;
    height: 95%;
    margin-right: 2%;

}
.content_right{
    display: flex;
    width: 47%;
    height: 98%;
    flex-direction: column;
    position:relative;
    left: 10px
}


.show {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 1280px;
    height: 380px;
    /* background: chartreuse; */
}


/* 轮播图 */

.swiper-container {
    width: 580px;
    height: 380px;
    background-color: #fff;
    /* --swiper-theme-color: rgba(250, 250, 250, .8); */
    --swiper-pagination-color: #00ff33;
    /* 两种都可以 */
}
.swiper-wrapper{
    width: 100%;
    height: 380px;
}
.swiper-slide img {
    width: 580px;
    height: 380px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

/*.swiper-container {*/
/*}*/

.swiper-slide div {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 580px;
    height: 42px;
    background-color: rgba(0, 0, 0, .5);
}

.swiper-slide p {
    position: absolute;
    width: 480px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    bottom: 8px;
    left: 10px
}

.swiper-slide p a {
    width: 500px;
    height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 22px;
    color: white;
}

.swiper-slide p a:hover {
    color: white !important;
}

@keyframes move {
    from {
        left: 0px;
    }
    to {
        left: -1284px;
    }
}
