.photo-news {
    width: 1200px;
    height: 600px;
    border-radius: 20px 20px 0 20px;}

.box {
    width: 1200px;
    height: 700px;
    margin-top: 40px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;}

.box a {
    color: black;
    text-decoration: none;}

.box a:hover {
    color: red;
    text-decoration: underline;}

.box .news-box, .notice-box, .person-box, .tech-box {
    width: 590px;
    height: 324px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;}

.box .news-box {
    border-radius: 20px 10px 0 10px;}

.box .notice-box {
    border-radius: 10px 20px 10px 0;}

.box .person-box {
    border-radius: 20px 10px 0 10px;}

.box .tech-box {
    border-radius: 10px 20px 10px 0;}

.title {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #2D54A4;
    font-size: 18px;
    border-radius: 10px 20px 0 0;}

.news-box .title {
    border-radius: 20px 10px 0 0;}

.person-box .title {
    border-radius: 20px 10px 0 0;}

.news-box:hover .title span,
.notice-box:hover .title span,
.person-box:hover .title span,
.tech-box:hover .title span {
    letter-spacing: 10px;
    transition: all .3s linear;}

.title span {
    color: #fff;
    font-weight: bold;   
    letter-spacing: 3px;
    transition: all .3s linear;
    margin-left: 10px;}

.title .more {
    position: absolute;
    right: 0;}

.content {
    width: 96%;
    height: 280px;
    font-size: 15px;
    color: #666666;}

/* 快速链接样式 */
.link {
    width: 1200px;
    height: 30px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    border-radius: 10px 20px 20px 0;}

.item, .item1{
    width: calc(100% / 3);
    height: 32px;
    text-align: center;
    line-height: 32px;}

.item1 {
    background-color: #2D54A4;
    color: white;
    border-radius: 10px 0 0 0;
    box-shadow: 0 0 1px #ffffff;
    height: 28px;
    line-height: 28px;}

/* quick-path */
.quick-path {
    width: 1200px;
    height: 100px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 10px;}

.quick-path .path-item {
    width: calc(100% / 9);
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #f1f1f1;}

.quick-path .path-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;}

.quick-path .path-item img {
    width: 50px;
    height: 50px;
    transition: all .2s linear;}

.quick-path .path-item span {
    margin-top: 10px;
    color: black;
    font-size: 14px;}

.quick-path .path-item:hover img {
    transform: scale(1.4) translateY(-20px);
    transition: all .2s linear;}

.software {
    width: 1200px;
    height: 280px;
    margin-top: 40px;
    display: flex;}

.software .block-title {
    width: 60px;
    height: 280px;
    background-color: #2D54A4;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    letter-spacing: 10px;
    border-radius: 10px 0 0 10px;
    color: #fff;
    transition: all .4s linear;}

.software:hover .block-title {
    letter-spacing: 20px;
    transition: all .4s linear;}

.software .block-content {
    width: 1140px;
    background-color: #ffffff;
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-wrap: wrap;}

.software .block-content .block-item {
    width: calc(1140px / 8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 140px;}

.software .block-content .block-item img {
    width: 54px;
    height: 54px;
    border-radius: 54px;}

.software .block-content .block-item:hover img {
    transform: rotate(360deg);
    transition: all .6s linear;}

.software .block-content .block-item:nth-of-type(4),
.software .block-content .block-item:nth-of-type(5),
.software .block-content .block-item:nth-of-type(6) {
    border-bottom: none;}

.software .block-content .block-item:nth-of-type(3),
.software .block-content .block-item:nth-of-type(6) {
    border-right: none;}