1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .main {
- position: relative;
- width: 100%;
- min-width: 1200px;
- overflow-x: hidden;
- }
- .main .wrapper {
- position: relative;
- z-index: 1;
- }
- .main .tit {
- padding: 100px 0 50px;
- }
- .main .tit h2 {
- text-align: center;
- font-size: 26px;
- font-family: PingFangSC-Semibold, PingFang SC;
- }
- .main .tit p {
- color: #999999;
- font-size: 18px;
- text-align: center;
- }
- .main .tit p a {
- color: #02AB79;
- }
- .main dl {
- border: 1px solid #02AB79;
- border-radius: 20px;
- padding: 32px;
- box-sizing: border-box;
- margin-bottom: 30px;
- background-color: #F5F5F5;
- }
- .main dl:hover dt, .main dl:hover dd, .main dl:hover dt h5 {
- color: #02AB79;
- }
- .main dl dt h5 {
- font-size: 18px;
- font-family: PingFangSC-Semibold, PingFang SC;
- margin-bottom: 16px;
- }
- .main dl dt > div {
- display: -ms-flexbox;
- display: flex;
- -ms-flex-pack: justify;
- justify-content: space-between;
- font-size: 16px;
- }
- .main dl dt > div .tags span {
- margin-right: 12px;
- }
- .main dl dt > div .times {
- display: -ms-flexbox;
- display: flex;
- -ms-flex-align: center;
- align-items: center;
- cursor: pointer;
- }
- .main dl dt > div .times:after {
- display: block;
- content: '';
- background: url(../img/arrow-t-c-3f19b4ca.png) no-repeat center;
- background-size: 11px 6px;
- width: 20px;
- height: 20px;
- margin-left: 5px;
- }
- .main dl dd {
- font-size: 16px;
- }
- .main .pagation {
- margin-bottom: 50px;
- }
|