/* 基本布局样式 */
@font-face {
    font-family: tonjay;
    src: url("../font/SY-NORMAL.OTF");
}
@font-face{
    font-family: 'siyuan';
    src : url('../font/SourceHanSansCN-Normal.ttf');
}
* {margin: 0; padding: 0;box-sizing: border-box;font-family: siyuan;}
body{overflow-x: hidden;padding: 0;margin: 0;}
ul{padding: 0;margin: 0;}
li{list-style: none;}
a{text-decoration: none;}
.main{width: 100%;height: auto;}
.full-box{width:100%;height: auto;}
.unfull-box{width: 1200px;height: auto;margin: auto;}

/* 基本字体样式 */
.sy-font{}


/* 基本按钮样式 */
.yi-btn{transition: all 0.2s ease-out;height: 40px;line-height: 40px;width: 140px;text-align: center;background-color:#0046E6;color: #fff;border-radius: 7px;}
.yi-btn:hover{cursor: pointer;opacity: 0.8;}

/* 基本hover样式 */
.a{transition: all 0.15s ease-out;}
.a:hover{color: #0046E6!important;}