
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
*:focus {
	outline: 0 !important
}
html {
	font-family: "PingFangSC-Regular", "Microsoft YaHei", "Hiragino Sans GB", tahoma, Arial, "\5B8B\4F53", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
}
body {
	font-family: "PingFangSC-Regular", "Microsoft YaHei", "Hiragino Sans GB", tahoma, Arial, "\5B8B\4F53", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100% !important;
	-ms-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
	-moz-text-size-adjust: 100% !important;
}
/* 移除 input[type="number] 的默认外观 */
input[type="number"] {
    -webkit-appearance: none; /* 去除浏览器默认样式 */
    appearance: none;
    border-radius: 0; /* 可选：重置边框圆角 */
}

/* 对于 Chrome、Edge 等浏览器 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none; /* 隐藏上下箭头 */
    margin: 0;
}

/* 对于 Firefox 浏览器 */
input[type="number"] {
    -moz-appearance: textfield; /* 使用文本输入样式替代 */
}
li{
    list-style: none;
}
a{
    display: block;
    text-decoration: none;
    color: #333;
}
img{
    display: block;
}
.ovfl{
    overflow: hidden;
}
.w1200{
    width: 1200px;
    margin: 0 auto;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
/* head */
.header{
    width: 100%;
    height: 60px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    min-width: 1200px;
}
.pc_header_zhanwei{
    width: 100%;
    height: 60px;
}
.header .container{
    width: 1200px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .nav{
    flex: 1;
    flex-shrink: 0;
}
.nav-list{
    display: flex;
    padding-left: 30px;
}
.nav-list li{
    padding-right: 17px;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
}
.nav-list li>a{
    position: relative;
    font-size: 14px;
    font-weight: 400;
    height: 64px;
    line-height: 60px;
    display: block;
    color: #1A1A1A;
    transition: all 0.3s;
    padding-right: 15px;
    /* margin-top: 5px; */
    /* border: 1px solid; */
}
.nav-list li>a.nav_vip{
    padding-right: 0;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border-radius: 5px;
    padding-left: 20px;
    background: #FA6400;
    color: #fff;
}
.nav-list li>a.nav_vip svg{
    transition: all 0.3s;
    fill: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    transform: translate(0, -50%);
}
.nav-list li>a.nav_vip:hover{
    background: #FF5100;
    color: #fff;
}
.nav-list li>a.nav_vip:hover svg{
    fill: #fff;
}

.nav-list li>a.nav_go{
    padding-right: 0;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border-radius: 5px;
    padding-left: 24px;
    background: #E7D6BB;
    color: #6D542D;
}
.nav-list li>a.nav_go svg{
    transition: all 0.3s;
    fill: #6D542D;
    position: absolute;
    left: 4px;
    top: 50%;
    width: 20px;
    transform: translate(0, -50%);
}
.nav-list li>a.nav_go:hover{
    background: #D3BD9C;
    color: #6D542D;
}
.nav-list li>a.nav_go:hover svg{
    fill: #6D542D;
}

.nav-list li>a:hover,
.nav-list li>a.active{
    color: #286EFA;
}
.nav-list li>a svg{
    transition: all 0.3s;
    fill: #A7A9B6;
    position: absolute;
    right: 0;
    top: 50%;
    width: 15px;
    transform: translate(0, -50%);
}
.nav-list li>a:hover svg,
.nav-list li>a.active svg{
    fill: #286EFA;
}
.header .right{
    display: flex;
    align-items: center;
}
.header .right>a img{
    width: 100px;
}
.header .login{
    cursor: pointer;
    margin-left: 36px;
    font-size: 16px;
}
.header .right .islogin{
    margin-left: 10px;
    position: relative;
    height: 68px;
    z-index: 999;
}
.islogin:hover .userBody{
    display: block;
}
.userBody{
    display: none;
    position: absolute;
    width: 110px;
    background: #fff;
    border-radius: 2px;
    top: 68px;
    left: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    padding: 10px;
}
.userBody a{
    display: flex;
    align-items: center;
    height: 30px;
    width: 100%;
    font-size: 14px;
    padding: 0 5px;
    border-radius: 5px;
}
.userBody a:hover{
    background: #f5f5f5;
}
.userBody a span{
    margin-left: 5px;
}
.userinbox{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E9F0FE;
    transition: all .4s;
    border-radius: 4px;
    cursor: pointer;
    width: 110px;
    height: 30px;
    margin-top: 19px;
}
.islogin:hover .userinbox{
    background: #286EFA;
}
.islogin:hover .userinbox p{
    color: #fff;
}
.userinbox p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #286EFA;
}
.userinbox .userhead{
    flex-shrink: 0;
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    margin-right: 5px;
    margin-left: 5px;
    overflow: hidden;
}
.userinbox .userhead img{
    width: 100%;
    height: 100%;
}
.NavigationDropdown{
    display: none;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    position: absolute;
    z-index: 9;
    top: 62px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 620px;
}
.nav-list li:hover .NavigationDropdown{ 
    display: block;
}
.NavigationDropdown .biaoti{
    font-size: 18px;
    line-height: normal;
}
.fanganlist{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
}
.fanganlist a{
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 12px;
    width: calc(100% / 2);
}
.fanganlist a .iconboxs{
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 5px;
    background-color: #F5F7FA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.fanganlist a svg{
    fill: #555555;
}
.fanganlist a:hover , .fanganlist a.active{
    background-color: #F8F8F8;
}
.fanganlist a:hover .iconboxs,.fanganlist a.active .iconboxs{
    background-color: #286EFA;
}
.fanganlist a:hover svg, .fanganlist a.active svg{
    fill: #ffffff;
}
.fanganlist a .infotit{
    font-size: 14px;
    margin-bottom: 5px;
}
.fanganlist a .infojj{
    font-size: 13px;
    color: #909090;
}

.nav_search{
    display: flex;
    align-items: center;
    height: 30px;
    font-size: 14px;
    padding: 0 5px;
    border-radius: 5px;
    color:#555
}
.nav_search:hover{
    background: #f1f1f1;
    color: #1B60FF;
}
.nav_search svg{
    width: 20px;
    fill: #555;
    margin-right: 5px;
}
.nav_search:hover svg{
    fill: #1B60FF;
}
.header .login{
    margin-left: 0;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 14px;
    margin-left: 10px;
    background: rgba(40, 110, 250, .1);
    color: #286efa;
}
.header .login:hover{
    background: #286efa;
    color: #fff;
}

.header .nav_create{
    display: flex;
    align-items: center;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    padding:0 5px;
    border-radius: 5px;
    background: #286EFA;
    color: #fff;
}
.header .nav_create svg{
    width: 20px;
    fill: #fff;
}
.header .nav_create:hover{
    background: #1B60FF;
}
.dropsdownbox{
    position: relative;
    height: 60px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}
.dropdownnavcon{
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    top: 62px;
    background: #fff;
    padding:10px;
    width: 120px;
    border-radius: 8px;
    display: none;
    font-size: 14px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    opacity: 0;
    /* top: -100%; */
    transition: all .4s;
}
.dropdownnavcon.show{
    display: block;
    opacity: 1;
    top: 62px;
}
.dropdownnavcon>a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 30px;
    line-height: 30px;
}
.dropdownnavcon>a svg{
    margin-right: 6px;
    fill: #787676;
}
.dropdownnavcon>a:hover{
    color: #1B60FF;
}
.dropdownnavcon>a:hover svg{
    fill: #1B60FF;
}


