﻿@charset "UTF-8";

@media only screen and (max-width: 320px) {
    html {
        font-size: 525%;
    }
}
@media only screen and (min-width: 321px) and (max-width: 500px) {
    html {
        font-size: 625%;
    }
}
@media only screen and (min-width: 501px) {
    html {
        font-size: 1000%;
    }
}

* {
    border: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
    min-width: 320px;
}
body {
    font-size: 0.16rem;
    color: #303030;
    height: 100%;
}
ul,ol,dl {
    list-style: none;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
a {
    text-decoration: none;
	color: inherit;
}
button{
	outline: none;
	background: none;
	cursor: pointer;
}
table {
	border-collapse:collapse;
}
input {
    outline: none;
}
body > section {
    overflow: hidden;
    text-align: center;
}
body > section > h2 {
    color: #303030;
    font-size: 0.19rem;
    padding-top: 0.2rem;
}
body > section > h5 {
    color: #949494;
    font-size: 0.11rem;
    padding-bottom: 0.15rem;
}
body > section button.linkEven {
    width: 0.9rem;
    height: 0.3rem;
    border: 1px solid #0182fe;
    border-radius: 0.05rem;
    color: #0182fe;
    margin-top: 0.17rem;
}
footer.foot-padding {
    height: 0.6rem;
}



/*????????????*/
header.public-head {
    height: 0.5rem;
    background-color: #333;
    color: #FFF;
    padding: 0rem 0.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    header.public-head > img:first-child {
        height: 0.25rem;
    }
    header.public-head > article {
        position: relative;
    }
    header.public-head > article::after {
        content: "";
        position: absolute;
        top: 0.02rem;
        left: -0.36rem;
        width: 0.28rem;
        height: 0.28rem;
        background-image: url('img/index_tel.png');
        background-size: cover;
    }
        header.public-head > article > h5 {
            font-size: 0.1rem;
        }
        header.public-head > article > h4 {
            color: #0097ea;
            font-size: 0.16rem;
            line-height: 0.18rem;
        }

/*  ?????????????????? ??????  */
nav.public-nav {
    height: 0.6rem;
    background-color: #333;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
}
    ul.public-nav-list {
        display: flex;
        height: 100%;
    }
        ul.public-nav-list > li {
            flex: 1;
            color: #FFF;
            font-size: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        ul.public-nav-list > li.active {
            /*background-color: #2a4f9b;*/
            background-color: #0097ea;
        }
            ul.public-nav-list > li img {
                width: 0.25rem;
            }
            ul.public-nav-list > li h5 {
                font-size: 0.1rem;
                line-height: 0.2rem;
            }
