﻿.container-grid{
    display: grid;
    display: -ms-grid;
    grid-template-rows: 330px 420px 330px;
    grid-template-columns: 1fr 1200px 1fr;
    -ms-grid-columns: 1fr 1200px 1fr;
    -ms-grid-rows: 330px 420px 330px;
    background: url(../images/bg.png) no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}

.header-grid{
    grid-area: 1/2/2/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
}

.logo{
    margin-top: 48px;
}

.title{
    margin-top: 70px;
    text-align: center;
}

.main-grid{
    grid-area: 2/2/3/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
}

.main-wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.title-name{
    font-size: 27px;
	font-weight: bold;
	color: #5d2e3e;
}

.quick-btn-list{
    margin-top: 39px;
    width: 664px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.quick-btn-list li{
    width: 320px;
	height: 354px;
	background-color: #f5ecec;
	-webkit-box-shadow: 1px 3px 3px 0px 
		rgba(142, 92, 106, 0.5);
	        box-shadow: 1px 3px 3px 0px 
		rgba(142, 92, 106, 0.5);
	border-radius: 16px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.quick-btn-list li a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.quick-btn-list li a span{
    display: block;
    font-size: 31px;
	font-weight: bold;
	color: #333333;
}

.quick-btn-list li:nth-child(1) a span{
    margin-top: 40px;
    margin-bottom: 42px;
}

.quick-btn-list li:nth-child(2) a span{
    margin-top: 39px;
    margin-bottom: 16px;
}

.quick-btn-list li:hover{
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateY(-16px);
       -moz-transform: translateY(-16px);
        -ms-transform: translateY(-16px);
         -o-transform: translateY(-16px);
            transform: translateY(-16px);
}




.ps-wrap{
    margin-top: 39px;
    width: 433px;
	height: 354px;
	background-color: #f5ecec;
	-webkit-box-shadow: 1px 3px 3px 0px 
		rgba(142, 92, 106, 0.5);
	        box-shadow: 1px 3px 3px 0px 
		rgba(142, 92, 106, 0.5);
	border-radius: 16px;
}


.ps-wrap a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.ps-wrap a span{
    display: block;
    font-size: 31px;
	font-weight: bold;
	color: #333333;
    margin: 0 auto;
    margin-top: 36px;
}

.ps-wrap a img{
    margin-top: 34px;
    margin-left: 83px;
}

.mask-grid{
    grid-area: 1/1/4/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    background: rgba(51, 51, 51, 0.5);
    display: none;
}

.login-wrap{
    width: 540px;
	height: 371px;
	background-color: #f5ecec;
	-webkit-box-shadow: 1px 3px 3px 0px 
		rgba(142, 92, 106, 0.5);
	        box-shadow: 1px 3px 3px 0px 
		rgba(142, 92, 106, 0.5);
	border-radius: 16px;
    margin: 0 auto;
    margin-top: 300px;
}

.login-title{
    font-size: 31px;
	font-weight: bold;
    text-align: center;
    margin-top: 45px;
}

.user-wrap{
    margin: 48px 94px 39px 94px;
    height: 34px;
    border-bottom: 2px solid #8e5c6a;
}

.user-wrap img{
    margin-right: 24px;
}

.pwd-wrap{
    height: 34px;
    margin: 0 94px;
    border-bottom: 2px solid #8e5c6a;
}

.pwd-wrap img{
    margin-right: 25px;
}

.user-input,.pwd-input{
    height: 24px;
    font-size: 19px;
	color: #c8a1ad;
    border: none;
    background-color: transparent;
}

.login-btn{
    display: block;
    margin: 0 94px;
    margin-top: 40px;
    text-align: center;
    line-height: 54px;
    font-size: 20px;
	font-weight: bold;
    background-image: -webkit-linear-gradient(333deg, 
		#8e5c6a 0%, 
		#d3adb8 100%);
    background-image: -moz-linear-gradient(333deg, 
		#8e5c6a 0%, 
		#d3adb8 100%);
    background-image: -o-linear-gradient(333deg, 
		#8e5c6a 0%, 
		#d3adb8 100%);
    background-image: linear-gradient(117deg, 
		#8e5c6a 0%, 
		#d3adb8 100%);
	border-radius: 27px;
	color: #ffffff;
}