 /* * é€šç”¨ä¸€çº§é¡µé¢1
 * author:zhouzongyi
 * date:2021-10-29 */

 *,
 ::after,
 ::before {
     box-sizing: border-box;
 }

 .login-box {
     box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .1);
     background: #FFFFFF;
     border-radius: 4px;
     padding: 60px;
 }

 .login-tt {
     height: 62px;
     text-align: center;
     background: url('../images/title_arrow.png')center bottom no-repeat;
     line-height: 47px;
     font-weight: 700;
     font-size: 32px;
 }

 .login-group {
     margin-top: 40px;
 }

 .login-group-tt {
     display: flex;
     height: 28px;
 }

 .login-group-tt .name {
     height: 28px;
     line-height: 28px;
     flex-shrink: 0;
     padding-left: 13px;
     padding-right: 15px;
     font-weight: 700;
     font-size: 18px;
     position: relative;
 }

 .login-group-tt .name::before {
     position: absolute;
     content: "";
     width: 3px;
     height: 18px;
     background-color: #B01127;
     left: 0;
     top: 50%;
     margin-top: -9px;
 }

 .login-group-tt .ico {
     width: 100%;
     height: 100%;
     background: url('../images/dot_line_bg.png')left center repeat-x;
 }

 .login-group-list {
     display: flex;
     flex-wrap: wrap;
     margin-left: -21px;
 }

 .login-link {
     width: calc(20% - 21px);
     margin-left: 21px;
     height: 70px;
     margin-top: 20px;
     background-repeat: no-repeat;
     background-position: center;
     background-size: 100% 100%;
     background-image: url('../images/log_btn.png');
     padding: 0 12px;
     font-size: 16px;
     display: flex;
     align-items: center;
     color: #333;
 }

 .login-link span {
     text-align: center;
     width: 100%;
     line-height: 22px;
     max-height: 66px;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 3;
     overflow: hidden;
     text-overflow: ellipsis;
     word-break: break-all;
 }

 .login-link:hover {
     background-image: url('../images/log_btn_act.png');
     font-weight: 700;
     color: #B01127;
 }