* {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.t1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.t2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.t3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.t4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

html {
    overflow-y: scroll;
}

:root {
    overflow-y: auto;
    overflow-x: hidden;
}

:root body {
    position: absolute;
}

body {
    width: 100vw;
    overflow: hidden;
}


.top {
    width: 100%;
    background-color: #fff;
}

.head {
    width: 1200px;
    margin: 0 auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 162px;
    height: 52px;
}
.logo img {
    width: 162px;
    height: 52px;
}

.inp_ss {
    display: flex;
    align-items: center;
}

.search {
    width: 280px;
    height: 40px;
    border-style: none;
    text-indent: 16px;
    outline: none;
    font-family: MicrosoftYaHeiLight;
    font-size: 16px;
    font-weight: 400;
    background: #F7F7F7;
    border-radius: 8px 0 0 8px;
}

::-webkit-input-placeholder {
    color: #999999;
}
.button {
    border-radius: 0 8px 8px 0;
    display: inline-block;
    width: 80px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background-color: #2CA23B;
    text-decoration: none;
    text-align: center;
    border: 0;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.button img {
    width: 20px;
    height: 20px;
}

.nav {
    width: 100%;
    height: 60px;
    background-color: #2CA23B;
}

.nav_ul {
    display: flex;
    width: 1200px;
    margin: 0 auto;
}

.nav_ul li {
    list-style-type: none;
    height: 60px;
    text-align: center;
    line-height: 60px;
}

.nav_ul li a {
    display: inline-block;
    padding: 0 45px;
    height: 60px;
    text-decoration: none;
    color: #fff;
    font-family: MicrosoftYaHei;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
}

.nav_ul .active {
    background: #5BBE67;
}

.nav_ul li:hover {
    background: #5BBE67;
}

.portal {
    width: 100%;
    height: 35px;
    background-color: #333333;
}

.portal_top {
    width: 1200px;
    line-height: 35px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-family: MicrosoftYaHei;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    color: #cccccc;
}

.portal_top a {
    text-decoration: none;
    color: #cccccc;
}

.footer {
    margin-top: 30px;
    padding: 30px 0;
    width: 100%;
    text-align: center;
    background-color: #333;
    line-height: 35px;
    font-size: 14px;
    color: #999;
}

.footer a{
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
}
.footer span::after{
    content: "丨";
    color: #999;
    margin: 0 6px;
}
.footer span:last-child::after{
    content: none;
}

.Module{
    width: 1200px;
    margin: 0 auto;
}
.inModBody{
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.w-280{
    width: 280px;
}
.w-380{
    width: 380px;
}
.w-480{
    width: 480px;
}
.w-790{
    width: 790px;
}

.m-t-30{
    margin-top: 30px;
}

.m-t-40{
    margin-top: 40px;
}

.comTit{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #F1F1F1;
} 
.comTit .title{
    font-size: 18px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    position: relative;
}
.comTit .title::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #2CA23B;
    position: absolute;
    bottom: -11px;
    left: 0;
    transform: translateY(-50%);
}
.comTit a{
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
}

.index-one-box{
    width: 1200px;
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
}
.index-one-box .day-info{
    width: 70px;
    height: 80px;
    background: #2CA23B;   
    font-size: 14px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    padding: 16px 21px;
    box-sizing: border-box;
    line-height: 24px;
    position: relative;
}
.index-one-box .day-info::after{
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border: 6px solid transparent;
    border-left-color: #2CA23B;
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
}

.index-one-ul{
    flex: 1;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
    padding: 12px 24px;
    box-sizing: border-box;
}
.index-one-ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 340px;
}
.index-one-ul li a{
    font-size: 12px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    padding-left: 12px;
    position: relative;  
    flex: 1;
    margin-right: 24px;
}
.index-one-ul li a::before{
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #2CA23B; 
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.index-one-ul li .date{
    font-size: 12px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #999999;   
}

.img-one-ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.img-one-ul li{
    width: 180px;  
}
.img-one-ul li img{
    width: 180px;
    height: 100px;
    border-radius: 8px;
    display: block;
}

.index-two-ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}
.index-two-ul li .info{
    width: 35px;
    height: 21px;
    line-height: 21px;
    text-align: center;
    background: #F1FFF3;
    font-size: 12px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #2CA23B;
}
.index-two-ul li a{
    flex: 1;
    margin-left: 13px;
    margin-right: 40px;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #666666;  
}
.index-two-ul li .date{
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;   
}

.index-swiper{
    width: 480px;
}
.index-swiper a{
    display: block;
    position: relative;
    width: 480px;
    height: 260px;
}
.index-swiper img {
    width: 480px;
    height: 260px;
    display: block;
}
.index-swiper .text{
    position: absolute;
    bottom: 0;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    padding: 0 120px 0 20px;
    box-sizing: border-box;
}

.img-two-ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.img-two-ul li{
    width: 120px;
}
.img-two-ul li img{
    width: 120px; 
    height: 68px;
    /*border-radius: 6px;*/
    display: block;
}

.title-one-box .title{
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #2CA23B;   
}
.title-one-box .two{
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
}
.title-one-box img{
    width: 107px;
    height: 80px;
    border-radius: 8px;
    display: block;
}
.title-one-box .right{
    flex: 1;
    margin-left: 14px;
}
.title-one-box .text{
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 24px;   
}
.title-one-box .info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    margin-top: 10px;
}

