@charset "utf-8";

.work{
    display: flex;
    flex-direction: column;
    background:white;
}



.work .workHead{
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;

    border-bottom: 1px solid #EEEEEE; 
    color:gray;
}

.work .workProp{
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #EEEEEE;
    position: relative;

}
.work .workProp .translate{
    background: #f7f7f7;
    padding: 5px 0px;
    color: #333333;
}

.work .workProp > div{
    padding: 10px;

}
.work .workProp > div:first-child{
    background: #f7f7f7;
    border-right: 1px solid #EEEEEE;
    min-width: 100px;
    max-width: 100px;

    color: #333333;
    font-weight: 400;
    
    word-break:  break-word;

}
.work .workProp > div:last-child{
    word-break: break-word;
    color: black;
    display: flex;
    flex-direction: column;

}



/*
.work .workProp > div:first-child:after{
    content: "";
    display: block;
    width: 10px;
    height:10px;
    background: white;
    border-radius: 10px;
    position: absolute;
    right:5px;
    top:5px;
    font-size: 12px;
}
*/



 

.workProp img,video{
    width:100%;
}


.downloadPdf{
    position: fixed;
    bottom: 65px;
    right:25px;


    opacity: 0.8;
    color: white;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height:30px;
    border-radius: 30px;
    padding: 5px;


    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    box-shadow: 0 0 5px gray;
    z-index: 10;

}
 
.reviewContent{

    height:40vh;
    overflow-y: auto;
    position: relative;
    padding:10px;
    font-size: 18px;
    background: black;


}

.reviewContent > div > p{

    font-family: fangsong;
    line-height: 30px;
    color:white;

}

.uploadBtns{


}

.uploadBtns > div{
    font-size: 12px;
    padding: 0px 5px;
    line-height: 24px;
    height:24px;
    margin: 5px  ;
}

.uploadPara,.uploadDownload,.uploadFitSize{
    margin: 10px;
    border-bottom: 1px solid gray;
    color:gray;
}
.uploadDownload > a{
    text-decoration: none;
    color:gray;
}


.uploadPara:hover,.uploadFitSize:hover{

    cursor: pointer;

}

.uploadParaTip{

    position:absolute;
    display: none;

    flex-direction: column;

    left: 0px;
    bottom:40px;

    background: white;

    z-index: 10;

    border: 3px solid orange;

}

.uploadParaTip > div{

    display: flex;
    flex-direction: row;
    border-bottom: 1px  #CCCCCC  solid ;

}
.uploadParaTip > div > div:first-child{
    width: 100px;
    min-width: 100px;
    background: #EEEEEE;
    padding: 5px 10px;
}
.uploadParaTip > div > div:last-child{
    padding: 5px 10px;
    min-width: 100px;
}

.agreement{
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-bottom:1px solid #EEEEEE;
}

.agreement > div{
    margin: 10px;
    border-radius: 10px;
    padding: 10px;
    padding-bottom: 40px;
    border:1px solid #CCCCCC;
    position: relative;
}

.agreement > div:after{
    position: absolute;
    right:20px;
    bottom:10px;
    content: "不同意";
    color: red;
    font-weight: 900;
    border:1px red dashed;
    padding: 2px 5px;
    font-size: 10px;
    opacity: 0.9;
    letter-spacing: 3px;
}