@charset "utf-8"; /*----------------- Author:xxxx update:2020 -------------------*/ /** 弹出框CSS**/ .mask { background-color: rgba(0, 0, 0, 0.2); width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: 999; } .prompt_box { width: 600px; height: 400px; background: #ffffff; border-radius: 6px; position: fixed; top: 25%; left: 50%; margin-left: -200px; overflow: hidden; } .prompt_box .prompt_title { height: 40px; line-height: 40px; padding-left: 20px; border-bottom: 2px solid #ef344a; background: #e6e6e6; position: relative; } .prompt_box .prompt_title h3 { font-size: 16px; color: #333333; margin-top: 0; padding-top: 10px; } .prompt_box .prompt_cont { position: relative; height: 358px; } .prompt_box .prompt_cont .prompt_text { padding: 20px; font-size: 16px; } .prompt_box .prompt_cont .prompt_sure { position: absolute; right: 40%; bottom: 5%; width: 80px; height: 36px; background: #c04352; border-radius: 5px; color: #ffffff; font-size: 14px; line-height: 36px; text-align: center; cursor: pointer; } .hide { display: none; } .show { display: block; } .prompt_text { height: 300px; overflow-y: scroll; } /*chrome 和Safari ----隐藏滚动条*/ .prompt_text::-webkit-scrollbar { width: 0 !important; } /*IE 10+ ----隐藏滚动条*/ .prompt_text { -ms-overflow-style: none; } /*Firefox ----隐藏滚动条*/ .prompt_text { scrollbar-width: none; }