#profileBox{
    position: relative;
    width:100%;
}
#profileBox .profile{
    position:relative;
    width:100%;
    margin:0 auto;
}
#profileBox .profile .proInfoBox{
    display:flex;
    position:relative;
    width:100%;
    max-width:1440px;
    margin: 2rem auto;
    padding: 0;
    flex-wrap: wrap;
}
#profileBox .profile .proInfoBox .leftBox{
    position:relative;
    width:30%;
    float:left;
}
#profileBox .profile .proInfoBox .leftBox:before{
    content:" ";
    position:absolute;
    top: 8rem;
    left:0;
    width: 0;
    height:1px;
    background: var(--borderColor);
    transition: 0.35s ease-in-out;
    z-index:2;
}
#profileBox .profile .proInfoBox:hover .leftBox:before{
    display:none;
    width:100%;
    background: var(--borderColor);
}
#profileBox .profile .proInfoBox .leftBox h1{
    text-align: left;
    margin: 0 0 1rem;
    padding: 0 0 1rem;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--hColor);
    line-height: 1;
}
#profileBox .profile .proInfoBox .leftBox span{
    font-size: 1.5rem;
    color: var(--bColor);
}
#profileBox .profile .proInfoBox .rightBox{
    position:relative;
    width:70%;
    padding: 0 0 0 6%;
    float:right;
}
#profileBox .profile .proInfoBox .rightBox span{
    display:block;
    margin:0 0 1rem;
    font-size: 1rem;
    font-weight: normal;
    color: var(--hColor);
    line-height: 2;
}
#profileBox .profile .proInfoBox .proImgBox{
    position:relative;
    margin: 4rem auto;
}
#profileBox .profile .proInfoBox .proImgBox img{
    width:100%;
    box-shadow:1px 2px 4px rgba(51,51,51,0.2);
}
#profileBox .profile .proServerBox{
    position:relative;
    text-align:center;
    width: 100%;
    margin:0 auto;
    height: 24rem;
    background:url(/img/profileSimpleBg.jpg) no-repeat #000;
    background-size:cover;
}
#profileBox .profile .proServerBox .content{
    position:relative;
    top: calc((100% - 7rem)/2);
}
#profileBox .profile .proServerBox .content h1{
    margin: 0;
    padding: 0;
    font-size:2rem;
    color:var(--fColor);
    text-transform: uppercase;
}
#profileBox .profile .proServerBox .content span{
    margin: 0;
    padding: 0;
    font-size:1rem;
    color:var(--fColor);
    line-height:3;
}
#profileBox .profile .proServerBox .content span .iconfont{
    display:inline-block;
    width:3rem;
    height:3rem;
    margin: 0.5rem 1rem;
    font-size: 1rem;
    line-height:3rem;
    background:transparent;
    border-radius:100%;
    transition:0.35s ease-in-out;
}
#profileBox .profile .proServerBox .content:hover span .iconfont{
    font-size:1rem;
    color:var(--bColor);
    background:var(--fColor);
    transition:0.35s ease-in-out;
}
#profileBox .profile .proProductBox{
    position:relative;
    height: 24rem;
    background: transparent;
}
#profileBox .profile .proProductBox a{
    display:block;
    position:relative;
    width:100%;
    max-width:1440px;
    margin: 0 auto;
    z-index:2;
}
#profileBox .profile .proProductBox .leftBox{
    display:inline-block;
    position:relative;
    top: calc((24rem - 15rem)/2);
    left: calc((100% - 1440px)/2);
    width: auto;
    float: left;
    z-index: 2;
}
#profileBox .profile .proProductBox .leftBox h1{
    margin:0 0 0.5rem;
    padding:0;
    font-size:2rem;
    color:var(--hColor);
    transition:0.35s ease-in-out;
}
#profileBox .profile .proProductBox:hover .leftBox h1{
    color:var(--fColor);
    transition:0.35s ease-in-out;
}
#profileBox .profile .proProductBox .leftBox span:nth-child(2){
    display:block;
    margin:0 0 0.5rem;
    padding:0;
    font-size:1.5rem;
    color:var(--hColor);
    transition:0.35s ease-in-out;
}
#profileBox .profile .proProductBox .leftBox span:nth-child(3){
    display:block;
    margin:0;
    padding:0;
    font-size:0.875rem;
    color:var(--fdColor);
    line-height:2;
    transition:0.35s ease-in-out;
}
#profileBox .profile .proProductBox:hover .leftBox span{
    color:var(--fColor);
    transition:0.35s ease-in-out;
}
#profileBox .profile .proProductBox .more{
    text-align:center;
    width:6rem;
    margin:2rem 0;
    font-size:0.875rem;
    color:var(--hColor);
    line-height:3;
    border:1px solid var(--hColor);
    border-radius:0.25rem;
    transition:0.35s ease-in-out;
}
#profileBox .profile .proProductBox:hover .more{
    width:10rem;
    color:var(--fColor);
    background:var(--bColor);
    border:1px solid var(--bColor);
    transition:0.35s ease-in-out;
}
#profileBox .profile .proProductBox .coverPic{
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    transform: scale(0);
    transition: 0.7s ease-in-out;
    opacity:0;
}
#profileBox .profile .proProductBox:hover .coverPic{
    transform: scale(1);
    transition: 0.7s ease-in-out;
    opacity:1;
}
@media only screen and (max-width:768px){
    #profileBox .profile .proInfoBox .leftBox{
        width:100%;
    }
    #profileBox .profile .proInfoBox .leftBox h1{
        font-size:1.75rem;
    }
    #profileBox .profile .proInfoBox .rightBox{
        width: 100%;
        margin:2rem auto;
        padding:0;
    }
    #profileBox .profile .proInfoBox .rightBox span:nth-child(1){
        font-size:1.125rem;
        line-height:1.8;
    }
    #profileBox .profile .proInfoBox .rightBox span:nth-child(2){
        font-size:1rem;
        line-height:1.8;
    }
    #profileBox .profile .proInfoBox .proImgBox{
        margin: 0;
    }
    #profileBox .profile .proServerBox{
        margin: -0.25rem 0;
        height: 14rem;
    }
    #profileBox .profile .proProductBox{
        height: 26rem;
        padding:0 2rem;
        overflow: hidden;
    }
    #profileBox .profile .proProductBox .leftBox{
        top: calc((26rem - 23rem)/2);
        left:0;
    }
}
@media only screen and (min-width:769px) and (max-width:1024px){
    #profileBox .profile .proInfoBox .leftBox h1{
        font-size:2rem;
    }
    #profileBox .profile .proInfoBox .rightBox{
        width: 100%;
        margin:2rem auto;
        padding:0;
    }
    #profileBox .profile .proInfoBox .rightBox span:nth-child(1){
        font-size:1.125rem;
        line-height:1.8;
    }
    #profileBox .profile .proInfoBox .rightBox span:nth-child(2){
        font-size:1rem;
        line-height:1.8;
    }
    #profileBox .profile .proInfoBox .proImgBox{
        margin: 0;
    }
    #profileBox .profile .proServerBox{
        margin: -0.25rem 0;
        height: 14rem;
    }
    #profileBox .profile .proProductBox{
        height: 24rem;
        padding:0 2rem;
        overflow: hidden;
    }
    #profileBox .profile .proProductBox .leftBox{
        left:0;
    }
}
@media only screen and (min-width:1025px) and (max-width:1280px){
    #profileBox .profile .proInfoBox .leftBox h1{
        font-size:2rem;
    }
    #profileBox .profile .proInfoBox .rightBox{
        width: 100%;
        margin:2rem auto;
        padding:0;
    }
    #profileBox .profile .proInfoBox .rightBox span:nth-child(1){
        font-size:1.125rem;
        line-height:1.8;
    }
    #profileBox .profile .proInfoBox .rightBox span:nth-child(2){
        font-size:1rem;
        line-height:1.8;
    }
    #profileBox .profile .proInfoBox .proImgBox{
        margin: 0;
    }
    #profileBox .profile .proServerBox{
        margin: -0.25rem 0;
        height: 14rem;
    }
    #profileBox .profile .proProductBox{
        height: 24rem;
        padding:0 2rem;
        overflow: hidden;
    }
    #profileBox .profile .proProductBox .leftBox{
        left:0;
    }
}  
#contactBox{
    position: relative;
    width:100%;
    margin: 2rem auto;
}
#contactBox .profile{
    position:relative;
    width:100%;
    margin:0 auto;
    padding:0
}
#contactBox .profile .proInfoBox{
    display:flex;
    position:relative;
    width:100%;
    max-width:1440px;
    margin:0 auto;
    padding: 0;
    flex-wrap: wrap;
}
#contactBox .profile .proInfoBox .leftBox{
    position:relative;
    width:auto;a
    float:left;
}
#contactBox .profile .proInfoBox .leftBox:before{
    content:" ";
    position:absolute;
    top: 7rem;
    left:0;
    width: 0;
    height:1px;
    background: var(--borderColor);
    transition: 0.35s ease-in-out;
    z-index:2;
}
#contactBox .profile .proInfoBox:hover .leftBox:before{
    width:100%;
    background: var(--borderColor);
}
#contactBox .profile .proInfoBox .leftBox h1{
    margin:0 0 0.5rem;
    padding:0;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--hColor);
    line-height: 1;
}
#contactBox .profile .proInfoBox .leftBox span{
    font-size: 1.5rem;
    color: var(--bColor);
}
#contactBox .profile .proInfoBox .rightBox{
    position:relative;
    width:60%;
    padding: 0 0 0 6%;
    float:right;
}
#contactBox .profile .proInfoBox .rightBox span{
    display:block;
    margin: 0 0 1rem 0;
    padding: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: normal;
    color: var(--hColor);
    line-height: 2;
    border-bottom: 1px solid #efefef;
}
#contactBox .profile .proInfoBox .rightBox span:nth-last-child(1){
    border-bottom:none;
}
#contactBox .profile .proInfoBox .rightBox span a{
    color:var(--hColor);
    transition:0.35s ease-in-out;
}
#contactBox .profile .proInfoBox .rightBox span a:hover{
    color:var(--bColor);
    transition:0.35s ease-in-out;
}
#contactBox .profile .proInfoBox .proImgBox{
    position:relative;
    margin: 4rem auto;
}
#contactBox .profile .proInfoBox .proImgBox img{
    width:100%;
    box-shadow:1px 2px 4px rgba(51,51,51,0.2);
}
#contactBox .profile .proServerBox{
    position:relative;
    text-align:center;
    width: 100%;
    margin:0 auto;
    height: 24rem;
    background:#000;
    background-size:cover;
}
#contactBox .profile .proServerBox .content{
    position:relative;
    top: calc((100% - 7rem)/2);
}
#contactBox .profile .proServerBox .content h1{
    margin: 0;
    padding: 0;
    font-size:2rem;
    color:var(--fColor);
    text-transform: uppercase;
}
#contactBox .profile .proServerBox .content span{
    margin: 0;
    padding: 0;
    font-size:1rem;
    color:var(--fColor);
    line-height:3;
}
#contactBox .profile .proServerBox .content span .iconfont{
    display:inline-block;
    width:3rem;
    height:3rem;
    margin: 0.5rem 1rem;
    font-size: 1rem;
    line-height:3rem;
    background:transparent;
    border-radius:100%;
    transition:0.35s ease-in-out;
}
#contactBox .profile .proServerBox .content:hover span .iconfont{
    font-size:1rem;
    color:var(--bColor);
    background:var(--fColor);
    transition:0.35s ease-in-out;
}
#contactBox .profile .proProductBox{
    position:relative;
    height: 24rem;
    background: transparent;
}
#contactBox .profile .proProductBox a{
    display:block;
    position:relative;
    width:100%;
    max-width:1440px;
    margin: 0 auto;
    z-index:2;
}
#contactBox .profile .proProductBox .leftBox{
    display:inline-block;
    position:relative;
    top: calc((24rem - 15rem)/2);
    left: calc((100% - 1440px)/2);
    width: auto;
    float: left;
    z-index: 2;
}
#contactBox .profile .proProductBox .leftBox h1{
    margin:0 0 0.5rem;
    padding:0;
    font-size:2rem;
    color:var(--hColor);
    transition:0.35s ease-in-out;
}
#contactBox .profile .proProductBox:hover .leftBox h1{
    color:var(--fColor);
    transition:0.35s ease-in-out;
}
#contactBox .profile .proProductBox .leftBox span:nth-child(2){
    display:block;
    margin:0 0 0.5rem;
    padding:0;
    font-size:1.5rem;
    color:var(--hColor);
    transition:0.35s ease-in-out;
}
#contactBox .profile .proProductBox .leftBox span:nth-child(3){
    display:block;
    margin:0;
    padding:0;
    font-size:0.875rem;
    color:var(--fdColor);
    line-height:2;
    transition:0.35s ease-in-out;
}
#contactBox .profile .proProductBox:hover .leftBox span{
    color:var(--fColor);
    transition:0.35s ease-in-out;
}
#contactBox .profile .proProductBox .more{
    text-align:center;
    width:6rem;
    margin:2rem 0;
    font-size:0.875rem;
    color:var(--hColor);
    line-height:3;
    border:1px solid var(--hColor);
    border-radius:0.25rem;
    transition:0.35s ease-in-out;
}
#contactBox .profile .proProductBox:hover .more{
    width:10rem;
    color:var(--fColor);
    background:var(--bColor);
    border:1px solid var(--bColor);
    transition:0.35s ease-in-out;
}
#contactBox .profile .proProductBox .coverPic{
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    transform: scale(0);
    transition: 0.7s ease-in-out;
    opacity:0;
}
#contactBox .profile .proProductBox:hover .coverPic{
    transform: scale(1);
    transition: 0.7s ease-in-out;
    opacity:1;
}
#contactBox #container{
    position:relative;
    width:100%;
    margin:2rem auto;
}
@media only screen and (max-width:768px){
    #contactBox #container{
        margin:1rem auto;
    }
    #contactBox .profile .proInfoBox .leftBox h1{
        font-size:2rem;
    }
    #contactBox .profile .proInfoBox .rightBox{
        width: 100%;
        margin: 2rem auto 0;
        padding:0;
    }
    #contactBox .profile .proInfoBox .rightBox span{
        font-size:1.125rem;
        line-height:1.8;
    }
    #contactBox .profile .proInfoBox .proImgBox{
        margin: 0;
    }
    #contactBox .profile .proServerBox{
        margin: -0.25rem 0;
        height: 14rem;
    }
    #contactBox .profile .proProductBox{
        height: 24rem;
        overflow: hidden;
    }
    #contactBox .profile .proProductBox .leftBox{
        left:0;
    }
}
@media only screen and (min-width:769px) and (max-width:1024px){
    #contactBox .profile .proInfoBox .leftBox h1{
        font-size:2rem;
    }
    #contactBox .profile .proInfoBox .rightBox{
        width: 100%;
        margin:2rem auto;
        padding:0;
    }
    #contactBox .profile .proInfoBox .rightBox span:nth-child(1){
        font-size:1.125rem;
        line-height:1.8;
    }
    #contactBox .profile .proInfoBox .rightBox span:nth-child(2){
        font-size:1rem;
        line-height:1.8;
    }
    #contactBox .profile .proInfoBox .proImgBox{
        margin: 0;
    }
    #contactBox .profile .proServerBox{
        margin: -0.25rem 0;
        height: 14rem;
    }
    #contactBox .profile .proProductBox{
        height: 24rem;
        overflow: hidden;
    }
    #contactBox .profile .proProductBox .leftBox{
        left:0;
    }
}
@media only screen and (min-width:1025px) and (max-width:1280px){
    #contactBox .profile .proInfoBox .leftBox h1{
        font-size:2rem;
    }
    #contactBox .profile .proInfoBox .rightBox{
        width: 100%;
        margin:2rem auto;
        padding:0;
    }
    #contactBox .profile .proInfoBox .rightBox span:nth-child(1){
        font-size:1.125rem;
        line-height:1.8;
    }
    #contactBox .profile .proInfoBox .rightBox span:nth-child(2){
        font-size:1rem;
        line-height:1.8;
    }
    #contactBox .profile .proInfoBox .proImgBox{
        margin: 0;
    }
    #contactBox .profile .proServerBox{
        margin: -0.25rem 0;
        height: 14rem;
    }
    #contactBox .profile .proProductBox{
        height: 24rem;
        overflow: hidden;
    }
    #contactBox .profile .proProductBox .leftBox{
        left:0;
    }
}