/* 字体引用 */
@font-face {
    font-family: 'AlibabaPuHuiTi-3-55-Regular';
    src: url('../../font/AlibabaPuHuiTi-3-55-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AlibabaPuHuiTi_3_75_SemiBold'; 
    src: url('../../font/AlibabaPuHuiTi-3-75-SemiBold.ttf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'FZJunHJW_Zhun';
    src: url('../../font/FZJunHJW_Zhun.TTF');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'alimamashuheiti';
    src: url('../../font/alimamashuheiti.ttf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'BEBAS';
    src: url('../../font/BEBAS___.TTF');
    font-weight: 300;
    font-style: normal;
}

/* 字体引用结束 */

/* 默认样式 */
* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    font-size: inherit;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
}

hr {
    border: 0;
    display: block;
}

i {
    font-style: normal;
}

input,
textarea {
    font-size: inherit;
    font-family: inherit;
    background: transparent;
}

input:focus-visible,
textarea:focus-visible,
input:focus,
textarea:focus {
    background: transparent;
    outline: none;
}

input:-webkit-autofill {
    box-shadow: none;
    background-color: transparent !important;
    -webkit-text-fill-color: #313336;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    outline: none;
    -webkit-text-fill-color: #313336;
    transition: background-color 5000s ease-out 0.5s;
}


select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: none;
    /* background: url(../images/icon_down.png) no-repeat calc(100%) center; */
    padding-right: 1.4rem;
    background-size: 0.8rem auto;
    font-size: inherit;
}

select::-ms-expand {
    display: none;
}

body *::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

body *::-webkit-scrollbar-thumb {
    width: 3px;
    border-radius: 1px;
    background: #ddd;
}

body *::-webkit-scrollbar-track {
    width: 3px;
    border-radius: 1px;
    background: transparent;
}

html,
body {
    -webkit-text-size-adjust: none;
    width: 100%;
    position: relative;
    font-weight: 400;     
    font-family: FZJunHJW_Zhun,Montserrat-Regular;
}

body {
    overflow-x: hidden;
}

.pc {
    display: block;
}

.wap {
    display: none !important;
} 

.content {
    overflow-x: hidden;
    width: 100%;
}

.bg {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: all 0.5s ease 0s;
}
 

/* 提示信息 */
#toastbody {
    position: fixed;
    z-index: 100;
    top: 12vh;
    left: 0;
    width: 100%;
    transition: opacity 1.5s ease 0s;
    text-align: center;
}

#toast {
    box-sizing: border-box;
    max-width: 90vw;
    display: inline-block;
    text-align: center;
    background: #313336;
    box-shadow: 0px 0.8rem 1rem 0px rgba(49, 51, 54, 0.1200);
    border-radius: 0.4rem;
    line-height: 22px;
    /* margin: 0 auto; */
    padding: 8px 2rem;
    font-size: 16px;
    color: #FFFFFF;
}

@keyframes slideToRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(2rem);
    }

    100% {
        transform: translateX(0);
    }
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%; 
}
header .header{
    background: linear-gradient(180deg,rgba(0,0,0,0.4),rgba(0,0,0,0));
    padding: 3rem 3.13% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: relative;
}
header .header .logo{
    width: 16.79%;
    display: block;
}
header .header .btnbox{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header .header .langbtn{
    width: 3rem;
    height: 3rem;
    font-size: 0.7rem;
    text-transform:uppercase;
    color: #FFFFFF;
    line-height: 3rem;
    text-align: center;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
}
header .header .menu,
header .header .close{
    width: 4.6rem;
    display: block;
    cursor: pointer;
    margin-left: 3rem;
}
header .header .close{
    display: none;
}
header .menubg{ 
    background: rgba(0, 0, 0, 0.5); 
    position: absolute;
    right: 0;
    top: 0;
    width: 100%; 
    height: 100vh;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease 0s;
}
header .menulist{ 
    position: absolute;
    right: -100%;
    top: 0;  
    color: #fff;
    padding-top: 10%;
    width: 50%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9); 
    transition: all 0.5s ease 0s; 
}  
header .menulist .list{
    overflow: auto;
    height: 100%;
}
header .menulist .li{
    margin: 1rem 0;
}
header .menulist .tit{
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 1rem 13% 1rem 18.85%;
    font-family: FZJunHJW_Zhun;
    font-weight: normal;
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 1.7rem;
    cursor: pointer;
    position: relative;
}
header .menulist .li .tit:hover{
    background: #391000;
}
header .menulist .li .tit.on{
    background: #E73F27;
}
header .menulist .tit .hiderow{
    height: 1.7rem;
    overflow: hidden;
    width: 100%;
} 
header .menulist .tit .row{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 0.5s ease 0s;
}
header .menulist .tit:hover .row:first-child{
    margin-top: -1.7rem;
}  
header .menulist .li p:last-child{
    font-family: FZJunHJW_Zhun;
    font-weight: normal;
}
header .menulist .tit i{
    width: 1.8rem;
    height: 1.8rem;
    display: block;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    text-align: center;
    line-height: 1.8rem;
    font-size: 0.7rem;
    position: absolute;
    left: 13.23%;
    top: 50%;
    transform: translateY(-50%);
}
header .menulist .li.on i,
header .menulist .li:hover i{
    border: 1px solid #E73F27;
    color: #E73F27;
}
header .menulist .hidebox{
    display: none;
}
header .menulist .li.on .hidebox{
    display: block;
}
header .menulist .li .hidebox .link{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 13% 0.7rem 19.58%;
    font-family: AlibabaPuHuiTi_3_75_SemiBold;
    font-weight: 600;
    font-size: 0.9rem;
    color: #FFFFFF;
    line-height: 1.3rem;
    cursor: pointer;
    background: #320E01;
    margin-top: 0.1rem;
}
header .menulist .li .hidebox .link.on, 
header .menulist .li .hidebox .link:hover{
    background: #E73F27;
} 
header .menulist .li .hidebox .link p:first-child{
    padding-left: 1rem;
    position: relative;
} 
header .menulist .li .hidebox .link p:first-child::before{
    content: '';
    width: 0.25rem;
    height: 0.25rem;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
} 

