
/* 
 
在做手机端web的时候发现css中设置的同样字体大小的两块内容，实际显示的字体大小差异明显！测试后发现字体大小会随着文本块中文本内容数量的变动而变动。网上查阅资料发现是chrome对字体优化导致的，在css中加入如下代码后问题解决：
text-size-adjust: none;-webkit-text-size-adjust: none;
*/
*{padding: 0;margin: 0;text-size-adjust: none;-webkit-text-size-adjust: none;font-family: "思源黑体";}
a{text-decoration: none;outline: none; color: #333;}
img{border: none;outline: none;}
ul,ol,li{list-style: none;}
i{font-style: normal;}
input,select,option{border: 0;outline: none;background: none;}
body{font-family: "微软雅黑"; color: #333;width: 100%;}
.clear { clear: both;}
a:hover {text-decoration: underline;text-decoration: none;}

hr{margin: 0 1rem;color:#ccc;border: none;height: 1px;background-color: #e5e5e5;}
.top{margin-top: 2rem;}

.box{width: 40rem; height: 71rem;padding-top: 9rem;margin:0 auto;box-sizing: border-box;margin-top: 3rem;padding-bottom: 10rem;background-image: url('/m/cepinfo/images/xltj_img1.png');background-repeat: no-repeat;background-size: 100%;border:none}
.cepinfo_title{width: 29rem;margin:0 auto;}
.cepinfo_title img{width: 100%;}
.cepinfo_Subheading{width: 19rem;margin:auto;margin-top: 1rem;text-align: center;border:2px solid #33a4e8;border-radius: 0.5rem;color:#33a4e8;padding: 0.3rem 0.5rem; font-size: 1.4rem;line-height: 2rem;}
.cepinfo_QRcodeBox{padding: 2rem 5rem;display: flex;}
.cepinfo_QRcodeBox .cepinfo-item{flex: 1;}
.cepinfo_QRcodeBox .cepinfo-item p{text-align: center;}
.cepinfo_QRcodeBox .cepinfo-item p img{width: 13rem;}
.cepinfo_QRcodeBox .cep_number{width: 2.7rem;height: 2.7rem;line-height: 2.7rem;border-radius: 50%;background-color: #30a6e6;margin: 0 auto;margin-bottom: 1rem;color:#fff;font-weight: 400;font-size: 2rem;}
.cepinfo_QRcodeBox .cep_desc{color:#30a6e6;margin-top: 0.3rem;font-size: 1.5rem;font-weight: 500;}
.cep_explain{width: 9rem;margin: auto;text-align: center;background-color: #30a6e6;height: 2.5rem;line-height: 2.5rem;font-size: 1.7rem;font-weight: 400;color:#fff;border-radius: 2rem;}
.cep_explain-desc{width: 71%;margin: auto;margin-top: 1.5rem;}
.cep_explain-desc ul{}
.cep_explain-desc ul li{color:#30a6e6;font-size: 1.4rem;margin-bottom: 0.6rem;font-weight: 500;}
.cep_explain-desc ul li i{margin-right: 1rem;}

.cep_footer{width: 71%;margin: 0 auto;margin-top: 2rem;}
.cep_footer .cep_footer-left{float: left;width: 7.5rem;}
.cep_footer .cep_footer-left img{width: 100%;}
.cep_footer .cep_footer-right{float: left;margin-left: 1rem;margin-top: 1rem;}
.cep_footer .cep_footer-right p{color:#3f3f3f;font-size: 1.2rem;font-weight: bold;}


/*header 顶部导航 开始*/
.header{width: 40rem;height: 4rem;line-height: 4rem;position:fixed;left:0;right:0;top:0;margin: 0 auto;z-index: 99999;background-color: #fff;text-align: center;}
.header a{font-size: 1.6rem;font-family: "微软雅黑" !important;}
.header .h-back {
    position: absolute;
    left: 0rem;
    width: 4rem;
    text-decoration: none;
}
/*header 顶部导航结束*/