.footer{
    width: 100%;
    background-color: #040B1E;
    overflow: hidden;
    min-width: 1200px;
    /* height: auto; */
}
.footcon{
    width: 1200px;
    margin: 60px auto 0;
}
.footcon .top{
    display: flex;
    justify-content: space-between;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footcon .top .topitem>p{
    color: #fff;
    margin-bottom: 30px;
    font-size: 18px;
}
.footcon .top .topitem div a{
    color: #fff;
    opacity: .7;
    line-height: 30px;
    font-size: 15px;
}
.footcon .top .topitem div a:hover{
    opacity: 1;
}
.footcon .top .topitem div span{
    color: #fff;
    font-size: 20px;
}
.footcon .top .topitem .saoma{
    margin-right: 10px;
    color: #fff;
    font-size: 12px;
}
.footcon .top .topitem .saomatxt{
    margin-top: 6px;
    opacity: .7;
    text-align: center;
}
.footcon .top .topitem .saomaimg{
    padding: 6px;
    background-color: #fff;
}
.footcon .center{
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footcon .center>p{
    color: #fff;
    opacity: .7;
    font-size: 14px;
}
.copyright{
    display: flex;
    margin-top: 12px;
    font-size: 14px;
}
.copyright a,.copyright p,.friendlink a,.friendlink p{
    color: #fff;
    opacity: .7;
}
.copyright .acon{
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}
.copyright .acon::after{
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    width: 1px;
    height: 14px;
    transform: translate(0, -50%);
    background: rgba(255, 255, 255, 0.7);
}
.friendlink{
    display: flex;
    padding: 30px 0;
    color: #fff;
    font-size: 14px;
}
.friendlink a{
    margin-right: 15px;
}
.FloatingSidebar{
    position: fixed;
    right: 10px;
    top: 50%;
    z-index: 99;
    background-color: #fff;
    width: 70px;
    border-radius: 35px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 15px 0;
}
.FloatingSidebar>div{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
.FloatingSidebar>div:hover p{
    color: #286EFA;
}
.FloatingSidebar>div:hover svg{
    fill: #286EFA;
}
.FloatingSidebar>div svg{
    fill: #9e9e9e;
}

.FloatingSidebar>div>p{
    font-size: 14px;
    color: #909090;
}
.FloatingSidebar .cebiancon{
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 15px 30px;
    position: absolute;
    top: 0;
    right: 75px;
    border-radius: 5px;
    display: none;
}
.FloatingSidebar .cebiancon>div{
    display: none;
}
.FloatingSidebar .cebiancon>div p{
    white-space: nowrap;
    text-align: center;
    line-height: 26px;
}


.mobileheader{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    z-index: 9999;
}
.mobile_header_zhanwei{
    display: none;
    height: 50px;
    width: 100%;
}
.mhtopcon{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    position: relative;
}
.mhlogo img{
    width: 100px;
}
.dropdownnav{
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    top: 50px;
    left: 0;
}
.dropdowncon{
    width: 100%;
    background-color: #fff;
    display: flex;
}
.dropdowncon .left{
    flex-shrink: 0;
    width: 120px;
    height: 430px;
    border-right: 1px solid #f1f1f1;
}
.dropdowncon .left a{
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 14px;
    height: 40px;
}
.dropdowncon .left a.active{
    color: #286EFA;
}
.dropdowncon .left a span{
    margin-right: 10px;
}
.dropdowncon .right{
    padding: 10px 15px;
}
.dropdowncon .right>div{
    display: none;
}
.dropdowncon .right .sy h2{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.dropdowncon .right .sy p{
    font-size: 14px;
    line-height: 22px;
    color: #555;
}
.dropdowncon .right div>a{
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}
.dropdowncon .right div>a.active{
    color: #286EFA;
}
.dropdowncon .right div>a .iconboxs{
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.dropdowncon .right div>a.active .iconboxs{
    background-color: #286EFA;
}
.dropdowncon .right div>a.active .iconboxs svg{
    fill: #fff;
}
.dropdowncon .right div>a .infotit{
    font-size: 14px;
}
.dropdowncon .right div>a .infojj{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 190px;
    font-size: 12px;
    color: #787676;
}
.swiperpinpai{
    width: 90%;
}
.sliderpinpai{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin-right: 20px;
}
.sliderpinpai .pinpaiitem{
    width: calc(50% - 10px);
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}
.sliderpinpai .pinpaiitem img{
    width: 100%;
}
.mobilefoot{
    background: #1A1A1A;
    padding: 25px 20px 50px;
}
.mobilefoot .top{
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobilefoot .top .topitem{
    color: #fff;
}
.mobilefoot .top .topitem .saoma{
    margin-left: 12px;
}
.mobilefoot .top .topitem .saomaimg{
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background: #fff;
    padding: 4px;
}
.mobilefoot .top .topitem .saomaimg img{
    width: 100%;
}
.mobilefoot .top .topitem .saomatxt{
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 5px;
}
.mobilefoot .bottom{
    margin-top: 20px;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}
.mobilefoot .bottom p{
    text-align: center;
    line-height: 30px;
}
.mobilefoot .bottom a{
    color: rgba(255, 255, 255, .5);
}
.mobilefoot .bottom>div{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    #header,.FloatingSidebar,.krswiperzuoyou,.krswiper-pagination,.pc_header_zhanwei,.footer{
        display: none;
    }
    .mobileheader,.mobile_header_zhanwei,.mobilefoot{
        display: block !important;
    }
}