.index-three-ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.index-three-ul li a{
    flex: 1;
    margin-right: 20px;
    padding-left: 15px;
    background: url(./../images/label.png) no-repeat center left;
    background-size: 8px 8px;
    position: relative;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
}
.index-three-ul li div{
    font-size: 13px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;  
}

.index-four-ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.index-four-ul li:first-child{
    margin-top: 20px;
}
.index-four-ul li .num{
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: #BCBCBC;
    border-radius: 4px;  
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}
.index-four-ul li:nth-child(-n+3) .num{
    background: #2CA23B;
}
.index-four-ul li .center{
    flex: 1;
    margin-left: 12px;
    margin-right: 25px;
}
.index-four-ul li .title{
    font-size: 15px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333; 
}
.index-four-ul li .info{
    display: flex;
    align-items: center;
    font-size: 13px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    margin-top: 7px;
}
.index-four-ul li .info div:last-child{
    flex: 1;
    margin-left: 60px;
}
.index-four-ul li img{
    width: 16px;
    height: 16px;  
    display: block; 
}

.img-one-box{
    display: block;
    margin-top: 20px;
}
.img-one-box img{
    width: 100%;
    height: 200px;
    display: block;  
}

.index-five-ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;    
    margin-top: 25px;
}
.index-five-ul li:first-child{
    margin-top: 20px;
}
.index-five-ul li .left{
    flex: 1;
    margin-right: 30px;
}
.index-five-ul li .title{
    font-size: 15px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;   
}
.index-five-ul li .info{
    display: flex;
    align-items: center;
    font-size: 13px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    margin-top: 7px;
}
.index-five-ul li .info div:last-child{
    flex: 1;
    margin-left: 60px;
}
.index-five-ul li .text{
    margin-top: 8px;
    font-size: 13px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;   
}
.index-five-ul li .click{
    width: 76px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 1px solid #2CA23B;   
    font-size: 13px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #2CA23B;  
}