.model {
    position: relative;  
    display: block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5rem 3rem;
    margin-top: -2px;
}

.model .titlebox.center{
    text-align: center;
} 
.model .titlebox .tit{ 
    font-family: FZJunHJW_Zhun;
    font-weight: normal;
    font-size: 3rem;
    color: #FFFFFF;
    line-height: 4.2rem;
}
.model .titlebox .entit{ 
    font-family: FZJunHJW_Zhun;
    font-weight: normal; 
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.3rem;
    margin: 0.1rem 0 0.7rem;
    text-transform:capitalize
}
.model .titlebox.center hr{
    margin: 0 auto;
}
.model .titlebox hr{
    width: 3.7rem;
    height: .4rem;
    background: #E73F27;
    border-radius: 0 5rem 0 5rem;
    display: block;
}
.model .morebtn{
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    font-size: 0.8rem; 
    color: #FFFFFF;
    line-height: 1.1rem;
}
.model .morebtn .icon{
    width: 1.25rem;
    display: block; 
    margin-left: 0.4rem;
    transition: all 0.3s ease 0s;
}
.model .morebtn:hover .icon{
    margin-left: 0rem;
}

.model .more {
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid #000000;
    border-radius: 50%;
    background-image: url(../images/icon_detail.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0.3rem;
    display: block; 
} 

.model .box:hover  .info .more { 
    border: 1px solid #fff;
    border-radius: 50%;
    background-image: url(../images/icon_detail_a.png);
} 

footer .footer {
    background: #000;
    padding: 5.35rem 6.56%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #FFFFFF;
}


.bannerbox {
    position: relative;
    overflow: hidden;
}



/* 移动端兼容 */
@media screen and (max-width:750px) {

    .pc {
        display: none !important;
    }

    .wap {
        display: block !important;
    }
 

    #toast {
        padding: 8px 16px;
        font-size: 1.3rem;
    }

    
header .header{
    padding: 2rem; 
}
header .header .logo{
    width: 38.77%;
}  
header .header .menu,
header .header .close{ 
    margin-left: 2rem;
}  
header .menulist{  
    right: -100%; 
    padding-top:22%;
    width: 100%; 
} 
header .menulist .li{
    margin: 0;
}
header .menulist .tit{ 
    padding: 1.5rem 13.33%; 
    font-size: 1.9rem; 
    line-height: 3rem; 
} 
header .menulist .tit .hiderow{
    height: 3rem; 
}    
header .menulist .tit:hover .row:first-child{
    margin-top: -3rem;
}  
header .menulist .tit i{
    width: 2rem;
    height: 2rem;  
    left: 5.33%; 
}  
header .menulist .li .hidebox .link{ 
    display: block;
    padding: 0.8rem 13.33% 0.8rem 21.33%; 
    font-size: 1.5rem;
    line-height: 2.1rem;  
} 
header .menulist .li .hidebox .link p:first-child{
    padding-left: 0;
    position: relative;
} 
header .menulist .li .hidebox .link p:first-child::before{
    content: '';
    width: 0.4rem;
    height: 0.4rem; 
    border-radius: 50%;
    position: absolute;
    left: -2rem; 
}  
.model {
    padding: 5rem 0; 
        overflow: hidden;
}

.model .titlebox{
    text-align: center;
    margin-bottom: 3rem;
}  
.model .titlebox .entit{  
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin: 0.6rem 0 0.8rem;
}
.model .titlebox hr{
    margin: 0 auto;
} 
.model .morebtn{ 
    width: 4.5rem;  
    font-size: 1.1rem;
    letter-spacing: 0rem;
    line-height: 1.5rem;
}
.model .morebtn.wap{
    display: flex!important;
} 
.model .morebtn .icon{
    width: 1.75rem;
    margin-left: 0rem;
}
.model .morebtn:hover .icon{
    margin-left: 0rem;
}
.model .more {
    width: 3.1rem;
    height: 3.1rem; 
    background-size: 0.7rem; 
} 
 
footer .footer { 
    padding: 5.35rem 6.56%; 
}
}