html{font-size: 100px;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
/* pc样式 */
@media screen and (min-width: 1024px){
        .width1200{
            max-width: 17rem;
            margin: 0 auto;
            width: 94%;
        }
        .top-nav {
            background-image: linear-gradient(90deg, 
		#01449f 0%, 
		#036bfa 50%, 
		#01449f 100%);
        }
        .header {
            background-image: url(../imgs/top_bg.png);
            background-repeat: no-repeat;
            background-position: right bottom;
            background-size: auto 1.4rem;
        }
        .header-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 2.2rem;
        }
        .header-left {}
        .header-left img{
            height: 1rem;
        }
        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        .header-link{
            margin-bottom: 0.2rem;
        }
        .header-link ul {
            display: flex;
        }
        .header-link ul li a{
            margin-left: 0.2rem;
            font-size: 0.18rem;
            line-height: 0.24rem;
            color: #909090;
        }
        .header-search {
            box-sizing: border-box;
            padding: 0 0.2rem;
            width: 3.6rem;
            height: 0.6rem;
            background-color: #ffffff;
            border: solid 1px var(--zt_color--);
            display: flex;
            align-items: center;
        }
        .ss-ipt{
            padding-right:0.2rem;
            flex: 1;
            font-size: 0.18rem;
            border: none;
            outline: none;
        }
        .ss-img{
            width: 0.25rem;
        }

        /* 内容 */
        .content{
            background-color: #f1f1f1;
        }


        /* 通用标题样式 */
    .currency-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 0.9rem;
    }

    .currency-title-left {
        min-width: 3.6rem;
        height: 0.9rem;
        display: flex;
        align-items: center;
        background-image: url(../imgs/currency_title_bg.png);
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: auto 0.32rem;
    }
    .currency-title-left h2{
        font-size: 0.4rem;
        color: var(--zt_color--);
    }
    .currency-title-left p{
        padding: 0 0.3rem;
        font-family: math;
        font-size: 0.24rem;
        font-weight: 700;
        color: rgba(1, 69, 161,.6);
    }

    .currency-title-right>a {
		padding: 0.07rem 0.15rem;
        font-size: 0.16rem;
	    color: var(--zt_color--);
		border: solid 1px var(--zt_color--);
    }
	.currency-title-right>a>img {
		width: 0.36rem;
	}


	/* 通用列表样式 */
    .currency-list{

    }

    .currency-list>li{
        border-radius: 0.1rem;
        transition: all 0.5s ease;

    }
    .currency-list>li:hover {
        background-color: var(--zt_color--);
        transition: all .5s ease;

    }
    .currency-list>li>a{
        height: 0.56rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 1s ease; 
    }
    .currency-list>li:hover >a>p {
        color: #ffffff;
        font-weight: 700;
    }
    .currency-list>li:hover >a>h2 {
        color: #ffffff;
        font-weight: 700;
    }
    .currency-list>li>a>p{
        position: relative;
        flex: 1;
        padding-left: 0.2rem;
        color: #333333;
        font-size: 0.2rem;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .currency-list>li>a>p::after {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0,-50%);
        content: "";
        display: block;
        width: 0.1rem;
        height: 0.1rem;
        border-radius: 50%;
        background-color: #0145a1;
    }
    .currency-list>li>a>h2{
        text-align: right;
        width: 1.5rem;
        font-weight: 500;
        color: #888;
        font-size: 0.18rem;
    }


        /* 底部信息 */
        .bottom {
                    padding: 0.4rem 0;
            background-color: var(--zt_color--);
            background-image: url(../imgs/bottom_bg.png);
            background-repeat: no-repeat;
            background-position: right center;
background-size: contain;
        }
        .bottom-box {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .bottom-box-left{
            width: 6.45rem;
        }
        .bottom-box-left img {
            height: 0.65rem;
            margin-bottom: 0.2rem;
        }

        .bottom-box-left ul li {
            line-height: 0.4rem;
            font-size: 0.18rem;
            color: rgba(255, 255, 255,.6);
        }


        .bottom-box-right{
padding-left: 0.5rem;
            flex: 1;
        }
        .bottom-box-right h2{
            margin-bottom: 0.1rem;
            font-size: 0.24rem;
            color: #ffffff;
        }

        .bottom-box-right ul{
            display: flex;
            flex-wrap: wrap;
        }
        .bottom-box-right ul li{
            width: 40%;

        }
        .bottom-box-right ul li a {
            line-height: 0.4rem;
            font-size: 0.18rem;
            color: rgba(255, 255, 255,.6);
        }

        .banquan {
            height: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--zt_deep_color--);
            color: #ffffff;
            font-size: 0.18rem;
            text-align: center;
        }






}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .top-nav {
        display: none;
    }

            /* 内容 */
            .content{
                padding: 0 10px;
                background-color: #f1f1f1;
            }
    
    
            /* 通用标题样式 */
        .currency-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 0.9rem;
        }
    
        .currency-title-left {
            min-width: 3.6rem;
            height: 0.9rem;
            display: flex;
            align-items: center;
            background-image: url(../imgs/currency_title_bg.png);
            background-repeat: no-repeat;
            background-position: right bottom;
            background-size: auto 0.32rem;
        }
        .currency-title-left h2{
            font-size: 0.4rem;
            color: var(--zt_color--);
        }
        .currency-title-left p{
            padding: 0 0.3rem;
            font-family: math;
            font-size: 0.24rem;
            font-weight: 700;
            color: rgba(1, 69, 161,.6);
        }
    
        .currency-title-right>a {
            padding: 0.07rem 0.15rem;
            font-size: 0.16rem;
            color: var(--zt_color--);
            border: solid 1px var(--zt_color--);
        }
        .currency-title-right>a>img {
            width: 0.36rem;
        }
    
    
        /* 通用列表样式 */
        .currency-list{
    
        }
    
        .currency-list>li{
            border-radius: 0.1rem;
            transition: all 0.5s ease;
    
        }
        .currency-list>li:hover {
            background-color: var(--zt_color--);
            transition: all .5s ease;
    
        }
        .currency-list>li>a{
            height: 0.56rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 1s ease; 
        }
        .currency-list>li:hover >a>p {
            color: #ffffff;
            font-weight: 700;
        }
        .currency-list>li:hover >a>h2 {
            color: #ffffff;
            font-weight: 700;
        }
        .currency-list>li>a>p{
            position: relative;
            flex: 1;
            padding-left: 0.2rem;
            color: #333333;
            font-size: 0.2rem;
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }
        .currency-list>li>a>p::after {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translate(0,-50%);
            content: "";
            display: block;
            width: 0.1rem;
            height: 0.1rem;
            border-radius: 50%;
            background-color: #0145a1;
        }
        .currency-list>li>a>h2{
            text-align: right;
            width: 1.5rem;
            font-weight: 500;
            color: #888;
            font-size: 0.18rem;
        }
    
    
            /* 底部信息 */
            .bottom {
                padding: 0.4rem 0;
                background-color: var(--zt_color--);
                background-image: url(../imgs/bottom_bg.png);
                background-repeat: no-repeat;
                background-position: right center;
background-size: contain;
            }
            .bottom-box {
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
    
            .bottom-box-left{
                width: 6.45rem;
            }
            .bottom-box-left img {
                height: 0.65rem;
                margin-bottom: 0.2rem;
            }
    
            .bottom-box-left ul li {
                line-height: 0.4rem;
                font-size: 0.18rem;
                color: rgba(255, 255, 255,.6);
            }
    
    
            .bottom-box-right{
                flex: 1;
            }
            .bottom-box-right h2{
                margin-bottom: 0.1rem;
                font-size: 0.24rem;
                color: #ffffff;
            }
    
            .bottom-box-right ul{
                display: flex;
                flex-wrap: wrap;
            }
            .bottom-box-right ul li{
                width: 40%;
    
            }
            .bottom-box-right ul li a {
                line-height: 0.4rem;
                font-size: 0.18rem;
                color: rgba(255, 255, 255,.6);
            }
    
            .banquan {
                height: 0.7rem;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: var(--zt_deep_color--);
                color: #ffffff;
                font-size: 0.18rem;
                text-align: center;
            }
    
}

@media screen and (max-width: 800px) {

    .currency-title-right>a {
        font-size: 14px;
    }
    .currency-title-right>a>img {
        width: 30px;
    }

    .currency-list>li>a {
        height: 40px;
    }

    .currency-list>li>a>p {
        font-size: 16px;
    }
    .currency-list>li>a>h2 {
        width: 100px;
        font-size: 16px;
    }




    .bottom {
        height: auto;
    }
    .bottom-box {
        padding: 20px;
        flex-wrap: wrap;
    }
    .bottom-box-left,.bottom-box-right {
        width: 100%;
        height: auto;
    }
    .bottom-box-left img {
        width: 80%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    .bottom-box-left ul {
        margin-top: 10px;
    }
    .bottom-box-left ul li {
        line-height: 26px;
        font-size: 14px;
    }
    .bottom-box-right {
        margin-top: 10px;
    }
    .bottom-box-right h2 {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .bottom-box-right ul li {
        width: 100%;
    }
    .bottom-box-right ul li a{
        line-height: 26px;
        font-size: 14px;
    }



    .banquan {
        height: auto;
        padding: 10px 0;
        font-size: 14px;
    }
}