html,
body {
    min-width: 300px;
    max-width: 750px;
    margin: 0 auto;
}
/*img{object-fit: cover !important;}*/
/* 头部 */
header {
    width: 100%;
    height: 4.0625rem;
    padding: 0px 1.25rem;
    display: flex;
    /* border: 1px solid purple; */
    justify-content: space-between;
    align-items: center;
}

header img:nth-child(1) {
    width: 9.375rem;
}

header img:nth-child(2) {
    width: 1.875rem;
}

.bot {
    width: 100%;
    position: relative;
}

.bot img {
    width: 100%;
}

.bot .txt {
    width: 65%;
    height: 3.125rem;
    background-color: rgb(14, 128, 215);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    color: white;
    align-items: center;
    font-size: 1.25rem;
    padding-left: 3.25rem;

}

.bot .txt p {
    font-style: italic;
    color: rgb(135, 192, 235);
    margin-left: 0.625rem;
}


/* 底部 */
footer {
    height: 18.75rem;
    background-color: rgb(51, 51, 51);
    overflow: hidden;

}

footer .footer-box {
    width: 20rem;
    /* border: 1px solid red; */
    height: 16rem;
    margin: 0 auto;
}

footer .company {
    margin-top: 1rem;
}

footer .company h1 {
    font-size: 0.75rem;
    color: white;
    height: 1.125rem;
    line-height: 1.125rem;

}

footer .company p {
    color: rgb(153, 153, 153);
    height: 1.0625rem;
    line-height: 0.9375rem;
}

footer .QRcode {
    display: flex;
    width: 18.75rem;
    margin-top: 0.9375rem;
    justify-content: space-between;
}

footer .QRcode p {
    width: 10.75rem;

}

footer .QRcode img {
    width: 6.25rem;
    display: block;
    margin: 0 auto;
}

footer .QRcode span {
    color: rgb(153, 153, 153);
    display: block;
    height: 1.625rem;
    line-height: 1.625rem;
    text-align: center;
}

/* 回到顶部 */
aside {
    position: fixed;
    top: 50%;
    right: 0;
    width: 2.5rem;
    height: 5.625rem;

}

aside .message {
    background-color: rgb(0, 93, 164);
    height: 75%;
    padding: 0.6875rem 0px 0px 0.5625rem;
    ;
}

aside .message img,
aside .goback img {
    width: 72%;
}

aside .goback {
    display: none;
    background-color: rgb(52, 53, 62);
    padding: 0.6875rem 0px 0px 0.5625rem;
    ;

}

aside p {
    color: white;
    width: 80%;
    font-size: 0.6875rem;
    transform: scale(0.83333);
    transform-origin: 0 0;
    font-weight: 100;
    margin-top: 0.125rem;
}


/* 导航弹出 */
.navBg{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(102, 102, 102,0.8);
    z-index: 66;
    display: none;
}
nav{
    width: 63%;
    height:100%;
    background-color: rgb(28, 110, 196);
    position: fixed;
    top: 0px;
    right:-63%;

    z-index: 999;
}
nav ul{
padding: 22px 25px;
background-color: rgb(28, 110, 196);

}

nav p {
    text-align: right;

}

nav img {

    width: 10%;
}

nav li {
    padding-left: 8px;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid rgb(164, 197, 231);
}

nav li a {
    color: rgb(164, 197, 231);
    font-size: 17px;

}

.anima{
    display: block;
    transition: all 0.5s linear;
    transform: translateX(-100%);

}
.animahide{
    transition: all 0.1s linear;
    transform: translateX(0%);
}

/* 在线留言弹出 */
.messageWrap{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 22, 22, 0.8);
    top: 0;
    left: 0;
    display: none;

}

.messageModal{
    width:80%;
    height: 300px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 222;
    border-radius: 3%;
    overflow: hidden;
}

.messageModal .tit {
    width: 100%;
    height: 40px;
    background-color: rgb(47, 152, 251);
    color: white;
    font-size: 16px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.messageModal .tit img {
    width: 7%;
}

.form-group {
    display: flex;
    align-items: center;
    padding: 0px 20px;
    margin-top: 17px;
    /* border: 1px solid red; */
}

.form-group label {
    width: 33%;
    color: rgb(102, 102, 102);
    font-size: 15px;
}


.form-group span {
    color: red;
}

.form-group input {
    height: 30px;
    line-height: 30px;
}

.form-group textarea {
    padding-top: 6px;
    line-height: 15px;
    vertical-align: bottom;
    height: 60px;
}

.form-group input,
.form-group textarea {
    border: 1px solid rgb(217, 217, 217);
    text-indent: 0.6em;
    flex: 1;

}

.messageModal .btn {
    text-align: right;
    padding: 25px 20px 0px 0px;

}

.messageModal .btn input {
    width: 20%;
    height: 30px;
    border: none;
    margin: 0 10px;

}

.messageModal .btn input:nth-child(1) {
    color: white;
    background-color: rgb(47, 152, 251);
}

.messageModal .btn input:nth-child(2) {
    color: rgb(108, 108, 108);
    background-color: rgb(240, 240, 240);
}

/*分页*/
.zxpage {
    padding-bottom: 0.8rem;
}

.zxpage ul {
    text-align: center;
}

.zxpage li {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    font-size: 14px;
    margin-left: 0px;
}

.zxpage li:first-child {
    margin-left: 0;
}

.zxpage li.active {
    background: #397fbd;
}

.zxpage li.active span {
    color: #fff;
}

.zxpage li.disabled {
    cursor: no-drop;
}

.zxpage li a {
    color: #414141;
    display: block;
}

.zxpage li span {
    color: #414141;
    display: block;
}<!--0.00018620491027832-->