.index-six-ul{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.index-six-ul li{
    width: 220px;
}
.index-six-ul .img{
    position: relative;
    display: block;
}
.index-six-ul img{
    width: 220px;
    height: 130px;
    display: block;   
}
.index-six-ul .date{
    width: 47px;
    height: 22px;
    background: #2CA23B;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    position: absolute;
    top: 6px;
    left: 6px;
}
.index-six-ul .title{
    margin-top: 14px;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333; 
}

.Flink-ul{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
}
.Flink-ul li{
    margin-top: 20px;
    padding-right: 40px;
}
.Flink-ul li a{
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
}

.body_position {
    width: 1200px;
    margin: 0 auto;
    padding: 18px 0;
    box-sizing: border-box;
}

.body_position span {
    font-size: 12px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
}

.body_position span a {
    color: #999999;
    text-decoration: none;
}

.body_position span:last-child a{
  color: #4D4D4D;  
}

.Module-body{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.info-one-ul li{
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px dashed #D8D8D8;
}
.info-one-ul li:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.info-one-ul li img{
    width: 300px;
    height: 180px;
    border-radius: 8px;
    display: block;   
}
.info-one-ul li .right{
    flex: 1;
    margin-left: 26px;
    padding: 6px 0;
    box-sizing: border-box;
}
.info-one-ul li .title{
    font-size: 20px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;   
}
.info-one-ul li .date{
    margin-top: 9px;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #9E9E9E;   
}
.info-one-ul li .text{
    margin-top: 9px;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    line-height: 24px;   
}
.info-one-ul li .click{
    display: block;
    width: 100%;
    text-align: end;
    margin-top: 10px;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #2CA23B;   
}

.pagination {
    margin: 60px 0 30px 0;
    text-align: center;
}

.pagination .page-item {
    display: inline-block;
    margin: 5px;
    font-size: 13px;
    background-color: #fff;
    color: #777;
    border: 1px solid #DDDDDD;
}

.pagination .active span {
    background-color: #2CA23B;
    color: #fff;
}

.pagination .page-item:hover {
    background-color: #2CA23B;
    color: #fff;
}

.pagination .page-item .page-link {
    display: block;
    padding: 6px 12px;
    border: 1px solid transparent;
}

.pagination li a {
    display: inline-block;
    color: #777;
}

.pagination li a:hover {
    background-color: #2CA23B;
    color: #fff;
    border: 1px solid #2CA23B;
}

.detatitle{
    padding: 25px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #D8D8D8;
}
.detatitle h1{
    margin-bottom: 15px;
    font-size: 28px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 37px;
    text-align: center;
}
.detainfo{
    display: flex;
    justify-content: space-evenly;
}
.detainfo div{
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #9E9E9E;
}

.article-content {
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    line-height: 36px;
    text-indent: 2em;
    padding-top: 20px;
}

.article-content p img {
    display: block;
    margin: 20px auto;
    width: 600px;
    height: 355px;
}
.article-content h2,h3{
    font-size: 17px;
    font-family: Microsoft YaHei UI-Bold, Microsoft YaHei UI;
    font-weight: bold;
    color: #F39E1B;
    line-height: 35px;
}

.info-two-ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.info-two-ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 365px;
    padding: 16px 0;
    border-bottom: 1px dashed #EEEEEE;
}
.info-two-ul li:nth-child(-n+2){
    padding-top: 20px;
}
.info-two-ul li:nth-child(n+5){
    border-bottom: none;
}
.info-two-ul li a{
    flex: 1;
    margin-right: 30px;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    position: relative;
    padding-left: 14px;
}
.info-two-ul li a::before{
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #D9D9D9;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.info-two-ul li div{
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;  
}

.kfb-body{
    width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.info-title{
    margin-bottom: 10px;
}
.info-title .Ttop{
    line-height: 19px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    padding-left: 40px;
    background: url(../images/date.png) no-repeat center left;
    background-size: 19px 19px;
}   

table {
    margin-top: 20px;
    width: 100%;
    border-bottom: 1px solid #EEEEEE;
}
table thead{
    height: 45px;
    background: #2CA23B;
    width: 100%;  
}
table thead tr th{
    font-size: 15px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}
table thead tr th:nth-child(1){
    width: 280px;
}
table thead tr th:nth-child(2){
    width: 170px;
}
table thead tr th:nth-child(3){
    width: 220px;
}
table thead tr th:nth-child(4){
    width: 140px;
}
table thead tr th:nth-child(5){
    width: 170px;
}
table thead tr th:nth-child(6){
    width: 220px;
}
table tbody{ 
    background-color: #FFFFFF;
}
table tbody td{
    height: 70px;
    border-top:1px solid #EEEEEE;
}
table tbody tr td:nth-child(1){
    border-left:1px solid #EEEEEE;
}
table tbody tr td:nth-child(1) .body{
    width: 280px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    text-align: start;
    margin-bottom: 0;
}
table tbody tr td:nth-child(1) img{
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 9px;
}
table tbody tr td:nth-child(1) .right{
    flex: 1;
    margin-left: 12px;
    height: 44px;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
    padding: 2px 0;
    box-sizing: border-box;
}
table tbody tr td:nth-child(1) .name{
    font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333; 
}
table tbody tr td:nth-child(1) .info{
    width: 100%;
    font-size: 12px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #888888;
}
table tbody tr td:nth-child(2){
    color: #FF3B27;
}
table tbody tr td{
    text-align: center;
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
}
table tbody tr td:last-child{
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #EEEEEE;
}
table tbody tr td:last-child a{
    display: block;
    width: 90px;
    height: 36px;
    line-height: 36px;
    border-radius: 5px;
    opacity: 1;
    border: 1px solid #2CA23B; 
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #2CA23B;
    background-color: #FFFFFF;
}
table tbody tr:hover td:last-child a{
    background-color: #2CA23B;
    color: #FFFFFF;
}
table tbody tr:nth-child(-n+3){
    background-color: #F3FFF4;
}

.info-three-ul{
    display: flex;
    flex-wrap: wrap;
}
.info-three-ul li:nth-child(odd){
    width: 49%;
    margin-right: 1%;
}
.info-three-ul li:nth-child(even){
    width: 49%;
    margin-left: 1%;
}
.info-three-ul li{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #F1F1F1;
}
.info-three-ul li:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.info-three-ul img{
    width: 100px;
    height: 100px;
    border-radius: 8px;
    display: block;   
}
.info-three-ul .right{
    flex: 1;
    margin-left: 20px;
}
.info-three-ul .one{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 11px;
}
.info-three-ul .name{
    flex: 1;
    margin-right: 30px;
    font-size: 18px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}
.info-three-ul .click{
    width: 127px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    background: #F0FFF2;   
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #2CA23B;
}
.info-three-ul .text{
    margin-top: 28px;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #666666;  
}

.game-title{
    width: 1200px;
    margin: 0 auto;
    padding: 30px 50px 30px 20px;
    box-sizing: border-box;
    background: #F7F7F7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-title .img img{
    width: 160px;
    height: 160px;
    border-radius: 20px;
    display: block; 
}
.game-title .center{
    flex: 1;
    margin-left: 45px;
    margin-right: 130px;
}
.game-title .name{
    font-size: 22px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}
.game-title .type{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    margin-top: 20px;
}
.game-title .type div{
    margin-top: 15px;
    width: 175px;
}

.info-button-box{
    width: 200px;
    height: 160px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 16px 0;
    box-sizing: border-box;
}
.info-down-btn{
    width: 200px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    font-size: 22px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    background-color: #FFFFFF;
}
.info-down-btn span{
    width: 200px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-button-box .i1{
    border: 1px solid #333333;
    color: #333333;
}
.info-button-box .i2{
    border: 1px solid #2CA23B;
    color: #2CA23B;
}
.btn-code{
    display: none;
    position: absolute;
    width: 120px;
    height: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}
.btn-code img{
    width: 120px;
    height: 120px;
    display: block;
}
.btn-code div{
    width: 120px;
    height: 25px;
    line-height: 20px;
    color: #666;
    background-color: #FFFFFF;
    text-align: center;
    font-size: 12px;
}
.info-down-btn:hover .btn-code{
    display: block;
}
.info-down-btn span img{
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 10px;
}

.game-swiper .swiper{
    margin-top: 20px;
}
.game-swiper .swiper-slide{
    width: 380px;
    height: 200px;
}
.game-swiper .swiper-slide img{
    width: 380px;
    height: 200px;
    display: block;
}

.info-four-ul{
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info-four-ul li{
    width: 250px;
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}
.info-four-ul li .img img{
    width: 90px;
    height: 90px;
    border-radius: 11px;
    display: block;  
}
.info-four-ul li .right{
    height: 90px;
    margin-left: 18px;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.info-four-ul li .name{
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;  
}
.info-four-ul li .type{
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
}
.info-four-ul li .type img{
    width: 14px;
    height: 14px;
    display: block;
}
.info-four-ul li .click{
    width: 88px;
    height: 28px;
    background: #E5FFE8;
    border-radius: 4px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #2CA23B;    
}

.info-five-ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #EBEBEB;
}
.info-five-ul li:first-child{
    padding-top: 20px;
}
.info-five-ul li:last-child{
    border-bottom: none;
}
.info-five-ul li .num{
    width: 26px;
    height: 26px;
    background: #CECECE;
    border-radius: 4px;
    line-height: 26px;
    text-align: center; 
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}
.info-five-ul li:nth-child(1) .num{
    background: #D84241;   
}
.info-five-ul li:nth-child(2) .num{
    background: #F0965A;   
}
.info-five-ul li:nth-child(3) .num{
    background: #EFBF5B;   
}
.info-five-ul li .title{
    flex: 1;
    margin-left: 20px;
    margin-right: 30px;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;  
}
.info-five-ul li .click{
    width: 48px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #B8B8B8;  
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #666666; 
}

.info-five-ul li.active .title{
    display: none;
}
.info-five-ul li.active .click{
    display: none;
}
.info-five-ul li .right{
    display: none;
}
.info-five-ul li.active .right{
    display: flex;
    flex: 1;
    margin-left: 20px;
    justify-content: space-between;
    align-items: center;
}
.info-five-ul li img{
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: block;  
}
.info-five-ul li .two{
    flex: 1;
    margin-left: 20px;
    margin-right: 30px;
    height: 48px;
}
.info-five-ul li .name{
    width: 100%;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;    
}
.info-five-ul li .type{
    margin-top: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #666666;  
}
.info-five-ul li .type img{
    width: 15px;
    height: 15px;
    display: block; 
}
.info-five-ul li .button{
    width: 64px;
    height: 36px;
    background: #2CA23B;
    border-radius: 4px;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}

.new-one-ul li{
    display: flex;
    justify-content: space-between;
    padding: 20px 0; 
    border-bottom: 1px solid #EDEDED;
}
.new-one-ul li:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.new-one-ul li img{
    width: 130px;
    height: 80px;
    display: block;  
}
.new-one-ul li .right{
    flex: 1;
    margin-left: 14px;
}
.new-one-ul li .title{
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333;   
}
.new-one-ul li .text{
    margin-top: 10px;
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #666666;    
}
.new-one-ul li .info{
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
}
.new-one-ul li .info div:last-child{
    color: #2CA23B;
}

.title-two-box img{
    width: 380px;
    height: 214px;
    display: block;
}
.title-two-box .text{
    margin-top: 17px;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #3D3D3D;
    line-height: 28px;
    min-height: 56px;
}

.new-two-ul li{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.new-two-ul li:first-child{
    margin-top: 0;
}
.new-two-ul li img{
    width: 80px;
    height: 50px;
    display: block; 
}
.new-two-ul li .right{
    flex: 1;
    margin-left: 15px;
    height: 50px;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
}
.new-two-ul li .title{
    font-size: 13px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #333333; 
    width: 100%; 
}
.new-two-ul li .date{
    font-size: 12px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #999999; 
    width: 100%; 
}

div.aq_part{
    padding: 0!important;
}