/* pc样式 */
@media screen and (min-width: 1024px){
    .header{
        position: relative;
        height: 4.3rem;
        border-bottom: 0.1rem solid #aacff5;
 background: url(../imgs/bandatubg1.png) no-repeat center top;
background-size: cover;
    }
    
    
    
    .header-left{
        position: absolute;
        left: 0;
        top: 0;
        width: 13rem;
        height: 100%;
       /*  background-image: url(../imgs/top_leftbj.png);
        background-size: auto 100%; */
        background-repeat: no-repeat;
        background-position: right top;
        display: flex;
        align-items: center;
        justify-content: center;
        /* justify-content: flex-start; */
    }
    .header-left-logo{
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: flex-start;
        position: absolute;
        left: 3rem;
    }
    .header-left-logo img{
        height: 0.8rem;
    }
    .header-left-logo h2{
font-weight: 300;
        margin-top: 0.2rem;
        font-size: 0.42rem;
        color: #ffffff;
    }
    .header-left-logo p{
        font-size: 0.27rem;
        color: #ffffff;
        letter-spacing: 0.01rem;
    }
    .logo_text {
         margin-top: 0.25rem;
    }
    .logo_text img {
       height: 0.9rem;
    }
    
    .header-right{
        z-index: -1;
        position: absolute;
        top: 0;
        right: 0;
        height: 4.3rem;
    }
    .header-right img {
        height: 4.3rem;
    }

    .content {
        padding-bottom: 1rem;
    }
    
    .content-title{
        margin-top: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .content-title img {
        width: 42%;
    }
    .content-title-text{
        text-align: center;
        color: var(--zt_color--);
    }
    .content-title-text h2{
        font-size: 0.4rem;
        letter-spacing: 0.04rem;
    }
    .content-title-text p{
        font-size: 0.16rem;
        letter-spacing: 0.02rem;
    }

    .ty-list {
        margin-top: 1rem;
       /* display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.2rem;*/

        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .ty-list>li {
width: 16%;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }

    .ty-list>li>a {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 1.4rem;
        height: 100%;
    }

    .ty-list>li>a>h2 {
        margin-top: 0.1rem;
        font-size: 0.22rem;
        color: var(--zt_color--);
        transition: border 1s ease;
    }

    .ty-list-bian {
        width: 1.4rem;
        height: 1.4rem;
        border: 0.03rem solid #aacff5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border 1s ease;
    }

    .ty-list-yuan {
        width: 1.2rem;
        height: 1.2rem;
        background-color: var(--zt_color--);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        transition: background-color 1s ease;
    }
    .ty-list-yuan img {
        max-width: 80%;
        max-height: 80%;
        transition: all 2s ease;
    }
    .ty-list>li:hover>a>.ty-list-bian{
        border: 0.03rem solid var(--zt_hover_color--);
        transition: border 1s ease;

    }
    .ty-list>li:hover>a .ty-list-yuan {
        background-color: var(--zt_hover_color--);
        transition: background-color 1s ease;
    }
    .ty-list>li:hover>a h2 {
        color: var(--zt_hover_color--);
        transition: border 1s ease;
    }

    .ty-list>li:hover>a>.ty-list-bian>.ty-list-yuan>img {
        transform: rotateY(360deg);
        transition: all 2s ease;
    }

    .yybf>li .ty-list-yuan img {
        max-width: 70%;
        max-height: 70%;
    }


}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .header{
        position: relative;
        height: 5rem;
        border-bottom: 0.1rem solid #aacff5;
         background: url(../imgs/bandatubg1.png) no-repeat center top;
background-size: cover;
    }
    
    
    
    .header-left{
        position: absolute;
        left: 0;
        top: 0;
        width: 10.5rem;
        height: 100%;
        /* background-image: url(../imgs/top_leftbj.png); */
        /* background-size: auto 100%; */
        /* background-repeat: no-repeat; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-left-logo{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        left: 1rem;
    }
    .header-left-logo img{
        height: 1.2rem;
    }
    .header-left-logo h2{
        margin-top: 0.2rem;
        font-size: 0.4rem;
        color: #ffffff;
    }
    .header-left-logo p{
        font-size: 0.27rem;
        color: #ffffff;
    }

    .logo_text {
         margin-top: 0.2rem;
    }
    .logo_text img {
        /* height: 0.52rem; */
    }
    
    .header-right{
        z-index: -1;
        position: absolute;
        top: 0;
        right: 0;
        height: 5rem;
    }
    .header-right img {
        height: 100%;
    }

    .content {
        box-sizing: border-box;
        padding: 0 10px;
        padding-bottom: 1rem;
    }
    
    .content-title{
        margin-top: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .content-title img {
        width: 40%;
    }
    .content-title-text{
        text-align: center;
        color: var(--zt_color--);
    }
    .content-title-text h2{
        font-size: 0.4rem;
        letter-spacing: 0.04rem;
    }
    .content-title-text p{
        font-size: 0.16rem;
        letter-spacing: 0.02rem;
    }

    .ty-list {
        margin-top: 0.5rem;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.2rem;
    }
    .ty-list>li {
        display: flex;
        justify-content: center;
    }

    .ty-list>li>a {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 1.4rem;
        height: 100%;
    }

    .ty-list>li>a>h2 {
        margin-top: 0.1rem;
        font-size: 0.22rem;
        color: var(--zt_color--);
        transition: border 1s ease;
    }

    .ty-list-bian {
        width: 1.4rem;
        height: 1.4rem;
        border: 0.03rem solid #aacff5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border 1s ease;
    }

    .ty-list-yuan {
        width: 1.2rem;
        height: 1.2rem;
        background-color: var(--zt_color--);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        transition: background-color 1s ease;
    }
    .ty-list-yuan>img {
        max-width: 90%;
        max-height: 90%;
        min-width: 90%;
        min-width: 90%;
        transition: all 2s ease;
    }
    .ty-list>li:hover>a>.ty-list-bian{
        border: 0.03rem solid var(--zt_hover_color--);
        transition: border 1s ease;

    }
    .ty-list>li:hover>a .ty-list-yuan {
        background-color: var(--zt_hover_color--);
        transition: background-color 1s ease;
    }
    .ty-list>li:hover>a h2 {
        color: var(--zt_hover_color--);
        transition: border 1s ease;
    }

    .ty-list>li:hover>a>.ty-list-bian>.ty-list-yuan>img {
        transform: rotateY(360deg);
        transition: all 2s ease;
    }

    .yybf>li .ty-list-yuan img {
        max-width: 70%;
        max-height: 70%;
        min-width: 60%;
        min-width: 60%;
    }
}

@media screen and (max-width: 800px) {
    .header,.header-right {
        height: 3rem;
    }
    .header-left {
        padding-left: 0.4rem;
        width: 6.5rem;
        justify-content: flex-start;
    }
    .content-title img {
        width: 30%;
    }
    .header-left-logo h2 {
        margin-top: 0.1rem;
        font-size: 0.3rem;
    }
    .header-left-logo p {
        font-size: 0.2rem;
    }

    .ty-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .header,.header-right {
        height: 2rem;
    }
    .header-left {
        width: 4.5rem;
    }
    .ty-list {
        grid-template-columns: repeat(2, 1fr);
    }
      .header-left-logo img{
        height: 0.7rem;
    }
    .header-left-logo{left:0.3rem}
    .yybf>li .ty-list-yuan>img {max-width: max-content;max-height: max-content;width: auto;height: 0.75rem;min-width: auto;min-height: auto;}
.ty-list-yuan>img{max-width: max-content;max-height: max-content;width: auto;height: 1rem;min-width: auto;min-height: auto;}
    .ty-list>li:nth-child(2) .ty-list-yuan>img{height:auto;width: 80%;}
    .contyy .ty-list>li:nth-child(2) .ty-list-yuan>img{height:auto;width: 62%;}
    .contyy .ty-list>li:nth-child(11) .ty-list-yuan>img {height:auto;width:65%;}  
}